@charset "UTF-8";

/* =============================================
* HOME
* ============================================= */
#mv {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 500px;
   position: relative;
}

#mv:before {
   content: '';
   width: 100%;
   height: 100vh;
   background: url("../img/index/mv.webp") no-repeat center top/cover;
   position: fixed;
   top: 0;
   left: 0;
   z-index: -1;
}

#mv h2 {
   color: #fff;
   text-shadow: 0 0 24px rgba(0, 0, 0, 0.55);
   text-align: center;
}

#mv h2 span {
   display: inline-block;
}

#mv h2 .fnt-noto-serif {
   font-weight: 400;
   font-size: 39px;
   border-bottom: 1px solid;
   padding-bottom: 15px;
}

#mv h2 .fnt-abhaya-libre {
   font-weight: 400;
   font-size: 19px;
   padding-top: 15px;
}

#mv .scroll-down {
   font-weight: 400;
   font-size: 15px;
   line-height: 1;
   color: #fff;
   padding-bottom: 160px;
   cursor: pointer;
   position: absolute;
   bottom: -55px;
   left: 45px;
   z-index: 2;
}

#mv .scroll-down span {
   cursor: pointer;
}

#mv .scroll-down .line {
   display: block;
   width: 0;
   height: 150px;
   border-left: 1px solid #fff;
   position: absolute;
   bottom: 0;
   left: 50%;
}

#mv .swiper {
   width: 100%;
   position: absolute;
   bottom: -50px;
   left: 0;
   z-index: 1;
}

#mv .swiper-wrapper {
   transition-timing-function: linear;
}

#mv .swiper-slide {
   width: 1655px;
   margin-right: 50px;
}

@media screen and (max-width: 767px) {
   #mv {
      height: 300px;
   }

   #mv h2 .fnt-noto-serif {
      font-size: 24px;
      padding-bottom: 12px;
   }

   #mv h2 .fnt-abhaya-libre {
      font-size: 16px;
      padding-top: 12px;
   }

   #mv .scroll-down {
      display: none;
   }

   #mv .swiper {
      bottom: -20px;
   }

   #mv .swiper-slide {
      width: 795px;
      margin-right: 20px;
   }
}

/* -- -- */
#information {
   color: #fff;
   position: relative;
   padding: 96px 0 45px;
}

#information:before {
   content: '';
   width: calc(50% + 500px);
   height: 100%;
   background-color: #CD5B28;
   position: absolute;
   top: 0;
   left: 0;
}

#information .wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 20px 60px;
}

#information h2 {
   font-weight: 400;
   font-size: 40px;
   line-height: 1;
}

#information ul {
   width: 740px;
}

#information ul li {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 32px;
   border-bottom: 1px solid #E98659;
   padding: 24px 0;
}

#information ul li:first-child {
   padding-top: 0;
}

#information ul li a span {
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 1;
   display: -webkit-box;
   overflow: hidden;
}

#information .btn-more {
   width: 100%;
   max-width: 1000px;
   text-align: right;
}

#information .btn-more a {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: 400;
   font-size: 30px;
   line-height: 2;
   position: relative;
   padding-right: 28px;
}

#information .btn-more a:before {
   content: '';
   width: 60px;
   height: 60px;
   background-color: #B65226;
   border-radius: 50%;
   position: absolute;
   top: 0;
   right: 0;
}

#information .btn-more a:after {
   content: '';
   width: 74px;
   height: 11px;
   background: url("../img/common/btn-arrow-wh.png") no-repeat center top/cover;
   position: relative;
}

@media screen and (max-width: 1200px) {
   #information ul {
      width: 700px;
   }
}

@media screen and (max-width: 1023px) {
   #information:before {
      width: 100%;
   }

   #information ul {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #information {
      padding: 56px 10px;
   }

   #information .wrap {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 16px;
   }

   #information h2 {
      font-size: 32px;
   }

   #information ul li {
      display: none;
      grid-template-columns: 1fr;
      gap: 10px;
   }

   #information ul li:nth-child(1) {
      display: grid;
   }

   #information ul li a span {
      -webkit-line-clamp: 2;
   }

   #information .btn-more {
      text-align: left;
      padding-top: 16px;
   }

   #information .btn-more a {
      font-size: 20px;
      padding-right: 20px;
   }

   #information .btn-more a:before {
      width: 40px;
      height: 40px;
   }

   #information .btn-more a:after {
      width: 46px;
      height: 6px;
   }
}

