body {
    margin: 0;
    font-family: "M PLUS 2", sans-serif;
    font-size: 15px;
    line-height: 1.8em;
    letter-spacing: 0.04em;
    color: #3c3b3b;
}
a {
    text-decoration: none;
    transition: 0.2s;
    color: #3c3b3b;
}
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;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.text-lightgray {
    color: #d7c7a9;
}
.text-red {
    color: #d90000;
}
.text-blue {
    color: #537a7f;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-load,.fade-in-load2,.fade-in-load3,.fade-in-load4,.fade-in-load5,.fade-in-load6 {
    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);
    }
}

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

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



/*ボタン全体の形状*/
.openbtn1{
    /*はじめは非表示に*/
    display: none;
    /*ボタンの位置*/
    position:fixed;
    top: 0px;
    right: 0px;
    z-index: 999;
    /*ボタンの形状*/
    background: #8b8885;
    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: #dcdcdc;
    width: 45%;
}

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

.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{
    background: #515150;
    color: #fff;
    z-index: 10;
    position: sticky;
    top: 0px;
    width: 100%;
}
#header .header-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_header {
    min-width: 80px;
    margin-left: 20px;
    width: 80px;
    font-size: 14px;
    margin-top: 10px;
}

/*.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: 15px 10px 10px 0px;
  gap: 20px;
}

#g-navi li {
    transition: 0.1s;
    text-align: center;
}
#g-navi ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0px 0px 5px 0px;
  font-size: 13px;
  letter-spacing: .1rem;
}
#g-navi ul li a:hover {
    color: #595959;
}
/*.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.1s;
}

/*メニューボタンをクリックした際に付与される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.1s;
    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;
  }
}


/* tab */
.tab-list {
    display: flex;
    gap: 4px;
}
.tab-list li {
    width: calc(100% / 3);
    text-align: center;
    background: #9f9789;
    border: 0px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    border-bottom: 1px solid #9f9789;
    font-size: 19px;
}
.tab-list li:hover {
    opacity: 0.8;
}
.tab-list li.is-active {
    color: #fff;
    background: #595959;
    border-bottom: 1px solid #595959;
}
.tab-item .tab-set {
    padding: 20px 20px 40px;
    min-height: 374px;
}
.tab-item {
    background-color: #fff;
}
/*tabデザイン*/

.slick-dots {
    bottom: 0px !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}
.header_line {
    width: 30px;
    margin-right: 20px;
}
.section-top {
    margin: 0px auto;
    position: relative;
}
.section-top_slick_arrow_pc,
.section-top_slick_arrow_sp {
    position: absolute;
    bottom: 15px;
    right: 20px;
}
.section-top_img {
    width: 100%;
}
.section-top_inner {
    position: absolute;
    top: 12%;
    right: 11%;
}
h2 {
    color: #919191;
    font-weight: 400;
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 20px;
}
h2 span {
    color: #565656;
}
.text-decoration {
    text-decoration: underline;
}
.body-index h2 {
    color: #565656;
}
.section-top p {
    line-height: 1.6rem;
    margin: 20px auto;
}
.bg_gradation {
    background: linear-gradient(90deg, #f8f8f8 0%, #f7f7f7 33%, #e4e4e4 66%, #dfdfdf 100%);
    padding-top: 50px;
}
.section-pickup {
    margin-top: 50px;
}
.section-pickup_slick {
    max-width: 1024px;
    width: 90%;
    margin: 30px auto 100px;
}
.section-pickup_slick.slick-dotted.slick-slider {
    margin-bottom: 100px !important;
}
.section-pickup_slick .slick-dots {
    bottom: -30px !important;
}
.section-pickup_slick_box {
    margin: 0px 10px;
}

.section-youtube {
    background-color: #cfcac0;
}
.section-youtube h2 {
    margin-top: 40px;
}

.section-youtube .a-box {
    margin-top: 30px;
    margin-bottom: 60px;
}
.section-menu {
    background: linear-gradient(90deg, #f8f8f8 0%, #f7f7f7 33%, #e4e4e4 66%, #dfdfdf 100%);
}
.section-menu h2 {
    margin-top: 100px;
}
.section-menu_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.section-menu_box {
    position: relative;
    width: calc((100% - 10px)/3);
    border-bottom: 1px solid #999;
}
.section-menu_box a {
    padding: 10px 30px 10px 0px;
    display: block;
}
.section-menu_box a:hover {
    opacity: 0.6;
    letter-spacing: 0.15em;
}
.section-menu_box a span {
    font-size: 9.1px;
}
.section-menu_box:after {
    border-right: solid 1px #999;
    border-top: solid 1px #999;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    width: 8px;
    transform: rotate(45deg);
}


.section-doctor {
    background-color: #ecf0f3;
}

.section-doctor_text {
    margin-bottom: 20px;
}

.section-doctor_name {
    border-bottom: 1px solid #999;
    font-size: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    width: fit-content;
    padding-right: 100px;
}

.section-doctor_name span {
    font-size: 24px;
    margin-right: 20px;
}

.section-other {
    background-image:url("../img/top/rever_dt_data_bg.jpg");
    background-repeat: no-repeat;
    background-position: top 0% right 40%;
    background-size: inherit;
    background-color: #f9f6ef;
    padding-bottom: 60px;
}
.section-menu_inner {
    max-width: 1024px;
    margin: 0 auto 120px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}



.bg-text_block .bg-text_wrap {
  position: relative;
  display: inline-block;
  margin-top: 15px;
}
.bg-text_block.is-animated .bg-text_wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #3c3b3b;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg-text_block .bg-text_wrap .bg-text_wrap_in {
  color: #fff;
  display: inline-block;
  font-size: 23px;
  font-style: italic;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}
 
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
 


.section-reason {
    background-color: #cfcac0;
    padding-bottom: 60px;
}
.section-reason_inner {
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}




.section-reason_title {
    border-bottom: 1px solid #fff;
}
.section-reason_title h4 {
    display: flex;
    font-size: 35px;
    font-weight: 400;
    margin: 60px 0px 20px;
    align-items: baseline;
    color: #fff;
}
.section-reason_title h4 img {
    width: 55px;
    margin-left: 7px;
}
.section-reason_subtitle {
    margin-top: 20px;
    margin-bottom: 20px;
}
.section-reason_block:nth-child(1) .section-reason_bg {
    background-image:url("../img/top/bikan_ps_top_reason_bg_pc01.png");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
}
.section-reason_block:nth-child(2) .section-reason_bg {
    background-image:url("../img/top/bikan_ps_top_reason_bg_pc02.png");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
}
.section-reason_block:nth-child(3) .section-reason_bg {
    background-image:url("../img/top/bikan_ps_top_reason_bg_pc03.png");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
}
.section-reason_block:nth-child(4) .section-reason_bg {
    background-image:url("../img/top/bikan_ps_top_reason_bg_pc04.png");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-top: 20px;
}


.section-doctor_inner {
    padding-top: 60px;
}

.section-doctor {
    background-image:url("../img/top/bikan_ps_top_doctor_bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 100%;
}
.section-doctor_bg {
    background-image:url("../img/top/bikan_ps_top_doctor_img.png");
    background-repeat: no-repeat;
    background-position: top 0% right 0%;
    background-size: 43%;
    padding-top: 20px;
    padding-bottom: 80px;
    margin-top: 20px;
    max-width: 1024px;
    margin: 0 auto;
}


.section-sns {
    background-color: #515150;
}
.section-sns_block {
    max-width: 240px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
}
.section-sns_box {
    width: calc(( 100% - 90px) / 4);
}
.section-photo {
    background-color: #515150;
}


#footer_include {
    font-size: 12px;
}
.section-footer {
    background-color: #515150;
    padding-bottom: 80px;
    color: #fff;
}
.section-footer a {
    color: #fff;
}
.section-footer_logo {
    max-width: 180px;
    margin: 50px auto;
}
.section-footer_flexblock {
    display: flex;
    gap: 40px;
    margin: 0 auto;
    max-width: 1024px;
}
.section-footer_flexbox {
    width: calc((100% - 40px) / 2);
}
.section-footer_flexbox p span a {
    text-decoration: underline;
}
.section-footer_flexbox p span {
    font-size: 11px;
}
.section-footer_table1_td2 span {
    font-size: 20px;
}
.section-footer_table1_td2 span.text-small {
    font-size: 9px;
}
.section-footer_table1 {
    width: 100%;
}
.section-footer_table1 .section-footer_table1_td1 {
    color: #fff;
}
.section-footer_table1_td1 {
    min-width: 80px;
}
.section-footer_table1_td2 {
    padding: 20px 0px;
}
.section-footer_table1 tr {
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
}
.section-footer_tel {
    width: 80%;
    margin-top: 10px;
    max-width: 230px;
}
.section-footer_table2 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.section-footer_table2_tr1 {
    background-color: #8b8b8b;
    color: #fff;
}
.section-footer_table2_tr2 {
    background-color: #fff;
    color: #3c3b3b;
}
.section-footer_table2_tr2 td:first-child {
    width: 100%;
}
.section-footer_table2 td {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px;
}
.section-footer_menu_block {
    width: 100%;
    max-width: 1024px;
    margin: 20px auto;
}
.section-footer_menu_box ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}
.section-footer_menu_box ul li:after {
    content: '|';
    margin-left: 5px;
}
.section-footer_menu_box ul li:last-child:after {
    display: none;
}
.section-footer_menu_box ul li a:hover {
    opacity: 0.6;
}



