@charset "utf-8";
/*==========================
common
==========================*/
:root{
    --primary-white:#FFFFFF;
    --primary-gray: #4A4A4A;
    --primary-darkGreen: #466a5a;
    --primary-creem: #efeebd;
    --primary-aquagreen: #74ac9e;
    --primary-pink: #fa8789;
    --contentPadding: 80px 5.3%;
}
html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        "Shippori Mincho";
    font-style: normal;
    font-weight: 400;
    color: var(--primary-gray);
    background-color: #fff;
    line-height: 1.8;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

.topic{
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 3.7rem; 
    text-align: center;
    position: relative;
    z-index: 100;
}
.topic span{
    color: var(--primary-aquagreen);
}

/*===========
inview left
===========*/

.fadeIn_left {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
    z-index: 10;
  }
  .fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
    z-index: 10;
  }
/*===========
inview right
===========*/

.fadeIn_right {
    opacity: 0;
    transform: translate(50%, 0);
    transition: 2s;
  }
  .fadeIn_right.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }
  
  /*===========
  .imgBox
  ===========*/
  body{
    position: relative;
    z-index: -100;
  }

  /* .imgBox, .imgBoxB {
    text-align: center;
    margin: 50px 0;
    position: absolute;
    z-index: 10;
    width: 100%;
  } */
  .imgBox img, .imgBoxB img {
      max-width: 50%;
      height: auto;
      vertical-align: top;
      position: absolute;
      top: 0;
      z-index: 10;
    
  }
  .imgBox img {
    left: 0%;
  }
  .imgBoxB img {
    left: 56%;
  }
  

/*===========
base
===========*/
.imgBoxB  {
    padding: 10px;
    animation: fadeIn 5s ease 1s 1 normal backwards;
  }
   
  /* @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }} */
  
.imgBox {
    padding: 10px;
    animation: fadeIn 5s ease 1s 1 normal backwards;
  }
   
  /* @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  } */
  .imgBox, .imgBoxB{
    padding: 10px;
    opacity: 0;
    transform: translateY(-20px);
    transition: 5s ease;
  }


  @media screen and (min-width:769px){
    .imgBox img, .imgBoxB img  {
        width: 20%;
        top: -100px;
       
    }
    .imgBox img {
        left: 10%;
      }
      .imgBoxB img {
        left: 70%;
      }

  }




/*==========================
header
==========================*/
header{
    position: fixed; /*** ← fixedで固定 ***/
    width: 100vw; 
    height: 80px; 
    box-sizing: border-box;
    background-color: #fff;
    top: 0; 
    left: 0; 
    align-items: center; 
    z-index: 1000;
    margin: 0 auto;
}   

.nav_header {
    padding:0 5.4%;
}
.logo_sp{
    display: block;
    width: 180px;

}
.logo_pc{
    display:none;
}