/* -- -- */
#campaign {
   display: none;
   background-color: #fff;
   position: relative;
}

#campaign:before {
   content: '';
   width: calc(50% + 500px);
   height: 50%;
   background-color: #CD5B28;
   position: absolute;
   top: 0;
   left: 0;
}

#campaign .bnr {
   background: url("../img/index/campaign-bg.jpg") no-repeat center/cover;
   padding: 108px 120px 145px;
   box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
   #campaign:before {
      width: 100%;
   }

   #campaign .bnr {
      padding: 64px;
   }
}

@media screen and (max-width: 767px) {
   #campaign .wrap {
      padding: 0;
   }

   #campaign .bnr {
      padding: 20px;
   }
}

/* -- -- */
#features {
   background-color: #fff;
   padding: 120px 0;
   overflow: hidden;
   position: relative;
}

#features:before {
   content: '';
   width: 100%;
   height: 50%;
   background: url("../img/index/features-bg.webp") no-repeat center top/cover;
   position: absolute;
   bottom: 0;
   left: 0;
}

#features .wrap {
   position: static;
}

#features h2 {
   padding: 120px 0 30px;
}

#features .slider .photo {
   width: calc(50% + 286px);
   position: absolute;
   top: 120px;
   right: 0;
}

#features .slider .photo .slick-list {
   margin: 0 -8px;
}

#features .slider .photo .slick-slide {
   width: 786px;
   opacity: 0.3;
   transition: all 0.3s;
   margin: 0 8px;
}

#features .slider .photo .slick-current {
   opacity: 1;
}

#features .slider .text {
   width: 570px;
   position: relative;
   box-sizing: border-box;
}

#features .slider .text .slick-list {
   padding-top: 45px;
}

#features .slider .text .slick-track {
   display: flex;
}

#features .slider .text .slick-track:before,
#features .slider .text .slick-track:after {
   display: none;
}

#features .slider .text .slide-item {
   height: auto;
   float: none;
   background-color: #F3E6DC;
   color: #2D2D2D;
   padding: 42px 48px;
}

#features .slider .text .no {
   font-size: 89px;
   line-height: 1;
   position: absolute;
   top: -45px;
   left: 12px;
   color: #CD5B28;
}

#features .slider .text h3 {
   color: #CD5B28;
}

#features .slider .text h3:after {
   content: '';
   display: none;
   width: 24px;
   height: 0;
   border-top: 1px solid #fff;
   opacity: 0.4;
   margin-top: 20px;
}

#features .slider .text .txt {
   padding-top: 20px;
}

#features .slider-nav {
   justify-content: flex-end;
   margin-top: -11px;
}

#features .button {
   padding-top: 40px;
}

@media screen and (max-width: 1023px) {
   #features .slider .photo {
      width: calc(50% + 220px);
   }

   #features .slider .photo .slick-slide {
      width: 550px;
   }

   #features .slider .text {
      width: 480px;
   }
}

@media screen and (max-width: 767px) {
   #features {
      padding: 55px 0 80px;
   }

   #features .wrap {
      padding: 0;
   }

   #features h2 {
      text-align: center;
      padding: 0 0 24px;
   }

   #features .slider .photo {
      width: 100%;
      position: static;
   }

   #features .slider .text {
      width: 100%;
      margin-top: -32px;
      padding: 0 10px;
      box-sizing: border-box;
   }

   #features .slider .text .slick-list {
      padding-top: 32px;
   }

   #features .slider .text .slide-item {
      padding: 45px 24px 24px;
   }

   #features .slider .text .no {
      font-size: 64px;
      top: -32px;
   }

   #features .slider-nav {
      justify-content: center;
      margin-top: 32px;
   }
}

/* -- -- */
#menu {
   background-color: #fff;
   overflow: hidden;
   padding: 100px 0 120px;
}

#menu .slider {
   padding-top: 48px;
}

#menu .slider .slick-list {
   overflow: visible;
   margin: 0 -15px;
   padding: 0 !important;
}

#menu .slider .slick-track {
   display: flex;
}

#menu .slider .slick-track:before,
#menu .slider .slick-track:after {
   display: none;
}

#menu .slider .slide-item {
   height: auto;
   float: none;
   background-color: #002060;
   color: #fff;
   opacity: 0.4;
   transition: all 0.3s;
   margin: 0 15px;
}

