html {font-size: 625%;}

/*リセット*/
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, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	/* background: transparent; */
}

body {
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";	font-size: .16rem;
	font-size: 16px;
	color:#583d1b;
	background: #fff;
	letter-spacing: .014rem;
	box-sizing: border-box;
	overflow-x: hidden;
}

/*共通*/
ol
,ul {
	list-style: none;
}
a{
	text-decoration: none;
	cursor: pointer;
  list-style: none;
  color: #583d1b;
}
a:hover{
  text-decoration: none;
  opacity: .4;
}
li{
  list-style: none;
}
#container{
	overflow: hidden;
}
section{
	margin-bottom: .5rem;
}
.wrap{
	max-width: 1200px;
	width: 96%;
	margin: 0 auto;
}
.flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.center{
  text-align: center;
}
.left{
  text-align: left;
}
.title{
  margin-bottom: .4rem;
}
.sub_catch .title{
  margin-bottom: .2rem;
}

/*color*/
.white{
	color: #fff;
}
.bg_pink{
  background: #f7b996;
  padding: .5rem 0
}
.orange{
  color: #e48a5d;
}
.bg_orange{
  background: #e48a5d;
  color: #fff;
}
.pink{
  color: #f7b996;
}
.bg_light_beige{
  background: #e2d6c0;
  padding: .5rem 0;
}
.bg_light_pink{
  background: #f7e0d6;
}

/*font*/
h1{
  font-size: clamp(.16rem, 4vw, .34rem);
}
h2{
  font-size: clamp(.16rem, 3vw, .24rem);
}

/*button*/
.button
,button{
	display: inline-block;
	border: 1px solid #e48a5d;
	padding: .1rem .2rem;
	font-size: .14rem;
	transition: all  0.7s ease;
	outline: none;
	background: #e48a5d;
	color: #fff;
	border-radius: 9px;
	width: calc(200px - .4rem);
	text-align: center;
}
.button:hover
,button:hover{
	text-decoration: none;
	color: #666;
	border: 1px solid #666;
	background: #fff;
}
button{
	width: 200px;
	display: block;
	margin: 0 auto;
}
.circle_button{
  border-radius: 20px;
  width: fit-content;
  display: block;
  margin: 0 auto;
}

/*header*/
header .button_area{
  justify-content: end;
  padding: .2rem 3%;
}
  header .square_button{
  margin: 0 10px;
  background: #e48a5d;
  color: #fff;
  border-color: #e48a5d;
}
.hamburger
,.globalMenuSp{
	display: none;
}
header{
  padding: .2rem;
}
.logo{
  width: 25%;
  min-width: 250px;
}
.logo img{
  width: 100%;
}
header li a{
  padding: 0 .08rem;
  color: #583d1b;
  font-size: .16rem;
}
header li+ li{
  border-left: 1px solid #583d1b;
}

