/* ---------------------
   リセットCSS（省略せず同じ）
--------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    padding: clamp(1rem, 2vw, 2rem);

    /* ▼ 中央揃え（縦横） */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------------------
   ヘッダー
--------------------- */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
}

.logo {
    width: 100%;
    height: auto;
}

/* ---------------------
   メインコンテンツ
--------------------- */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.5;

}

.main-img img{
    margin-top: 50px;
    margin-bottom: 30px;
    background-color: #fff;
    width: 60vw;
    padding: 20px;
    border-radius: 5px;
}

.content {
    margin-top: 50px,20px,20px,20px;

}

span{
    font-weight: 900;
    font-size: 1.5rem;
}

.message {
    font-size: 20px;
    margin-bottom: 50px ;
}
.image-container img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}
.contact-info{
    font-size: 18px;
    margin: 10px;
    padding: 10px;

}
.contact-info i {
    margin-right: 10px;
}
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 10px;
}

.image-container{
    height: 50px;
}

.jyouken{
background-color: rgb(216, 237, 100);
margin: 30px auto;
padding: 30px;
width: 60vw;
border-radius: 20px;
font-weight: 800;
font-size: larger;
}


.syousai{
    font-size: 0.8rem;
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    margin-top: 30px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.tel{
    font-size: 2rem;
}

.tel a{
    text-decoration: none;
}


@media screen and (max-width:480px) {

	/*　画面サイズが480px以下の場合ここの記述が適用される　*/

    /* PCでのみ表示（スマホでは非表示） */
.main-img .pc-only img{
    display: none;          /* 通常時は表示 */
  }
  
  /* スマホでのみ表示（PCでは非表示） */
  .main-img .sp-only img{
    display: block;           /* 通常時は非表示 */
  }

  img{
    max-width: 100vw;
  }

  .message {
    font-size: 1rem;
    margin-bottom: 50px ;
}

}

.animation-sample {
        width: 200px;
        height: 80px;
        background-color: #fea7a7;
        position: absolute;
        left: 0;
        top: 0;
    }