#menu .slider .slide-item .text {
   padding: 32px 24px 42px;
}

#menu .slider .slide-item h3 {
   font-weight: 500;
}

#menu .slider .slide-item .txt {
   padding-top: 20px;
}

#menu .slider .slick-active {
   opacity: 1;
}

#menu .slider-nav {
   padding-top: 24px;
}

#menu .button {
   padding-top: 40px;
}

@media screen and (max-width: 1023px) {
   #menu .slider .slick-list {
      margin: 0 -8px;
   }

   #menu .slider .slide-item {
      margin: 0 8px;
   }

   #menu .slider .slide-item .text {
      padding: 20px 24px 40px;
   }
}

@media screen and (max-width: 767px) {
   #menu {
      padding: 55px 20px 80px;
   }

   #menu .slider {
      padding-top: 24px;
   }

   #menu .slider-nav {
      padding-top: 32px;
   }
}

/* -- -- */
/* =============================================
* クリニック紹介
* ============================================= */
#clinic__features .box {
   display: flex;
   background-color: #F3E6DC;
   margin-top: 56px;
}

#clinic__features .box .col,
#clinic__features .box figure {
   width: 50%;
   box-sizing: border-box;
}

#clinic__features .box .col {
   padding: 75px 48px 55px;
   position: relative;
}

#clinic__features .box .no {
   font-weight: 400;
   font-size: 89px;
   line-height: 1;
   position: absolute;
   top: -25px;
   left: 48px;
}

#clinic__features .box .txt {
   padding-top: 20px;
}

#clinic__features .box.img-r {
   flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
   #clinic__features .box {
      flex-direction: column;
      margin-top: 24px;
   }

   #clinic__features .box.img-r {
      flex-direction: column;
   }

   #clinic__features .box .col,
   #clinic__features .box figure {
      width: 100%;
   }

   #clinic__features .box .col {
      padding: 30px 20px;
   }

   #clinic__features .box .no {
      font-size: 56px;
      top: -28px;
      left: 20px;
   }
}

/* -- -- */
#flow .box-1 {
   max-width: 800px;
   margin: 0 auto;
   padding-top: 24px;
}

#flow .box-1 .item {
   display: grid;
   grid-template-columns: 120px 1fr;
   align-items: center;
   gap: 32px;
   background-color: #fff;
   position: relative;
   margin: 10px 0 0 10px;
   padding: 40px 40px 40px 120px;
}

#flow .box-1 .item:not(:last-child) {
   margin-bottom: 52px;
}

#flow .box-1 .item:not(:last-child):before {
   content: '';
   width: 0px;
   position: absolute;
   top: 0;
   bottom: -30px;
   left: 38px;
   border-left: 2px solid #CD5B28;
}

#flow .box-1 .item:not(:last-child):after {
   content: '';
   width: 20px;
   height: 12px;
   background: url("../img/common/arrow-down.png") no-repeat center bottom/100% auto;
   position: absolute;
   bottom: -32px;
   left: 29px;
}

#flow .box-1 .no {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   width: 96px;
   height: 96px;
   background-color: #CD5B28;
   color: #fff;
   font-weight: 400;
   font-size: 19px;
   line-height: 1;
   text-align: center;
   position: absolute;
   top: -10px;
   left: -10px;
}

#flow .box-1 .no span {
   display: block;
   font-size: 59px;
   line-height: 0.8;
}

#flow .box-1 .txt {
   padding-top: 15px;
}

#flow .box-2 {
   max-width: 780px;
   margin: 0 auto;
   padding-top: 40px;
}

#flow .box-2 .txt {
   //font-size: 12px;
   padding-top: 16px;
}

@media screen and (max-width: 767px) {
   #flow .box-1 .item {
      grid-template-columns: 1fr;
      gap: 24px;
      margin: 0;
      padding: 80px 50px 40px;
   }

   #flow .box-1 .item:not(:last-child) {
      margin-bottom: 70px;
   }

   #flow .box-1 .item:not(:last-child):before {
      height: 36px;
      top: 100%;
      bottom: auto;
      left: calc(50% - 1px);
      margin-top: 16px;
   }

   #flow .box-1 .item:not(:last-child):after {
      bottom: -55px;
      left: calc(50% - 10px);
   }

   #flow .box-1 .no {
      flex-direction: row;
      align-items: baseline;
      gap: 5px;
      width: 100%;
      height: auto;
      font-size: 22px;
      text-align: center;
      padding: 13px 0;
      top: 0;
      left: 0;
   }

   #flow .box-1 .no span {
      font-size: 38px;
   }

   #flow .box-1 figure {
      width: 120px;
      margin: 0 auto;
   }

   #flow .box-1 h3 {
      text-align: center;
   }

   #flow .box-1 .txt {
      padding-top: 12px;
   }

   #flow .box-2 {
      padding-top: 32px;
   }
}

