@font-face {
    font-family: "kozuka_gothic_pr6n";
    src: url("../fonts/kozuka_gothic_pr6n.otf") format("opentype");
    font-display: swap;
}
@font-face {
    font-family: "acaslonpro-regular";
    src: url("../fonts/acaslonpro-regular.otf") format("opentype");
    font-display: swap;
}
body {
    margin: 0;
    font-family: "Noto Serif JP",sans-serif;
    color: #333;
}
a {
    text-decoration: none;
    transition: 0.5s;
}
img {
    width: 100%;
    vertical-align:top;
}
p {
    margin: 0;
}
h1,h2,h3,h4 {
    margin: 0;
}
section {
    overflow: hidden;
    z-index: 1;
}
li {
    list-style: none;
}
ul {
    margin: 0px;
    padding: 0px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
}

.slick-next:before{
    background: url("../img/top/icon_right.png")!important;
    background-size: contain!important;
}

.slick-prev:before{
    background: url("../img/top/icon_left.png")!important;
    background-size: contain!important;
}
/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-load,
.fade-in-load2,
.fade-in-load3,
.fade-in-load4 {
    opacity: 0;
    transition-duration: 1000ms;
    transition-property: opacity, transform;
}

.fade-in-open {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
.fwb {
    font-weight: bold;
}

.poyoyon {
    animation: poyoyon 2s ease-in-out infinite;
}

@keyframes poyoyon {
    0% {
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
        transform: translatey(0px);
    }
    50% {
        filter: drop-shadow(0 20px 10px rgba(0,0,0,0.3));
        transform: translatey(-10px);
    }
    100% {
        filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
        transform: translatey(0px);
    }
}
.poyoyon2 {
    animation-name: poyoyon2 ;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count:infinite;
}

@keyframes poyoyon2 {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(0.95);
    }
}
.poyoyon3 {
    animation-name: poyoyon3 ;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-iteration-count:infinite;
    animation-direction:alternate;
}

@keyframes poyoyon3 {
    0% {
        transform: scale(0.95,0.95);
    }
    100% {
        transform: scale(1,1);
    }
}
.poyoyon4 {
    animation: puyoBtn 1.6s ease-in infinite;
}
@keyframes puyoBtn {
    0% {
        transform: scale(1.09);
    }
    10% {
        transform: scale(1.09);
    }
    30% {
        transform: scale(1.01);
    }
    40% {
        transform: scale(1.01);
    }
    50% {
        transform: scale(1, 1.04);
    }
    60% {
        transform: scale(1.09);
    }
    70% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.09);
    }
}

.a-box {
    text-align: center;
    margin: 10px auto;
}
.a-box a {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    width: 150px;
    border-radius: 30px;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 1px solid #035d8b;/* ボーダーの色と太さ */
    padding: 10px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}
.a-box a span {
    position: relative;
    z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color:#035d8b;
}
.a-box a:hover span{
    color:#fff;
}
.a-box a:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #035d8b;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 0);
    transform-origin:center;
    border-radius: 30px;
}

/*hoverした際の形状*/
.a-box a:hover:before{
    transform:scale(1, 1);
}



/*ボタン全体の形状*/
.openbtn1{
    /*はじめは非表示に*/
    display: none;
    /*ボタンの位置*/
    position:fixed;
    top: 0px;
    right: 0px;
    z-index: 999;
    /*ボタンの形状*/
    background:#fff;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 0px 0px 0px 10px;
    box-shadow: 0 0 12px rgb(103 103 103 / 40%);
}

/*ボタンのアイコン設定*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 17px;
    height: 3px;
    border-radius: 2px;
    background-color: #00587f;
    width: 45%;
}

.openbtn1 p {
    position: absolute;
    top: 38px;
    font-size: 12px;
    left: 11px;
    color: #00587f;
}

.openbtn1 span:nth-of-type(1) {
    top:13px;
}

.openbtn1 span:nth-of-type(2) {
    top:21px;
}

.openbtn1 span:nth-of-type(3) {
    top:29px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn1.active span:nth-of-type(1) {
    top: 17px;
    left: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 39%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 29px;
    left: 19px;
    transform: translateY(-6px) rotate(45deg);
    width: 39%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#00587f;
    color:#fff;
    text-align: center;
    padding: 10px;
    z-index: 10;
    position: fixed;
    width: 100%;
}

.logo_header {
    min-width: 100px;
    margin-left: 20px;
    width: 180px;
}

.logo_header img {
    margin-top: 8%;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
  opacity: 0;/*透過0にして非表示に*/
  display: none;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
  opacity: 1;/*不透明にして出現*/
  display: block;
}

/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 10px 0px 5px;
}

#g-navi li {
    transition: 0.5s;
    text-align: center;
}
#g-navi ul li a{
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0px 10px 5px;
  font-size: 13px;
  letter-spacing: .1rem;
}
/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
    top: 0;
    left: 0;
    z-index: -1;
    /*高さと幅*/
    width:100%;
    height: 100vh;
    /*天地中央＆テキスト中央揃え*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*はじめは透過0に*/
    opacity: 0;
    transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
    opacity: 1;/*不透明に*/
    z-index:12;/*最前面に*/
    background:#eee;
}

#header.dnone.panelactive #g-navi ul{
    display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
    color: #333;
    text-decoration: none;
    padding:20px 10px 0px 10px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: bold;
    transition:all 0.3s;
    width: fit-content;
    margin: 0 auto;
}


.section-page-doctor_title_sp,.section-page-doctor_title_pc {
    overflow: hidden;
}
.text-slide-in {
  overflow: hidden;
    display: inline-block;
}

.text-slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.text-leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.text-slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:1.2s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.text-slideAnimeRightLeft {
    animation-name:slideTextX-100;
    animation-duration:1.2s;
    animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slick-dots li.slick-active button:before ,.slick-dots li button:before {
    color: #52afde !important;
}
.section-top {
    background-color: #00587f;
}
.slider-top .slick-prev,.slider-pickup .slick-prev {
    left: 17.5%;
    top: 50% !important;
    z-index: 10;
    height: 95px;
    width: 20px;
}
.slider-top .slick-next,.slider-pickup .slick-next {
    right: 17.5%;
    z-index: 10;
    top: 50% !important;
    height: 95px;
    width: 20px;
}
.slider-top .slick-prev:before, .slider-top .slick-next:before,.slider-pickup .slick-prev:before, .slider-pickup .slick-next:before {
    opacity: .5;
    color: #fff;
}
.slider-top {
    margin: 100px auto 30px;
}
.slider-top_box {
    margin: 0 10px;
}
.slider-top_box video {
    width: 100%;
}
.slider-banner_box {
    margin: 0 5px;
}
.slider-banner {
    padding-bottom: 30px;
    max-width: 1024px;
    margin: 0 auto;
    width: 80%;
}
.slick-prev, .slick-next {
    top: 43% !important;
}
.slider-banner .slick-prev,.slider-banner .slick-next {
    width: 10px;
    height: 49px;
}
.block-banner {
    max-width: 64vw;
    margin: 60px auto 0px;
}
.section-news {
    padding-bottom: 40px;
    background-color: #f4f2ef;
}

.slider-news {
    padding-left: 15px;
    padding-right: 15px;
}

#newsWrap {
    overflow-x: hidden;
}

#newsWrap .slick-prev {
    left: 0px;
}

#newsWrap .slick-prev:before {
    background: none !important;
    content: '◀' !important;
    z-index: 10;
}

#newsWrap .slick-next {
    right: 0px;
}

#newsWrap .slick-next:before {
    background: none !important;
    content: '▶' !important;
    z-index: 10;
}

