@charset "utf-8";

body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    color: #2B3038;
    background-color: #FDFAF8;
}

header.global .gronav{
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    padding-left: 28px;
    margin-top: 30px;
    box-shadow: 0 2px 4px 2px rgba(51, 51, 51, .05);


    /* width: 100%; */
    position: fixed;
    left: 50%;
  top: 5%;
  transform: translateX(-50%)
             translateY(-50%);
    z-index: 1000;
}

.header_nav_flex{
    width: 970px;
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_rgo{
    width: 232px;
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: left;
    padding-left: 35px;
}


.header_rgors h1{
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
}

.header_rgo a
,.header_rgors a{
    color: #2B3038;}

.header_rgo p{
    font-size: 1.2rem;
    font-weight: 300;
}



header .header_nav{
    width: calc(100% - 300px);
}

header .header_nav ul{
    display: flex;
    justify-content: space-between;
    
}

header .header_nav ul li{
    width: calc(100% / 6);
    
}

header .header_nav ul li a{
    color: #2B3038;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

header .reservation{
    width: 100px;
    background: linear-gradient(to top,#0693e3,#8ed1fc);
    border-radius: 0 20px 20px 0;
    padding: 12px;
    text-align: center;
}

header .reservation a{
    color: #fff;
    font-size: 1.2rem;
}

/* ハンバーガーメニュー */

.header_rgors{
    width: 232px;
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: left;
    padding-left: 38px;
    margin-left: 20px;

    position: fixed;
    z-index: 5;
    top: 44px;
    /* background-color: #0693e3; */
}

.header_rgo h1{
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
}

.hamburger{
    display: none;
    
}

.hamburger .header_color{
    background-color: #ffffff;
    box-shadow: 0 2px 4px 2px rgba(51, 51, 51, .05);
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 70px;
    top: 30px;
    border-radius: 25px;

}

/* ナビの背景を前面に出す */
.drawer--right.drawer-open .drawer-nav{
    width: 100%;
  }
  /* ナビの背景色 */
.drawer-nav {
    background: #FDFAF8;
  }


  .drawer-nav{
    z-index: 3;
  }

  /* ボタンの大きさと位置 */
  .drawer-hamburger{
    padding-right: 16px;
    padding-top: 53px;
    width: 40px;
    right: 0 !important;    
  }

  /* ボタンの色と幅 */
  .drawer-hamburger-icon
  ,.drawer-hamburger-icon:after
  ,.drawer-hamburger-icon:before{
    background-color: #1BA1E6;
    height: 2px;
  }

  /* ハンバーガーメニューの中身 */
.drawer-nav .drawer-menu{
    margin-top: 128px;
    margin-left: 20px;
    margin-right: 20px;
}

.drawer-nav .drawer-menu .js_reservation{
    background: linear-gradient(180deg, rgba(27, 161, 230, 1) 0%, rgba(54, 179, 243, 1) 50%, rgba(81, 196, 255, 1) 100%);
    border-radius: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.13em;
    line-height: 3;

    margin-bottom: 32px;
}

.drawer-nav .drawer-menu .js_reservation span.js_r_img{
    background-image: url(../images/karend.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 50%;
    padding-left: 40px;
    text-align: center;
 
}

.drawer-nav .drawer-menu .js_reservation span.js_booking{
    display: block;
    font-size: 1.6rem;
}
.drawer-nav .drawer-menu .js_reservation span.js_booking .en{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
    display: inline-block;
    margin-right: 4px;
}

.drawer-nav .drawer-menu .js_list_m{
    font-size: 1.6rem;
    color: #1BA1E6;
    border-bottom: 1px solid #1BA1E6;
    margin-bottom: 16px;
    margin-top: 24px;
}

.drawer-nav .drawer-menu ul li a{
    color: #1BA1E6;
    font-size: 1.4rem;
    line-height: 1.5;
    text-indent: 16px;
}

/* スクロール表示 */
.drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .drawer--left.drawer-open .drawer-nav,
  .drawer--left .drawer-hamburger,
  .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav{
    height: 100%;}


/* ここからフッター */
footer .footer_color{
    background-color: #E1EDF0;
    padding-top: 100px;
    padding-bottom: 64px;
}

footer .footer_color .footer_flex{
    max-width: 1080px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
}


footer .footer_color .footer_flex .footertop{
    width: 375px;
}

iframe{
    width: calc(100% - 400px);
    border-radius: 20px;
}

.catchfooter{
     width: 375px;
    background-image: url(../images/icon.png);
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: left;
    padding-left: 58px;

    margin-bottom: 64px;
}

footer .footer_color .footer_flex address{
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

footer .footertime{
    width: 232px;
    
background-color: rgba(255, 255, 255, 0.616);
border-radius: 10px;
padding: 8px;
padding-bottom: 16px;
text-align: center;
}

footer .footer_color .footer_flex table{
    font-size: 1.6rem;
    margin: 0 auto;
    margin-bottom: 16px;

}
.catchfooter p{
    font-size: 1.7rem;
}

.catchfooter h2.footer{
    font-size: 2.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

footer .footer_color .holiday{
    background-color: #3498db;
    color: white;
    font-size: 1.4rem;
    padding: 5px 10px;
    border-radius: 30px;
}


footer .footer_color .noholidays{
margin-left: 8px;
font-size: 1.6rem;
}

footer .footernav_color{
    background-color: #0E73BD;
    padding-top: 32px;
    padding-bottom: 32px;

    /* display: flex; */
}

footer .footernav_color nav{
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    font-size: 1.8rem;
}

footer .footernav_color nav p{
    color: #fff;
    margin-bottom: 8px;
    /* border-bottom: 1px solid #fff; */
}

footer .footernav_color nav li a{
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
}

footer small{
    display: block;
    line-height: 3;
    text-align: center;
    color: #ffffff;
    font-size: 1.4rem;
    background-color: #1BA1E6;
}
footer .map img{
    vertical-align: bottom;
}

/* ここからindex */
.top_v{
    background-image: url(../images/fairsst.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 650px;

    margin-bottom: 34px;

    position: relative;
}

.top_v .top_v_copy{
    position: absolute;
    top: 60%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;

    background: rgb(27,161,230);
background: linear-gradient(124deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
    font-size: 3.6rem;
    line-height: 1.3;
}

.top_v .top_v_copy span{
    display: block;
}

.top_v .teble_container{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 32px;
    width: 226px;

    position: absolute;
    top: 50%;
    right: 5%;
}

.teble_container table {
    /* width: 100%; */
    border-collapse: collapse;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.teble_container td {
    /* text-align: center; */
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

.teble_container .holiday_1{
    display: flex;
    font-size: 1.4rem;
    align-items: baseline;
}
.teble_container .holiday {
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 10px;
}
.teble_container .no-holidays {
    /* text-align: center; */
    font-size: 1.4rem;
    padding-left: 16px;
}

.top_v .mask{
    display: inline;
    /* line-height: 6; */
    padding: 5px 10px;
    background-color: #f18080;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1.3px;

    position: absolute;
    top: 85%;
    right: 5%;
}

.point1{
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-bottom: 120px;
}

.point1 li .contntpoint{
    width: 320px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fef7f2;
    text-align: center;
    /* border-top: 6px solid #b6cee1; */
    background-color: #fff;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    border-radius: 0px 0px 10px 10px;
}

.point1 li .contntpoint p{
    font-size: 1.3rem;
}

.point1 li  .contntpoint .catchcopy1{
    color: #1BA1E6;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 2;
    
}

.point1 li .divpoint{
    color: #fff;
    font-size: 2rem;
    padding: 3px 10px;
    letter-spacing: 0.12em;
    background: rgb(27,161,230);
background: linear-gradient(124deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
    width: 30%;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
}

.procedures{
    max-width: 960px;
    margin: 0 auto;
}

/* h2共通 */
.sinndan {
    position: relative;
    font-weight: bold;
    text-align: center;

    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 80px;
  }
  
  .sinndan::before,
  .sinndan::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    background: rgb(27,161,230);
    background: linear-gradient(180deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
  }
  
  .sinndan::before {
    top: -50px;
    width: 4px;
    height: 32px;
  }
  
  .sinndan::after {
    bottom: -20px;
    width: 32px;
  }

  /* h2個別 */


.procedures .internal{
    background-color: #E1EDF0;
    border-radius: 20px;

    margin-bottom: 60px;
}

.procedures .internal .internal_2{
    max-width: 768px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
    /* text-align: center; */

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;


    /* background-image: url(../images/syoujou1.png);
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.562); */
    position: relative;
    z-index: 2;
}

.procedures .internal .internal_2::after{
    position: absolute;
    content: url(../images/syoujou1.png);
    display: inline-block;
    opacity: 0.3;
    right: 20px;
    z-index: 1;
}
.procedures .internal .internal_2 h3{
    font-size: 2rem;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: #1BA1E6;
    margin-bottom: 32px;
}

.procedures .internal .internal_2 .internal_symptoms{
    max-width: 420px;
    text-align: justify;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

/* .bottom a{
    display: grid;
    place-content: center;
} */

.bottom a{
    display: inline-block;
    /* position: relative; */
    min-width: 180px;
    padding: 12px 20px;
    border-radius: 100vh;
    background-color: #fff;
    box-shadow: 4px 4px 10px rgba(133, 152, 160, .24), -1px -2px 8px rgba(231, 245, 251, .3), inset 10px 10px 30px transparent, inset -10px -10px 30px transparent;
    color: #1ba1e6;
    font-size: 1.6rem;
    text-align: center;
    transition: all .3s cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1);

    /* background-image: url(../images/yajirusi.png);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: right; */
}

.bottom a span{
    padding-left: 10px;
    text-align: center;
    
}

.procedures .internal .internal_2 .reservation{
    display: grid;
    place-content: center;
    z-index: 4;
}

.procedures .internal .internal_2 .reservation a{

    width: 250px;
    /* height: 126px; */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);

    font-size: 2rem;
    font-weight: 500;
    color: #1BA1E6;
    padding: 48px 32px;
    text-align: center;
    letter-spacing: 0.01em;

    /* position: relative;
    z-index: 2; */

    background-image: url(../images/karennda.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.procedures .internal .internal_2 p.internal_bottom a{
    width: 250px;
}

/* .procedures .internal .internal_2 .reservation a::before{
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 81px;
    background-image: url(../images/karennda.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin: auto 0;
    z-index: 0;
} */

/* 共通h3 */
.template{
    font-size: 2rem;
    font-weight: 500;
    color: #1BA1E6;
}

.medicalsubjects{
    margin-bottom: 179px;
}

.medicalsubjects .other{
    text-align: center;
    margin-bottom: 24px;
}

.medicalsubjects .other_mother{
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */

}


.medicalsubjects .other_mother li{
    width: 305px;
    /* width: calc(100% / 3); */
    
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.medicalsubjects .other_mother li p{
    font-size: 1.7rem;
    letter-spacing: 0.15em;
    padding-top: 16px;
    color: #1BA1E6;
}

.symptoms{
    max-width: 1080px;
    margin: 0 auto;

        margin-bottom: 179px;
}

.symptoms ul.item{
    display: flex;
    justify-content: space-between;
    align-items: center;   
    margin-bottom: 32px; 
}

.symptoms ul.item li{
    width: calc(100% / 3);
    text-align: center;
}

.symptoms ul.item li.item_1{
    border-bottom: 1px solid #1ba1e6;
}

.symptoms ul.item li.item_2{
    border-bottom: 1px solid #DD9966;
}

.symptoms ul.item li.item_3{
    border-bottom: 1px solid #2AA554;
}

.symptoms ul.item li.item_1 .symptomscolor1{
    color: #1ba1e6;
}

.symptoms ul.item li.item_2 .symptomscolor2{
    color: #DD9966;
}

.symptoms ul.item li.item_3 .symptomscolor3{
    color: #2AA554;
}

.symptoms ul.item p{
    margin-bottom: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
}
.symptoms ul.item p.symptomsicon{
    margin-bottom: 8px;
}

.symptoms ul.item li .adjustment img{
    height: 40px;
    width: auto;
}

/* 画像の縦横比の一括制御 */
.symptomscontent li img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.symptomscontent{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    
    margin-bottom: 64px;
}

.symptomscontent li a{
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4); */
    border-radius: 20px;
    line-height: 2;
    letter-spacing: 0.12em;
    font-size: 1.6rem;
}

.symptomscontent li.symptomscontent_internal a{
    color: #1BA1E6;
    border-top: 25px solid #1BA1E6;
}

.symptomscontent li.symptomscontent_pediatrics a{
    color: #DD9966;
    border-top: 25px solid #DD9966;
}

.symptomscontent li.symptomscontent_fever a{
    color: #2AA554;
    border-top: 25px solid #2AA554;
}

.centerbottom{
    text-align: center;
}

/* ここからお知らせ */
.notification{
    max-width: 768px;
    margin: 0 auto;

    margin-bottom: 128px;
}
/* お知らせh2 */

.detail {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 80px;
  }
  
  .detail::before,
  .detail::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    background: rgb(27,161,230);
    background: linear-gradient(180deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
  }
  
  .detail::before {
    top: -50px;
    width: 4px;
    height: 32px;
  }
  
  .detail::after {
    bottom: -20px;
    width: 32px;
  }

  .notification dl .info{
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 5px;
    line-height: 1.5;

    background-image: url(../images/yajirusi.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 20px;
  }

  .notification dl .info dd{
    font-size: 1.6rem;
    color: #8598A0;
  }

  .notification dl .info dt{
    width: 12em;
    font-size: 1.6rem;
    padding-left: 1em;
  }

  .notification .info_flex{
    display: flex;
    justify-content: space-between;
  }

 .warning_notice{
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-bottom: 179px;
 }

 .warning_notice section{
    width: calc((100% / 2) - 64px);
    min-width: 320px;
    background-color: #E1EDF0;
    border-radius: 20px;
 }

 .warning_notice .attention img{
    width: 40px;
 }

 .warning_notice section h3
 ,.warning_notice section .attention{
    text-align: center;
    padding-top: 20px;
 }

 .warning_notice section h3{
    padding-bottom: 20px;
 }

 .warning_notice section p{
    padding-left: 40px;
    padding-right: 40px;

    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: justify;
 }

 .warning_notice section p.subattention{
    padding-top: 12px;
    padding-bottom: 20px;
 }

 .warning_notice section p.subattention span{
    color: #FF4C57;
    font-weight: 500;
 }

 .warning_notice section p.subattention span.sub{
    color: #1BA1E6;
 }


 .congestion{
    max-width: 960px;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 20px;
    background-color: #E1EDF0;
    margin-bottom: 32px;
 }
 
 .congestion .chart{
    max-width: 768px;
    margin: 0 auto;
 }

 .congestion .chart table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1.6rem;

    
}
.congestion .chart th, td {
    /* border: 1px solid #ddd; */
    border-bottom: 1px solid #CCD9DE;
    padding: 8px;
    text-align: center;
}

.estimated_crowding .circle {
    height: 20px;
    width: 20px;
    display: inline-block;
    border-radius: 50%;
}
.estimated_crowding .red {
    background-color: #e57373;
}
.estimated_crowding .blue {
    background-color: #64b5f6;
}
.estimated_crowding .green {
    background-color: #81c784;
}

.estimated_crowding .detail_chart{
    max-width: 768px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.estimated_crowding .detail_chart p{
    line-height: 2;
    font-size: 1.6rem;
}
.estimated_crowding .detail_chart p span{
    margin-right: 8px;
}

.estimated_crowding .detail_chart .prevention{
    padding-top: 4px;
    letter-spacing: 0.11em;
}

.estimated_crowding .detail_chart .prevention span{
    color: #1BA1E6;
    font-weight: 500;
}

.estimated_crowding .detail_chart .reservation{
    display: grid;
    place-content: bottom;
}

.estimated_crowding .detail_chart .reservation a{
    width: 250px;
    /* height: 126px; */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);

    font-size: 2rem;
    font-weight: 500;
    color: #1BA1E6;
    padding: 48px 32px;
    text-align: center;
    letter-spacing: 0.01em;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.85);

   
    background-image: url(../images/karennda.png);
    background-repeat: no-repeat;
    background-size: contain;
    
}
.estimated_crowding{
    margin-bottom: 179px;
}

/* ここから選ばれる理由 */

.reason_chosen{
    padding-top: 128px;
    background-color: #E1EDF0;
    padding-bottom: 128px;

    margin-bottom: 179px;
}

.reason_chosen .feature{
    max-width: 1200px;
    margin: 0 auto;

    margin-bottom: 64px;
}

.reason_chosen .feature li{
    margin-top: 128px;
}

.reason_chosen .feature .flex_chosen{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    /* flex-wrap: wrap-reverse; */
}

.reason_chosen .feature .flex_chosen .feature_flex_2{
    position: relative;
}

.reason_chosen .feature p img{
    border-radius: 20px;
    width: 580px;
    min-width: 300px;
    height: 470px;
    object-fit: cover;
}

.reason_chosen .feature .feature_flex_2 .reposition{
    text-align: right;
}

.reason_chosen .feature .flex_chosen .feature_flex_2 div{
    position: absolute;
    top: 35%;
    right: -9%;

    /* display: block;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 1.5;
    color: #fff;
    width: 100%;
    height: 100%; */

    width: 100px;
    height: 100px;
    background: rgb(27,161,230);
    background: linear-gradient(180deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
    border-radius: 50%;
    
    text-align: center;
    padding-top: 38px;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.reason_chosen .feature .feature_flex{
    display: grid;
    place-content: center;

    width: 475px;
    min-width: 300px;
}

.reason_chosen .feature .feature3{
    font-size: 3rem;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
}

.reason_chosen .feature p{
    font-size: 1.8rem;
    text-align: justify;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.reason_chosen .feature .flex_chosen_other{
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap-reverse; */
}

.reason_chosen .feature .flex_chosen_other .feature_flex_2{
    position: relative;}

.reason_chosen .feature .flex_chosen_other .feature_flex_2 div{
    position: absolute;
    top: 35%;
    left: -9%;
    width: 100px;
    height: 100px;
    background: rgb(27,161,230);
    background: linear-gradient(180deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
    border-radius: 50%;
    
    text-align: center;
    padding-top: 38px;
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.reason_chosen .feature .afterone{
    position: relative;
    
}

/* .reason_chosen .feature .afterone::after{
    content: 'FEATURE 01';
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    text-align: right;
    font-size: 11rem;
    color:rgba(255, 255, 255, 0.63);
    font-weight: 300;
} */
.director{
    max-width: 1080px;
    margin: 0 auto;

    margin-bottom: 128px;
}

.director .word_photo{
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    gap: 16px;

    margin-bottom: 64px;
}

.director .word_photo .word{
   

}

.director .word_photo .photo{
    display: grid;
    place-content: end;
    width: 600px;
    /* width: calc(100% - 620px); */
}

.director .word_photo .photo img{
    border-radius: 20px;
}

.director .word_photo .photo .doctorname{
    color: #1BA1E6;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2;
}
.director .word_photo .photo .doctorname2{
    color: #1BA1E6;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}
.director .hukidasi{
    margin-bottom: 24px;
}

.director .hukidasi img{
    width: 600px;
    height: auto;
    
}

.director .greeting{
    max-width: 560px;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: justify;
    text-indent: 16px;
}

.director .greeting_res{
    display: none;
}

.helpful{
    padding-top: 80px;
    
    background-image: url(../images/help.jpg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;

    padding-bottom: 80px;
    margin-bottom: 64px;
}


.helpful .infosp{
    /* color: #fff; */
}

.helpful .helpful_content{
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    max-width: 480px;
    padding: 32px;
    margin: 0 auto;
    text-align: center;

    margin-bottom: 32px;
}

.helpful .helpful_content h3{
    color: #1BA1E6;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}
.helpful .helpful_content p{
    font-size: 1.6rem;
    text-align: justify;
    letter-spacing: 0.12em;
    line-height: 1.5;
}

/* ここから初診の方へ */
.first_examination h2.top_two{
    height: 550px;
    padding-left: 32px;
    padding-top: 450px;
    color: #fff;
    font-size: 4.8rem;
    text-shadow: 2px 3px 3px rgba(174, 174, 174, 0.56);
    font-weight: 700;
    letter-spacing: 0.15em;

    background-image: url(../images/topve.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    margin-bottom: 32px;
}

.first_examination .mokuji{
    max-width: 1200px;
    margin: 0 auto;
}

.first_examination .mokuji ul.mokuji_k{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.first_examination .mokuji ul.mokuji_k li{
    width: calc(100% / 6);
border-bottom: 1px solid #ccd9de;
    text-align: center;
}

.first_examination .mokuji ul.mokuji_k li p{
    margin-bottom: 12px;
    color: #2B3038;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
}

.first_examination .mokuji ul li img{
    object-fit: contain;
    width: 60px;
    height: 60px;
}

.hellobox{
    max-width: 1080px;
    margin: 0 auto;
    background-color: #E1EDF0;
    border-radius: 20px;
}

.hellobox .hello{
    max-width: 992px;
    margin: 0 auto;
    padding: 60px 16px;

    margin-bottom: 179px;
}

.hellobox .hello .hello_flex{
    display: flex;
    justify-content: space-between;
}

.hellobox .hello .hello_flex .firstcatch{
    width: calc(100% - 409px);
    /* px指定 */
}

.hellobox .hello .hello_flex .firstcatch h2{
    max-width: 426px;
    font-size: 3rem;
    line-height: 1.3;
    letter-spacing: 0.15em;
    background: linear-gradient(180deg, rgba(27,161,230,1) 0%, rgba(54,179,243,1) 50%, rgba(81,196,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin-bottom: 32px;
}

.hellobox .hello .hello_flex .firstcatch p{
    text-align: justify;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.hellobox .hello .hello_flex .firstcatch_img{
    width: 335px; /* px指定 */
    display: grid;
    place-content: center;
}

.hellobox .hello .hello_flex .firstcatch_img img{
    border-radius: 20px;
    margin-bottom: 16px;
}

.hellobox .hello .hello_flex .firstcatch_img p{
    font-size: 1.6rem;
    color: #1BA1E6;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.hellobox .hello .hello_flex .firstcatch_img p.name{
    font-size: 2.4rem;
}

.hellobox .hello .booking{
    background: #59a2e0;
    background: linear-gradient(to top, #0693e3, #8ed1fc);
    max-width: 335px;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    padding: 12px;
}

.hellobox .hello .booking a{ 
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    padding-left: 60px;
    text-align: center;
    letter-spacing: 0.01em;
    background-image: url(../images/karend.svg);
    background-repeat: no-repeat;
    background-size: 54px;
    background-position: 9px;
}

.hellobox .hello .booking a span{
    display: block;
    font-size: 1.6rem;
}

.medicalhours{
margin-bottom: 128px;
}

.medicalhours .night_flex{
 
    background-color: #F8F8F8;
    border: 1px solid #1BA1E6;
    border-radius: 20px;

    max-width: 768px;
    margin: 0 auto;
    padding: 40px 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.medicalhours .night_flex .night{
    width: 335px;
}

.medicalhours .night_flex .night h3{
    font-size: 2.4rem;
    font-weight: 700;
    color: #1BA1E6;
    letter-spacing: 0.18em;

    margin-bottom: 24px;
}

.medicalhours .night_flex .night p{
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.8;
}

.medicalhours .night_flex .night span{
    font-weight: 500;
    color: #1BA1E6;
    font-size: 1.6rem;
}

.medicalhours .night_flex .teble_container{
    width: 335px;
    background-color: #fff;
    border-radius: 20px;
    padding: 16px 40px;
    /* margin: 0 auto; */
    text-align: center;
}

.medicalhours .night_flex .teble_container table {
    width: 100%;
    border-collapse: collapse;
    /* margin-bottom: 20px; */
}

.medicalhours .night_flex .teble_container table td {
    padding: 10px;
    border-bottom: 1px solid #1BA1E6;
}

.medicalhours .night_flex .teble_container table td[colspan="2"] {
    /* font-weight: bold;
    font-size: 16px;
    border-bottom: none; */
    padding-bottom: 12px;
    text-align: left;
    padding-left: 28px;
}

.medicalhours .holiday_1{
    font-size: 1.6rem;
    align-items: baseline;
    padding-left: 12px;
    
}

.accessfirst{
    background-color: #E1EDF0;
    padding-top: 179px;
    padding-bottom: 120px;
    margin-bottom: 179px;
}

.accessfirst .access_flex{
    max-width: 960px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    column-gap: 12px;
}

.accessfirst .access_flex .access_map{
    width: 500px;
    height: auto;
}

.accessfirst .access_flex address{
    width: calc(100% - 564px);
    min-width: 300px;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.accessfirst .access_flex address .boderleft{
    font-size: 2.4rem;
    letter-spacing: 0.18em;
    line-height: 1.22;
    padding-left: 16px;
    border-left: solid 4px #1BA1E6;

    margin-top: 32px;
    margin-bottom: 16px;
}

.belongings .txst{
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: 0.15em;

    margin-bottom: 64px;
}

.belongings .necessities{
    max-width: 1080px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    text-align: center;

    margin-bottom: 179px;
}

.belongings .necessities li{
    background-color: #F8F8F8;
    border: 1px solid #1BA1E6;
    padding: 30px;
    text-align: center;
    /* box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3); */
    /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4); */
    border-radius: 20px;
    line-height: 2;
    letter-spacing: 0.12em;
    font-size: 1.6rem;
    font-size: 2rem;
}

.belongings .necessities li .small{
    font-size: 1.4rem;
}

.interview{
    max-width: 768px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-bottom: 179px;
}

.interview .questionnaire{
    width: 335px;
}

.interview .questionnaire p{
    background: #59a2e0;
    background: linear-gradient(to top, #0693e3, #8ed1fc);
    width: 335px;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    padding: 12px;}

.interview .questionnaire p a{
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    padding-left: 60px;
    text-align: center;
    letter-spacing: 0.01em;
    background-image: url(../images/chackison.svg);
    background-repeat: no-repeat;
    background-size: 54px;
    background-position: 9px;}

.interview .questionnaire p a span{
    display: block;
    font-size: 1.4rem;
}

.interview .first_content{
    width: 300px;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.8;

    /* display: grid; */
    place-content: end;
}

.interview .first_content span{
    font-weight: 500;
    color: #1BA1E6;
    font-size: 1.6rem;
    /* display: inline; */
}

.consultation{

    background-color: #E1EDF0;
    padding-top: 179px;
    padding-bottom: 128px;
}

.consultation .checkup{
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.consultation .checkup li{
    background-color: #fff;
    border: 5px solid #1BA1E6;
    border-radius: 10px;
    margin-bottom: 35px;
    padding: 1.5rem 2.5rem 1.5rem;
    position: relative;
}

.consultation .checkup li.abs::after{
    bottom: -25px;
    color: #1BA1E6;
    content: "▼";
    font-size: 24px;
    left: 48%;
    position: absolute;
}

.consultation .checkup li .math{
    font-size: 3rem;
    font-weight: 700;
    color: #1BA1E6;
    padding-right: 16px;
}

.consultation .checkup h3{
    font-size: 2.4rem;
    letter-spacing: 0.13em;
    font-weight: 400;
    margin: 0 0 1em;
    
    display: flex;
    align-items: center;
}

.consultation .checkup li p{
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
    margin: 0 0 1em;
}

.syosin .secondcolor{
    padding-top: 179px;
    background-color: #fff;
    margin-bottom: 0px;
}

/* ここから予防接種 */

.vaccination .immunization h2{
    height: 550px;
    padding-left: 32px;
    padding-top: 450px;
    color: #fff;
    font-size: 4.8rem;
    text-shadow: 2px 3px 3px rgba(174, 174, 174, 0.56);
    font-weight: 700;
    letter-spacing: 0.15em;

    background-image: url(../images/topve.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    margin-bottom: 32px;
}

.vaccination .immunization .color_div{
    max-width: 960px;
    margin: 0 auto;
    background-color: #E1EDF0; 
    padding: 40px 0;
    border-radius: 20px;
    margin-bottom: 64px;
}

.vaccination .immunization .jab{
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    
}

.vaccination .immunization .jab h3{
    color: #1BA1E6;
    font-size: 2.4rem;
    letter-spacing: 0.15em;
}

.vaccination .immunization .jab .txst{
    font-size: 1.6rem;
    width: 335px;
    line-height: 1.8;
    text-align: justify;
}

.vaccination .immunization .booking{
    background: #59a2e0;
    background: linear-gradient(to top, #0693e3, #8ed1fc);
   width: 335px;
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(133, 152, 160, .3);
    padding: 12px;

    margin-top: 30px;
}

.vaccination .immunization .booking a{ 
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    padding-left: 60px;
    text-align: center;
    letter-spacing: 0.01em;
    background-image: url(../images/karend.svg);
    background-repeat: no-repeat;
    background-size: 54px;
    background-position: 9px;
}
.vaccination .immunization .booking a span{
    display: block;
    font-size: 1.6rem;
}

.vaccination .immunization .color_shot{
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 0;

    background-image: linear-gradient(0deg, rgba(87, 184, 224, 1), rgba(0, 150, 211, 1) 90%);
    border-radius: 20px;

    margin-bottom: 179px;
}

.vaccination .immunization .color_shot .shot{
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.vaccination .immunization .color_shot .shot div img{
    width: 200px;
    height: auto;

}

.vaccination .immunization .color_shot .shot div{
    text-align: center;

    margin-bottom: 32px;
}

.vaccination .immunization .color_shot .shot h3{
    color: #fff;
    font-size: 2.4rem;
    /* letter-spacing: 0.1em; */
    font-weight: 500;

    margin-bottom: 32px;
}

.vaccination .immunization .color_shot .shot p.rmaind{
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.8;

    margin-bottom: 32px;
}

.purpose .purpose_flex{
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

    margin-bottom: 179px;
}

.purpose .purpose_flex p{
    width: 335px;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: justify;
}

.purpose .purpose_flex p span{
    color: #1BA1E6;
    font-weight: 700;
}

.purpose .purpose_flex .family img{
    width: 335px;
    height: auto;
}

.possible{
    margin-bottom: 179px;
}

.possible .possible_ul{
    max-width: 768px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-bottom: 64px;
}

.possible .possible_ul li{
    background-color: #F8F8F8;
    border: 1px solid #1BA1E6;
    border-radius: 20px;


}

.possible .possible_ul li a{
    font-size: 1.6rem;
    color: #2B3038;
    text-align: center;

    padding: 30px 20px;
}

.inoculation{
    max-width: 960px;
    margin: 0 auto;
}

.inoculation .variety li{
    background-color: #F8F8F8;
    border: 1px solid #1BA1E6;
    border-radius: 20px;
    
    margin-bottom: 64px;
}

.inoculation .variety li section{
    max-width: 768px;
    margin: 0 auto;

    padding-top: 32px;
    padding-bottom: 32px;
}

.inoculation .variety li section h3{
    font-size: 2rem;
    letter-spacing: 0.18em;
    font-weight: 400;
    line-height: 1.22;
    padding-left: 16px;
    border-left: solid 4px #1BA1E6;
    margin-top: 32px;
    margin-bottom: 16px;
}

.inoculation .variety li section p.fee{
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.inoculation .variety li section p.fee span{
    color: #1BA1E6;
    margin-right: 24px;
}

.inoculation .variety li section p.text{
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 1.5px;
    text-align: justify;

    margin-bottom: 24px;
}

.js-fadeUp {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(20px); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
    /* transition: opacity 1s,visibility 1s, transform 1s; */
  }
  /* フェードイン(スクロールした後) */
  .js-fadeUp.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0); /* 30px上に移動する */
    transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
  }

@media screen and (max-width: 1128px) {
    

    /* 選ばれる理由 */
    .reason_chosen .feature .flex_chosen .feature_flex_2 div{
        top: 80%;
        right: 0%;
    }

    .reason_chosen .feature .flex_chosen{
        padding: 0 20px;
    }

    .reason_chosen .feature p img{
        width: 84%;
    }

    .reason_chosen .feature .flex_chosen_other{
        padding: 0 20px; 
    }

    .reason_chosen .feature .flex_chosen_other .feature_flex_2 div{
        top: 80%;
        left: 0%;
    }
}

@media screen and (max-width: 1024px) {
    /* ハンバーガーメニュー */
    header.global .gronav{
        display: none;
    }

    .hamburger{
        display: block;
    }

    /* point */
    .point1{
        flex-wrap: wrap;
        justify-content: space-around;
        row-gap: 24px;
    }

    /* その他の診療科目 */
    .medicalsubjects .other_mother{
        column-gap: 16px;
    }

    /* あなたの症状は */
    .symptomscontent{
        padding: 0 20px;
    }

    /* 注意事項 */
    .warning_notice section{
        width: calc((100% / 2) - 24px);
    }

    /* お知らせ */
    .notification{
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 初診の方へ */
    .interview{
        column-gap: 12px;
    }

    /* 予防接種 */
    .vaccination .immunization .jab{
        padding-right: 20px;
        padding-left: 20px;
        column-gap: 12px;
    }

    .vaccination .immunization .color_shot .shot{
        padding-right: 20px;
        padding-left: 20px;
    }

    .purpose .purpose_flex{
        padding-right: 20px;
        padding-left: 20px;
        column-gap: 12px;
    }

    .variety ul
    ,.variety ul li{
        padding-right: 20px;
        padding-left: 20px;
    }
}


@media screen and (max-width: 768px) {
    /* 選ばれる理由 */
    .reason_chosen .feature p img{
        width: 100%;
    }

    .reason_chosen .feature .flex_chosen_other{
        flex-wrap: wrap-reverse;
    }

    .reason_chosen .feature .flex_chosen{
        flex-wrap: wrap-reverse;
    }

    .reason_chosen .feature .feature3{
        font-size: 2rem;
        margin-top: 16px;
    }

    .reason_chosen .feature p{
        font-size: 1.6rem;
    }

    .reason_chosen .feature li{
        margin-top: 80px;
    }

    /* キービジュアル */
    .top_v .top_v_copy{
        top: 45%;
        font-size: 2.6rem;
    }

    /* h2 */
    .sinndan{
        font-size: 2.4rem;
    }

    .procedures .internal .internal_2{
        row-gap: 16px;
    }

    /* その他の診療科目 */
    .medicalsubjects .other_mother{
        flex-wrap: wrap;
        row-gap: 16px;
        justify-content: space-around;
    }

    /* あなたの症状は */
    .symptomscontent{
        grid-template-columns :repeat(auto-fit, minmax(200px, 1fr))
    }

    /* 注意事項 */
    .warning_notice{
        justify-content: space-around;
        row-gap: 24px;
    }

    .warning_notice section{
        width: 90%;
    }

    /* 混雑状況目安 */
    .congestion{
        /* margin-right: 20px; */
        /* margin-left: 20px; */
    }

    .congestion .chart{
        width: fit-content;
    }

    .estimated_crowding .detail_chart{
        justify-content: center;
        gap: 16px;
    }

    /* 院長挨拶 */
    .director .word_photo{
        flex-wrap: wrap-reverse;
        gap: 16px;
    }

    .director .word_photo .word{
        margin: 0 auto;
    }

    .director .word_photo .photo img{
        width: 100%;
    }

    .director .word_photo .photo{
        display: block;
        width: 100%;
    }

    /* 初診の方へ */
    .first_examination .mokuji ul.mokuji_k li{
        min-width: 110px;
    }

    .first_examination .mokuji ul.mokuji_k{
        justify-content: space-evenly;
        row-gap: 16px;
    }

    .hellobox .hello .hello_flex{
        display: block;
    }

    .hellobox .hello .hello_flex .firstcatch{
        width: auto;
        margin-bottom: 32px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .hellobox .hello .hello_flex .firstcatch_img{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hellobox .hello .hello_flex .firstcatch_img img{
        width: 100%;
    }

    .hellobox .hello .hello_flex .firstcatch h2{
        font-size: 2.8rem;
    }

    .hellobox .hello .hello_flex .firstcatch_img p{
        text-align: left;
        padding-left: 8px;
        padding-right: 8px;
    }

    .hellobox .hello .booking{
        margin-right: auto;
        margin-left: auto;
        margin-top: 40px;
    }

    .medicalhours .night_flex{
        justify-content: center;
        row-gap: 32px;
    }

    /* アクセス */
    .accessfirst .access_flex{
        display: block;
    }

    .accessfirst .access_flex .access_map{
        width: 100%;
    }

    .accessfirst .access_flex address{
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    /* 持ち物 */
   .belongings{
    padding: 0 20px;
   }

   .detail{
    text-align: center;
    display: block;
   }

   .interview{
    justify-content: center;
    row-gap: 32px;
    
   }

    /* footer */
    footer .footernav_color{
        display: none;
    }

    footer .footer_color .footer_flex{
        justify-content: center;
        flex-wrap: wrap;
    }

    footer .footer_color .footer_flex .footertop{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        margin-bottom: 24px;
    }

    footer .footer_color{
        padding-bottom: 0px;
        vertical-align: bottom;
    }
    
    /* 予防接種 */
    .vaccination .immunization .jab{
        justify-content: center;
        flex-wrap: wrap;
    }

    .web_re{
        margin-bottom: 30px;
    }

    .purpose .purpose_flex{
        flex-wrap: wrap-reverse;
        justify-content: center;
    }

    .purpose .purpose_flex p{
        margin-top: 30px;
    }

    .possible .possible_ul{
        padding: 0 20px;
    }
}


@media screen and (max-width: 450px) {
    .top_v .top_v_copy{
        top: 21%;
        font-size: 2rem;
    }

    .top_v .mask{
        right: 0%;
    }

    .drawer-hamburger{
        width: 28px;
    }

    /* あなたの症状は */
    .symptomscontent{
        grid-template-columns :repeat(auto-fit, minmax(150px, 1fr))
    }

    /* 初診の方へ */
    .first_examination .mokuji ul.mokuji_k li{
        width: 50%;
     }

    .hellobox .hello .hello_flex .firstcatch_img{
        width: 100%;
    }

    .hellobox .hello .hello_flex .firstcatch h2{
        font-size: 2.4rem;
    }

    .belongings .necessities{
        grid-template-columns :repeat(auto-fit, minmax(150px, 1fr))
    }

    .director .hukidasi img{
        display: none;
    }

    .director .greeting
    ,.director .word_photo .photo{
        padding-left: 20px;
        padding-right: 20px;
    }

    .catchfooter{
        width: 100%;
    }
}