.slider-photo_thumb {
    max-width: 1240px;
    margin: 0 auto;
}
.slider-photo_thumb_box {
    margin: 40px 20px 20px 20px;
}





.section-footer_map {
    width: 100%;
}

.section-footer_map iframe {
    width: 100%;
}





.slick-next{ right:-30px!important;}
.slick-prev{ left:-30px!important; }
.slick-next:before{
    background: url("../img/parts/icon_right.png")!important;
    background-size: contain!important;
}
.slick-prev:before{
    background: url("../img/parts/icon_left.png")!important;
    background-size: contain!important;
}
.slick-next {
    right: 3.5% !important;
}
.slick-prev {
    left: 3.5% !important;
}
.slick-next, .slick-prev{
    z-index: 10;
    top: 50% !important;
    height: 20px !important;
    width: 20px !important;
}
.slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
    opacity:1!important;
}

.catName {
    background-color: #bdbdbd;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 10px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.iframe-news iframe {
    margin: 0 auto;
    width: 100%;
}
.title {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
}
.up_ymd {
    color: #fff;
    background-color: #9f9789;
    border-right: 6px solid #595959;
    border-radius: 0px 20px 0px 0px;
    padding: 2px 0px 2px 4px;
    font-size: 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.comment {
    color: #3c3b3b;
}
.news_div>li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #3c3b3b;
}
.iframe-news {
    max-width: 640px;
    width: 95%;
    margin: 0 auto;
}
.thumbNailWrap {
    display: none;
}
.title:hover a {
    color: #595959;
}
.title a:hover {
    color: #595959;
}
.section-youtube_shorts_flex {
    max-width: 1024px;
    margin: 0 auto;
}
.section-youtube_shorts_flex .slick-next {
    right: -30px !important;
}
.section-youtube_shorts_flex .slick-prev {
    left: -30px !important;
}
.section-youtube_movie_flex .slick-next {
    right: -30px !important;
}
.section-youtube_movie_flex .slick-prev {
    left: -30px !important;
}
.section-youtube_movie_flex {
    max-width: 1024px;
    margin: 0 auto;
}
.section-youtube_shorts_flexbox {
    margin: 0px 10px;
}
.section-youtube_movie_flexbox {
    margin: 0px 10px;
}
.section-youtube_shorts_flexbox {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
}
.section-youtube_movie_flexbox {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.section-youtube_movie_flexbox {
    background: #fff;
}
.section-youtube_movie_flexbox a {
    display: block;
    position: relative;
}
.section-youtube_movie_flexbox a:hover {
    opacity: 0.6;
}
.section-youtube_movie_flexbox a::before {
    background: url('./../img/parts/icon_youtube.png') center center / 90px 64px no-repeat;
    content: "";
    display: block;
    width: 90px;
    height: 64px;
    margin: -32px auto 0;
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    z-index: 1;
}

.section-last_sns_block_youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.section-last_sns_block_youtube {
    background: #fff;
}
.section-last_sns_block_youtube a {
    display: block;
    position: relative;
}
.section-last_sns_block_youtube a:hover {
    opacity: 0.6;
}
.section-last_sns_block_youtube a::before {
    background: url('./../img/parts/icon_youtube.png') center center / 120px 82px no-repeat;
    content: "";
    display: block;
    width: 120px;
    height: 82px;
    margin: -32px auto 0;
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    z-index: 1;
}

.section-youtube_shorts_flexbox a img {
    width: 100%;
}

.section-youtube_shorts_flexbox a {
    display: block;
    position: relative;
}
.section-youtube_shorts_flexbox a:hover {
    opacity: 0.6;
}
.section-youtube_shorts_flexbox a::before {
    background: url('./../img/parts/icon_short.png') center center / 64px 64px no-repeat;
    content: "";
    display: block;
    width: 64px;
    height: 64px;
    margin: -32px auto 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}
.section-youtube_shorts_flexbox a img {
    width: 100%;
}

.section-top_slick_arrow_pc,
.section-top_slick_arrow_sp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 15px 0 0;
  position: absolute;
}
.section-top_slick_arrow_pc .prev-arrow,
.section-top_slick_arrow_pc .next-arrow,
.section-top_slick_arrow_sp .prev-arrow,
.section-top_slick_arrow_sp .next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: coral;
  border-radius: 50%;
  transition: all .3s ease;
  cursor: pointer;
  position:relative;
}