#newsWrap .slick-prev:before,#newsWrap .slick-next:before {
    color: #999;
}

.slider-news_box {
    margin: 10px;
}

ul#newsList li a {
    color: #666;
    text-decoration: none;
}

ul#newsList li a:nth-child(2) {
    color: #035d8b;
    text-decoration: underline;
    font-weight: 700;
}

ul#newsList li a:nth-child(2):hover {
    opacity: 0.8;
}

.section-news .a-box a {
    width: 200px;
}

.section-news .iframe-news {
    width: fit-content;
    margin: 0 auto;
}

.section-reason {
    background-image:url("../img/top/rever_cl_reason_bg.png");
    background-repeat: no-repeat;
    background-position:50% 50%;
    background-size: cover;
}
.section-reason .a-box {
    margin: 25px auto 70px;
}
.section-doctor {
    background-image:url("../img/top/rever_cl_doctor_bg.jpg");
    background-repeat: no-repeat;
    background-position:50% 50%;
    background-size: cover;
    background-color: #eaf4f8;
}
.section-doctor .a-box a {
    margin: 4% auto 0%;
    width: 280px;
}
.section-doctor h1 {
    margin-bottom: 0px;
}
.section-doctor_people,.section-doctor_people3 {
    position: relative;
}
.section-docter_name {
    position: absolute;
    bottom: -9%;
    z-index: 2;
}
.section-docter_text {
    position: absolute;
    top: 55%;
    z-index: 2;
    right: 8%;
    text-align: right;
}
.section-doctor_people3 .section-docter_text {
    top: 68%;
}
.section-docter_text_1 {
    font-size: 18px;
}
.section-docter_text_2 {
    margin-top: 11%;
    font-size: 18px;
    font-family: "Noto Serif JP",sans-serif;
}
.section-doctor_people2 {
    width: 95%;
    position: relative;
    margin-left: auto;
    margin-top: 30px;
}
.section-docter_name2 {
    position: absolute;
    bottom: -6%;
    right: 0px;
}
.section-docter_text2 {
    bottom: 7%;
    font-size: 21px;
    position: absolute;
}
.section-doctor .a-box {
    margin: 5% auto 6%;
}
.section-menu {
    background-color: #035d8b;
}
.section-menu h1 span {
    color: #fff !important;
}
.section-menu .a-box a:before {
    background: #5a9cbe;
}
.section-menu_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    font-size: 16px;
    width: 90%;
    margin: 20px auto;
    letter-spacing: .1em;
}
.section-menu_flexbox {
    width: 100%;
    border-bottom: 1px dashed #ccc;
}
.section-menu_flexbox a {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    color: #035d8b;
    line-height: 1.6rem;
}

.section-menu_flexbox a:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #035d8b;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.section-menu_flexbox a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #035d8b;
    bottom: 0px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

.section-menu_flexbox a:hover {
    opacity: 0.6;
    width: 90%;
}