/* .nav初期表示 */
nav {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 100vh;
    padding: 0 13%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.nav_item {
    font-size: 1.6rem;
    line-height: 2.9rem;
    margin-top: 20px;
}
.nav_list{
    margin-top: 160px;
}
.nav_img {
    position: fixed;
    width: 88px;
    height: 66px;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}
.btnTel_sp{
    display: block;
}
.nav_btn{
    display: block;
    width: 33px;
    height: 29px;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 5.3%;
}
.clickBtn{
    display: block;
    width: 220px;
    margin-top: 30px;
}
.btn{
    display: flex;
    flex-direction: column;
}
.telBox_sp{
    display: flex;
    align-items: baseline;
    margin-top: 35px;
  }
  .telBox_sp p{
    font-size: 1.4rem;
    line-height: 2.8rem;
    margin-right: 5px;
  }
.tel{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 4rem;
    display: block;
}
.telBox_pc, .clickBtn_pc, .nav_item:last-child {
    display: none;
}

/* .nav.active表示 */
nav.active {
    transform: translateX(0);
}

.header_btn {
    display: block;
    width: 38px;
    height: 29px;
    cursor: pointer;
    position: absolute;
    right: 5.3%;
}

/* .header pc */
@media screen and (min-width:769px) {
    header {
        padding: 30px 7% 10px;
        display: flex;
        justify-content: space-between;
        position: fixed; /*** ← fixedで固定 ***/
        width: 100vw; 
        height: 150px; 
        box-sizing: border-box;
        background-color: #fff;
        top: 0; 
        left: 0; 
        align-items: center; 
        z-index: 1000;
    }   
    .logo_pc{
        display:block;
        width: 400px;
    }
    
    
    nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        display: block;
        text-align: end;
        margin: 0;

    }
    .logo_sp, .nav_btn, .nav_img, .btnTel_sp{
        display: none;
    }

    .nav_list ul{
        margin-top: 10px;
        display: flex;
        gap: 30px;
        align-items: center;
    }
    .nav_list{
        margin: 0;
    }

    .nav_item {
        margin-top: 0;
        font-weight: 400;
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .nav_item:last-child{
        display: block;
    }
    .clickBtn_pc{
        display: inline-block;
        width: 197px;
        margin-top: 10px;
        margin-right: 20px;
        
  }

  .telBox_pc{
    display: flex;
    align-items: end;
    justify-content: end;
    margin-top: 10px;
  }
  .telBox_pc p{
    font-size: 1.5rem;
    line-height: 2.9rem;
    margin-right: 7px;
  }
  .tel_pc{
    display: block;
    margin: auto 0;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 4.5rem;
    
  }

    .nav_header {
        display: flex;
        padding: 0;
    }

   .header_btn, .nav_item img {
        display: none;
    }

}/* pc 769px */

/*==========================
main
==========================*/
/* article header */
.mainImg_pc{
    display: none;
}

article{
    padding: 10px 0 20px;
    width: 100%;
    margin: 80px auto 0;
    z-index: 1;
}

.mainTxt{
    background-image: url(../images/mainvisual/tsubame.png),url(../images/mainvisual/yellow&green.png);
    background-size: 60px, 200px;
    background-position: 88% 30px, 90% 170px ;
    background-repeat: no-repeat;
    font-family: "Shippori Mincho";
    font-weight: 500;
    margin: 10px 0 0 12%;
    max-width: 100%;
}
/* .mainTxt_iner{
    display: block;
    width: 300px;
} */

h2{
    font-size: 2.4rem;
    line-height: 3.5rem;
}

.mainTxt p{
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-top: 20px;
}
.mainTxt p:last-child{
    padding-bottom: 85px;
}
.clickBtn{
    display: inline-block;

}
.article_clickBtn img{
    display: block;
    width: 220px;
    margin: 30px auto;
    cursor: pointer;
    position: relative;
    left: 0;
}
 .clickBtn img{
    display: block;
    width: 220px;
    cursor: pointer;
    position: relative;
    left: 0;
}
 .clickBtn_pc img{
    display: block;
    width: 220px;
    margin: 10px auto;
    cursor: pointer;
    position: relative;
    left: 0;
    bottom: 10px;
}
.article_clickBtn img:hover, .clickBtn img:hover, .clickBtn_pc img:hover{
    left: 20px;
    transition: 0.5s;
}


/* fade in */
.logo_fadein{
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1500;
}
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
    font-family: "Shippori Mincho";
    font-size: 3rem;
    line-height: 6rem;
    text-align: initial;
    margin-left: 6%;
    writing-mode: vertical-rl;
}
.logo_fadein img{
    position: fixed;
	left: 20%;
	top: 80%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 120px;
    margin-left: 6%;
}
.logo_fadein.is-active {
    opacity: 0;
    visibility: hidden;
  }
  .logo_fadein p.is-active {
    opacity: 1;
    visibility: visible;
  }