/* -- -- */
#doctor-profile .box-1 {
   display: grid;
   grid-template-columns: 1fr;
   align-items: center;
   max-width: 810px;
   margin: 0 auto;
   gap: 20px;
}

#doctor-profile .box-1 figure {
   position: relative;
   //margin-right: 60px;
   text-align: center;
	width: 74%;
    margin: 0 auto;
}

#doctor-profile .box-1 figure:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #F7976C;
   position: absolute;
   top: 20px;
   right: 20px;
}

#doctor-profile .box-1 .txt {
   padding-top: 30px;
}

#doctor-profile .box-1 .name {
   padding-top: 20px;
}

#doctor-profile .box-2 {
   max-width: 790px;
   margin: 0 auto;
   padding-top: 75px;
}

#doctor-profile .box-2+.box-2 {
   padding-top: 35px;
}
#doctor-profile .box-2.ttl-name{
   padding-top: 40px;
}
#doctor-profile .box-2.ttl-name h3{
	padding-left: 0;
}
#doctor-profile .box-2.ttl-name h3:before{
   width: 0;
   height: 0;
}

#doctor-profile .box-2 h3 {
   position: relative;
   padding-left: 16px;
}

#doctor-profile .box-2 h3:before {
   content: '';
   width: 10px;
   height: 2px;
   background-color: #CD5B28;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}
#doctor-profile .box-2 h4 {
   position: relative;
   padding-left: 16px;
}

#doctor-profile .box-2 h4:before {
   content: '';
   width: 10px;
   height: 2px;
   background-color: #CD5B28;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

#doctor-profile .box-2 .tb-style {
   padding-top: 24px;
}

#doctor-profile .box-2 ul {
   line-height: 2;
   margin-top: 24px;
   padding-top: 10px;
   position: relative;
}

#doctor-profile .box-2 ul:before {
   content: '';
   width: 100%;
   height: 1px;
   //background-image: linear-gradient(to right, #CD5B28 33%, #D0D0D0 33%);
   position: absolute;
   top: 0;
   left: 0;
}

#doctor-profile .box-2 ul li {
   position: relative;
   padding-left: 20px;
}

#doctor-profile .box-2 ul li:not(:last-child) {
   padding-bottom: 18px;
}

#doctor-profile .box-2 ul li:before {
   content: '';
   width: 10px;
   height: 10px;
   background-color: #CD5B28;
   border-radius: 50%;
   position: absolute;
   top: 12px;
   left: 0;
}

@media screen and (max-width: 767px) {
   #doctor-profile .box-1 {
      grid-template-columns: 1fr;
      gap: 36px;
   }

   #doctor-profile .box-1 figure {
      width: 195px;
      margin: 0 auto;
      position: relative;
      left: 10px;
   }

   #doctor-profile .box-1 figure:before {
      top: 10px;
      right: 10px;
   }

   #doctor-profile .box-1 h2 {
      text-align: center;
   }

   #doctor-profile .box-1 .txt,
   #doctor-profile .box-1 .name {
      padding-top: 24px;
   }

   #doctor-profile .box-2 {
      padding-top: 40px;
   }

   #doctor-profile .box-2+.box {
      padding-top: 40px;
   }

   #doctor-profile .box-2 h3 {
      padding-left: 10px;
	  font-size: 22px;
   }

   #doctor-profile .box-2 h3:before {
      width: 5px;
   }
}

/* -- -- */
#facility-standards .box {
   max-width: 790px;
   margin: 0 auto;
   padding-top: 32px;
   color: #464646;
}

#facility-standards .box h3 {
   border-bottom: 2px solid #CD5B28;
   padding-bottom: 10px;
}

#facility-standards .box h3:not(:first-child) {
   padding-top: 40px;
}