.section-menu_flexbox a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}
section h1 {
    text-align: center;
    margin-top: 6vw;
    margin-bottom: 30px;
    font-size: 3.2vw;
    color: #00587f;
    line-height: 2.8vw;
    font-family: "acaslonpro-regular", serif;
    letter-spacing: 0.24em;
    font-weight: normal;
}
section h1 span {
    font-family: "Noto Serif JP",sans-serif;
    font-size: 1.45vw;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #917832;
}
.reason-flex {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}
.reason-flex_box {
    width: 100%;
    color: #00587f;
    font-size: 24px;
    display: flex;
    align-items: center;
}
.reason-flex_box span {
    font-size: 39px;
}
.reason-flex_box p {
    margin-left: 20px;
}
.reason-flex_box p:before {
    content: "|";
    color: #00587f;
    margin-right: 15px;
}
.reason-inner_flex {
    display: flex;
}
.reason-inner_flexbox {
    background-color: #fff;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

.reason-inner_flex p {
    color: #035d8b;
    margin-left: 20px;
    font-size: 24px;
}

.reason-inner_flex .reason-inner_flexbox {
    width: 50%;
}

.reason-inner_flex .reason-inner_flexbox:nth-child(2) {
    border-radius: 0px 30px 0px 0px;
    display: flex;
    align-items: center;
}

.section-sns {
    background-color: #00587f;
    padding-top: 40px;
}
.section-menu .a-box {
    margin: 40px auto 60px;
}
.section-menu .a-box a {
    width: 220px;
}

.section-menu_sns_block {
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    background-color: #fff;
    width: 95%;
    margin: 0 auto;
    padding-top: 40px;
    max-width: 1240px;
}

.section-menu_sns_title {
    width: 100%;
    margin: 0px auto 30px;
}

.section-menu_sns_flex {
    margin: 0px auto;
    padding: 0px 30px 20px;
}
.section-menu_sns_p {
    font-size: 10px;
    color: #888;
    margin: 0px 30px 0px 30px;
    padding-bottom: 30px;
}
.section-pickup {
    background-image:url("../img/treatment/rever_cl_treatment_template_bg.png");
    background-repeat: no-repeat;
    background-position:50% 50%;
    background-size: cover;
    padding-bottom: 40px;
}
.slider-pickup {
    width: 95%;
    margin: 0 auto;
    max-width: 1024px;
}
.slider-pickup_box {
    margin: 0px 5px;
}
.section-photo {
    background-color: #00587f;
    padding-top: 50px;
    padding-bottom: 35px;
}
.slider-photo_box {
    margin: 5px;
}
.section-access {
    padding: 35px 10px 0px 10px;
    background-color: #00587f;
    color: #fff;
    font-size: 13px;
}
.section-access a {
    color: #fff;
    text-decoration: underline;
}
.section-access_title {
    width: 30%;
    margin: 0 auto 40px;
    max-width: 400px;
}
.section-access_flex tbody tr:first-child {
    border-top: 1px solid #ccc;
}
.section-access_flex tr {
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
}
.section-access_flex tr td {
    margin: 10px auto;
}
.section-access_td_1 {
    width: 100px;
}
.section-access_td_2 {
    width: calc( 100% - 100px );
}
.section-access_tel img {
    width: 25%;
    margin: 10px 0px 5px;
    max-width: 300px;
}
.section-access_top_block span {
    font-size: 10px;
    display: block;
    margin-bottom: 10px;
    pointer-events: none;
}
.section-access_flex_box iframe {
    width: 100%;
}
.section-access_flex_box table {
    width: 100%;
}
.section-access_bottom_block p {
    margin-top: 10px;
}
/* footer */
.section-footer {
    background-color: #00587f;
    padding: 30px 0px 100px;
    font-size: 13px;
}
.section-footer_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
}
.section-footer_flex a {
    color: #fff;
}
.section-footer_flex .section-footer_flex_box:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
    color: #fff;
}
.section-footer_under {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.section-footer_under a {
    color: #fff;
}
.section-access_bottom_bnr {
    width: 300px;
    margin: 20px auto 20px 74px;
}
.section-access_bottom_bnr_flex {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.section-access_bottom_bnr_flex_box {
    width: calc((100% - 10px) / 2);
}
.section-link_top_bnr {
    width: 90%;
    margin: 0 auto;
    max-width: 640px;
}
.section-link_flex_box {
    width: calc((100% - 10px) / 2);
}
.section-link_p {
    font-size: 14px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.section-link_flex_bnr {
    display: flex;
    gap: 10px;
    width: 90%;
    margin: 0px auto 10px;
    max-width: 640px;
    flex-wrap: wrap;
}
.section-link_bottom_bnr {
    width: 90%;
    margin: 0 auto;
    max-width: 640px;
}
.section-link_bottom_bnr2 {
    width: 90%;
    margin: 10px auto;
    max-width: 640px;
}

.section-link {
    text-align: center;
    background-color: #00587f;
    color: #fff;
}
section.section-link h1 {
    color: #fff;
}

section.section-link h1 span {
    color: #fff;
}
/* tab */
.tab-list {
    display: flex;
}
.tab-list li {
    width: calc(100% / 2);
    text-align: center;
    background: #fff;
    border: 0px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: #035d8b;
    border-bottom: 1px solid #035d8b;
}
.tab-list li.is-active {
    background: #3d7e9e;
    color: #fff;
    border-bottom: 1px solid #035d8b;
}
.tab-item .tab-set {
    padding: 40px 20px;
}
.tab-item {
    background-color: #fff;
}
.tab-item .tab-set {
    min-height: 158px;
}
.section-menu_tab_block {
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}
@keyframes shad26 {
    0% {box-shadow: 0 0 0 0 #035d8b;}
    70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}
.section-menu_sns_flex .section-menu_sns_flex_box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.section-menu_sns_flex .section-menu_sns_flex_box:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-fixed {
    position: fixed;
    bottom: 0px;
    z-index: 2000;
}
.section-fixed_block {
    display: flex;
}
.section-fixed_box {
    width: 50%;
}

section.section-menu h1 {
    color: #fff;
}

/* Accordion */
.accordion {
    margin-left: auto;
    margin-right: auto;
    max-width: 757px;
    position: relative;
    width: 100%;
}
.accordion-title {
    color: #035d8b;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;
    height: 41px;
    letter-spacing: .1rem;
    align-items: center;
    display: flex;
}
.accordion-content {
    display: none;
    padding: 10px 20px;
}
.accordion-content p {
    font-size: 13px;
    line-height: 1.5;
}
/* タイトルの背景色 */
.section-menu .tab-item .tab-set .accordion-item .accordion-title {
    background-color: #f2f0ed;
}
/* 矢印 */
.accordion-title {
    position: relative;
}
.accordion-title::after {
    border-right: solid 2px #035d8b;
    border-top: solid 2px #035d8b;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
}
.accordion-title.open::after {
    top: 45%;
    transform: rotate(-45deg);
}

.body-price .accordion-title::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
}

.body-price .js-accordion-title .text-pricered {
    font-size: 20px;
}

.text-pricered {
    color: #ff933d;
}

/* page all */

.page .section-page-top div {
    width: 100%;
}

.page .section-page-top h1 {
    margin-top: 9.5vw;
    width: 100%;
}
.page .a-box a {
    width: 250px;
}

.section-page-top {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    height: 19vw;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.section-page-top::before {
    animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #fff;
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

@keyframes img-wrap {
    100% {
        transform: translateX(-100%);
    }
}

.page h2 {
    color: #035d8b;
    font-size: 30px;
    font-weight: 500;
}

/* treatment page */
.body-treatment .section-page-top {
    background-image:url("../img/treatment/rever_cl_menu_top_bg_pc.jpg");
}

.section-page-tr_menu_main {
    background-color: #f2f0ed;
}

.section-page-tr_menu_block {
    background-color: #e6ded4;
    max-width: 768px;
    padding-bottom: 40px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
    margin: 0 auto 40px;
}

.section-page-tr_menu_block h2:nth-child(1) {
    padding-top: 40px;
}
.section-page-tr_menu_flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 740px;
    width: 90%;
    margin: 0 auto 20px;
}

.section-page-tr_menu_flexbox {
    width: calc(( 100% - 20px )/ 2 );
}

.section-page-tr_menu_flexbox a {
    display: block;
    background: #035d8b;
    color: #fff;
    padding: 15px 30px;
    position: relative;
}

.section-page-tr_menu_flexbox a::after {
    border-right: solid 2px #fff;
    border-top: solid 2px #fff;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    transform: rotate(135deg);
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
}


.section-menu_sns_link:hover {
    opacity: 0.8;
}

.section-page-tr_menu_flexbox a:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: shad26 1.5s infinite;
    color: #fff;
}

.section-page-tr_menu_main h2 {
    text-align: center;
    margin: 60px auto 30px;
    font-size: 30px;
    font-weight: 600;
    color: #035d8b;
}

.section-page-tr_menu_sub {
    padding-bottom: 60px;
    background-color: #f2f0ed;
}
.section-page-tr_menu_sub:nth-child(odd) {
    background-color: #e6ded4;
}

.section-page-tr_menu_sub a {
    position: relative;
    padding-bottom: 6px;
}

.section-page-tr_menu_sub a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #035d8b;
    bottom: 0px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}

.section-page-tr_menu_sub a:hover {
    opacity: 0.6;
}

.section-page-tr_menu_sub a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.section-page-tr_menu_sub_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    font-size: 18px;
    max-width: 740px;
    width: 90%;
    margin: 0 auto;
    letter-spacing: .1em;
}

.section-page-tr_menu_sub_flexbox {
    width: 100%;
}

.section-page-tr_menu_sub_flexbox a {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    color: #035d8b;
    line-height: 1.6rem;
}

.section-page-tr_menu_sub_flexbox a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #035d8b;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.section-page-tr_menu_sub h3 {
    text-align: center;
    margin: 60px auto 30px;
    color: #035d8b;
    font-size: 34px;
}

.section-page-tr_menu_subblock {
    display: flex;
    max-width: 1024px;
    margin: 0 auto;
}
.section-page-tr_menu_subblock .section-page-tr_menu_subblock_inner {
    width: 50%;
}

/* doctor page */
.body-doctor .section-page-top {
    background-image:url("../img/doctor/rever_cl_doctor_top_bg_pc.jpg");
}
.section-page-doctor_block {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    background-color: #f2f0ed;
}

.section-page-doctor_flex {
    display: flex;
    gap: 40px;
    max-width: 1024px;
    margin: 40px auto;
}
.section-page-doctor_img {
    width: calc( 45% - 20px );
}
.section-page-doctor_text_block {
    width: calc( 55% - 20px );
}

.section-page-doctor_title_pc {
    font-size: 26px;
    color: #035d8b;
    letter-spacing: .15em;
    margin: 10px auto 40px;
    font-weight: 500;
}
.section-page-doctor_2 .section-page-doctor_title_pc {
    font-size: 22px;
}
.section-page-doctor_name_flex {
    display: flex;
    justify-content: space-between;
    color: #035d8b;
    border-bottom: 1px solid #035d8b;
    padding-bottom: 5px;
    letter-spacing: .15em;
    font-weight: 500;
    margin-bottom: 20px;
    align-items: center;
}
.section-page-doctor_name_flex p {
    font-size: 16px;
    line-height: 20px;
    margin-left: 30px;
}
.section-page-doctor_name_flex p span {
    font-size: 26px;
    margin-left: 30px;
}
.section-page-doctor_2 .section-page-doctor_name_flex p {
    font-size: 16px;
    line-height: 20px;
}
.section-page-doctor_name_insta {
    width: 30px;
    margin-right: 20px;
}
.section-page-doctor2_block {
    background-color: #e6ded4;
    max-width: 1024px;
    margin: 0 auto 40px;
    display: flex;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}