/* article header pc */
@media screen and (min-width:769px) {
    article{
        width: 100%;
    }
    .mainImg_pc {
        padding: 0 7%;
        display: block;
        /* width: 1240px; */
        margin: 0 auto;
    }

    .mainImg_sp {
        display: none;
    }
    .mainTxt{
        text-align: center;
        margin: 60px auto 20px;
        background-size: 106px, 250px;
        background-position: 93% 30px, 5% 170px;
        max-width: 1238px;
        width: 100%;
        
    }
    .mainTxt_iner{
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: inline-block;
        max-width: 1238px;
        margin: 80px auto 0;
    }

    h2, .mainTxt p{
        text-align: initial;
        margin-left: 6%;
        writing-mode: vertical-rl;
    }
    h2{
        font-size: 3.6rem;
        font-weight: 500;
        line-height: 6rem;
    }
    .mainTxt p{
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 5rem;
        padding: 0;
        margin: 0 0 0 80px;
    }
    .mainTxt p:last-child{
        margin-left: 0;
        padding: 0;
    }
.article_clickBtn{
    display: none;
}
/* fade in */
.logo_fadein p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
    font-family: "Shippori Mincho";
    font-size: 5rem;
    line-height: 10rem;
    text-align: initial;
    margin-left: 6%;
    writing-mode: vertical-rl;
}
.logo_fadein img{
    position: fixed;
	left: 30%;
	top: 70%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 200px;
    margin-left: 6%;
}


}/* pc 769px */

/* .about */
.section-about {
    padding: 40px 5.3%;
    position: relative;
}

.about_contents {
    text-align: center;
    
}
.item{
    display: block;
    margin-top: 10px;
}
.item.Title{
    font-size: 1.6rem;
    line-height: 2.9rem; 
    text-align: center;
}

.item.Description{
    font-size: 1.4rem;
    line-height: 2.6rem;
    text-align: left;
}

.scroll-space{
    box-sizing: border-box;
    height: 75px;
    color: #fff;
    overflow: hidden;
    z-index: 999;
}

.birdA{
      margin: 0 50%;
      height: 72px;
      width: 100%;
  }