#facility-standards .box .txt {
   line-height: 1.4;
   padding-top: 24px;
}

#facility-standards .box .txt>*:not(:last-child) {
   padding-bottom: 24px;
}

#facility-standards .box .txt a {
   color: #CD5B28;
   text-decoration: underline;
}

#facility-standards .box .txt a:hover {
   text-decoration: none;
}

#facility-standards .box ul {
   list-style: disc;
   padding-left: 20px;
}

@media screen and (max-width: 767px) {
   #facility-standards .box {
      padding-top: 24px;
   }

   #facility-standards .box .txt {
      padding-top: 16px;
   }

   #facility-standards .box .txt>*:not(:last-child) {
      padding-bottom: 16px;
   }
}

/* =============================================
* 料金表
* ============================================= */
.price-btn {
   padding: 72px 0;
}

.price-btn ul {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
}

.price-btn ul a {
   width: auto;
   height: 48px;
   border-radius: 28px;
   font-family: "Noto Sans JP", sans-serif;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.2;
   padding: 0 32px;
   overflow: hidden;
}

.price-btn ul a:after {
   display: none;
}

@media screen and (max-width: 767px) {
   .price-btn {
      padding: 40px 10px;
   }

   .price-btn ul {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
   }

   .price-btn ul a {
      width: 100%;
      height: 40px;
      font-size: 12px;
      padding: 0;
   }
}

/* -- -- */
#price .wrap {
   display: flex;
   flex-direction: row-reverse;
   align-items: flex-start;
   gap: 30px;
}

#price .price-sidebar {
   width: 276px;
   text-align: center;
}

#price .price-sidebar .item {
   background-color: #002060;
   color: #002060;
   padding: 0 4px 4px;
}

#price .price-sidebar .item:not(:last-child) {
   margin-bottom: 24px;
}

#price .price-sidebar h3 {
   color: #fff;
   font-weight: 500;
   font-size: 20px;
   line-height: 30px;
   padding: 19px 0;
}

#price .price-sidebar ul {
   background-color: #fff;
   font-weight: 500;
   padding: 0px 10px;
}

#price .price-sidebar ul a {
   display: block;
   padding: 12px 0;
}

#price .price-sidebar ul li:not(:last-child) a {
   border-bottom: 1px solid #F3E6DC;
}

#price .price-content {
   width: calc(100% - 306px);
}

#price h2 {
   background-color: #CD5B28;
   color: #fff;
   font-weight: 500;
   padding: 12px 20px;
}

#price .block:not(:last-child) {
   padding-bottom: 72px;
}

#price .block>*:not(:last-child) {
   margin-bottom: 40px;
}

#price .block h3 {
   position: relative;
   margin-bottom: 24px;
}

#price .js-scrollable {
   overflow-y: hidden !important;
}

#price .js-scrollable table {
   width: 100%;
   min-width: 502px;
}

#price .js-scrollable table th,
#price .js-scrollable table td {
   height: 53px;
   text-align: center;
   vertical-align: middle;
   border: 1px solid #D0D0D0;
   padding: 5px 8px;
}

#price .js-scrollable table th {
   background-color: #F8F1EB;
}

#price .js-scrollable .tb1 {
   table-layout: fixed;
}

#price .js-scrollable .tb2 th:first-child {
   width: 55%;
}

#price .list li {
   background: url("../img/common/icon-check.png") no-repeat top left/24px auto;
   padding-left: 40px;
}

#price .list li:not(:last-child) {
   padding-bottom: 20px;
}

#price .note {
   text-align: right;
   font-size: 12px;
   padding: 18px 0;
}

#price .button {
   a {
      width: auto;
      min-width: 320px;
      padding-right: 20px;
   }
}

@media screen and (max-width: 1023px) {
   #price .wrap {
      flex-direction: column;
   }

   #price .price-sidebar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      width: 100%;
   }

   #price .price-sidebar .item:not(:last-child) {
      margin-bottom: 0;
   }

   #price .price-content {
      width: 100%;
   }
}