/*ドロップダウン*/
.menu__second-level{
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 40px;
  width: fit-content;
  padding: .2rem;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.menu__second-level li{
  border-left: none;
  margin-bottom: .1rem;
  border-bottom: 1px solid #583d1b;
}
.menu__single:hover .menu__second-level{
  background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  top: 60px;
  visibility: visible;
  opacity: 1;
}


/*footer common_contact*/
.common_contact img{
  width: 44%;
  display: block;
  margin: 0 auto .3rem;
}
.common_contact p{
  margin-bottom: .3rem;
}
.common_contact .flex{
  justify-content: space-evenly;
}
.common_contact .flex span{
  font-size: clamp(.4rem, 5vw, .6rem);
}
.common_contact .button{
  width: 90%;
  font-size: xx-large;
}
.common_contact .button:first-child{
  margin-bottom: .2rem;
}
.footer{
  margin-bottom: 0;
}
.footer .wrap.flex div{
  width: 50%;
}
.footer .wrap.flex div:first-child{
  margin-right: 2%;
}
.footer .wrap.flex div:last-child{
  margin-left: 2%;
}
.footer .wrap.flex div:last-child p{
  text-align: right;
}
.footer .wrap.flex div .flex{
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footer .wrap.flex div .flex .square_button{
  margin-bottom: .1rem;
}
.footer ul{
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.footer ul li{
  width: 30%;
  margin-bottom: .1rem;
}
.footer .wrap.flex div:first-child div.flex{
  padding: .2rem 0;
}
.footer .wrap.flex{
  margin-bottom: .5rem;
}
.footer .bg_pink{
  text-align: center;
  padding: .1rem 0;
  color: #fff;
}
.footer .flex .square_button{
  width: 44%;
}
iframe + p{
  text-align: right;
}
.footer_img{
  width: 100%;
}
.footer .wrap.flex div ul.flex{
  justify-content: space-between;
}


/*index*/
.top_main{
  padding-bottom: 5%;
  position: relative;
  margin-bottom: 0;
}
.top_main_img{
	background: url("../images/top_main.webp") center center /cover no-repeat;
	height: 75vh!important;
  width: 80%;
  border-radius: 50px;
  margin-left: auto;
  margin-right: 5%;
}
.catch{
  position: absolute;
  bottom: 15%;
  left: 5%;
  margin: auto;
  height: fit-content;
  font-weight: bold;
}
.catch span{
  font-size: clamp(.18rem, 5vw, .42rem);
  display: block;
  line-height: .8rem;
}
.catch p{
  line-height: .3rem;
}
.menu_area li{
  background: #fff;
  border-radius: 25px;
  padding: .2rem;
  width: 31%;
  margin-bottom: .34rem;
}
.menu_area{
  flex-wrap: wrap;
}
.menu_area img{
  width: 50%;
  padding: .1rem;
}
.menu_area p{
  position: relative;
}
.menu_area p::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 25%;           
  top: calc(50% - 2px);  
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(45deg) translateY(-50%);
  color: inherit;
}
.index .bg_pink.center .title{
  margin-bottom: .2rem;
}
.title + p{
  margin-bottom: .5rem;
  display: block;
  line-height: .4rem;
}
.title + p::after{
  content: "";
  border: 1px solid #333;
}
.title h1{
  font-weight: bold;
  margin-bottom: .1rem;
}
.bg_pink .title + p::after{
  border: none;
}
.feature .flex{
  align-items: flex-start;
}
.box{
  width: 30%;
  position: relative;
  padding-top: .4rem;
  margin-bottom: .5rem;
}
.bg_img{
  background: url("../images/feature_img01.webp") 100% center /cover no-repeat;
  border-radius: 150px;
  height: 250px;
  width: 250px;
  margin: 0 auto;
}
.feature .flex .box:nth-child(2) .bg_img{
  background: url("../images/feature_img02.webp") 80% center /cover no-repeat;
}
.feature .flex .box:nth-child(3) .bg_img{
  background: url("../images/feature_img03_1.webp") 0% center /cover no-repeat;
}
.feature .flex .box:nth-child(4) .bg_img{
  background: url("../images/feature_img04.webp") 0% center /cover no-repeat;
}
.feature .flex .box:nth-child(5) .bg_img{
  background: url("../images/feature_img05.webp") 0% center /cover no-repeat;

}
.box .bg_light_pink{
  position: absolute;
}
.box .bg_img span{
  font-size: .8rem;
  line-height: 1rem;
}
.box .sub_title{
  width: fit-content;
  text-align: center;
  position: absolute;
  top: 0;
}
.box .text{
  padding: .2rem;
}
.box .text p{
  margin-bottom: .1rem;
  font-size: .2rem;
  font-weight: bold;
  padding: 0 .2rem;
}
.box .text span{
  font-size: .14rem;
}
.feature .flex{
  flex-wrap: wrap;
  justify-content: center;
}
.concept_area h2{
  margin-bottom: .2rem;
}.concept_area .flex p{
  line-height: .3rem;
  font-size: .14rem;
}
.concept_area img{
  width: 100%;
  margin-bottom: .3rem;
  border-radius: 27px;
}
.concept_area .flex div{
  width: 50%;
}
.concept_area .flex div:first-child{
  margin-right: 2%;
}
.concept_area .flex div:last-child{
  margin-left: 2%;
}
.concept_area .flex{
  margin-bottom: .5rem;
}
/*スライドショー*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
  }
  .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 30s infinite linear 0.1s both;
  }
  .scroll-infinity__item {
    width: calc(100vw / 4);
    margin: 0 10px;
  }
  .scroll-infinity__item>img {
    width: 100%;
    border-radius: 0;
  }

/*sub_page*/
#sub_page header .button_area{
  padding-bottom: 0;
}
.sub_main{
  height: 60vh;
  position: relative;
  margin-bottom: .2rem;
}
.bread{
  margin-bottom: .3rem;
}
.bread span{
  border-bottom: 1px solid #583d1b;
}
.sub_catch{
  background-color: rgba(255, 255, 255, .84);
  width: 60%;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  padding: .4rem;
}
.sub_catch p{
  margin-bottom: 0;
}
.sub_catch .title + p::after{
  border: none;
}
#sub_page .content h1 + img{
  width: 80%;
  margin-bottom: .3rem;
}
.innser{
  margin-bottom: .5rem;
}
.innser h2{
  padding: .3rem 0 .2rem;
}
#sub_page .content .flex img{
  width: 50%;
}
#sub_page .content .flex .text
,#sub_page .content .flex img{
  padding: 0 .4rem;
}
#sub_page .content .flex .text{
  text-align: left;
  line-height: .3rem;
  width: 50%;
}
.text h2{
  margin-bottom: .2rem;
}
.bg_wave{
  position: relative;
  color: #fff;
  margin: 100px 0 0;
}
.bg_wave_img{
  position: absolute;
  top: -30px;
  z-index: -1;
}
.bg_wave .flex{
  flex-wrap: wrap;
  align-items: flex-start;

}
.frame{
  background-color: #fff;
  border-radius: 30px;
  padding: .2rem;
  width: 48%;
  color: #583d1b;
  margin-bottom: 4%;
}
.frame img{
  width: 100%;
}
.frame h1{
  padding: .2rem 0;
}
.frame p{
  text-align: left;
  line-height: .26rem;
}
.worries_sp{
  display: none;
}
.banner h2{
  font-weight: bold;
  margin-bottom: .3rem;
}
.banner img{
  width: 80%;
  margin-bottom: .3rem;
}
.banner + p{
  margin-bottom: .3rem;
}