.section-page-doctor2_block a {
    text-decoration: underline;
    color: #035d8b;
}
.section-page-doctor2_box h2 {
    color: #035d8b;
    font-size: 26px;
    letter-spacing: .15em;
    margin-bottom: 20px;
}
.section-page-doctor2_box {
    width: 50%;
}
.section-page-doctor2_box:first-child {
    border-right: 1px solid #ccc;
    margin: 30px 0px 30px 30px;
    padding-right: 30px;
}
.section-page-doctor2_box:last-child {
    margin: 30px 30px 30px 30px;
}
.section-page-doctor2_box table tr {
    display: flex;
}
.section-page-doctor2_box table tr td:first-child {
    margin-right: 20px;
    min-width: 79px;
}
.section-page-doctor3_photo {
    background-image: url(../img/treatment/rever_cl_treatment_template_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.section-page-doctor3_photo h2 {
    color: #035d8b;
    letter-spacing: .15em;
    text-align: center;
    margin: 80px auto 40px;
    font-size: 26px;
}
.section-page-doctor3_photo .a-box {
    margin: 30px auto;
}
.section-page-doctor3_bluetext {
    margin: 60px auto;
    color: #035d8b;
    letter-spacing: .15em;
    font-size: 18px;
    text-align: center;
}
.section-page-doctor3_list {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 768px;
    margin: 0 auto 50px;
}
.section-page-doctor3_box {
    padding: 50px;
    background-repeat: no-repeat;
    background-position:50% 50%;
    background-size: cover;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    box-shadow: 4px 5px 5px rgba(0,0,0,0.2);
}
.section-page-doctor3_list .section-page-doctor3_box:nth-child(1) {
    background-image:url("../img/treatment/rever_cl_treatment_template_number1_brown.png");
    background-position: right 4% top 12%;
    background-size: 70px;
    border-radius: 0px 40px 0px 0px;
}
.section-page-doctor3_list .section-page-doctor3_box:nth-child(2) {
    background-image:url("../img/treatment/rever_cl_treatment_template_number2_brown.png");
    background-position: left 4% top 20%;
    background-size: 70px;
    margin-left: auto;
    border-radius: 40px 0px 0px 0px;
}
.section-page-doctor3_list .section-page-doctor3_box:nth-child(3) {
    background-image:url("../img/treatment/rever_cl_treatment_template_number3_brown.png");
    background-position: right 4% top 12%;
    background-size: 70px;
    border-radius: 0px 40px 0px 0px;
}
.section-page-doctor3_list .section-page-doctor3_box:nth-child(2) .section-page-doctor3_textarea {
    margin-left: 80px;
}
.section-page-doctor3_textarea h3 {
    letter-spacing: .15em;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #035d8b;
}
.section-page-doctor3_textarea p {
    color: #333;
}
.section-page-doctor4 {
    background-color: #00587f;
    padding-top: 40px;
    padding-bottom: 40px;
}
.section-page-doctor4 h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
/* visitor page */
.section-page-visitor_main {
    text-align: center;
    padding: 60px 0;
    background-color: #f2f0ed;
}
.section-page-visitor_sub {
    background-image: url(../img/treatment/rever_cl_treatment_template_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}
.section-page-visitor_main h2 {
    color: #035d8b;
}
.section-page-visitor_main p {
    color: #035d8b;
    margin: 30px auto 60px;
    letter-spacing: .15rem;
    line-height: 2rem;
}
.section-page-visitor_flex {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center
}
.section-page-visitor_flex_2 {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center
}
.section-page-visitor_flex .section-page-visitor_flexbox:nth-child(1) a {
    border: 1px solid #007800;
    background-color: #f1fff4;
    color: #007800;
}
.section-page-visitor_flexbox:hover {
    opacity: 0.7;
}
.section-page-visitor_flexbox a {
    padding: 15px 50px;
    border-radius: 30px;
}
.section-page-visitor_flex .section-page-visitor_flexbox:nth-child(2) a {
    border: 1px solid #840000;
    background-color: #ffe2e7;
    color: #840000;
}
.section-page-visitor_sub {
    background-color: #eaf4f8;
}
.section-page-visitor_sub h3 {
    color: #00587f;
    text-align: center;
    margin: 40px auto;
    font-size: 28px;
    font-weight: 500;
}
.section-page-visitor_title {
    display: flex;
    color: #035d8b;
    align-items: end;
}
.section-page-visitor_title p {
    font-weight: 500;
    letter-spacing: .15rem;
    margin-left: 5px;
}
.section-page-visitor_num {
    width: 70px;
}
.section-page-visitor_block {
    max-width: 1024px;
    margin: 0 auto 80px;
    background-color: #fff;
    padding: 40px 0;
    position: relative;
}
.section-page-visitor_block::before {
    content: "";
    border: 80px solid transparent;
    border-top: 50px solid #fff;
    margin-left: -10px;
    top: 100%;
    left: 46%;
    position: absolute;
}
.section-page-visitor_sub .section-page-visitor_block:last-child::before {
    display: none;
}
.section-page-visitor_flex {
    display: flex;
    gap: 20px;
}
.section-page-visitor_img {
    width: calc( 40% - 10px );
}
.section-page-visitor_text {
    width: calc( 50% - 10px );
}
.section-page-visitor_text h4 {
    color: #035d8b;
    font-size: 26px;
    margin-top: 6px;
    letter-spacing: .1rem;
}
.section-page-visitor_p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}
.body-visitor .section-page-top,.body-news .section-page-top {
    background-image:url("../img/visitor/rever_cl_flow_top_bg_pc.jpg");
}
/* access */
.body-access .section-page-top {
    background-image:url("../img/visitor/rever_cl_flow_top_bg_pc.jpg");
}
.body-access a {
    color: #266889;
    text-decoration: underline;
}
.section-page-access_main {
    background-color: #f2f0ed;
}
.section-page-access_main h2 {
    text-align: center;
    margin: 30px auto;
}
.section-page-access_main p {
    color: #266889;
    margin: 5px auto 30px;
    font-size: 14px;
    max-width: 768px;
}
.section-page-access_main table {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 768px;
}
.section-page-access_main table span {
    font-size: 12px;
}
.section-page-access_main table tr:first-child td {
    background: #3e7d9d;
    color: #fff;
    text-align: center;
    border: 0px;
    padding: 5px 20px;
}
.section-page-access_main table tr:nth-child(2) td {
    background: #e6ded4;
    color: #266889;
    text-align: center;
    border: 0px;
    padding: 10px;
    line-height: 1.6rem;
}
.section-page-access_main table tr td:first-child {
    padding: 5px 60px;
    font-size: 23px;
}
.section-page-access_sub {
    background-image: url(../img/treatment/rever_cl_treatment_template_bg.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    color: #266889;
}
.section-page-access_sub h3 {
    margin: 60px auto 40px;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
}
.section-page-access_sub h4 {
    margin: 60px auto 40px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-page-access_sub h4:before, .section-page-access_sub h4:after {
  border-top: 1px solid;
  content: "";
  width: 2em;
}
.section-page-access_sub h4:before {
  margin-right: 1em;
}
.section-page-access_sub h4:after {
  margin-left: 1em;
}
.section-page-access_flexbox {
    font-size: 14px;
}
.section-page-access_flexbox span {
    font-size: 12px;
}
.section-page-access_flexbox p {
    font-size: 12px;
}
.section-page-access_sub a {
    color: #266889;
    text-decoration: underline;
}
.section-page-access_sub a:hover {
    opacity: 0.6;
}
.section-page-access_flexbox table {
    width: 100%;
}
.section-page-access_flexbox table tr {
    border-bottom: 1px solid #266889;
    display: block;
}
.section-page-access_flex {
    margin: 0 auto;
}
.section-access_td_1 {
    min-width: 130px;
}
.section-access_map {
    max-width: 1024px;
    margin: 30px auto 80px;
    box-shadow: 5px 5px 5px #ccc;
}
.section-access_map iframe {
    width: 100%;
}
/* price page */
.body-price {
    color: #00587f;
}
.body-price .accordion-title {
    color: #fff;
    font-size: 25px;
    font-weight: normal;
    background: linear-gradient(70deg, #035d8b, #98d7f8);
}
.body-price .section-page-top {
    background-image:url("../img/price/rever_cl_price_top_bg_pc.jpg");
}
.section-page-price_block {
    background-color: #f2f0ed;
}
.section-page-price_block h2 {
    margin: 30px auto;
    text-align: center;
}
.body-price .tab-list li {
    color: #a6a6a6;
    background: #fff;
    margin: 0px;
}
.body-price .tab-list li.is-active {
    background: #035d8b;
    color: #fff;
}
.section-page-price_tab {
    width: 90%;
    margin: 30px auto 30px;
    box-shadow: 5px 5px 5px #ccc;
    max-width: 1024px;
    background-color: #e6ded4;
    padding: 20px 0px 40px;
}
.body-price .accordion {
    width: 95%;
    max-width: 95%;
}
.body-price .accordion p {
    font-size: 14px;
}
.body-price ul li {
    font-size: 17px;
    margin: 10px 0;
}
.body-price .accordion-item {
    width: 100%;
}
.body-price .tab-item .tab-set {
    background-color: #e6ded4;
}
.body-price .accordion-content {
    background-color: #fff;
    padding: 20px 0px;
    color: #00587f;
}
.accordion-content p.price_big_text {
    font-size: 20px;
}
.price_title_table {
    background-color: #accfe1;
    width: 100%;
}
.price_big_text {
    margin: 0px 20px 20px 20px;
}
.price_title_table tr td:nth-child(1) {
    padding-left: 40px;
}
.price_title_table tr td {
    padding: 5px;
}
.price_title_table tr td:nth-child(2),.price_title_table tr td:nth-child(3) {
    width:20%;
    min-width: 150px;
    text-align: center;
}
.accordion-content p.price_subtitle:before {
    content: '●';
    color: #79c6ec;
    margin-right: 10px;
}
.body-price .accordion .accordion-content p.price_subtitle {
    font-size: 20px;
    margin: 0px 0px 10px 0px;
}
.price_inner {
    padding: 30px 0px 30px 30px;
}
.price_inner.price_table_border {
    padding: 30px;
}
.price_inner .text-pricered {
    font-size: 18px;
}
.price_table {
    font-size: 20px;
    width: 100%;
}
.price_table_border tr td {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #efefef;
}
.price_table tr td:first-child {
    color: #569abc;
}
.price_table tr td:nth-child(2) {
    color: #1b96d4;
    width:20%;
    min-width: 150px;
    text-align: center;
}
.price_table tr td:nth-child(3) {
    width:20%;
    min-width: 150px;
    text-align: center;
}
.price_inner.price_table_border .price_table tr td:nth-child(2) {
    width: 23%;
}
.price_inner.price_table_border .price_table tr td:nth-child(3) {
    width: 17%;
}
.price_table_2 {
    font-size: 20px;
    width: 100%;
}
.price_table_2 tr td:nth-child(1) {
    color: #333;
}
.price_table_2 tr td:nth-child(2) {
    color: #1b96d4;
    width:20%;
    min-width: 150px;
    text-align: center;
}
.price_table_2 tr td:nth-child(3) {
    width:20%;
    min-width: 150px;
    text-align: center;
}
.hr-price {
    width: 100%;
    margin: 20px auto;
    border: 1px solid #efefef;
}
.body-price .accordion p {
    color: #333;
    font-size: 14px;
}
.body-price .accordion p.price_blue_title {
    color: #035d8b;
    font-size: 27px;
    margin-bottom: 20px;
}
.price_flex {
    display: flex;
    margin-top: 20px;
    align-items: center;
}
.price_flexbox ul li:before {
    content: '●';
    color: #79c6ec;
    margin-right: 10px;
}
.price_flexbox {
    width: 50%;
}
.body-price {
    background-color: #f2f0ed;
}
.section-page-price_subblock {
    margin: 30px auto 10px;
    width: 90%;
    background-color: #e6ded4;
    max-width: 1024px;
}
.section-page-price_subblock h3 {
    font-size: 26px;
    margin: 30px auto 20px;
    color: #035d8b;
    text-align: center;
}
.section-page-price_subblock ul li:before {
    content: '●';
    color: #79c6ec;
    margin-right: 10px;
}
.section-page-price_subblock p {
    margin: 0px 30px;
}
.section-page-price_subblock p.price-bigtext {
    font-size: 20px;
}
.section-page-price_subblock p:last-child {
    margin: 10px 30px 30px 30px;
}
.section-page-price_subblock ul {
    margin: 30px;
}
/* news */
.news_detail h2{
    font-size: 22px;
    color:#00587f;
    margin:40px 0px 10px 0;
    font-weight:normal;
    border-bottom:3px solid #e9e9e9;
    padding:10px 0px;
    font-weight: 600;
}
.news_detail a {
    color: #333;
}
.news_detail #up_ymd{
    text-align:right;
    letter-spacing: .15em;
    font-size:14px;
    margin:5px 0px;
}
.news_detail .detailUpfile{
    margin:35px 0 35px;
    text-align:center;
}
.news_detail .backORcloseBtn{
    text-align:center;
    line-height:100%;
    margin-top:15px;
}
.news_detail .backORcloseBtn a{
    display:inline-block;
    padding:4px 15px;
    border:1px solid #aaa;
    color:#999;
    border-radius:6px;
    text-decoration:none;
    font-size:12px;
    background-color: #fff;
}
.news_detail .detailUpfile img{
    max-width:100%;
    height:auto;
}
.news_detail .pNav{
    font-size:11px;
}
.news_detail {
    line-height: 1.8rem;
    letter-spacing: .05em;
    max-width: 769px;
    margin: 0 auto;
    width: 90%;
    padding: 40px 0px;
    font-size: 14px;
}
.news_detail .content {
    max-width: 90%;
    margin: 0 auto;
}
.section-access_sub_title {
    padding: 2px;
    text-align: center;
    width: 90%;
    margin: 30px auto 10px;
    background-image: linear-gradient(90deg, rgba(255, 0, 165, 0), rgb(191 233 255 / 40%), rgba(191, 233, 255, 0));
}
.body-access .section-footer_flex a {
    color: #fff;
    text-decoration: none;
}
.body-access .section-access a {
    color: #fff;
    text-decoration: none;
}
.body-access .section-footer a {
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }
    #header.dnone {
        opacity: 1;
        display: block;
    }
    #header {
        padding-right: 73px;
        height: 39px;
    }
    .logo_header img {
        margin-top: 6%;
    }
    .logo_header {
        margin-left: 5px;
    }
    .openbtn1 {
        display: block;
    }
    #header.dnone.panelactive #g-navi ul {
        padding: 0px;
        position: relative;
        top: 40%;
        left:50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
    }
    .pc-display {
        display: none;
    }
    .sp-display {
        display: block;
    }
    #header.dnone.panelactive #g-navi{
        display: block;
    }
    #header.dnone #g-navi{
        display: none;
    }
    .slider-top {
        margin: 58px auto 30px;
    }
    .slider-top_box {
        margin: 0px;
    }
    .slider-top .slick-next,.slider-pickup .slick-next {
        right: 3%;
        top: 50% !important;
        height: 45px;
        width: 9px;
    }
    .slider-banner .slick-prev, .slider-banner .slick-next {
        width: 8px;
        height: 38px;
        top: 46% !important;
    }
    .slider-banner .slick-next {
        right: -18px;
    }
    .slider-banner .slick-prev {
        left: -18px;
    }
    .slider-top .slick-prev,.slider-pickup .slick-prev {
        left: 3%;
        top: 50% !important;
        height: 45px;
        width: 9px;
    }
    .block-banner {
        margin: 45px auto 0px;
        max-width: 100vw;
    }
    section h1 {
        font-size: 26px;
        line-height: 20px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    section h1 span {
        font-size: 14px;
    }
    .section-news {
        padding-bottom: 10px;
    }
    .iframe-news iframe {
        width: 100%;
        min-height: 380px;
        height: 380px;
    }
    .section-news .iframe-news {
        width: auto;
    }
    .slider-news .slick-dots {
        width: 88%;
    }
    .section-news .a-box a {
        width: 140px;
    }
    .reason-flex {
        flex-wrap: wrap;
        gap: 10px;
        width: 77%;
        font-size: 18px;
    }
    .reason-flex_box p {
        font-size: 16px;
    }
    .reason-flex_box span {
        font-size: 30px;
    }
    .reason-flex_box {
        width: 100%;
    }
    .reason-inner_flex p {
        font-size: 16px;
        margin-left: 20px;
    }
    .reason-flex .reason-flex_box:nth-child(1) .reason-inner_flex .reason-inner_flexbox:nth-child(2) ,.reason-flex .reason-flex_box:nth-child(2) .reason-inner_flex .reason-inner_flexbox:nth-child(2),.reason-flex .reason-flex_box:nth-child(3) .reason-inner_flex .reason-inner_flexbox:nth-child(2) ,.reason-flex .reason-flex_box:nth-child(4) .reason-inner_flex .reason-inner_flexbox:nth-child(2) {
        background-size: 34px;
    }
    .reason-flex .reason-flex_box .reason-inner_flex .reason-inner_flexbox:nth-child(2) {
        width: 65%;
    }
    .reason-flex .reason-flex_box .reason-inner_flex .reason-inner_flexbox:nth-child(1) {
        width: 35%;
    }
    .a-box a {
        padding: 5px 30px;
        width: 180px;
    }
    .section-doctor {
        background-image:url("../img/top/rever_cl_doctor_bg_sp.jpg");
    }
    .section-reason .a-box {
        margin: 25px auto 40px;
    }
    .section-docter_text,.section-docter_text2 {
        display: none;
    }
    .section-docter_name2 {
        bottom: -10%;
    }
    .section-doctor .a-box a {
        width: 230px;
        margin-top: 15px;
    }
    .section-docter_text_sp {
        margin-top: 30px;
    }
    .section-docter_text_1 {
        font-size: 11px;
        text-align: center;
    }
    .section-docter_text_flex {
        display: flex;
        width: 85%;
        margin: 20px auto;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    .section-docter_text_flex .section-docter_text_flex_box:nth-child(1) {
        width: 35%;
    }
    .section-docter_text_flex .section-docter_text_flex_box:nth-child(2) {
        width: 65%;
    }
    .section-docter_text_2 span {
        color: #035d8b;
        letter-spacing: 0.24em;
        font-size: 17px;
        font-weight: normal;

    }
    .section-docter_text_2 {
        font-size: 13px;
        font-family: "Noto Serif JP",sans-serif;
        line-height: 20px;
        letter-spacing: .07em;
        margin-top: 0px;
    }
    .tab-item .tab-set {
        min-height: 227px;
    }
    .accordion-item {
        margin-bottom: 10px;
    }
    .accordion-title {
        padding: 3px 20px;
        width: 80%;
        margin: 0 auto;
    }
    .accordion-content {
        padding: 0px 20px 10px;
    }
    .section-menu .a-box {
        margin: 20px auto 40px;
    }
    .section-menu_sns_flex {
        padding: 0px 20px 20px;
    }
    .section-menu_sns_p {
        margin: 0px 20px 0px 20px;
        padding-bottom: 20px;
        font-size: 9px;
    }
    .section-menu_flex {
        font-size: 14px;
    }
    .section-menu_sns_block {
        padding-top: 20px;
    }
    .section-menu_sns_title {
        margin: 10px auto 10px;
        width: 83%;
    }
    .section-menu_sns_link a p {
        padding: 5px 30px 5px 10px;
        font-size: 12px;
        letter-spacing: .09em;
        text-align: left;
    }
    .section-menu_sns_flex .section-menu_sns_flex_box:nth-child(2) {
        gap: 5px;
        flex-wrap: wrap;
        flex-direction: row;
        margin-top: 20px;
    }
    .section-menu_sns_link {
        width: calc( (100% - 5px ) / 2 );
    }
    .section-photo {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-access_title {
        width: 65%;
        min-width: 200px;
        margin: 0 auto 20px;
    }
    .section-access_flex {
        width: 80%;
        margin: 0 auto;
    }
    .section-access_flex tr td {
        margin: 5px auto;
    }
    .section-access_flex_box table {
        font-size: 11px;
        width: 100%;
    }
    .section-access_bottom_bnr {
        margin: 10px auto;
        width: 100%;
    }
    .section-page-top2 {
        padding-top: 59px;
    }
    .section-access_tel img {
        width: 35%;
        margin: 10px 0px 0px;
    }
    .section-access_top_block p {
        font-size: 11px;
    }
    .section-access_bottom_block p {
        font-size: 11px;
        margin-bottom: 20px;
    }
    .section-access_flex_box iframe {
        max-height: 300px;
    }
    .section-menu_sns_flex .section-menu_sns_flex_box iframe {
        max-height: 184px;
    }
    .slider-banner {
        padding-bottom: 20px;
        max-width: 80%;
    }
    .header-flex {
        display: none;
    }

    /* page all */
    .section-page-top {
        height: 170px;
    }
    .page .section-page-top h1 {
        margin-top: 100px;
    }

    .page h2 {
        font-size: 22px;
    }

    /* treatment page */
    .section-page-tr_menu_subblock {
        flex-direction: column;
        width: 90%;
        gap: 20px;
    }
    .section-page-tr_menu_subblock .section-page-tr_menu_subblock_inner {
        width: 100%;
    }
    .section-page-tr_menu_subblock .section-page-tr_menu_subblock_inner:nth-child(1) {
        width: 80%;
        margin: 0 auto;
    }
    .section-page-tr_menu_block {
        width: 85%;
    }
    .section-page-top {
        background-image:url("../img/treatment/rever_cl_menu_top_bg_sp.jpg");
    }

    .section-page-tr_menu_main h2 {
        margin: 40px auto 20px;
        font-size: 26px;
    }

    .section-page-tr_menu_flex {
        width: 80%;
    }

    .section-page-tr_menu_flexbox {
        width: 100%;
    }

    .section-page-tr_menu_sub {
        padding-bottom: 40px;
    }

    .section-page-tr_menu_sub h3 {
        margin: 40px auto 20px;
        font-size: 28px;
    }
    .section-page-tr_menu_sub_flexbox {
        width: 100%;
        border-bottom: 1px dashed #ccc;
    }
    .section-page-tr_menu_sub_flex {
        width: 70%;
    }

    .section-page-tr_menu_sub_flex {
        font-size: 16px;
    }

    /* doctor page */
    .section-page-top {
        background-image:url("../img/doctor/rever_cl_doctor_top_bg_sp.jpg");
    }
    .section-page-doctor_title_sp {
        color: #035d8b;
        text-align: center;
        margin: 20px auto 20px;
        font-size: 16px;

    }
    .section-page-doctor_flex {
        margin: 0 auto;
        display: block;
    }
    .section-page-doctor_img {
        width: 70%;
        margin: 0 auto 20px;
    }
    .section-page-doctor_text_block {
        width: 90%;
        margin: 0 auto;
    }
    .section-page-doctor_name_flex p span {
        font-size: 22px;
        margin-left: 72px;
        margin-top: 8px;
        display: block;
    }
    .section-page-doctor_2 .section-page-doctor_name_flex p span {
        margin-left: 60px;
        margin-top: 8px;
        display: block;
    }
    .section-page-doctor_name_flex p {
        font-size: 14px;
        margin-left: 29px;
    }
    .body-doctor .section-page-doctor_block:nth-child(3) .section-page-doctor_name_flex p {
        margin-left: 19px;
    }
    .section-page-doctor_2 .section-page-doctor_name_flex p {
        font-size: 13px;
    }
    .section-page-doctor_name_flex {
        margin-bottom: 10px;
    }
    .section-page-doctor2_block {
        width: 90%;
        margin-top: 20px;
        display: block;
    }
    .section-page-doctor2_box {
        width: 100%;
    }
    .section-page-doctor_name_insta {
        width: 25px;
        margin-right: 40px;
    }
    .section-page-doctor4 h2 {
        font-size: 18px;
        line-height: 2rem;
        margin-bottom: 20px;
    }
    .section-page-doctor_text {
        font-size: 12px;
    }
    .section-page-doctor_title_pc {
        display: none;
    }
    .section-page-doctor3_photo h2 {
        margin: 40px auto 30px;
        font-size: 16px;
        letter-spacing: .1em;
        line-height: 1.6rem;
    }
    .section-page-doctor3_bluetext {
        margin: 30px auto 40px;
        font-size: 14px;
        letter-spacing: .1em;
        line-height: 1.4rem;
    }
    .section-page-doctor3_box {
        display: block;
        width: 100%;
        padding: 0px;
    }
    .section-page-doctor3_number {
        width: 60px;
        margin-left: 40px;
        margin-top: 30px;
    }
    .section-page-doctor3_textarea {
        margin: 30px;
    }
    .section-page-doctor3_textarea p {
        font-size: 12px;
        line-height: 1.4rem;
    }
    .section-page-doctor3_textarea h3 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 22px;
    }
    .section-page-doctor2_box:first-child {
        border-right: 0px;
    }
    .section-page-doctor2_box:first-child,.section-page-doctor2_box:last-child {
        margin: 0px;
        padding-right: 0px;
    }
    .section-page-doctor2_box h2 {
        padding-top: 30px;
        margin-bottom: 10px;
        margin-left: 30px;
        font-size: 20px;
    }
    .section-page-doctor2_block .section-page-doctor2_box:nth-child(3) h2 {
        padding-top: 20px;
    }
    .section-page-doctor2_block hr {
        margin-top: 25px;
        width: 80%;
        border-top: 1px solid #ccc;
    }
    .section-page-doctor2_box table,.section-page-doctor2_text {
        margin-left: 30px;
        margin-right: 30px;
        font-size: 12px;
    }
    .section-page-doctor2_text {
        padding-bottom: 30px;
    }
    .section-page-doctor2_box table tr td:first-child {
        margin-right: 10px;
        min-width: 50px;
    }
    .section-page-doctor2_yamamoto table tr td:nth-child(2) {
        width: calc(100% - 74px);
    }
    .section-page-doctor3_list {
        width: 90%;
        margin: 0 auto 40px;
    }
    .section-page-doctor3_list .section-page-doctor3_box:nth-child(1) {
        background-size: 45px;
        background-position: right 5% top 12%;
    }
    .section-page-doctor3_list .section-page-doctor3_box:nth-child(2) {
        background-size: 45px;
        background-position: left 6% top 12%;
    }
    .section-page-doctor3_list .section-page-doctor3_box:nth-child(3) {
        background-size: 45px;
        background-position: right 5% top 12%;
    }
    /* visitor page */
    .body-visitor .section-page-top,.body-news .section-page-top {
        background-image:url("../img/visitor/rever_cl_flow_top_bg_sp.jpg");
    }
    .section-page-visitor_flex {
        flex-direction: column;
        gap: 0px;
    }
    .section-page-visitor_block {
        width: 90%;
    }
    .section-page-visitor_flex_2 {
        gap: 10px;
    }
    .section-page-visitor_flexbox {
        margin: 30px auto;
    }
    .section-page-visitor_text h4 {
        font-size: 21px;
    }
    .section-page-visitor_num {
        width: 45px;
    }
    .section-page-visitor_p {
        margin: 10px auto 0;
        width: 90%;
    }
    .section-page-visitor_block::before {
        border: 30px solid transparent;
        border-top: 20px solid #fff;
    }
    .section-page-visitor_block {
        padding: 20px 0;
        margin: 0 auto 30px;
    }
    .section-page-visitor_main p {
        margin: 20px auto;
        width: 95%;
    }
    .section-page-visitor_main {
        padding: 30px 0;
    }
    /* access page */
    .body-access .section-page-top {
        background-image: url("../img/visitor/rever_cl_flow_top_bg_sp.jpg");
    }
    .section-page-access_main {
        overflow: scroll;
    }
    .section-page-access_main h2 {
        font-size: 24px;
    }
    .section-page-access_main table tr td:first-child {
        font-size: 12px;
        padding: 5px;
    }
    .section-page-access_main table tr:first-child td {
        padding: 5px;
    }
    .section-page-access_main table span {
        font-size: 10px;
    }
    .section-page-access_main p {
        font-size: 12px;
        margin-left: 20px;
    }
    .section-page-access_flexbox {
        width: 90%;
        margin: 0 auto;
    }
    .section-page-access_flex .section-page-access_flexbox:first-child {
        margin-bottom: 20px;
    }
    .section-access_td_1 {
        max-width: 120px;
    }
    .section-page-access_flexbox {
        font-size: 12px;
    }
    .section-page-access_flexbox span {
        font-size: 10px;
    }
    .section-access_map {
        width: 90%;
    }
    /* price page */
    .body-price .section-page-top {
        background-image:url("../img/price/rever_cl_price_top_bg_sp.jpg");
    }
    .body-price .js-accordion-title .text-pricered {
        font-size: 11px;
    }
    .price_inner .text-pricered {
        font-size: 10px;
    }
    .body-price .accordion-title {
        font-size: 14px;
        height: 24px;
        width: auto;
        padding: 3px 10px;
    }
    .body-price .accordion-title::after {
        top: 31%;
    }
    .body-price .accordion-title.open::after {
        top: 47%;
    }
    .accordion-content p.price_big_text {
        font-size: 14px;
    }
    .price_big_text {
        margin: 0px 10px 10px 10px;
    }
    .body-price .accordion-content {
        padding: 10px 0px;
    }
    .body-price .tab-item .tab-set {
        padding: 20px 0px;
    }
    .hr-price {
        width: 93%;
    }
    .price_title_table tr td:nth-child(1) {
        padding-left: 10px;
    }
    .price_title_table tr td:nth-child(2), .price_title_table tr td:nth-child(3) {
        width: 18%;
        min-width: 55px;
    }
    .price_title_table tr td {
        font-size: 9px;
    }
    .price_title_table tr td span {
        display: block;
    }
    .accordion-content p.price_subtitle {
        font-size: 14px;
    }
    .price_inner {
        padding: 15px 0px 15px 15px;
    }
    .price_inner.price_table_border {
        padding: 9px;
    }
    .price_table tr td:first-child {
        padding-left: 10px;
    }
    .price_table tr td:nth-child(2) {
        width: 18%;
        min-width: 50px;
    }
    .price_table tr td:nth-child(3) {
        width: 18%;
        min-width: 50px;
    }
    .price_table tr td {
        font-size: 11px;
    }
    .price_table_2 tr td:nth-child(2) {
        width: 18%;
        min-width: 50px;
    }
    .price_table_2 tr td:nth-child(3) {
        width: 18%;
        min-width: 50px;
    }
    .price_table_2 tr td {
        font-size: 11px;
    }
    .body-price .accordion p.price_blue_title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .body-price .accordion p {
        font-size: 11px;
    }
    .body-price .accordion .accordion-content p.price_subtitle {
        font-size: 12px;
    }
    .price_flex {
        margin-top: 10px;
    }
    .body-price ul li {
        font-size: 12px;
        margin: 2px 0;
    }
    .section-page-price_subblock h3 {
        margin: 20px auto 10px;
        font-size: 20px;
    }
    .section-page-price_subblock p.price-bigtext {
        font-size: 16px;
    }
    .section-page-price_subblock p {
        font-size: 12px;
        margin: 0px 15px;
    }
    .section-page-price_subblock p:last-child {
        margin: 10px 15px 15px 15px;
    }
    .section-page-price_subblock ul {
        margin: 15px;
    }
    .section-page-price_tab {
        margin: 30px auto 18px;
        padding: 1px 0px 20px;
    }
    .body-price .tab-item .tab-set {
        min-height: inherit;
    }
    .price_inner.price_table_border .price_table tr td:nth-child(3) {
        width: 19%;
        text-align: right;
    }
    .price_inner.price_table_border .price_table tr td:nth-child(2) {
        width: 15%;
    }
    /* news */
    .news_detail h2 {
        font-size: 16px;
    }
    .bodynews .section-access_tel {
        margin: 10px 0px 20px;
    }
    .body-treatment .section-page-top {
        background-image:url("../img/treatment/rever_cl_menu_top_bg_sp.jpg");
    }
    .section-link_p {
        margin-top: 30px;
        font-size: 12px;
        margin-bottom: 10px;
    }
    .section-page-access_sub h3 {
        margin: 40px auto 0px;
        font-size: 24px;
    }
    .section-page-access_sub h4 {
        margin: 30px auto 20px;
        font-size: 18px;
        font-weight: 500x;
    }
    .section-page-access_sub h4:before, .section-page-access_sub h4:after {
        width: 1em;
    }
}
@media screen and (min-width: 769px) {
    .section-page-top2 {
        display: none;
    }
    .section-menu .tab-item .tab-set .accordion-item .accordion-title {
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    .section-menu .tab-item .tab-set .accordion-item .accordion-title::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 0%;
        height: 100%;
        background-color: #e3dcd2;
        -webkit-transition: .5s;
        transition: .5s;
    }
    .section-menu .tab-item .tab-set .accordion-item .accordion-title:hover::before {
        width: 100%;
    }
    .pc-display {
        display: block;
    }
    .sp-display {
        display: none;
    }
    #header.dnone #g-navi {
        display: none;
    }
    #g-navi {
        margin-right: 20px;
    }
    .accordion-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .accordion-item {
        width: calc( ( 100% - 10px ) / 2 ) ;
    }
    .section-menu_sns_flex {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .section-menu_sns_flex .section-menu_sns_flex_box:nth-child(1) {
        width: 68%;
    }
    .section-menu_sns_flex .section-menu_sns_flex_box:nth-child(2) {
        width: 32%;
    }
    .section-access a:hover {
        opacity: 0.8;
    }
    .section-access_flex {
        display: flex;
        justify-content: center;
        gap: 10px;
        max-width: 1024px;
        margin: 0 auto;
    }
    .section-fixed {
        display: none;
    }
    .section-footer {
        padding: 30px 0px;
    }
    .section-access_flex_box {
        width: calc( 50% - 5px );
    }
    #header {
        padding: 0px;
    }
    #header.dnone.panelactive #g-navi{
        display: block;
    }
    #header.dnone #g-navi{
        display: none;
    }
    #header.dnone.panelactive #g-navi ul{
        display:block;/*flexの横並びをblockにして縦並びに*/
        position: relative;
        top: 50%; left:50%;
        transform: translateY(-50%) translateX(-50%);
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
    }
    .header-flex {
        max-width: 73px;
        position: fixed;
        right: 0px;
        top: 140px;
        z-index: 2001;
    }
    .header-link {
        width: 100%;
    }
    .body-detail .header-link a:hover {
        opacity: 1;
    }
    .header-flex .header-link:nth-child(1) .header-link_inner {
        background-color: #59b86c;
        padding: 20px;
        border-radius: 0px 40px 0px 0px;
        box-shadow: -4px 5px 5px rgba(0,0,0,0.2);
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    .header-flex .header-link:nth-child(1) .header-link_inner::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 0%;
        height: 100%;
        background-color: #5aca89;
        -webkit-transition: .5s;
        transition: .5s;
    }
    .header-flex .header-link:nth-child(1) .header-link_inner:hover::before {
        width: 100%;
    }

    .header-flex .header-link:nth-child(2) .header-link_inner {
        background-color: #2b9c5a;
        padding: 20px;
        border-radius: 0px 0px 0px 0px;
        box-shadow: -4px 5px 5px rgba(0,0,0,0.2);
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    .header-flex .header-link:nth-child(2) .header-link_inner::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 0%;
        height: 100%;
        background-color: #1d7642;
        -webkit-transition: .5s;
        transition: .5s;
    }
    .header-flex .header-link:nth-child(2) .header-link_inner:hover::before {
        width: 100%;
    }

    .header-flex .header-link:nth-child(3) .header-link_inner {
        background-color: #c04367;
        padding: 20px;
        border-radius: 0px 0px 0px 40px;
        box-shadow: -4px 5px 5px rgba(0,0,0,0.2);
        position: relative;
        z-index: 0;
        overflow: hidden;
    }
    .header-flex .header-link:nth-child(3) .header-link_inner::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 0%;
        height: 100%;
        background-color: #c17289;
        -webkit-transition: .5s;
        transition: .5s;
    }
    .header-flex .header-link:nth-child(3) .header-link_inner:hover::before {
        width: 100%;
    }

    /* page all */

    /* doctor page */
    .section-page-doctor_title_sp {
        display: none;
    }
    .section-page-doctor2_block hr {
        display: none;
    }
    #g-navi a {
        position: relative;
    }
    #g-navi a:hover {
        color: #52afde;
    }
    #g-navi a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #52afde;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
        transition: transform 0.3s;   /*変形の時間*/
    }
    #g-navi a:hover::after {
        transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
    }
    .section-footer_flex {
        gap: 10px 0;
    }
    .section-footer a {
        position: relative;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    .section-footer a::before {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 1px;
        margin-bottom: 3px;
        background: #fff;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
        transition: transform 0.3s;   /*変形の時間*/
    }
    .section-footer a:hover::before {
        transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
    }
    /* access page */
    .section-page-access_flex {
        display: flex;
        gap: 20px;
        align-items: center;
        max-width: 1024px;
    }
    .section-page-access_flex .section-page-access_flexbox:first-child {
        width: calc( 45% - 10px );
    }
    .section-page-access_flex .section-page-access_flexbox:nth-child(2) {
        width: calc( 55% - 10px );
    }
    .section-access_sub_title {
        font-size: 18px;
        margin: 60px auto 20px;
    }
}
@media screen and (min-width: 769px) and (max-width: 880px) {
    #g-navi ul li a {
        font-size: 11px;
    }
    .section-page-top {
        height: 21vw;
    }
    .page .section-page-top h1 {
        margin-top: 11.5vw;
    }
}
@media screen and (min-width: 769px) and (max-width: 1240px) {
    .section-docter_text {
        right: 5%;
    }
    .section-docter_text_1,.section-docter_text_2 {
        font-size: 15px;
    }
}
@media screen and (min-width: 1420px) {
    section h1 {
        line-height: 32px;
        font-size: 42px;
    }
    section h1 span {
        font-size: 19px;
    }
}