@media screen and (max-width: 767px) {
   #price {
      padding-top: 0;
   }

   #price .wrap {
      gap: 0px;
      padding: 0;
   }

   #price .price-sidebar {
      display: block;
      padding: 40px 20px;
      box-sizing: border-box;
   }

   #price .price-sidebar .item {
      padding: 0 8px 8px;
   }

   #price .price-sidebar .item:not(:last-child) {
      margin-bottom: 10px;
   }

   #price .price-sidebar h3 {
      font-size: 16px;
      line-height: 24px;
      padding: 22px 0 14px;
      position: relative;
   }

   #price .price-sidebar h3:after {
      content: '';
      width: 20px;
      height: 12px;
      background: url("../img/common/arrow-down-wh.png") no-repeat center top/cover;
      position: absolute;
      top: calc(50% - 3px);
      right: 20px;
      transition: all 0.3s;
   }

   #price .price-sidebar h3 span {
      font-size: 24px;
   }

   #price .price-sidebar ul {
      display: none;
      padding: 0;
   }

   #price .price-sidebar ul a {
      padding: 10px 0;
   }

   #price .price-sidebar .item.is-active h3:after {
      transform: rotate(-180deg);
   }

   #price h2 {
      margin: 0 -10px;
      padding: 13px 16px;
   }

   #price .price-content {
      padding: 0 10px;
      box-sizing: border-box;
   }

   #price .price-content h2 {
      margin-bottom: 32px !important;
   }

   #price .price-content .block:not(:last-child) {
      padding-bottom: 56px;
   }

   #price .price-content .js-scrollable table th,
   #price .price-content .js-scrollable table td {
      height: 80px;
      text-align: left;
   }

   #price .price-content .js-scrollable table tr:first-child th {
      height: 69px;
      text-align: center;
   }

   #price .price-content .js-scrollable .tb2 {
      table-layout: fixed;
   }

   #price .price-content .js-scrollable .tb2 th:first-child {
      width: auto;
   }

   #price .price-content .js-scrollable .tb2 td {
      text-align: center;
   }

   #price .button {
      text-align: center;
   }
}

/* -- -- */
/* =============================================
* キャンペーン
* ============================================= */
.campaign {
   padding: 120px 0;
}

.campaign-box {
   max-width: 994px;
   margin: 0 auto;
}

.campaign-box:not(:last-child) {
   margin-bottom: 64px;
}

.campaign-title {
   background-color: #CD5B28;
   color: #fff;
   /* text-align: center; */
   padding: 26px 20px 25px;
}

.campaign-in {
   background-color: #F8F1EB;
   padding: 32px 64px 64px;
}

.campaign-desc p {
zoom: 1 !important;
}
.campaign-desc p:after {
    content: "." !important;
    clear: both !important;
    display: block !important;
    height: 0 !important;
    visibility: hidden !important;   
}
.campaign-desc .alignright {
   display: block;
    float: right;
}

.campaign-desc .alignleft {
   display: block;
   float: left;
}

.campaign-desc .aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}
.campaign-desc p {
   margin-bottom: 10px;
}
.campaign-desc p:last-child {
   margin-bottom: 0;
}
.campaign-desc ul,
.campaign-desc ol {
       list-style: inherit;
       margin-left: 20px;
}
.campaign-desc a {
    color: #CD5B28;
    text-decoration: underline;
}

.campaign-menu-item {
   display: grid;
   grid-template-columns: 1fr 178px;
   align-items: center;
   gap: 20px;
   background-color: #fff;
   border-left: 4px solid #CD5B28;
   margin-top: 24px;
   padding: 20px;
}

.campaign-price {
   font-weight: 400;
}

.campaign-btn a {
   /*display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   height: 88px;
   background-color: #0096DF;
   color: #fff;
   font-weight: 700;
   font-size: 18px;*/
	display: flex;
   align-items: center;
   justify-content: center;
   width: 175px;
   height: 48px;
   background-image: radial-gradient(circle, #73D1FF, #0096E0);
   background-position: bottom center;
   background-size: 100% 200%;
   color: #fff;
   text-align: center;
   font-weight: 700;
   font-size: 16px;
   border-radius: 50px;
}

@media screen and (max-width: 1023px) {
   .campaign-in {
      padding: 32px 20px 64px;
   }
}

@media screen and (max-width: 767px) {
   .campaign {
      padding: 56px 0 80px;
   }

   .campaign-box:not(:last-child) {
      margin-bottom: 32px;
   }

   .campaign-title {
      font-size: 18px;
      line-height: 1.6;
      text-align: left;
      padding: 12px 24px;
   }

   .campaign-in {
      padding: 24px;
   }

   .campaign-desc .aligncenter,
    .campaign-desc .alignleft,
   .campaign-desc .alignright {
      float: none;
   }
  .campaign-desc img {
   width: 100%;
   height: auto;
  }

   .campaign-menu-item {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 24px;
   }

   .campaign-name {
      font-size: 13px;
      line-height: 1.6;
   }

   .campaign-price {
      font-size: 18px;
      line-height: 1.6;
   }

   .campaign-btn a {
      height: 48px;
      width: 100%;
   }
}

/* -- -- */
/* =============================================
* プライバシーポリシー
* ============================================= */
#privacy {
   padding: 120px 0;
}