.section-top_slick_arrow_pc .prev-arrow,
.section-top_slick_arrow_sp .prev-arrow {
  transform: rotate(180deg);
  margin-right: 10px;
}

.section-top_slick_arrow_pc .prev-arrow::before,
.section-top_slick_arrow_pc .next-arrow::before,
.section-top_slick_arrow_sp .prev-arrow::before,
.section-top_slick_arrow_sp .next-arrow::before{
  position:absolute;
  content: "";
  width:10px !important;
  height:10px !important;
  border-right: 2px solid #FFF;
  border-top: 2px solid #FFF;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  transform:rotate(45deg);
}
.section-top_slick_arrow_sp .prev-arrow, .section-top_slick_arrow_sp .next-arrow {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.body-doctor .section-doctor_career {
    background-color: #fff;
    max-width: 1024px;
    margin: 0 auto;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.2);
}
.body-doctor .section-doctor {
    background-size: cover;
}
.body-doctor .section-doctor_career_inner {
    padding: 20px;
    margin-bottom: 60px;
}
.body-doctor .section-doctor_career_inner h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}
.body-doctor .section-doctor_name {
    display: flex;
    line-height: 1.1em;
    align-items: end;
}
.body-doctor .section-doctor_name:before {
    content: "院長";
    font-size: 14px;
    margin-top: 16px;
    margin-right: 10px;
}
.body-doctor .section-doctor_name span {
    display: block;
    margin-left: 5px;
}
.section-doctor_insta {
    margin-left: 5px;
    width: 20px;
}
.body-price .section-main {
    background: linear-gradient(90deg, #f8f8f8 0%, #f7f7f7 33%, #e4e4e4 66%, #dfdfdf 100%);
    padding: 40px 0px;
}
.body-price h2.section-price_h2 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.body-price h2.section-main_tr_h2_border {
    text-align: center;
    font-weight: 400;
    color: #71675f;
    font-size: 26px;
    line-height: 28px;
    padding: 1rem 0 1rem;
    background-image: linear-gradient(45deg, #cbb29d 0 2px, #cbb29d 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
    border-bottom: 0px;
}
.return_text {
    color: #fff;
}
.body-price .section-main_tr_white_block {
    max-width: 640px;
}
.body-points .section-main_tr_white_block {
    margin: 0 auto;
}
.body-points .bg_gradation {
    padding-bottom: 50px;
}
.body-points h1 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.points_box {
    width: calc((100% - 14px) / 2);
    border: 1px solid #ccc;
}
.points_block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.body-price .section-main_menu_block {
    background-color: #fff;
    width: 90%;
    margin: 40px auto 60px;
    max-width: 680px;
    border-spacing: inherit;
    padding-top: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    padding-bottom: 25px;
}
.section-main_table1 tr td {
    border-bottom: 1px solid #afb2bc;
}
.section-main_table1 tr:nth-child(1) td {
    background-color: #9f9789;
    color: #fff;
}
.section-main_table1 tr td:nth-child(2) {
    width: 100px;
    padding: 10px 20px 10px 0px;
    font-size: 16px;
}
.section-main_table1 tr td:nth-child(1) {
    width: calc( 100% - 100px);
    padding-left: 10px;
    padding: 10px 0px 10px 20px;
    font-size: 16px;
}
.section-main_table1 {
    border-spacing: inherit;
    margin: 0 auto;
    width: 94%;
}
.section-main_table2 tr:nth-child(1) td {
    border-top: 1px solid #afb2bc;
}
.section-main_table2 tr td {
    font-size: 16px;
    border-bottom: 1px solid #afb2bc;
}
.section-main_table2 tr td:nth-child(2) {
    width: 100px;
    padding: 10px 20px 10px 0px;
}
.section-main_table2 tr td:nth-child(1) {
    width: calc( 100% - 100px);
    padding-left: 10px;
    padding: 10px 0px 10px 20px;
}
.section-main_table2 {
    border-spacing: inherit;
    margin: 40px auto 0px;
    width: 94%;
}
.section-main_table3 {
    border-spacing: inherit;
    margin: 0 auto 60px;
    width: 94%;
}
.section-main_table3:last-child {
    margin: 0 auto 0px;
}
.section-main_table3 tr {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 20px;
}
.section-main_table3 tr span {
    font-size: 11px;
}
.section-main_table3 tr td {
    width: calc( (100% - 24px)/ 2);
}
.section-last_sns_block {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto 40px;
}
.section-last_sns_flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
}
.section-last_sns_flex_box {
    width: calc(( 100% - 20px) / 2);
}
.section-last_sns_block_youtube {
    max-width: 1024px;
    margin: 0 auto;
}
.section-last_sns_block_youtube iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.body-treatment .section-main {
    background-color: #e3e3e3;
    padding: 30px 0px;
}
.body-treatment .section-main_menu_block {
    max-width: 840px;
    width: 90%;
    margin: 40px auto 50px;
    background-color: #fff;
    padding: 5px 5px 25px 5px;
    box-shadow: 3px 3px 7px rgba(0,0,0,0.2);
}
.section-main_table3 td {
    position: relative;
    width: calc((100% - 20px) / 2);
    border-bottom: 1px solid #999;
}
.section-main_table3 td:after {
    border-right: solid 1px #999;
    border-top: solid 1px #999;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 38%;
    width: 8px;
    transform: rotate(45deg);
}
.body-treatment .section-main_menu_block a {
    padding: 10px 30px 10px 0px;
    display: block;
}
.body-treatment .section-main_menu_block a:hover {
    letter-spacing: 0.15em;
    opacity: 0.8;
}
.body-treatment h2.section-price_h2 {
    margin-top: 40px;
    margin-bottom: 40px;
}
.body-access .section-main {
    background: linear-gradient(90deg, #f8f8f8 0%, #f7f7f7 33%, #e4e4e4 66%, #dfdfdf 100%);
}
.section-main_access_block {
    background-color: #a49d9dd9;
    max-width: 768px;
    width: 90%;
    margin: 40px auto;
}
.section-main_access_block p {
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    padding: 20px;
    text-align: center;
}
.section-main_table4 {
    border-spacing: 0px;
}
.section-main_table4 td:nth-child(1) {
    min-width: 100px;
}
.section-main_access_block_flex {
    display: flex;
    gap: 20px;
    max-width: 768px;
    margin: 0 auto 40px;
}
.section-main_access_block_flexbox:nth-child(1) {
    width: calc(45% - 10px);
}
.section-main_access_block_flexbox:nth-child(2) {
    width: calc(55% - 10px);
}
.section-main_table4 tr td {
    border-bottom: 1px solid #3c3b3b;
    padding: 12px 0px;
    line-height: 21px;
    font-size: 13px;
}
.section-main_access_block_map {
    margin: 0 auto 40px;
    max-width: 768px;
    width: 90%;
}
.section-main_access_block_map iframe {
    width: 100%;
}
.section-footer .section-footer_menu_box .header_line {
    margin-right: 0px;
}
.section-fixed {
    position: fixed;
    width: 240px;
    right: 10px;
    bottom: 10px;
    z-index: 999;
}
.section-fixed_line {
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.2);
    transition: 0.2s;
    opacity: 0.9;
    display: block;
    position: relative;
    background-color: #868176;
}
.section-fixed_line:before, .section-fixed_line:after {
    content: "";
    position: absolute;
    z-index: -10;
    top: 0;
    width: 400px;
    height: 60px;
    left: 0;
    border-radius: 6px;
    background: #868176;
    transform: translate3d(0,0,0);
}

.section-fixed_line:before {
    animation: anime 1s ease-out infinite;
}

.section-fixed_line:after {
    animation: anime 1s ease-out 1s infinite;
}

@keyframes anime{
    0%{transform:scale(.95); opacity:1}
    90%{opacity:.1}to{transform:scale(1.1,1.3); opacity:0}
}



.section-fixed_line:hover {
    opacity: 0.7;
}
.section-fixed_google:hover {
    opacity: 0.6;
}
.section-fixed_flex img {
    width: 40px;
    margin-right: 5px;
}
.section-fixed_google {
    background-color: #fff;
    border-radius: 5px;
    margin-top: 15px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    transition: 0.2s;
}
.section-fixed_google .section-fixed_flex img {
    width: 51px;
    margin: 10px 0px;
}
.section-fixed_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-fixed_google .section-fixed_flex {
    gap: 6px;
}
.section-fixed_flex p {
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 0;
}
.section-fixed_google .section-fixed_flex p {
    font-size: 12px;
    color: #565656;
}
.section-main_tr_white_block {
    background-color: #fff;
    width: 90%;
    max-width: 1024px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.section-main_tr_column_block {
    background-color: #fff;
    width: 90%;
    max-width: 1024px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.section-main_tr_column_title {
    text-align: center;
    font-weight: 400;
    color: #71675f;
    font-size: 28px;
    line-height: 36px;
    padding: 1rem 0 1rem;
    margin-bottom: 40px;
    background-image: linear-gradient(45deg, #cbb29d 0 2px, #cbb29d 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
    border-bottom: 0px;
}
.section-main_tr_column_link {
    margin: 0 auto 20px;
    width: 90%;
    max-width: 640px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
}
.body-treatment2 .section-main h1 {
    text-align: center;
    font-weight: 400;
    color: #3c3b3b;
    font-size: 28px;
    line-height: 36px;
    padding: 1rem 0 1rem;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(45deg, #978a72 0 2px, #978a72 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
}
.section-main_tr_sub_title {
    font-size: 26px;
    color: #cbb29d;
    text-align: center;
    margin: 20px auto 40px;
}
.section-main_tr_white_block_inner_beige {
    background-color: #8b8178;
    margin: 20px auto 0px;
    color: #fff;
}
.section-main_tr_white_block_inner_light_beige {
    background-color: #e3dfd7;
    margin: 20px auto 0px;
    color: #3c3b3b;
}
.section-main_tr_white_block_inner_light_beige p {
    margin: 20px 40px 0px;
}
.ul_circle li {
    padding: 5px 0px;
}
.ul_circle li:before {
    content: '●';
}
.section-main_tr_white_block_inner_light_beige .ul_circle li:before {
    color: #978a72;
}
.section-main_tr_white_block_inner_light_beige .ul_circle {
    color: #3c3b3b;
}
.ul_circle {
    padding: 30px;
    max-width: 768px;
    margin: 0 auto;
}
.section-main_tr_point_block {
    padding: 30px;
    display: flex;
    gap: 15px;
}
.section-main_tr_point_box {
    padding-right: 10px;
    border-right: 1px solid #aea7a6;
}
.section-main_tr_point_box_num {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}
.section-main_tr_point_box_title {
    text-align: center;
    font-weight: 500;
    color: #5e584d;
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 5px;
}
.section-main_tr_point_box:last-child {
    padding-right: 0px;
    border-right: 0px;
}
.section-main_tr_img_100 {
    width: 100%;
    margin: 20px auto;
}
.section-main_tr_img_30 {
    width: 30%;
    margin: 20px auto;
}
.body-treatment2 h2 {
    border-bottom: 1px solid #978a72;
    font-size: 28px;
    width: 100%;
    color: #3c3b3b;
    padding-bottom: 10px;
    margin-top: 40px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.4em;
}
.section-main_tr_flexblock {
    display: flex;
    gap: 20px;
}
.section-main_tr_flexbox {
    width: calc(( 100% - 20px) / 2);
}
.section-main_tr_nayami_block {
    color: #3c3b3b;
    background-color: #d9d5cf;
    padding: 20px;
    width: 90%;
    margin: 20px auto;
    max-width: 1024px;
}
.section-main_tr_nayami_block_inner {
    width: 80%;
    margin: 0 auto;
}
.section-main_tr_nayami_block h3 {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 20px auto;
    line-height: 1.4em;
}
.section-main_tr_merit h3,.section-main_tr_demerit h3 {
    color: #907e75;
}
.section-main_tr_nayami_block ul li {
    border-bottom: 2px dotted #3c3b3b;
    padding: 10px 0px;
    font-size: 20px;
    text-align: center;
    width: 100%;
}
.section-main_tr_merit {
    color: #3c3b3b;
    background-image: url('./../img/treatment/bikan_cl_nose1_circle.png');
    background-size: 200px;
    background-position: center center;
    background-color: #f0ede8;
    text-align: center;
    background-repeat: no-repeat;
    padding: 15px 0px 40px 0;
    margin: 40px auto 30px;
    border-radius: 10px;
}
.section-main_tr_demerit {
    color: #3c3b3b;
    background-image: url('./../img/treatment/bikan_cl_nose1_triangle.png');
    background-size: 200px;
    background-position: center center;
    background-color: #f0ede8;
    text-align: center;
    background-repeat: no-repeat;
    padding: 15px 0px 40px 0;
    margin: 30px auto 40px;
    border-radius: 10px;
}
.section-main_tr_merit ul li,.section-main_tr_demerit ul li {
    border-bottom: 0px;
}
.section-main_tr_merit ul li:before,.section-main_tr_demerit ul li:before {
    content: '●';
    color: #978a72;
}
.section-main_tr_method_block {
    background-color: #fff;
    width: 90%;
    max-width: 1024px;
    padding: 20px;
    margin: 20px auto;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}
.section-main_tr_method_block h2.section-main_tr_h2_border {
    text-align: center;
    font-weight: 400;
    color: #71675f;
    font-size: 28px;
    line-height: 36px;
    padding: 1rem 0 1rem;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(45deg, #cbb29d 0 2px, #cbb29d 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
    border-bottom: 0px;
}
.section-main_tr_method_block h3 {
    border-bottom: 1px solid #ccc;
    font-size: 28px;
    width: 100%;
    color: #3c3b3b;
    padding-bottom: 10px;
    margin-top: 40px;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4em;
}
.section-main_tr_method_list p:nth-child(1):before {
    content: '1';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list p:nth-child(2):before {
    content: '2';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list p:nth-child(3):before {
    content: '3';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list p:nth-child(4):before {
    content: '4';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list p:nth-child(5):before {
    content: '5';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list p:nth-child(6):before {
    content: '6';
    color: #978a72;
    font-weight: 700;
}
.section-main_tr_method_list {
    margin-bottom: 40px;
}
.section-main_tr_img_60 {
    width: 60%;
    margin: 20px auto;
}
.section-main_tr_method_detail_title {
    font-size: 23px;
    font-weight: 400;
    margin: 30px auto 10px;
}
.section-main_tr_beige_block {
    background-color: #cfcac0;
    padding-top: 40px;
    padding-bottom: 20px;
}
.section-main_tr_beige_block_title {
    text-align: center;
    font-size: 28px;
    line-height: 1.6em;
}
.section-main_tr_beige_block_bikannose_img {
    max-width: 640px;
    margin: 20px auto;
    width: 80%;
}
.section-main_tr_beige_block_border {
    border: 1px solid #f7f7f7;
    margin: 20px auto 0px;
    width: 95%;
    max-width: 768px;
    padding: 0px 20px 20px;
}
.section-main_tr_beige_block_border h3 {
    text-align: center;
    margin: 30px auto;
    font-size: 24px;
    line-height: 1.4em;
}
.text-bgwhite1 {
    background-color: #fff;
    padding: 0px 5px;
}
.section-main_tr_beige_block_border_flexblock {
    display: flex;
    gap: 20px;
}
.section-main_tr_beige_block_border_flexbox:nth-child(1) {
    width: calc(40% - 10px);
}
.section-main_tr_beige_block_border_flexbox:nth-child(2) {
    width: calc(60% - 10px);
}
.section-main_tr_beige_block_border_flexbox ul {
    margin-left: 40px;
    margin-top: 20px;
}
.section-main_tr_beige_block_border_flexbox ul li {
    margin: 5px 0px;
    font-size: 20px;
    position: relative;
}
.section-main_tr_beige_block_border_flexbox ul li:before {
    position: absolute;
    content: "";
    display: block;
    position: absolute;
    width: 1rem;
    height: 0.5rem;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    top: 0.25rem;
    left: -2rem;
    transform: rotate(-45deg);
}
.body-treatment2 .bg_gradation {
    padding-top: 0px;
    padding-bottom: 0px;
}
.body-treatment2 h2.section-main_tr_h2_border {
    text-align: center;
    font-weight: 400;
    color: #71675f;
    font-size: 28px;
    line-height: 36px;
    padding: 1rem 0 1rem;
    margin-bottom: 40px;
    background-image: linear-gradient(45deg, #cbb29d 0 2px, #cbb29d 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
    border-bottom: 0px;
}
.body-treatment2 .section-main_table1 {
    margin: 0 auto 20px;
}
.section-main_tr_last_h3 {
    width: 90%;
    max-width: 1024px;
    margin: 60px auto 20px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4em;
}
.section-main_table5 {
    max-width: 1024px;
    width: 90%;
    margin: 0 auto;
}
.section-main_table5 td:nth-child(1) {
    background-color: #9f9789;
    color: #fff;
    padding: 10px 0px;
    min-width: 100px;
    text-align: center;
}
.section-main_table5 td:nth-child(2) {
    background-color: #fff;
    padding: 10px;
}
.section-main_tr_line {
    max-width: 640px;
    width: 90%;
    margin:  40px auto 0px;
}
.section-last_case_box {
    margin: 10px;
}
.section-last_case_block {
    display: none;
}
.section-last_case_block .slick-dotted.slick-slider {
    margin-bottom: 40px!important;
}
.section-last_case_block .slick-dots {
    bottom: -17px !important;
}
.section-last_case_slick {
    max-width: 1024px;
    margin: 0 auto 40px;
    width: 90%;
}
.body-treatment2 .section-last_case_block h2.section-main_tr_h2_border {
    margin-bottom: 20px;
}
.body-treatment2 .section-last_case_block .slick-next {
    right: -24px !important;
}
.body-treatment2 .section-last_case_block .slick-prev {
    left: -24px !important;
}
.body-treatment2 h2.section-main_tr_white_block_inner_light_beige_h2 {
    text-align: center;
    padding-top: 20px;
    width: 90%;
    margin: 40px auto 0px;
}
.text-underline {
    border-bottom: 1px solid #3c3b3b;
    padding-bottom: 2px;
}
.section-last_case_block {
    padding-bottom: 40px;
}
.campaign_box {
    border: 1px solid #ccc;
}
.campaign_block {
    margin-bottom: 20px;
}
.section-main_tr_img_flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1024px;
    margin: 0 auto;
}
.section-main_tr_img_flexbox {
    width: calc((100% - 40px)/3 );
}
.body-page .bg_gradation {
    padding-top: 20px;
    padding-bottom: 20px;
}
.body-page .section-main h1 {
    text-align: center;
    font-weight: 400;
    color: #3c3b3b;
    font-size: 28px;
    line-height: 36px;
    padding: 1rem 0 1rem;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(45deg, #978a72 0 2px, #978a72 2px 4px);
    background-repeat: no-repeat;
    background-size: 4rem 0.2rem;
    background-position: center bottom;
}
.section-last_sns_flex_box a:hover,
.section-sns_box a:hover {
    opacity: 0.6;
}
.body-news .section-news_h1 {
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    margin: 40px auto 40px;
}
.body-news {
    background: linear-gradient(90deg, #f8f8f8 0%, #f7f7f7 33%, #e4e4e4 66%, #dfdfdf 100%);
}
.body-news .news_detail #detail a {
    text-decoration: underline;
    color: #8b6f47;
}
.body-news .detailUpfile {
    margin: 10px auto;
}
.body-news .section-page-top {
    max-width: 768px;
    width: 95%;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.body-news .news_detail h2 {
    text-align: left;
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    color: #8b6f47;
    border-bottom: 2px dotted #ddd4c6;
}
.body-news #up_ymd {
    text-align: right;
    width: fit-content;
    margin-left: auto;
    color: #fff;
    background-color: #9f9789;
    border-right: 6px solid #595959;
    border-radius: 0px 20px 0px 20px;
    padding: 2px 2px 2px 10px;
    font-size: 10px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.body-news .detail {
    font-size: 14px;
}
.body-news .backORcloseBtn {
    margin: 40px auto 20px;
    text-align: center;
    border-top: 2px dotted #ddd4c6;
    padding-top: 20px;
}
.body-news .backORcloseBtn a {
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 7px;
    background-color: #ccc;
    font-size: 12px;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.newMark {
    background-color: #ecaf4c;
    color: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 10px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
    h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    body {
        font-size: 12px;
    }
    .section-fixed {
        width: 100%;
        top: auto;
        bottom: 0px;
        right: auto;
    }
    .a-box a {
        font-size: 12px;
        padding: 10px 20px;
        line-height: 15px;
        width: 150px;
    }
    .bg_gradation {
        padding-top: 20px;
    }
    .section-pickup {
        margin-top: 10px;
    }
    .section-pickup_slick.slick-dotted.slick-slider {
        margin-bottom: 40px !important;
    }
    #header.dnone {
        opacity: 1;
        display: block;
        box-shadow: 0;
    }
    #header {
        background: transparent;
        padding-right: 73px;
        height: 52px;
        position: fixed;
    }
    .logo_header img {
        margin-top: 8%;
        margin-left: 7px;
    }
    .logo_header {
        margin-left: 5px;
        width: 80px;
    }
    .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;
    }
    .openbtn1{
        background: #595959;
    }
    .header-flex {
        display: none;
    }
    .section-footer_flexblock {
        flex-direction: column-reverse;
        gap: 10px;
    }
    .section-footer_logo {
        margin: 40px auto;
        width: 60%;
        max-width: 120px;
    }
    .section-footer_flexbox {
        width: 95%;
        margin: 0 auto;
    }
    .section-footer_map iframe {
        height: 200px;
    }
    .section-footer_table2 {
        margin-bottom: 0px;
        margin-top: 10px;
    }
    .section-reason_block:nth-child(1) .section-reason_bg,
    .section-reason_block:nth-child(2) .section-reason_bg,
    .section-reason_block:nth-child(3) .section-reason_bg,
    .section-reason_block:nth-child(4) .section-reason_bg {
        background-image: none;
        padding-top: 0px;
        padding-bottom: 0px;
        margin-top: 0px;
    }
    .bg-text_block .bg-text_wrap .bg-text_wrap_in {
        font-size: 14px;
        padding: 0px 15px 2px;
        line-height: 1.8em;
    }
    .bg-text_block .bg-text_wrap {
        margin-top: 7px;
        width: 100%;
        text-align: center;
    }
    .section-doctor {
        background-image:url("../img/top/bikan_ps_top_doctor_bg_sp.jpg");
        background-repeat: no-repeat;
        background-position: top 0% right 0%;
        background-size: 100%;
    }
    .section-doctor_inner {
        margin: 0px auto 0px;
        padding-top: 40px;
        width: 90%;
    }
    .section-main_tr_column_title {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0rem 0 0.2rem;
        margin-top: 0px;
    }
    .section-main_tr_column_block {
        width: 80%;
    }
    .section-doctor_name {
        font-size: 22px;
        padding-right: 0px;
        text-align: center;
        width: 100%;
    }
    .body-doctor .section-doctor_name {
        padding-right: 0px;
        margin: 0 auto 20px;
        justify-content: center;
    }
    .section-doctor_name span {
        font-size: 14px;
        margin-right: 10px;
    }
    .section-reason_subtitle {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .section-main_table1 tr td:nth-child(1) {
        padding: 8px 0px 8px 10px;
        font-size: 14px;
    }
    .section-main_table1 tr td:nth-child(2) {
        padding: 8px 10px 8px 0px;
        text-align: right;
        font-size: 14px;
    }
    .section-main_table2 tr td:nth-child(1) {
        padding: 8px 0px 8px 10px;
        font-size: 14px;
    }
    .section-main_table2 tr td:nth-child(2) {
        text-align: right;
        padding: 8px 10px 8px 0px;
        font-size: 14px;
    }
    .section-menu_box {
        min-width: 80px;
        width: 150px;
    }
    .tab-set:nth-child(1) .section-menu_flex {
        width: 470px;
    }
    .section-menu_box:after {
        right: 5px;
    }
    .section-menu_inner {
        width: 90%;
    }
    .tab-list li {
        padding: 6px 0px;
        display: flex;
        font-size: 13.5px;
        align-items: center;
        justify-content: center;
    }
    .section-menu h2 {
        margin-top: 50px;
    }
    .section-menu_inner {
        margin: 0 auto 60px;
    }
    .tab-item .tab-set {
        padding: 10px 15px 20px 15px;
        min-height: 100px;
    }
    .section-menu_flex {
        gap: 10px;
    }
    .section-menu_box a {
        padding: 10px 14px 10px 0px;
        line-height: 1.4em;
    }
    .section-menu_box a span {
        font-size: 9.1px;
    }
    .section-top_slick_arrow_pc, .section-top_slick_arrow_sp {
        right: 0px;
    }
    .section-top_slick_arrow_sp .prev-arrow, .section-top_slick_arrow_sp .next-arrow {
        width: 25px;
        height: 25px;
    }
    .section-top_slick_arrow_sp .prev-arrow::before, .section-top_slick_arrow_sp .next-arrow::before {
        width: 6px !important;
        height: 6px !important;
    }
    .section-top_slick_arrow_pc .prev-arrow, .section-top_slick_arrow_sp .prev-arrow {
        margin-right: 4px;
    }
    .body-doctor .section-doctor_career {
        width: 90%;
    }
    .body-doctor .section-doctor_career_inner h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .body-doctor .section-doctor_top_sp {
        width: 60%;
        margin: 0 auto 20px;
    }
    .body-index .section-doctor_top_sp {
        width: 60%;
        margin: 0 auto 20px;
    }
    .body-doctor .section-doctor_bg {
        background-image: none;
        padding-top: 0px;
    }
    .body-index .section-doctor_bg {
        background-image: none;
        padding-top: 0px;
        padding-bottom: 60px;
    }
    #header_include {
        height: 100%;
    }
    .section-main_table3 tr {
        flex-direction: column;
        gap: 0px;
    }
    .section-main_table3 tr td {
        width: 100%;
    }
    .section-main_table3 {
        margin: 0 auto 30px;
    }
    .section-main_access_block p {
        font-size: 15px;
        line-height: 27px;
    }
    .section-main_access_block_flex {
        flex-direction: column;
        width: 90%;
        gap: 10px;
        margin: 0 auto 20px;
    }
    .section-main_access_block_flexbox:nth-child(1),
    .section-main_access_block_flexbox:nth-child(2) {
        width: 100%;
    }
    .section-main_access_block {
        margin: 20px auto;
    }
    .section-main_access_block_map iframe {
        height: 200px;
    }
    .section-reason_title h4 {
        margin: 20px 0px 10px;
        font-size: 23px;
    }
    .section-reason_title h4 img {
        width: 40px;
    }
    .section-reason_block:first-child {
        margin-top: 40px;
    }
    .section-reason_block {
        margin-bottom: 40px;
    }
    .section-reason_block:last-child {
        margin-bottom: 0px;
    }
    .section-sns_block {
        gap: 20px;
        max-width: 180px;
    }
    .section-sns_box {
        width: calc(( 100% - 60px) / 4);
    }
    .body-treatment .section-main {
        padding: 10px 0px;
    }
    .section-main_table3 tr span {
        font-size: 10px;
    }
    .body-treatment2 .section-main h1 {
        font-size: 20px;
        line-height: 20px;
        padding: 0rem 0 0.8rem;
        background-size: 4rem 0.15rem;
    }
    .section-main_tr_sub_title {
        font-size: 18px;
        color: #cbb29d;
        text-align: center;
        margin: 10px auto 20px;
    }
    .ul_circle {
        padding: 15px;
    }
    .section-main_tr_point_block {
        flex-direction: column;
        gap:  20px;
    }
    .section-main_tr_point_box {
        border-right: 0px;
        border-bottom: 1px solid #aea7a6;
        padding-right: 0px;
        padding-bottom: 20px;
    }
    .section-main_tr_point_box:last-child {
        border-bottom: 0px;
    }
    .body-treatment2 h2 {
        font-size: 18px;
    }
    .section-main_tr_flexblock {
        flex-direction: column-reverse;
        gap:  10px;
    }
    .section-main_tr_flexbox {
        width: 100%;
    }
    .section-main_tr_white_block,
    .section-main_tr_nayami_block,
    .section-main_tr_method_block {
        width: 80%;
    }
    .body-treatment2 .bg_gradation {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .section-main_tr_nayami_block h3 {
        font-size: 17px;
        margin: 10px auto;
    }
    .section-main_tr_nayami_block ul li {
        font-size: 13px;
    }
    .section-main_tr_nayami_block ul li {
        font-size: 13px;
    }
    .section-main_tr_merit ul li {
        padding: 4px 0px;
    }
    .section-main_tr_demerit ul li {
        padding: 4px 0px;
    }
    .section-main_tr_nayami_block_inner {
        width: 100%;
    }
    .body-treatment2 h2.section-main_tr_h2_border {
        font-size: 20px;
        margin-bottom: 20px;
        padding: 0rem 0 0.2rem;
        margin-top: 0px;
    }
    .section-main_tr_last_h3 {
        font-size: 18px;
        margin: 40px auto 10px;
    }
    .section-main_tr_method_block h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .section-main_tr_method_list {
        margin-bottom: 20px;
    }
    .section-main_tr_img_60 {
        width: 100%;
    }
    .section-main_tr_img_30 {
        width: 100%;
    }
    .section-main_tr_method_detail_title {
        font-size: 16px;
    }
    .section-main_tr_beige_block_title {
        font-size: 15px;
    }
    .section-main_tr_beige_block_border {
        width: 80%;
    }
    .section-main_tr_beige_block_border h3 {
        text-align: center;
        margin: 20px auto;
        font-size: 17px;
        line-height: 1.4em;
    }
    .section-main_tr_beige_block_border_flexblock {
        flex-direction: column;
        gap: 10px;
    }
    .section-main_tr_beige_block_border_flexbox:nth-child(1) {
        width: 100%;
    }
    .section-main_tr_beige_block_border_flexbox:nth-child(2) {
        width: 100%;
    }
    .section-main_tr_beige_block_border_flexbox ul li {
        margin: 10px 0px;
        font-size: 14px;
    }
    .body-treatment2 .section-last_case_block .slick-next {
        right: -20px !important;
    }
    .body-treatment2 .section-last_case_block .slick-prev {
        left: -20px !important;
    }
    .body-treatment2 .section-last_case_block h2.section-main_tr_h2_border {
        margin-top: 40px;
    }
    .section-main_table5 tr {
        display: flex;
        flex-direction: column;
    }
    .section-main_table5 td:nth-child(1),
    .section-main_table5 td:nth-child(2) {
        width: auto;
    }
    .body-treatment2 .section-main > .bg_gradation {
        padding-top: 10px;
    }
    .body-treatment2 .section-main > .bg_gradation:last-child {
        padding-top: 0px;
    }
    .section-main_tr_point_box_title {
        margin-bottom: 10px;
        margin-top: 10px;
    }
    .body-treatment2 h2.section-main_tr_white_block_inner_light_beige_h2 {
        margin: 20px auto 0px;
    }
    .section-main_tr_merit,.section-main_tr_demerit {
        padding: 15px 0px 20px 0px;
    }
    .section-last_case_block {
        padding-bottom: 20px;
    }
    .section-main_tr_white_block_inner_light_beige p {
        margin: 10px 20px 0px;
    }
    .section-main_tr_img_flex {
        gap: 10px;
    }
    .section-main_tr_img_flexbox {
        width: calc((100% - 10px)/2 );
    }
    .campaign_box {
        margin-bottom: 10px;
    }
    .section-last_sns_flex {
        gap: 10px;
        margin-top: 15px;
    }
    .section-fixed_line {
        margin: 8px;
    }
    .body-news .section-page-top {
        width: 90%;
        padding: 10px;
        margin: 80px auto 40px;
    }
    .body-news .section-news_h1 {
        margin: 20px auto 40px;
    }
    .body-price h2.section-main_tr_h2_border {
        margin-top: 0px;
    }
    .body-price .section-main {
        padding: 20px 0px;
    }
    .body-price .section-main_menu_block {
        margin: 30px auto 40px;
    }
    .section-youtube_shorts_flex .slick-next {
        right: 8px !important;
        top: 106% !important;
    }
    .section-youtube_shorts_flex .slick-prev {
        left: 8px !important;
        top: 106% !important;
    }
    .section-youtube_movie_flex .slick-next {
        right: 8px !important;
        top: 106% !important;
    }
    .section-youtube_movie_flex .slick-prev {
        left: 8px !important;
        top: 106% !important;
    }
    .body-page .section-main h1 {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    .section-fixed_line:before, .section-fixed_line:after {
        width: 360px;
    }
    .section-fixed_google {
        margin: 0 auto 5px;
        width: 95%;
    }
    .section-fixed_google .section-fixed_flex img {
        margin: 3px 0px;
    }
    .mfp-fade_short .mfp-iframe-scaler {
        padding-top: 177%;
    }
    .mfp-fade_short .mfp-iframe-holder .mfp-content {
        width: 93%;
    }
    .section-youtube_movie_flexbox a::before {
        background: url('./../img/parts/icon_youtube.png') center center / 70px 44px no-repeat;
        width: 70px;
        height: 44px;
    }
    .section-last_sns_block_youtube a::before {
        background: url('./../img/parts/icon_youtube.png') center center / 70px 44px no-repeat;
        width: 70px;
        height: 44px;
    }
}
@media screen and (min-width: 769px) {
    .sp-display {
        display: none;
    }
    .pc-display {
        display: block;
    }
    .section-reason_block:nth-child(2n+1) .section-reason_subtitle,
    .section-reason_block:nth-child(2n+1) .section-reason_text {
        padding-left: 20px;
    }
    .section-reason_block:nth-child(2n) .section-reason_subtitle,
    .section-reason_block:nth-child(2n) .section-reason_text {
        margin-left: 50%;
    }
    .section-reason_subtitle,
    .section-reason_text {
        width: 40%;
    }
    #g-navi li {
        position: relative;
    }
    #g-navi a::after {
        position: absolute;
        left: 2%;
        content: '';
        height: 1px;
        background: #595959;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
        width: 100%;
    }
    #g-navi a:hover::after {
        transform: scale(1, 1);
        width: 100%;
    }
    #g-navi li:last-child a::after {
        width: 60%;
    }
    #g-navi li:last-child a:hover::after {
        width: 60%;
    }
    .section-footer .section-footer_menu_box li {
        position: relative;
    }
    .section-footer .section-footer_menu_box a::after {
        position: absolute;
        left: 2%;
        content: '';
        height: 1px;
        background: #595959;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
        width: 80%;
    }
    .section-footer .section-footer_menu_box a:hover::after {
        transform: scale(1, 1);
        width: 80%;
    }
    .section-footer .section-footer_menu_box li:last-child a::after {
        width: 60%;
    }
    .section-footer .section-footer_menu_box li:last-child a:hover::after {
        position: relative;
        width: 60%;
    }
    .section-doctor_insta {
        margin-left: 20px;
        width: 30px;
    }
    .section-doctor_name span {
        font-size: 19px;
    }
    .body-doctor .section-doctor_name:before {
        margin-right: 30px;
    }
    .body-doctor .section-doctor_top_sp {
        display: none;
    }
    .body-index .section-doctor_top_sp {
        display: none;
    }
    .section-main_table1 tr td:nth-child(2) {
        width: 127px;
        text-align: right;
    }
    .section-main_table2 tr td:nth-child(2) {
        width: 127px;
        text-align: right;
    }
    .body-treatment2 .section-main > .bg_gradation {
        padding-top: 20px;
    }
    .body-treatment2 .section-main > .bg_gradation:last-child {
        padding-top: 0px;
    }
    .campaign_block {
        flex-wrap: wrap;
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    .campaign_box {
        max-width: 480px;
        width: calc(( 100% - 10px)/3 );
    }
    .section-fixed_line:before, .section-fixed_line:after {
        width: 240px;
    }
    .section-last_sns_flex_box {
        width: calc((100% - 40px)/ 3);
    }
    .mfp-fade_short .mfp-iframe-scaler {
        padding-top: 177%;
    }
    .mfp-fade_short .mfp-iframe-holder .mfp-content {
        aspect-ratio: 9 / 16;
        height: 88vh;
        width: auto;
    }
}