/*postpartum*/
.postpartum .sub_main{
  background: url("../images/postpartum_main.webp") center center /cover no-repeat;
}
.worries{
  width: 100%;
}
/*posture*/
.posture .sub_main{
  background: url("../images/posture_main.webp") center 25% /cover no-repeat;
}
/*lower*/
.lower .sub_main{
  background: url("../images/lower_main.webp") center center /cover no-repeat;
}
.lower .bg_wave .flex{
  flex-wrap: nowrap;
  align-items: center;
}
/*knee*/
.knee .sub_main{
  background: url("../images/knee_main.webp") center bottom /cover no-repeat;
}
.white_box.flex{
  background: #fff;
  padding: .5rem;
  color: #583d1b;
  align-items: center;
  margin-bottom: .3rem;
}
.white_box .img_area
,.white_box .text{
  width: 50%;
}
.white_box img{
  width: 100%;
  padding-right: 5%;
}
.white_box .text{
  text-align: left;
}
.white_box .text h1{
  margin-bottom: .2rem;
}
.text h1 span{
  font-size: x-large;
  color: #583d1b;
}
.bg_wave .wrap .white_box:last-child{
  flex-direction: row-reverse;
}
.bg_wave .wrap .white_box:last-child img{
  padding: 0 0 0 5%;
}
/*sports*/
.sports .sub_main{
  background: url("../images/sports_main.webp") center 80% /cover no-repeat;
}
.sports .bg_wave .flex{
  align-items: center;
  flex-direction: row-reverse;
}
.sports .bg_wave.bg_pink{
  padding-bottom: 100px;
}
.bg_white{
  color: #583d1b;
}
.bg_wave.bg_white .content .flex:last-child{
  flex-direction: initial;
}
.bg_white .flex{
  margin-bottom: .5rem;
}
.bg_white .bg_wave_img{
  top: -130px;
  z-index: 0;
}
/*sprains*/
.sprains .sub_main{
  background: url("../images/sprains_main.webp") center center /cover no-repeat;
}
.frame h2{
  margin-bottom: .2rem;
}
.sprains .bg_wave .flex{
  justify-content: space-around;
}
/*headache*/
.headache .sub_main{
  background: url("../images/headache_main.webp") center bottom /cover no-repeat;
}
/*stiff*/
.stiff .sub_main{
  background: url("../images/stiff_main.webp") center center /cover no-repeat;
}
.stiff .box{
  padding-top: 0;
}
.stiff .box .text p{
  font-size: clamp(.2rem, 5vw, .3rem);
}
.stiff .bg_img{
  width: 300px;
  height: 300px;
}
.stiff .flex.circle .box:first-child .bg_img{
  background: url("../images/stiff_img01.webp") center center /cover no-repeat;
}
.stiff .flex.circle .box:nth-child(2) .bg_img{
  background: url("../images/stiff_img02.webp") center center /cover no-repeat;
}
.stiff .flex.circle .box:last-child .bg_img{
  background: url("../images/stiff_img03.webp") center center /cover no-repeat;
}
/*bow*/
.bow .sub_main{
  background: url("../images/blow_main.webp") center center /cover no-repeat;
}
.bow .white_box{
  border-radius: 40px;
}
/*traffic*/
.traffic .sub_main{
  background: url("../images/traffic_main.webp") center 90% /cover no-repeat;
}
.list_frame{
  background: #f8f4f4;
}
.list_frame .white_box.flex{
  background: #f8f4f4;
}
.list_frame h2{
  padding: .2rem;
}
.list_frame p{
  line-height: .3rem;
}
/*whiplash*/
.whiplash .sub_main{
  background: url("../images/whiplash_main.webp") center center /cover no-repeat;
}
/*sensitvity*/
.sensitvity .sub_main{
  background: url("../images/sensitvity_main.webp") center 60% /cover no-repeat;
}
.sensitvity .content .flex:nth-child(2)
,.sensitvity .content .flex:nth-child(4){
  flex-direction: row-reverse;
}
/*flow*/
.flow .sub_main{
  background: url("../images/flow_main.webp") center center /cover no-repeat;
}
.flow .list_frame .button_area{
  justify-content: flex-start;
}
.flow .list_frame .button_area .button{
  margin-right: .1rem;
}