#privacy h2 {
   border-bottom: 1px solid #CD5B28;
   padding-bottom: 14px;
   margin-bottom: 56px;
}

#privacy h3 {
   border-bottom: 1px solid #D0D0D0;
   padding-top: 56px;
   padding-bottom: 20px;
}

#privacy .txt {
   padding-top: 16px;
}

#privacy .txt h4 {
   font-weight: 700;
   font-size: 16px;
   margin: 24px 0 16px;
}

#privacy .txt ul {
   list-style: disc;
   padding-left: 20px;
}

#privacy .txt ul:not(:first-child) {
   padding-top: 16px;
}

#privacy .txt ul li::marker {
   font-size: 10px;
}

#privacy .txt ol {
   list-style: decimal;
   padding-left: 20px;
}

#privacy .txt ol:not(:first-child) {
   padding-top: 16px;
}

#privacy .txt ol ol {
   padding: 16px 0 10px 30px;
}

#privacy .txt ol.sub {
   padding-left: 50px;
}

@media screen and (max-width: 767px) {
   #privacy {
      padding: 56px 0 80px;
   }
	.page-id-107 #kv .kv-title .fnt-noto-serif{
		font-size: 4.7vw;
	}
	.page-id-107 #kv .kv-title .fnt-noto-serif .sp {

	}
	.page-id-107 #kv .kv-title .fnt-abhaya-libre{
		font-size: 3.5vw;
	}
   #privacy .wrap {
      padding: 0 10px;
   }

   #privacy h2 {
      font-size: 22px;
      line-height: 32px;
      margin-bottom: 40px;
      padding-bottom: 7px;
   }

   #privacy h3 {
      font-size: 18px;
      line-height: 26px;
      padding-top: 35px;
      padding-bottom: 13px;
   }

   #privacy .txt ol ol {
      padding-left: 20px;
   }

   #privacy .txt ol.sub {
      padding-left: 40px;
   }
}

/* -- -- */
#privacy-desc {
   padding-bottom: 120px;
}

#privacy-desc h2 {
   border-bottom: 1px solid #CD5B28;
   padding-bottom: 14px;
}

#privacy-desc .tb-style {
   padding-top: 56px;
}

@media screen and (max-width: 767px) {
   #privacy-desc {
      padding-bottom: 80px;
   }

   #privacy-desc h2 {
      font-size: 22px;
      line-height: 32px;
      padding-bottom: 7px;
   }

   #privacy-desc .tb-style {
      padding-top: 40px;
   }
}

/* =============================================
* お知らせ
* ============================================= */
#pt-archive {
   padding: 120px 0;
}

#pt-archive .box {
   padding: 56px 0;
}

#pt-archive .box:first-child {
   padding-top: 0;
}

#pt-archive .box:last-child {
   padding-bottom: 0;
}

#pt-archive .box+.box {
   border-top: 1px solid #D0D0D0;
}

#pt-archive .box time {
   display: block;
}

#pt-archive .box h3 {
   padding-top: 12px;
}

#pt-archive .box .txt {
   padding-top: 24px;
}

#pt-archive .box .txt p:has(.aligncenter) {
   text-align: center;
}

#pt-archive .box .txt p:has(.alignright) {
   text-align: right;
}

#pt-archive .box .txt a {
   color: #CD5B28;
   text-decoration: underline;
}

#pt-archive .box .txt a:hover {
   text-decoration: none;
}

@media screen and (max-width: 767px) {
   #pt-archive {
      padding: 56px 0 80px;
   }

   #pt-archive .box {
      padding: 40px 0;
   }

   #pt-archive .box time {
      font-size: 16px;
   }

   #pt-archive .box h3 {
      font-size: 18px;
      line-height: 1.6;
   }
}