.birdB{
    margin: 0 30%;
  }
  .scroll-space img{
    width: 72px;
  }
  .fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  
  &.fadein-upA{
      transform: translate(30px,-30px);
  }
  &.fadein-upB{
      transform: translate(-30px,-30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}


/* .about pc */
@media screen and (min-width:769px) {
    .section-about {
        padding: 40px 20px 120px;
        margin: 0 auto;
    }
    .itemImg{
        max-width: 292px;
    }
    
    .about_contents {
        max-width: 948px;
        margin: 50px auto 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }
    .about_contents:nth-child(2){
        flex-direction: row-reverse;
    }
    .aboutTxt {
        display: block;
    }
    .item.Title{
        text-align: left;
        font-size: 2.2rem;
        line-height: 3.7rem; 
        margin: 0;
    }
    .item.Description{
        font-size: 1.6rem;
        line-height:  2.9rem;
        margin-top: 20px;
    }
    .scroll-space{
        height: 90px;
    }
    .scroll-space img {
        width: 87px;
    }
    .birdA{
        margin: 0 60%;
        height: 87px;
        width: 100%;
        margin-top: 10px;
    }
  .birdB{
      margin: 10px 40% 0;
      height: 87px;
    }
    &.fadein-upA{
        transform: translate(40px,-30px);
    }
    &.fadein-upB{
        transform: translate(-40px,-30px);
    }
    
}/* pc 769px */


/* medical care */
    .section-medicalCare {
        display: block;
        padding: 40px 5% 60px ;
        text-align: center;
        z-index: 100;
        width: 100%;
        /* background-image: url(../images/examination/green.png);
        background-repeat: no-repeat;
        background-position: 0 40px;
        background-size: 205px; */
    }

    .examination_contents, .examination_txt{
        font-size: 1.4rem;
        line-height: 2.6rem;
        z-index: 100;
        position: relative;
    }
.examination_contents{
    display: flex;
    max-width: 320px;
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px auto 0;
    align-items: center;
    justify-content: space-around;
    
}
.examination_box{
    width: 145px;
    text-align: left;
}

.examination_txt {
    margin-top: 30px;
}
.examination_txt p{
    margin-top: 30px;
}

/* .care pc */
@media screen and (min-width:769px) {
 .section-medicalCare{
    padding: 85px 20px;
    background-size: 345px;
 }
 .examination_contents, .examination_txt{
     font-size: 1.6rem;
     line-height: 2.9rem;

 }
 .examination_contents{
    flex-wrap: nowrap;
    gap: 100px;
    margin: 50px auto 50px;
    max-width: 878px;
 }
 .section-medicalCare .article_clickBtn{
    display: block;
    margin-top: 80px;
 }
}/* pc 769px */

/* doctor */
.section-doctor{
 padding: var(--contentPadding);
 width: 100%;
 position: relative;
 /* background-image: url(../images/doctor/orange.png);
 background-repeat: no-repeat;
 background-position: 110% 80px;
 background-size: 205px; */
}
h4{
    font-size: 1.8rem;
    line-height: 2.9rem;
    margin-top: 40px;
    text-align: center;
}
.doctorContents{
    z-index: 100;
    position: relative;
}
.doctor_txt{
    font-size: 1.4rem;
    line-height: 3rem;
    margin-top: 30px;
    }
.doctor_txt p{
    margin-bottom: 20px;
}
.doctor_profile{
    display: block;
}
.doctorImg{
    display: block;
    width: 200px;
    margin: 30px auto;
}

.status, .egname{
    font-size: 1.4rem;
    line-height: 2.6rem; 
    text-align: center;
}
.status_box{
    text-align: center;
}
.status{
    display: inline-block;
    width: 210px;
    text-align: left;
}
.name{
    display: flex;
    align-items: baseline;
    margin-top: 10px;
    justify-content: center;
}

.jpname{
    font-size: 2.4rem;
    line-height: 4rem;
    margin-right: 10px;
}

.title{
    font-size: 1.5rem;
    line-height: 2.9rem;
    display: block;
    margin-top: 30px;
}
.title::before{
    content: '';
    display: inline-block;
    background-color: var(--primary-pink);
    height: 15px;
    width: 15px;
    border-radius: 100%;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 10px;
   
}
.career_item{
    display: flex;
    gap: 15px;
}
.detail_career dt, .detail_career dd, .detail_item li{
    font-size: 1.4rem;
    line-height: 2.6rem;
    margin-bottom: 3px;
}
.detail_career{
    margin-top: 10px;
}
.detail_other{
    display: flex;
    margin: 30px auto;
    justify-content:space-around;
}
/* .doctor pc */
@media screen and (min-width:769px){
    .section-doctor{
        padding: 60px 20px 100px;
        width: 100%;
        background-size: 345px;
    }
    h4{
        font-size: 2.2rem;
        line-height: 3.7rem;
        margin: 0 0 25px 0;
        text-align: left;
    }
    .doctor_txt{
        font-size: 1.6rem;
        line-height: 3.5rem;
    }
    .doctorContents{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: flex-start;
        margin: 50px auto 80px;
        max-width: 1020px;
        gap: 55px;
    }
    .detailContents{
        display: flex;
        margin: 0 auto;
        max-width: 1019px;
        gap: 120px;
    }
    
    .detail_other{
        display: block;
        margin: 0;
    }
    .detail_other li, .detail_career dt{
        margin-left: 25px;
    }
.detail{
    max-width: 514px;
}


}/* pc 769px */

/* Access */
.section-access{
    padding: var(--contentPadding);
    /* background-image: url(../images/access/limegreen.png),url(../images/access/toriC.png);
    background-repeat: no-repeat;
    background-position: 0 80px, 80% 97%;
    background-size: 205px, 74px; */
}
.address{
    display: block;
    margin: 40px auto 30px;
    text-align: center;
    z-index: 100;
}
.address p, .reservation p ,.parking_txt{
    font-size: 1.4rem;
    line-height: 2.6rem;
}
.address a{
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 4rem;
    display: block;
}
.telBox{
    display: flex;
    margin: 10px 0 30px;
    align-items: baseline;
    justify-content: center;
    margin-top: 17px;
}

.map {
    width: 100%;
    margin-top: 30px;
    height: 400px;
    border-radius: 20px;
}
.address img{
    margin: 50px auto;
}
.parking {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.parking_mark{
    font-size: 2rem;
    line-height: 3.8rem;
    text-align: center;
    display: inline-block;
    color: var(--primary-pink);
    min-width: 38px;
    height: 38px;
    margin-right: 12px;
    border-radius: 100%;
    border: solid 1px var(--primary-pink);

}

/* access pc */
@media screen and (min-width: 769px) {
    .section-access {
        padding: 60px 20px 120px;
        width: 100%;
        background-size: 345px,105px;
    }
    .address p, .reservation p ,.parking_txt{
        font-size: 1.6rem;
        line-height: 2.9rem;
    }
    
    .address {
        font-size: 1.6rem;
        line-height: 1.3;
        margin: 50px auto;
    }
    .telBox{
        margin: 20px 0 30px;

    }
    .address a{
        font-size: 3.2rem;
        line-height: 4.5rem;
    }

    .map {
        margin-top: 32px;
        max-width: 872px;
        width: 100%;
    }
    .address img{
        margin: 60px auto;
    }
.reservation .article_clickBtn{
    display: block;
    margin: 0 0 35px 0;
}
.reservation{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 65px;
}
.reservationBtn{
    align-items: center;
}
.parkingContents{
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
.parkingContents img{
    max-width: 466px;
}
.parking_mark{
    font-size: 2.4rem;
    line-height: 5rem;
    min-width: 50px;
    height: 50px;
}

/* slider */

.slick-slider{
    margin: 0 auto 64px;
    overflow: hidden;
}
/* slack-slider pc */
@media screen and (min-width :769px){
.slick-slider{
    padding:  0 var(--contentPadding);
    margin-top: 50px;
}
/* pc 769px */

.slider__item{
    margin: 0 10px;
    width: 300px;
    border-radius: 20px;
}
}


}/* pc 769px */

/*  ========================
footer
==========================*/
footer {
    padding: var(--contentPadding);
    margin: 0 auto;
    padding-bottom: 0;
    text-align: center;
}
.footetlogo_pc{
    display: none;
}

footer table {
    margin: 40px auto 10px;
    padding: 10px;
    max-width: 500px;
}
footer table th, footer table td{
    font-size: 1.4rem;
    line-height: 2.6rem;
    vertical-align: middle;
    text-align: center;
    border-top:  solid 1px gray;
    border-bottom:solid 1px gray ;
    border-collapse: collapse ;
    table-layout: fixed;
    width: 40px;
    height: 10px;
}

footer table th:first-child, footer table td:first-child{
    width: 100px;
    padding-right: 15px;
}

td:first-child,th:first-child{
    border-left:none;
}
td:last-child th:last-child th{
    border-right:none;
}

.table_txt{
    font-size: 1.4rem;
    line-height: 2.6rem; 
    text-align: left;
    display: inline-block;
    max-width: 500px;
}


.copy {
    margin-top: 64px;
}

.copy small {
    font-size: 1.2rem;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footerContents {
        padding: 0;
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        gap: 50px;
        justify-content: center;
    }
    .footerlogo_sp{
        display: none;
    }
    .footetlogo_pc{
        display: block;
    }
    .table_txt, footer table th, footer table td{
        font-size: 1.5rem;
        line-height: 2.9rem; 
    }
    footer table th, footer table td{
        vertical-align: middle;
        text-align: center;
        border-top:  solid 1px gray;
        border-bottom:solid 1px gray ;
        border-collapse: collapse ;
        table-layout: fixed;
        width: 50px;
        height: 60px;
       
    }
    footer .address, footer .address a{
        margin: 0;
    }
    footer .address{
        text-align: left;
    }
    footer .reservation {
        display: block;
    }
    .footerLine{
        width: 1331px;
    }
    footer table{
        margin: 0;
    }
    .table_txt{
        font-size: 1.5rem;
        line-height: 2.8rem; 
    }
    footer table th:first-child, footer table td:first-child{
        width: 150px;
        padding-right: 15px;
    }
    .spBr{
        display: none;
    }






    .footer__group {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__topic {
        font-size: 2.4rem;
        line-height: 1;
    }

    .menu__list {
        display: flex;
        margin-top: 0;
    }

    .menu__item {
        margin-top: 0;
        margin-left: 32px;
    }

    .sns {
        justify-content: flex-end;
    }

    .sns__item {
        margin: 0 0 0 24px;
    }

    .copy {
        margin-top: 32px;
    }
    
}/* pc 769px */