/*price*/
.price .sub_main{
  background: url("../images/price_main.webp") center center /cover no-repeat;
}
.price_area .bg_pink{
  padding: 0;
}
table{
  width: 100%;
  text-align: center;
}
table , td, th {
	border: 3px solid #fff;
	border-collapse: collapse;
}
td, th {
	padding: 3px;
	width: 30px;
	height: 25px;
  padding: .2rem;
  font-size: .18rem;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}
.table_box{
  margin-bottom: .5rem;
}
/*faq*/
.faq .sub_main{
  background: url("../images/faq_main.webp") center center /cover no-repeat;
}
dl{
  width: 80%;
  margin: 0 auto .3rem;
  font-size: .3rem;
}
dt{
  background: #f4ab87;
  color: #fff;
  padding: .2rem;

}
dd{
  background: #f2f0f0;
  padding: .2rem;
  width: -webkit-fill-available;
}
dl span{
  font-size: .16rem;
}
/*facial*/
.facial .sub_main{
  background: url("../images/facial_main.webp") center center /cover no-repeat;
}
.facial .content .flex{
  align-items: center;
}
/*staff*/
.staff .sub_main{
  background: url("../images/staff_main.webp") center 10% /cover no-repeat;
}
.staff .center .wrap{
  max-width: 840px;
}
.staff .flex.circle{
  flex-wrap: wrap;
  align-items: flex-start;
}
.staff .circle .box:first-child{
  padding-top: 0;
}
.staff .flex.circle .box:first-child .bg_img{
  background: url("../images/staff_img01.webp") center center /cover no-repeat;
}
.staff .flex.circle .box:nth-child(2) .bg_img{
  background: url("../images/staff_img02.webp") center 17% /cover no-repeat;
}
.staff .flex.circle .box:nth-child(3) .bg_img{
  background: url("../images/staff_img03.webp") center center /cover no-repeat;
}
.staff .flex.circle .box:nth-child(4) .bg_img{
  background: url("../images/staff_img04.webp") center center /cover no-repeat;
}
.staff .flex.circle .box:nth-child(5) .bg_img{
  background: url("../images/staff_img05.webp") center 17% /cover no-repeat;
}
.staff .flex.circle .box:nth-child(6) .bg_img{
  background: url("../images/staff_img06.webp") center center /cover no-repeat;
}
.staff .flex.circle .box:last-child .bg_img{
  background: url("../images/staff_img07.webp") center center /cover no-repeat;
}
.staff .circle .box{
  padding-top: 0;
}
/*treatment_list*/
.treatment_list .sub_main{
  background: url("../images/treatment_list_main.webp") center center /cover no-repeat;
  margin-bottom: 0;
}
.treatment_list .menu_area li:last-child{
  background: none;
}
.treatment_list .bg_pink{
  margin-bottom: 0;
}