@media screen and (min-width: 1024px) {
   #pt-archive .wrap {
      max-width: 994px;
   }
}

/* =============================================
* 料金表/施術一覧
* ============================================= */
.symptom-box {
   display: grid;
   grid-template-columns: 440px 452px;
}

.symptom-box .list-btn ul li:not(:last-child) {
   padding-bottom: 10px;
}

.symptom-box .list-btn a {
   display: flex;
   justify-content: center;
   align-items: center;
   background-color: #fff;
   color: #CD5B28;
   width: 100%;
   height: 48px;
   border: 1px solid #CD5B28;
   border-radius: 28px;
   box-sizing: border-box;
   font-weight: 500;
   font-size: 16px;
   line-height: 1.5;
   letter-spacing: 0;
   text-align: center;
}

.symptom-box .list-btn a:hover {
   background-color: #CD5B28;
   color: #fff;
   opacity: 1;
}

@media screen and (max-width: 1440px) {
   .symptom-box {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media screen and (max-width: 767px) {
   .symptom-box {
      grid-template-columns: 1fr;
      gap: 24px;
   }
}

/* =============================================
* 美肌レーザー
* ============================================= */
.page-id-289 #kv .kv-title .fnt-noto-serif,
.page-id-272 #kv .kv-title .fnt-noto-serif,
.page-id-269 #kv .kv-title .fnt-noto-serif,
.page-id-274 #kv .kv-title .fnt-noto-serif,
.page-id-275 #kv .kv-title .fnt-noto-serif,
.page-id-284 #kv .kv-title .fnt-noto-serif,
.page-id-281 #kv .kv-title .fnt-noto-serif {
   color: #2D2D2D;
   padding-bottom: 0;
   border-bottom: 0;
}
.page-id-289 #kv .kv-title .fnt-abhaya-libre,
.page-id-272 #kv .kv-title .fnt-abhaya-libre,
.page-id-269 #kv .kv-title .fnt-abhaya-libre,
.page-id-274 #kv .kv-title .fnt-abhaya-libre,
.page-id-275 #kv .kv-title .fnt-abhaya-libre,
.page-id-284 #kv .kv-title .fnt-abhaya-libre,
.page-id-281 #kv .kv-title .fnt-abhaya-libre {
   display: none;
}

#treatment-details {
   padding: 92px 0;
}

#treatment-details .block {
   max-width: 995px;
   margin: 0 auto;
}

#treatment-details .block:not(:first-child) {
   margin-top: 96px;
}

#treatment-details .block h2 {
   background-color: #CD5B28;
   color: #fff;
   font-weight: 500;
   padding: 12px 20px;
}
#treatment-details .txt a{
	color: #CD5B28;
	text-decoration: underline;
}
#treatment-details .block h3 {
   border-bottom: 1px solid #CD5B28;
   padding-bottom: 10px;
}

#treatment-details .block>*:not(:first-child) {
   margin-top: 48px;
}

#treatment-details .block figure {
   max-width: 480px;
}

#treatment-details .box-check {
   background-color: #F8F1EB;
   border: 1px solid #CD5B28;
   padding: 40px;
}

#treatment-details .box-check ul li {
   background: url('../img/common/check.svg') no-repeat top 3px left / 21px auto;
   margin-top: 10px;
   padding-left: 30px;
}

#treatment-details .box-price .tb-style {
   margin-top: 16px;
}

#treatment-details .box-desc {
   border: 1px solid #CD5B28;
   padding: 40px;
}

#treatment-details .box-desc h3 {
   margin-bottom: 10px;
}

#treatment-details .box-desc h3:not(:first-child) {
   margin-top: 30px;
}

@media screen and (max-width: 767px) {
   #treatment-details {
      padding: 0 0 80px;
   }

   #treatment-details h2 {
      margin: 0 -10px;
   }

   #treatment-details .block:not(:first-child) {
      margin-top: 64px;
   }

   #treatment-details .block>*:not(:first-child) {
      margin-top: 32px;
   }

   #treatment-details .box-check {
      padding: 24px;
   }

   #treatment-details .box-check ul li {
      background-position: top 1px left;
      padding-left: 24px;
   }

   #treatment-details .box-price .tb-style {
      margin-top: 24px;
   }

   #treatment-details .box-desc {
      padding: 24px;
   }

   #treatment-details .box-desc h3:not(:first-child) {
      margin-top: 24px;
   }
}