/*mail*/
@media screen and (max-width: 1000px) {
}


@media screen and (max-width: 767px) {
  /*header*/
  .pc_nav{
    display: none;
  }
  header{
    padding: .1rem;
  }
  header .flex{
    position: relative;
  }
  .logo{
    min-width: 280px;
  }
  header .button_area{
    display: none;
  }
  /*ハンバーガーボタン*/
  .hamburger {
    display : block;
    position: absolute;
    z-index : 3;
    top   : 0;
    bottom: 0;
    right: 0;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    margin: auto;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #583d1b;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    right : 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
    display: block;
  }
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0 10% 10%;
    width: 100%;
    height: fit-content;
    position: absolute;
    top: 15vh;
    text-align: left;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: .1rem;
    width: 100%;
    border-bottom: 1px solid #583d1b;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover{
    opacity :0.7;
    transition: ease-in;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #583d1b;
    padding: .1em 0;
    text-decoration :none;
  }
  nav.globalMenuSp ul li:hover a{
    color :#000;
  }
  header li+ li{
    border-left: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
    overflow-y: scroll;
  }
  /*ドロップメニュー*/
    .toggle {
    display: none;
    }
    .option {
    position: relative;
    }
    .accordion .title,
    .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    }
    .accordion .title {
    display: block;
    color: #583d1b;
    margin-bottom: 0;
    }
    .accordion .title::after,
    .accordion .title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 0.75em;
    background-color: #583d1b;
    transition: all 0.3s;
    }
    .accordion .title::after {
    transform: rotate(90deg);
    }
    .accordion .content {
    max-height: 0;
    overflow: hidden;
    top: 1vh;
    position: relative;
    padding-bottom: 0;
    
    }
    .accordion .content li {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 0.9em;
    line-height: 1.5;
    }
    .toggle:checked + .title + .content {
    max-height: fit-content;
    transition: all 1.5s;
    margin-bottom: .2rem;
    }
    .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
    } 


  /*共通*/
  .sp_none{
    display: none;
  }
  .sub_title{
    width: 80%;
    margin: 0 auto .3rem;
  }
  h1.big_title{
    display: none;
  }
  .worries_sp{
    display: block;
  }
  .worries{
    display: none;
  }
  /*header*/
  .logo{
    width: 30%;
  }
  .nav_btn{
    width: 30px;
  }
  .nav_btn span:first-child{
    top: 13px;
  }
  .nav_btn span:nth-child(2){
    top: 23px;
  }
  .nav_btn.active{
    right: 10%;
  }
  .nav_btn span:last-child{
    bottom: 16px;
  }
  .nav_btn.active span:nth-of-type(1){
    transform: translateY(3px) rotate(-315deg) scale(.8);
  }
  .nav_wrap li span:first-child{
    font-size: .26rem;
  }
  .nav_wrap ul{
    padding: 70px 0;
    height: 100vh;
  }
  .globalMenuSp .button_area{
    display: block;
    bottom: 0;
    text-align: center;
  }
  header .square_button{
    margin-bottom: .1rem;
  }

  /*footer common*/
  .common_contact img{
    width: 84%;
  }
  .common_contact img{
    margin-bottom: .14rem;
  }
  .common_contact .flex{
    flex-wrap: wrap;
  }
  .common_contact .flex div{
    text-align: center;
  }
  .common_contact .flex span{
    margin-bottom: .1rem;
  }
  .footer .wrap.flex{
    flex-wrap: wrap;
  }
  .footer .wrap.flex div{
    width: 100%;
  }
  .footer .wrap div img:first-child{
    width: 90%;
    display: block;
    margin: 0 auto .3rem;
  }
  .footer .square_button{
    width: calc(100% - .4rem);
    margin-bottom: .06rem;
  }
  .footer .wrap.flex div.flex{
    flex-wrap: wrap;
  }
  .footer .wrap.flex div:last-child p{
    text-align: left;
  }
  
  .footer ul li{
    width: 44%;
    font-size: .14rem;
  }
  .footer .wrap.flex div:last-child{
    margin-left: 0;
  }
  .footer ul{
    margin-bottom: .2rem;
  }
  .footer .wrap.flex div ul.flex{
    justify-content: center;
  }
  
  /*color*/
  .bg_pink{
    padding: .3rem 0;
  }
  /*common*/
  p{
    font-size: .14rem;
  }
  .title{
    margin-bottom: 30px;
  }
  .title h1{
    line-height: .3rem;
  }
  .title + p{
    line-height: .24rem;
    margin-bottom: .3rem;
  }
	/*index*/
  .top_main{
    height: 90vh;
  }
  .catch{
    bottom: 3%;
  }
  .title + p::after{
    border: none;
  }
  .top_main_img{
    height: 70vh!important;
    width: 90%;
    margin-right: 1%;
  }
  .catch span{
    line-height: .26rem;
    margin-bottom: .1rem;
  }
  .catch p{
    font-size: .12rem;
    line-height: .2rem;
  }
  .menu_area li{
    width: 49%;
  }
  .menu_area p::after{
    right: -5px;
  }
  .menu_area p{
    margin-right: 8px;
    font-size: .12rem;
  }
  .menu_area h2{
    font-size: .18rem;
  }
  .menu_area img{
    width: 70%;
  }
  .box{
    width: 100%;
    margin-bottom: 0;
  }
  .box .sub_title{
    left: 0;
    top: .3rem;
  }
  .concept_area .wrap{
    width: 90%;
  }
  .feature .flex{
    margin-top: 30px;
  }
  .concept_area .flex{
    flex-wrap: wrap;
  }
  .concept_area .flex div{
    width: 100%;
  }
  .concept_area .flex div:first-child{
    margin-bottom: .3rem;
  }
  .concept_area .flex div:last-child{
    margin: 0;
  }
  .scroll-infinity__item{
    width: calc(100vw / 2);
    margin: 0 5px;
  }
  .banner img{
    width: 100%;
    margin-bottom: .2rem;
  }
  .index .bg_pink.center .title{
    margin-bottom: .1rem;
  }
  

  /*sub_page*/
  .sub_main{
    height: 40vh;
  }
  .sub_catch{
    width: 90%;
    height: fit-content;
    padding: .2rem;
  }
  .sub_catch .title{
    margin-bottom: 10px;
  }
  .sub_catch .title h1{
    line-height: .2rem;
    margin-bottom: 0;
  }
  .sub_catch{
    font-size: .12rem;
  }
  .sub_catch .title p{
    font-size: .14rem;
  }
  .sub_catch .title + p{
    margin-bottom: 0;
  }
  #sub_page .content img{
    width: 100%;
  }
  #sub_page .content .worries{
    width: 100%;
  }
  #sub_page .content .wrap.flex{
    flex-wrap: wrap;
  }
  #sub_page .content .flex .text{
    padding: .1rem;
    margin-bottom: .2rem;
    width: 100%;
  }
  .innser{
    margin-bottom: .3rem;
  }
  #sub_page .content .flex img{
    width: 100%;
  }
  .frame{
    width: 100%;
  }
  .frame h1{
    padding: .1rem 0;
  }
  .frame p{
    line-height: .3rem;
  }
  .bg_wave{
    flex-wrap: wrap;
  }

  /*stiff*/
  .flex.circle{
    flex-wrap: wrap;
  }
  /*stiff*/
  .white_box.flex{
    padding: .3rem;
    flex-wrap: wrap;
  }
  .white_box.flex{
    flex-direction: column!important;
  }
  .white_box .img_area
  ,.white_box .text{
    width: 100%;
  }
  .white_box .img_area{
    margin-bottom: .2rem;
  }
  /*whiplash*/
  .whiplash .bg_wave{
    padding: .1rem 0 .3rem;
  }
  .content .title h1{
    line-height: 0;
  }
  /*sports*/
  .sports .bg_wave.bg_pink{
    padding-bottom: 80px;
  }
  .sports .bg_wave.bg_white{
    margin-top: 60px;
  }
  .bg_white .bg_wave_img{
    top: -70px;
  }
  /*price*/
  th
  ,td{
    font-size: .12rem;
    padding: .1rem;
  }
  .price_area .title{
    margin-bottom: 10px;
  }
  .table_box{
    margin-bottom: .2rem;
  }
  /*flow*/
  dl{
    width: 100%;
  }
  dt
  ,dd{
    font-size: .2rem;
    padding: .1rem;
  }
  dl span{
    font-size: .14rem;
    display: block;
    line-height: .3rem;
  }
  .flow .text .button{
    margin: 0 .04rem;
  }
  /*treatment_list*/
  .treatment_list .menu_area{
    align-items: flex-start;
  }


  















}



























