@charset 'UTF-8';

/* ===================================================================
CSS information
 file name  :  style.css
 style info :  プライベートクリニック高田馬場 style CSS
=================================================================== */
/* ---------------------------------------
common
--------------------------------------- */
html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: calc(32 / 750 * 100vw);
  color: #000f2b;
  line-height: 1.6;
  font-feature-settings: "palt";
}

@media only screen and (min-width: 751px) {
  body {
    font-size: 3.2rem;
  }
}

img, source {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2 {
  line-height: 1;
  text-align: center;
}

h3 {
  line-height: 1;
}

b {
  font-weight: bold;
}

sup {
	top: -.7em;
  font-size: 50%;
}


a:link, a:visited {
  color: #000f2b;
}

@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
  }

.content {
  -webkit-box-shadow: 0 0 10px 2px #d6d6d6;
  -moz-box-shadow: 0 0 10px 2px #d6d6d6;
  box-shadow: 0 0 10px 2px #d6d6d6;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
}

/* テキストリンク */
.text-link a {
  text-decoration: underline;
}

/* 注釈 */
.note {
  color: #7f8694;
  font-size: calc(16 / 750 * 100vw);
  text-align: left;
  line-height: 1.2;
}
@media only screen and (min-width: 751px) {
  .note {
    font-size: 1.6rem;
  }
}

/* 背景色ありボックス */
.blue-box {
  background-color: rgba(236, 240, 250, 0.8);
  padding: calc(50 / 750 * 100vw) calc(40 / 750 * 100vw);
}

.white-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: calc(40 / 750 * 100vw) calc(30 / 750 * 100vw);
}

.beige-box {
  background-color: #f7f3e9;
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw);
  border-radius: calc(30 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .blue-box {
    padding: 50px 40px;
  }

  .white-box {
    padding: 40px 30px;
  }

  .beige-box {
    padding: 60px 30px;
  }
}

/* 外枠 */
.border-box {
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) calc(46 / 750 * 100vw);
  background: #fff;
  border: calc(3 / 750 * 100vw) solid transparent;
  border-radius: calc(30 / 750 * 100vw);
}

.border-box h3 {
  margin-bottom: calc(44 / 750 * 100vw);
} 

@media only screen and (min-width: 751px) {
  .border-box {
    padding: 60px 30px 46px;
    border: 3px solid transparent;
    border-radius: 30px;
  }

  .border-box h3 {
    margin-bottom: 44px;
  }
}

/* 吹き出し */
.balloon-box {
  display: inline-block;
  padding: calc(17 / 750 * 100vw) calc(32 / 750 * 100vw);
  margin-bottom: calc(30 / 750 * 100vw);
  position: relative;
  line-height: 1;
  color: #1DA2E6;
  background: #fff;
  text-align: center;
  border: calc(3 / 750 * 100vw) solid #1DA2E6;;
  border-radius: 10px;
}

.balloon-box::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: calc(-20 / 750 * 100vw);
  transform: translateX(-50%);
  border-right: calc(15 / 750 * 100vw) solid transparent;
  border-left: calc(15 / 750 * 100vw) solid transparent;
}

.ttl-wrap p {
  width: calc(490 / 750 * 100vw);
  padding: calc(16 / 750 * 100vw) 0;
  margin: 0 auto calc(30 / 750 * 100vw);
  font-size: calc(32 / 750 * 100vw);
  font-weight: 600;
  line-height: 1;
  background: #fff;
  border-radius: calc(10 / 750 * 100vw);
  text-align: center;
}

@media only screen and (min-width: 751px) {
  .balloon-box {
    padding:  17px 32px;
    margin-bottom: 30px;
    text-align: center;
    border: 3px solid #1DA2E6;;
  }

  .balloon-box::before {
    bottom: -20px;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
  }

  .ttl-wrap p {
    width: 490px;
    padding: 16px 0;
    margin: 0 auto 30px;
    font-size: 3.2rem;
    border-radius: 10px;
  }
}

/* マーカー */
.marker {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.3em;
  text-decoration-color: #fff36c;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}

/* 背景色 */
.bg-gray01 {
  background-color: #596375;
}

.bg-gray02 {
  background-color: #9393a0;
}
.bg-pink {
  background-color: #fa99a0;;
}

.bg-blue {
  background-color: #3b65ca;
}

.circle-content {
  overflow: hidden;
}

.top-circle {
  border-top-left-radius: 1000px 410px;
  border-top-right-radius: 1000px 410px;
  margin-left: calc(-100 / 750 * 100vw);
  margin-right: calc(-100 / 750 * 100vw);
}

.bottom-circle {
  background: #d7f0f0;
  border-bottom-left-radius: 1000px 410px;
  border-bottom-right-radius: 1000px 410px;
  margin-left: calc(-100 / 750 * 100vw);
  margin-right:calc(-100 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .top-circle {
    border-top-left-radius: 1000px 410px;
    border-top-right-radius: 1000px 410px;
    margin-left: -100px;
    margin-right: -100px;
  }
  
  .bottom-circle {
    border-bottom-left-radius: 1000px 410px;
    border-bottom-right-radius: 1000px 410px;
    margin-left: -100px;
    margin-right: -100px;
  }
}

.lead {
  line-height: 2;
}

/* 横スクロール */
.scroll-box {
  overflow-x: auto;
}

.scroll-note {
  font-size: calc(24 / 750 * 100vw);
  text-align: center;
  margin: calc(32 / 750 * 100vw) 0 calc(60 / 750 * 100vw);
  color: #7f8694;
  line-height: 1!important;
}

@media only screen and (min-width: 751px) {
  .scroll-note {
    font-size: 2.4rem;
    margin: 34px 0 60px;
  }
}

/* ---------------------------------------
header
--------------------------------------- */
.header-inner {
  padding: calc(30 / 750 * 100vw) calc(15/ 750 * 100vw) calc(25 / 750 * 100vw) calc(20 / 750 * 100vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.header-logo {
  width: calc(390 / 750 * 100vw);
}

.header-sub {
  padding: calc(21 / 750 * 100vw) calc(27 / 750 * 100vw);
  color: #ea6171;
  font-size: calc(28 / 750 * 100vw);
  font-weight: 600;
  border: calc(2 / 750 * 100vw) solid #ea6171;
  line-height: 1;
}

@media only screen and (min-width: 751px) {
  .header-inner {
    padding: 30px 15px 25px 20px;
  }

  .header-inner::after {
    width: 290px;
  }
  
  .header-logo {
    width: 390px;
  }
  
  .header-sub {
    padding: 21px 25px;
    font-size: 2.8rem;
    border: 2px solid #ea6171;
  }
}

/* ---------------------------------------
cv
--------------------------------------- */
/* フッター固定ボタン */
.cv_fixed {
  position: fixed;
  bottom: calc(30 / 750 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.cv_btn {
  position: relative;
  width: calc(690 / 750 * 100vw);
  height: calc(130 / 750 * 100vw);
  margin: 0 auto;
}

.cv_btn img,
.cv_btn picture {
  position: absolute;
  top: 0;
  left: 0;
	width: 100%;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

/* cv */
.cv .btn {
  position: relative;
  width: calc(630 / 750 * 100vw);
  height: calc(110 / 750 * 100vw);
  margin: 0 auto calc(40 / 750 * 100vw);
}

.cv .btn img,
.cv .btn picture {
  position: absolute;
  top: 0;
  left: 0;
	width: 100%;
	display: block;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.cv .btn-online {
  height: calc(130 / 750 * 100vw);
}

.cv .btn-tel {
  margin-bottom: calc(80 / 750 * 100vw);
}

.cv .cv-txt {
  text-align: center;
}

.cv .cv-txt .marker {
  font-size: calc(32 / 750 * 100vw);
  line-height: 1.6;
}

.cv .cv-txt .marker+p {
  margin-top: calc(20 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  /* フッター固定ボタン */
  .cv_fixed {
    bottom: 30px;
    /*デフォルトで非表示にする*/
    /* opacity: 0;
    transition: all 0.3s ease-out; */
  }
  
  /*このクラスが付与されると表示する*/
  /* .cv_fixed.active{
    opacity: 1;
  } */

  .cv_btn {
    width: 690px;
    height: 130px;
  }

  .cv_btn:hover img:nth-of-type(2),
  .cv_btn:hover picture:nth-of-type(2) {
    opacity: 0;
  }

  /* cv */
  .cv .btn {
    width: 630px;
    height: 110px;
    margin-bottom: 40px;
  }

  .cv .btn:hover img:nth-of-type(2),
  .cv .btn:hover picture:nth-of-type(2) {
    opacity: 0;
  }

  .cv .btn-online {
    height: 130px;
  }

  .cv .btn-tel {
    margin-bottom: 80px;
  }

  .cv .btn-tel:hover {
    pointer-events: none;
  }

  .cv .cv-txt {
    font-size: 2.8rem;
  }

  .cv .cv-txt .marker {
    font-size: 3.2rem;
  }

  .cv .cv-txt .marker+p {
    margin-top: 20px;
    font-size: 2.8rem;
  }
}

/* ---------------------------------------
news
--------------------------------------- */
.news {
  background-color: #ea6171;
  color: #fff;
  font-size: calc(28 / 750 * 100vw);
  line-height: 1;
  text-align: center;
  font-weight: 600;
}

.news p {
  padding: calc(20 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .news {
    font-size: 2.8rem;
  }

  .news p {
    padding: 20px;
  }
}

/* ---------------------------------------
fv
--------------------------------------- */
.fv {
  position: relative;
}

.fv .note {
  padding: 0 calc(45 / 750 * 100vw);
  position: absolute;
  top: calc(945 / 750 * 100vw);
  line-height: 1.2;
}

/* カウントダウン */
.timer {
  position: absolute;
  width: max-content;
  padding: calc(10 / 750 * 100vw) calc(30 / 750 * 100vw);
  min-height: calc(56 / 750 * 100vw);
  background: #fff;
  border-radius: calc(10 / 750 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(128 / 750 * 100vw);
  line-height: 1;
  text-align: center;
  font-size: calc(30 / 750 * 100vw);
}

#countTimer {
  margin-left: 0.5em;
  font-size: calc(34 / 750 * 100vw);
  font-weight: 600;
  color: #e53b4f;
  letter-spacing: 0.08rem;
  text-align: center;
}

#countTimer span {
  font-size: calc(31 / 750 * 100vw);
  font-weight: 400;
  color: #000f2b;
}

.timer.hidden {
  display: none;
}

@media only screen and (min-width: 751px) {
  .fv .note {
    padding: 0 45px;
    top: 945px;
  }

  /* カウントダウン */
  .timer {
    width: 630px;
    padding: 10px 30px;
    min-height: 56px;
    border-radius: 10px;
    bottom: 128px;
    font-size: 3rem;
  }
  
  #countTimer {
    font-size: 3.4rem;
  }
  
  #countTimer span {
    font-size: 3.1rem;
  }
}

/* ---------------------------------------
delivery
--------------------------------------- */
.delivery {
  position: relative;
  background-color: #e6f4fa;
  text-align: center;
}

.delivery::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img_webp/bg_delivery.webp) no-repeat center / contain;
  width: 100%;
  height: calc(83 / 750 * 100vw);
  top: calc(-83 / 750 * 100vw);
  left: 0;
}

.delivery-inner {
  padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw) calc(81/ 750 * 100vw);
  position: relative;
}

.delivery h2 {
  width: calc(617 / 750 * 100vw);
  margin: 0 auto calc(34 / 750 * 100vw);
}

.delivery .balloon-box::before {
  border-top: calc(26 / 750 * 100vw) solid #fff;
  z-index: 1;
}

.delivery .balloon-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: calc(15 / 750 * 100vw) solid transparent;
  border-left: calc(15 / 750 * 100vw) solid transparent;
  border-top: calc(26 / 750 * 100vw) solid #1da2e6;
  bottom: calc(-26 / 750 * 100vw);
}

.delivery-list {
  margin: calc(40 / 750 * 100vw) 0;
  display: flex;
  justify-content: space-between;
}

.delivery-item {
  width: calc(331 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .delivery::before {
    height: 83px;
    top: -83px;
  }

  .delivery .balloon-box::before {
    border-top: 26px solid #fff;
  }

  .delivery .balloon-box::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 26px solid #1da2e6;
    bottom: -26px;
  }

  .delivery-inner {
    padding: 100px 30px 81px;
  }

  .delivery h2 {
    width: 617px;
    margin-bottom: 34px;
  }

  .delivery-list {
    margin: 40px 0;
  }

  .delivery-item {
    width: 331px;
  }
}

/* ---------------------------------------
supervision
--------------------------------------- */
.supervision {
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw) calc(100 / 750 * 100vw);
}

.supervision h2 {
  width: calc(570 / 750 * 100vw);
  margin: 0 auto calc(54 / 750 * 100vw);
}

.supervision-inner {
  display: flex;
  justify-content: space-between;
}

.supervision-img {
  width: calc(200 / 750 * 100vw);
}

.supervision-txt {
  width: calc(400 / 750 * 100vw);
}

.supervision-txt h3 {
  font-size: calc(32 / 750 * 100vw);
  margin-bottom: calc(28 / 750 * 100vw);
}

.supervision-txt h3 span{
  font-weight: normal;
  margin-right: 1em;
}

.supervision-txt p {
  font-size: calc(24 / 750 * 100vw);
  line-height: 1.4;
}

@media only screen and (min-width: 751px) {
  .supervision {
    padding: 60px 30px 100px;
  }
  
  .supervision h2 {
    width: 570px;
    margin: 0 auto 54px;
  }
  
  .supervision-img {
    width: 200px;
  }
  
  .supervision-txt {
    width: 400px;
  }
  
  .supervision-txt h3 {
    font-size: 3.2rem;
    margin-bottom: 28px;
  }
  
  .supervision-txt p {
    font-size: 2.4rem;
  }
}

/* ---------------------------------------
about
--------------------------------------- */
.about {
  padding-bottom: calc(102 / 750 * 100vw);
  line-height: 2;
 }
 
 .about-ttl {
   text-align: center;
   margin-bottom: calc(58 / 750 * 100vw);
 }

 .about-ttl h2 {
  width: calc(375 / 750 * 100vw);
  margin: 0 auto;
 }
 
 .about-ttl p {
   margin-bottom: calc(28 / 750 * 100vw);
   color: #e53b4f;
   font-weight: 600;
   line-height: 1;
 }
 
 .about-img {
   margin-bottom: calc(40 / 750 * 100vw);
 }
 
 .about .tab {
   width: 100%;
 }
 
 .about .tab-list {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: calc(3 / 750 * 100vw);
 }
 
 .about .tab-item {
   background-color: #fdecee;
   font-size: calc(28 / 750 * 100vw);
   border-radius: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw) 0 0;
   cursor: pointer;
   line-height: 1;
   text-align: center;
   transition: 0.3s;
 }
 
 .about .tab-item:hover {
   background-color: #fad8dc;
 }
 
 .about .tab-item a {
   display: block;
   padding: calc(30/ 750 * 100vw) 0 calc(18/ 750 * 100vw);
   color: #EA6171;
 }
 
 .about .tab-item span {
   font-size: calc(32 / 750 * 100vw);
   font-weight: bold;
   margin-top: calc(12 / 750 * 100vw);
   display: block;
 }
 
 .about .tab-item.current {
   padding: calc(30/ 750 * 100vw) 0 calc(18/ 750 * 100vw);
   background-color: #e53b4f;
   color: #fff;
 }

 .about .tab-item.current:hover {
  cursor: default;
 }
 
 .about .tab-content-box {
   padding: calc(94 / 750 * 100vw) calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
   background-color: #fff;
   border-top: calc(6 / 750 * 100vw) solid #e53b4f;
 }
 
 .about-faq {
   position: relative;
   padding: calc(38 / 750 * 100vw) calc(30 / 750 * 100vw) calc(46 / 750 * 100vw);
   margin-top: calc(70 / 750 * 100vw);
   border: calc(3 / 750 * 100vw) solid #BDE1DA;
   border-radius: calc(30 / 750 * 100vw);
   background: #fff;
 }
 
 .about-faq::after {
   content: "";
   display: block;
   position: absolute;
   background: url(../img/img_doctor.svg) no-repeat center / contain;
   bottom: 0;
   right: calc(30 / 750 * 100vw);
   width: calc(170 / 750 * 100vw);
   height: calc(170 / 750 * 100vw);
 }
 
 .about-question {
   margin-bottom: calc(42 / 750 * 100vw);
   width: calc(635 / 750 * 100vw);
   margin: 0 auto calc(42 / 750 * 100vw);
 }
 
 .about-answer span {
   color: #f9d2d9;
   font-weight: 600;
   margin-right: 0.3em;
 }
 
 .about .cv .cv-txt {
  line-height: 1.6;
 }
 
 .about .cv .marker {
   color: #e53b4f;
 }
 
 @media only screen and (min-width: 751px) {
  .about {
    padding-bottom: 94px;
  }

  .about-inner > p {
    padding: 0 30px;
  }

  .about-ttl {
    margin-bottom: 58px;
  }

  .about-ttl h2 {
  width: 375px;
  }

  .about-ttl p {
  margin-bottom: 28px;
}

  .about-img {
    margin-bottom: 40px;
  }

  .about .tab-list {
    gap: 0 1.6px;
  }

  .about .tab-item {
    font-size: 2.8rem;
    border-radius: 40px 40px 0 0;
  }

  .about .tab-item.current {
    padding: 30px 0 18px;
  }

  .about .tab-item a {
    padding: 30px 0 18px;
  }
  

  .about .tab-item span {
    font-size: 3.2rem;
    margin-top: 12px;
  }

  .about .tab-content-box {
    padding: 94px 30px 60px;
    border-top: 6px solid #e53b4f;
  }

  .about-faq {
  padding: 38px 30px 46px;
  margin-top: 70px;
  border: 3px solid #BDE1DA;
  border-radius: 30px;
}

  .about-faq::after {
  right: 27px;
  width: 170px;
  height: 170px;
}

  .about-detail {
    width: 630px;
    margin: 0 auto 80px;
    border-radius: 30px;
    font-size: 2.8rem;
  }
  
  .about-detail-btn {
    padding: 41px;
    border-radius: 30px;
  }

  .about-detail-btn::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 26px solid #a6abb5;
    right: 40px;
  }

.about-question {
  margin-bottom: 42px;
  width: calc(100% + 20px);
  margin: 0 -10px 42px -10px;
}

  .about-detail-content {
    padding: 10px 40px 40px;
  }

  .about-detail-content p {
    margin-bottom: 40px;
  }

  .about .attention {
    margin-top: 34px;
  }

  .about .attention-ttl {
    padding: 26px 10px 22px;
    margin-bottom: 10px;
  }

  .about .attention-img-txt {
    gap: 0 30px;
  }

  .about .attention-img {
    width: 190px;
  }

  .about .attention-txt {
    width: 410px;
    padding-top: 30px;
  }
}

/* ---------------------------------------
price
--------------------------------------- */
.price .ttl-wrap {
  margin-bottom: calc(50 / 750 * 100vw);
}

.price .ttl-wrap h2 {
  width: calc(532 / 750 * 100vw);
  margin: 0 auto;
}

.price .ttl-wrap p {
  color: #3eb1ae;
  border: calc(3 / 750 * 100vw) solid #3eb1ae;
}

.price-inner {
  padding: calc(140 / 750 * 100vw) calc(130 / 750 * 100vw);
}

.price-ttl {
  margin-bottom: calc(56 / 750 * 100vw);
}

.price-ttl h2 {
  font-weight: normal;
}

.price-list {
  margin-top: calc(65 / 750 * 100vw);
  padding-bottom: calc(50 / 750 * 100vw);
  display: flex;
  gap: 0 calc(30 / 750 * 100vw);
}

.price-item {
  width: calc(370 / 750 * 100vw);
  padding: calc(50 / 750 * 100vw) calc(30 / 750 * 100vw);
  background: linear-gradient(180deg, #72cbc9 0%, #72cbc9 20.5%, #edf7f6 20.5%, #edf7f6 100%);
  border-radius: calc(30 / 750 * 100vw);
  text-align: center;
}

.price-item h3 {
  color: #fff;
  margin-bottom: calc(28 / 750 * 100vw);
  line-height: 1.4;
}

.price-item ul li {
  padding: calc(30 / 750 * 100vw) 0;
  border-top: calc(3 / 750 * 100vw) solid #fff;
}

.price-item ul li:last-child {
  padding-bottom: 0;
  font-size: calc(28 / 750 * 100vw);
  text-align: left;
}

.price-item-img {
  width: calc(250 / 750 * 100vw);
  margin: 0 auto calc(30 / 750 * 100vw)
}

.price-main {
  margin-bottom: calc(40 / 750 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(78 / 750 * 100vw);
 }

.price-main__num {
  font-weight: 600;
  font-size: calc(40 / 750 * 100vw);
  line-height: 1;
}

.price-main__num .yen {
  font-size: calc(32 / 750 * 100vw);
}

.price-main__num span {
  font-size: calc(24 / 750 * 100vw);
}

.price .font-r {
  color: #e53b4f;
}

.price-main__txt {
  margin-top: calc(10 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
  font-weight: 600;
  line-height: 1;
}

.cv-price .btn {
  width: calc(310 / 750 * 100vw);
  height: calc(90 / 750 * 100vw);
  margin-bottom: calc(30 / 750 * 100vw);
}

.price-detail h3 {
  margin: 0 auto calc(44 / 750 * 100vw);
}

.price-detail h4 {
  text-align: center;
}

.price-detail.border-box {
  margin-bottom: calc(60 / 750 * 100vw);
}

/* ----------------
  スクロールバー 
-------------------*/
.scroll-box::-webkit-scrollbar {
  width: calc(450 / 750 * 100vw);
  height: calc(16 / 750 * 100vw);
}

/*スクロールバー全体の背景*/
.scroll-box::-webkit-scrollbar-track {
  background: #fff;
  border-radius: calc(100 / 750 * 100vw);
}

/*スクロールバーの動く部分*/
.scroll-box::-webkit-scrollbar-thumb {
  background: #72cbc9;
  border-radius: calc(100 / 750 * 100vw);
}

/* ----------------
  アコーディオン 
-------------------*/
.drug-detail {
  width: calc(690 / 750 * 100vw);
  margin: 0 auto;
  background-color: #fff;
  border-radius: calc(30 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
}

.drug-detail-btn {
  padding: calc(41 / 750 * 100vw);
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: calc(30 / 750 * 100vw);
  line-height: 1;
}

.drug-detail-btn::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 0;
  border-right: calc(15 / 750 * 100vw) solid transparent;
  border-left: calc(15 / 750 * 100vw) solid transparent;
  border-top: calc(26 / 750 * 100vw) solid #a6abb5;
  border-bottom: 0;
	top: 50%;
	right: calc(40 / 750 * 100vw);
	transform: translateY(-50%);
	transition: 0.3s;
}

.drug-detail-btn.active::after {
  transform: translateY(-50%) rotate(180deg);
}

.drug-detail-content {
  padding: calc(10 / 750 * 100vw) calc(40 / 750 * 100vw) calc(40 / 750 * 100vw);
  line-height: 1.6;
  display: none;
}

.drug-detail-content p {
  margin-bottom: calc(40 / 750 * 100vw);
}

.drug-detail-content p:last-child {
  margin-bottom: 0;
}

.drug-detail-content .btn-close {
  text-align: center;
  cursor: pointer;
}

@media only screen and (min-width: 751px) {
  .price-inner {
    padding: 140px 130px;
  }

  .price-ttl {
    margin-bottom: 56px;
  }

  .price .ttl-wrap {
    margin-bottom: 50px;
  }
  
  .price .ttl-wrap h2 {
    width: 532px;
  }
  
  .price .ttl-wrap p {
    border: 3px solid #3eb1ae;
  }

  .price-ttl p {
    width: 490px;
    padding: 12px;
    font-size: 3.2rem;
    font-weight: 600;
    color: #3eb1ae;
    margin: 0 auto 30px;
    background: #fff;
    border: 3px solid #3eb1ae;
    border-radius: 10px;
    text-align: center;
  }

  .price-list {
    margin-top: 65px;
    padding-bottom: 50px;
    gap: 0 30px;
  }

  .price-item {
    width: 370px;
    padding: 50px 30px;
    border-radius: 30px;
  }

  .price-item ul li:last-child {
    font-size: 2.8rem;
  }

  .price-item h3 {
    margin-bottom: 28px;
  }

  .price-item ul li {
    padding: 30px 0;
    border-top: 3px solid #fff;
  }

  .price-item ul li:last-child {
    font-size: 2.8rem;
  }

  .price-item-img {
    width: 250px;
    margin: 0 auto 30px;
  }

  .price-main {
    margin-bottom: 40px;
    min-height: 78px;
   }

  .price-main__num {
    font-size: 4rem;
  }

  .price-main__num .yen {
    font-size: 3.2rem;
  }

  .price-main__num span {
    font-size: 2.4rem;
  }

  .price-main__txt {
    margin-top: 10px;
    font-size: 2.8rem;
  }

  .cv-price .btn {
    width: 310px;
    height: 100px;
    margin-bottom: 30px;
  }

  .price-detail h3 {
    width: 410px;
    margin: 0 auto 44px;
  }

  .price-detail.border-box {
    margin-bottom: 60px;
    border: 3px solid #f69c06;
  }

  /* ----------------
   スクロールバー 
  -------------------*/
  .scroll-box::-webkit-scrollbar {
    width: 450px;
    height: 16px;
  }

  /*スクロールバー全体の背景*/
  .scroll-box::-webkit-scrollbar-track {
    border-radius: 100px;
  }

  /*スクロールバーの動く部分*/
  .scroll-box::-webkit-scrollbar-thumb {
    border-radius: 100px;
  }

  /* ----------------
   アコーディオン 
  -------------------*/
  .drug-detail {
    width: 690px;
    margin: 0 auto;
    border-radius: 30px;
    font-size: 2.8rem;
  }
  
  .drug-detail-btn {
    padding: 41px;
    border-radius: 30px;
  }

  .drug-detail-btn::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 26px solid #a6abb5;
    right: 40px;
  }

  .drug-detail-content {
    padding: 10px 40px 40px;
  }

  .drug-detail-content p {
    margin-bottom: 40px;
  }
}

/* ---------------------------------------
flow
--------------------------------------- */
.flow {
  position: relative;
  z-index: 1;
}

.flow-inner {
  padding: calc(140 / 750 * 100vw) calc(100 / 750 * 100vw) calc(133 / 750 * 100vw);
}

.flow .top-circle,
.flow .bottom-circle {
  background-color: #eff7e9;
}

.flow .ttl-wrap {
  margin-bottom: calc(52 / 750 * 100vw);
}

.flow .ttl-wrap h2 {
  width: calc(587 / 750 * 100vw);
  margin: 0 auto;
}

.flow .ttl-wrap p {
  margin-bottom: calc(20 / 750 * 100vw);
  color: #86b946;
  border: calc(3 / 750 * 100vw) solid #86b946;
}

.flow .cv .marker {
  color: #78a93a;
}

/* ------------------
  スライダー 
--------------------*/
.flow-slider {
  padding: 0 calc(60 / 750 * 100vw);
  margin-bottom: calc(40 / 750 * 100vw);
}

.flow-slider-item {
  position: relative;
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw);
  background: #fff;
  min-height: calc(1020 / 750 * 100vw);
}

.flow-slider-item__ttl {
  text-align: center;
}

.flow-slider-item__ttl sup {
  font-weight: 400;
}

.flow-slider-item h3 {
  display: inline-block;
  padding-left: calc(87 / 750 * 100vw);
  margin-bottom:calc(40 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
  color: #86b946;
  position: relative;
  line-height: calc(70 / 750 * 100vw);
  background-size: calc(70 / 750 * 100vw) calc(70 / 750 * 100vw);
  background-repeat: no-repeat;
}

.flow-slider-item:nth-of-type(1) h3 {
  background-image: url(../img_webp/icon_flow01.webp);
}

.flow-slider-item:nth-of-type(2) h3 {
  background-image: url(../img_webp/icon_flow02.webp);
}

.flow-slider-item:nth-of-type(3) h3 {
  background-image: url(../img_webp/icon_flow03.webp);
}

.flow-slider-item:nth-of-type(4) h3 {
  background-image: url(../img_webp/icon_flow04.webp);
}

.flow-slider-item .note {
  margin-top: calc(27 / 750 * 100vw);
}

.flow-slider-img {
  margin-bottom: calc(40 / 750 * 100vw);
}

.flow-slider-txt {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.6;
}

.flow-slider-txt a {
  color: #06c755;
  text-decoration: underline;
}

.btn-line {
  width: calc(570 / 750 * 100vw);
  position: absolute;
  bottom: calc(60 / 750 * 100vw);
}

.btn-line a {
  display: block;
  margin-top: calc(25 / 750 * 100vw);
  padding: calc(25 / 750 * 100vw);
  color: #06c755;
  font-weight: 600;
  text-align: center;
  border: calc(4 / 750 * 100vw) solid #06c755;
  border-radius: calc(100 / 750 * 100vw);
  line-height: 1;
  transition: 0.3s;
}

.swiper-wrapper {
  z-index: -1;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: calc(30 / 750 * 100vw);
  width: calc(30 / 750 * 100vw);
}

.swiper-button-prev {
  left: calc(15 / 750 * 100vw);
}

.swiper-button-next {
  right: calc(15 / 750 * 100vw);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: calc(30 / 750 * 100vw);
  height: calc(30 / 750 * 100vw);
  background-repeat: no-repeat;
  background-size: contain;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img_webp/icon_arrow_prev.webp);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img_webp/icon_arrow_next.webp);
}

.flow-slider-img img {
  width: 100%;
}

.flow .cv_btn {
  width: calc(690 / 750 * 100vw);
  height: calc(152 / 750 * 100vw);
  margin-bottom: calc(46 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .flow-inner {
    padding: 140px 100px 133px;
  }

  .flow .ttl-wrap {
    margin-bottom: 52px;
  }

  .flow .ttl-wrap h2 {
    width: 587px;
  }
  
  .flow .ttl-wrap p {
    margin-bottom: 20px;
    border: 3px solid #86b946;
  }

  /* ------------------
    スライダー 
  --------------------*/
  .flow-slider {
    padding: 0 60px;
    margin-bottom: 40px;
  }

  .flow-slider-item {
    padding: 60px 30px 60px;
    min-height: 1020px;
  }

  .flow-slider-item h3 {
    padding-left: 87px;
    margin-bottom: 40px;
    background-size: 70px 70px;
    line-height: 70px;
    font-size: 3.6rem;
  }

  .flow-slider-item .note {
    margin-top: 27px;
  }

  .flow-slider-img {
    margin-bottom: 40px;
  }

  .flow-slider-txt {
    font-size: 2.8rem;
  }

  .btn-line {
    width: 570px;
    bottom: 60px;
  }

  .btn-line a {
    margin-top: 25px;
    padding: 25px;
    border: 4px solid #06c755;
    border-radius: 100px;
  }

  .btn-line a:hover {
    color: #fff;
    background: #05b34c;
    border: 4px solid #05b34c;
  }

  /* 前へ次への矢印カスタマイズ */
  .swiper-button-prev,
  .swiper-button-next {
    width: 26px;
    height: 26px;
    transform: translateY(10px);
  }

  .swiper-button-prev {
    left: 15px;
  }
  
  .swiper-button-next {
    right: 12px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 26px;
    height: 26px;
  }

  .flow .cv_btn {
    width: 690px;
    height: 152px;
    margin-bottom: 46px;
  }
}

/* ---------------------------------------
payment
--------------------------------------- */
.payment {
  padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw);
  text-align: center;
}

.payment h2 {
  width: calc(350 / 750 * 100vw);
  margin: 0 auto calc(24 / 750 * 100vw);
}

.payment-lead {
  margin-bottom: calc(42 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
  line-height: 1;
}

.payment-list {
  background: #fff;
  padding: 0 calc(30 / 750 * 100vw);
}

.payment-list li {
  border-bottom: calc(3 / 750 * 100vw) solid #F7F3E9;
  padding: calc(50 / 750 * 100vw) 0;
}

.payment-list li:nth-of-type(2) h3 {
  margin-bottom: calc(18 / 750 * 100vw);
}

.payment-list li h3 {
  text-align: center;
}

.payment-list li p {
  font-size: calc(24 / 750 * 100vw);
  line-height: 1;
}

.payment-list li:last-child {
  border: none;
}

.payment-img {
  width: 80%;
  margin: calc(35 / 750 * 100vw) auto 0;
  text-align: center;
}

@media only screen and (min-width: 751px) {
  .payment {
    padding: 80px 30px;
  }
  
  .payment h2 {
    margin-bottom: 24px;
  }
  
  .payment-lead {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 42px;
  }
  
  .payment-list {
    padding: 0 30px;
  }
  
  .payment-list li {
    border-bottom: 3px solid #F7F3E9;
    padding: 50px 0;
  }

  .payment-list li:nth-of-type(2) h3 {
    margin-bottom: 18px;
  }
  
  .payment-list li p {
    font-size: 2.4rem;
  }
  
  .payment-img {
    margin: 35px auto 0;
  }
}

/* ---------------------------------------
usage
--------------------------------------- */
.usage {
  margin-top: calc(-80 / 750 * 100vw);
  background: url(../img_webp/bg_usage.webp) repeat center / calc(14 / 750 * 100vw) calc(14 / 750 * 100vw);
 }

.usage-inner {
  padding: calc(180 / 750 * 100vw) calc(30 / 750 * 100vw) calc(160 / 750 * 100vw);
}

.usage .ttl-wrap {
  margin-bottom: calc(56 / 750 * 100vw);
}

.usage .ttl-wrap h2 {
  width: calc(580 / 750 * 100vw);
  margin: 0 auto;
}

.usage .ttl-wrap p {
  color: #ea6171;
  border: calc(3 / 750 * 100vw) solid #ea6171;
}

.usage h3 {
  margin-bottom: calc(35 / 750 * 100vw);
}

.usage-img {
  margin-bottom: calc(80 / 750 * 100vw);
}

.usage-img img {
  border-radius: calc(30 / 750 * 100vw);
}

.usage-list li:not(:last-child) {
  margin-bottom: calc(70 / 750 * 100vw);
}

.usage-list li p {
  line-height: 2;
}

@media only screen and (min-width: 751px) {
  .usage {
    margin-top: -80px;
    background: url(../img_webp/bg_usage.webp) repeat center;
  }
  
  .usage-inner {
    padding: 180px 30px 160px;
  }
  
  .usage .ttl-wrap {
    margin-bottom: 56px;
  }

  .usage .ttl-wrap h2 {
    width: 580px;
  }
  
  .usage .ttl-wrap p {
    border: 3px solid #ea6171;
  }
  
  .usage h3 {
    margin-bottom: 35px;
  }
  
  .usage-img {
    margin-bottom: 80px;
  }

  .usage-img img {
    border-radius: 30px;
  }
  
  .usage-list li:not(:last-child) {
    margin-bottom: 70px;
  }  
}

/* ---------------------------------------
promise
--------------------------------------- */
.promise {
  margin-top: calc(-80 / 750 * 100vw);
  position: relative;
  z-index: 1;
}

.promise-inner {
  padding: calc(140 / 750 * 100vw) calc(130 / 750 * 100vw) calc(135 / 750 * 100vw);
}

.promise .top-circle,
.promise .bottom-circle {
  background: #efedf6;
}

.promise h2 {
  width: calc(475 / 750 * 100vw);
  margin: 0 auto calc(102 / 750 * 100vw);
}

.promise-ttl p {
  margin-bottom: calc(16 / 750 * 100vw);
  color: #a47ec8;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.promise-list {
  margin-bottom: calc(40 / 750 * 100vw);
  display: flex;
  flex-wrap: wrap;
  gap: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw);
}

.promise-list li {
  position: relative;
  width: calc(50% - calc(15 / 750 * 100vw));
  padding: calc(80 / 750 * 100vw) calc(30 / 750 * 100vw) calc(32 / 750 * 100vw);
  background: #fff;
}

.promise-list li p {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.8;
}

.promise-list h3 {
  position: absolute;
  width: calc(270 / 750 * 100vw);
  padding: calc(12 / 750 * 100vw) calc(12 / 750 * 100vw) calc(16 / 750 * 100vw);
  text-align: center;
  color: #fff;
  border-radius: calc(10 / 750 * 100vw);
  top: calc(-30 / 750 * 100vw);
  left: 50%;
  transform: translateX(-50%);
}

.promise-list h3 img {
  width: calc(117 / 750 * 100vw);
}

.promise-list li:first-child h3 img {
  width: calc(112 / 750 * 100vw);
}

.promise-list h4 {
  margin-bottom: calc(38 / 750 * 100vw);
  text-align: center;
  line-height: 1;
}

.promise-img {
  width: calc(160 / 750 * 100vw);
  margin: 0 auto calc(30 / 750 * 100vw);
}

.promise-list-item__purple h3 {
  background: #c9c2e0;
}

.promise-list-item__purple h4 {
  color: #a47ec8;
}

.promise-list-item__yellow h3 {
  background: #ffdf6c;
}

.promise-list-item__yellow h4 {
  color: #edc332;
}

.promise .cv .marker {
  color: #a47ec8;
}

.promise .note {
  margin-bottom: calc(60 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .promise {
    margin-top: -80px;
    position: relative;
    z-index: 1;
  }
  
  .promise h2 {
    width: 475px;
    margin-bottom: 102px;
  }
  
  .promise-inner {
    padding: 140px 130px 135px;
  }
  
  .promise-list {
    margin-bottom: 40px;
    gap: 60px 30px;
  }
  
  .promise-list li {
    width: 330px;
    padding: 80px 30px 32px;
  }
  
  .promise-list li p {
    margin-bottom: 16px;
    font-size: 2.8rem;
  }
  
  .promise-list h3 {
    position: absolute;
    width: 270px;
    padding: 14px;
    text-align: center;
    color: #fff;
    border-radius: 10px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .promise-list li:first-child h3 img {
    width: 112px;
  }

  .promise-list h3 img {
    width: 117px;
  }
  
  .promise-list h4 {
    margin-bottom: 38px;
  }
  
  .promise-img {
    width: 160px;
    margin: 0 auto 30px;
  }
  
  .promise .note {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 751px) and (max-width:766px) {
  .promise-list {
    gap: 60px 0;
    justify-content: space-between;
  }
}

/* ---------------------------------------
record
--------------------------------------- */
.record {
  margin-top: calc(-80 / 750 * 100vw);
  background: url(../img_webp/bg_record.webp) no-repeat top center / cover;
}

.record-inner {
  padding: calc(180 / 750 * 100vw) calc(60 / 750 * 100vw) calc(100 / 750 * 100vw);
  text-align: center;
}

.record .ttl-wrap {
  margin-bottom: calc(86 / 750 * 100vw);
}

.record .ttl-wrap h2 {
  width: calc(450 / 750 * 100vw);
  margin: 0 auto;
}

.record .ttl-wrap p {
  color: #ac8d37;
  border: calc(3 / 750 * 100vw) solid #ac8d37;
}

.line-registration-number {
  margin-bottom: calc(93 / 750 * 100vw);
  color: #ac8d37;
  background: url(../img_webp/bg_record_num.webp) no-repeat top / contain;
}

.line-registration-number .copy-wrapper {
  margin-bottom: calc(16 / 750 * 100vw);
}

.line-registration-number .copy-wrapper + p {
  color: #7f8694;
  font-size: calc(16 / 750 * 100vw);
}

.line-registration-number .copy {
  margin-bottom: calc(18 / 750 * 100vw);
  line-height: 1;
  color: #000f2b;
}

.line-registration-number .copy-sub {
  margin-bottom: calc(12 / 750 * 100vw);
  font-size: calc(28 / 750 * 100vw);
}

.line-registration-number .copy-main {
  font-weight: bold;
  font-size: calc(36 / 750 * 100vw);
}

.line-registration-number .num {
  font-size: calc(96 / 750 * 100vw);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.line-registration-number .num span {
  font-size: calc(56 / 750 * 100vw);
  font-weight: bold;
  letter-spacing: initial;
}

.record-copy {
  font-size: calc(32 / 750 * 100vw);
  line-height: 2;
  margin-bottom: calc(38 / 750 * 100vw);
}

.record-copy span {
  font-size: calc(36 / 750 * 100vw);
  font-weight: bold;
  color: #fff;
  display: inline-block;
  background-color: #ac8d37;
  line-height: 1.25;
}

.record-img {
  width: calc(510 / 750 * 100vw);
  margin: 0 auto calc(40 / 750 * 100vw);
}

.record-img-txt {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.2;
}

.record-img-txt span {
  font-size: calc(16 / 750 * 100vw);
  line-height: 1;
  color: #7f8694;
}

@media only screen and (min-width: 751px) {
  .record {
    margin-top: -80px;
  }

  .record-inner {
    padding: 180px 60px 100px;
  }

  .record .ttl-wrap {
    margin-bottom: 86px;
  }

  .record .ttl-wrap h2 {
    width: 450px;
  }

  .record .ttl-wrap p {
    border: 3px solid #ac8d37;
  }

  .line-registration-number {
    margin-bottom: 93px;
  }

  .line-registration-number .copy-wrapper {
    margin-bottom: 16px;
  }

  .line-registration-number .copy-wrapper + p {
    font-size: 1.6rem;
  }

  .line-registration-number .copy {
    margin-bottom: 18px;
  }

  .line-registration-number .copy-sub {
    margin-bottom: 12px;
    font-size: 2.8rem;
  }

  .line-registration-number .copy-main {
    font-size: 3.6rem;
  }

  .line-registration-number .num {
    font-size: 9.6rem;
  }

  .line-registration-number .num span {
    font-size: 5.6rem;
  }

 .record-copy {
    font-size: 3.2rem;
    margin-bottom: 38px;
  }

  .record-copy span {
    font-size: 3.6rem;
  }

  .record-img {
    width: 510px;
    margin-bottom: 40px;
  }

  .record-img-txt {
    font-size: 2.8rem;
  }

  .record-img-txt span {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------
faq
--------------------------------------- */
.faq-inner {
  padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw) calc(90 / 750 * 100vw);
  font-size: calc(32 / 750 * 100vw);
}

.faq h2 {
  width: calc(382 / 750 * 100vw);
  margin: 0 auto calc(90 / 750 * 100vw);
}

.faq-list {
  margin-bottom: calc(60 / 750 * 100vw);
}

.faq-item {
  cursor: pointer;
}

.faq-item:not(:last-child) {
  margin-bottom: calc(30 / 750 * 100vw);
}

.faq-question {
  padding: calc(29 / 750 * 100vw) calc(60 / 750 * 100vw) calc(29 / 750 * 100vw) calc(30 / 750 * 100vw);
  background-color: #f2f3f4;
  border-radius: calc(30 / 750 * 100vw);
  position: relative;
  line-height: 1;
}

.faq-question::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(26 / 750 * 100vw);
  height: calc(24 / 750 * 100vw);
  background: url(../img_webp/icon_arrow.webp) no-repeat center / contain;
  top: 50%;
  right: calc(30 / 750 * 100vw);
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq-question.open::after {
	transform: translateY(-50%) rotate(180deg);
}

.faq-question span {
  color: #3eb1ae;
  margin-right: 0.3em;
}

.faq-answer {
  display: none;
  padding: calc(30 / 750 * 100vw) calc(30 / 750 * 100vw) calc(20 / 750 * 100vw);
}

.faq-answer p {
  line-height: 1.8;
}

.faq-answer span {
  color: #f7636e;
  margin-right: 0.3em;
}

@media only screen and (min-width: 751px) {
  .faq-inner {
    padding: 100px 30px 90px;
    font-size: 3.2rem;
  }

  .faq h2 {
    width: 382px;
    margin: 0 auto 90px;
  }

  .faq-list {
    margin-bottom: 60px;
  }

  .faq-item:not(:last-child) {
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 29px 60px 29px 30px;
    border-radius: 30px;
  }

  .faq-question:last-child {
    margin-bottom: 0;
  }

  .faq-question::after {
    width: 26px;
    height: 24px;
    right: 30px;
  }

  .faq-answer {
    padding: 30px 30px 20px;
    
  }
}

/* ---------------------------------------
clinic
--------------------------------------- */
.clinic {
  background-color: #f2f3f4;
}

.clinic-inner {
  padding: calc(100 / 750 * 100vw) calc(30 / 750 * 100vw);
}

.clinic h2 {
  width: calc(349 / 750 * 100vw);
  margin: 0 auto calc(84 / 750 * 100vw);
}

.clinic h3 {
  font-size: calc(36 / 750 * 100vw);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(64 / 750 * 100vw);
  line-height: 1;
}

.clinic-list {
  margin-bottom: calc(60 / 750 * 100vw);
}

.clinic-list-item {
  display: flex;
  margin-bottom: calc(56 / 750 * 100vw);
}

.clinic-list-item:nth-of-type(2) dd {
  letter-spacing: -0.04em;
}

.clinic-list-item:last-child {
  margin-bottom: 0;
}

.clinic-list dt {
  font-size: calc(28 /750 * 100vw);
  font-weight: bold;
  width: calc(190 / 750 * 100vw);
  line-height: 1;
}

.clinic-list dd {
  font-size: calc(28 /750 * 100vw);
  font-weight: normal;
  width: calc(480 / 750 * 100vw);
  padding-left: calc(18 / 750 * 100vw);
  border-left: calc(2 / 750 * 100vw) solid #000f2b;
  line-height: 1.4;
}
.clinic-list-item-content:not(:last-child) {
  margin-bottom: calc(43 / 750 * 100vw);
}

.clinic-map {
  margin-bottom: calc(100 / 750 * 100vw);
}

.clinic-map iframe {
  width: 100%;
  display: block;
}

.font-red {
  color: #f7636e;
}

/* スライダー */
.clinic-slider {
  width: 100%;
  margin: 0 auto calc(110 / 750 * 100vw);
  line-height: 1;
}

.clinic-img img {
  border-radius: calc(30 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .clinic h2 {
    width: 349px;
    margin-bottom: 84px;
  }

  .clinic h3 {
    font-size: 3.6rem;
    margin-bottom: 64px;
  }

  .clinic-inner {
    padding: 100px 30px;
  }

  .clinic-list {
    margin-bottom: 60px;
  }

  .clinic-list-item {
    margin-bottom: 56px;
  }

  .clinic-list-item dt {
    font-size: 2.8rem;
    width: 190px;
  }

  .clinic-list-item dd {
    font-size: 2.8rem;
    width: 480px;
    padding-left: 18px;
    border-left: 2px solid #000f2b;
  }

  .clinic-list-item-content:not(:last-child) {
    margin-bottom: 43px;
  }

  .clinic-map {
    margin-bottom: 100px;
  }

  /* スライダー */
  .clinic-slider {
    margin: 0 auto 110px;
  }

  .clinic-img img {
    border-radius: 30px;
  }
}

/* ---------------------------------------
doctor
--------------------------------------- */
.doctor {
  font-size: calc(28 / 750 * 100vw);
}

.doctor-img {
  margin-bottom: calc(60 / 750 * 100vw);
}

.doctor-txt {
  padding: 0 calc(30 / 750 * 100vw);
  line-height: 1.6;
}

.doctor h4 {
  margin-bottom: calc(53 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
}

.doctor h4 span {
  font-weight: normal;
}

.doctor-list-01 {
  margin-bottom: calc(45 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .doctor {
    font-size: 2.8rem;
  }

  .doctor-img {
    margin-bottom: 60px;
  }

  .doctor-txt {
    padding: 0 30px;
  }

  .doctor h4 {
    margin-bottom: 53px;
    font-size: 3.6rem;
  }

  .doctor-list-01 {
    margin-bottom: 45px;
  }
}

/* ---------------------------------------
footer
--------------------------------------- */
.footer-inner {
  padding: calc(120 / 750 * 100vw) 0 calc(286 / 750 * 100vw);
}

.footer-logo {
  width: calc(120 / 750 * 100vw);
  margin: 0 auto calc(55 / 750 * 100vw);
}

.footer-list {
  margin-bottom: calc(50 / 750 * 100vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 calc(20 / 750 * 100vw);
}

.footer-list a {
  font-size: calc(24 / 750 * 100vw);
}

.footer-copy {
  font-size: calc(24 / 750 * 100vw);
  text-align: center;
}

@media only screen and (min-width: 751px) {
  .footer-inner {
    padding: 120px 0 286px;
  }

  .footer-logo {
    width: 120px;
    margin: 0 auto 55px;
  }

  .footer-list {
    margin-bottom: 50px;
    gap: 0 20px;
  }

  .footer-list a {
    font-size: 2.4rem;
  }

  .footer-copy {
    font-size: 2.4rem;
  }
}

/* モーダル */
.modal-wrap {
  display: inline-block;
}

.modal-wrap input {
  display: none;
}

.modal-open-label,
.modal-close-label {
  cursor: pointer;
}

.modal-open-label {
  color: #000f2b;
  font-size: calc(24 / 750 * 100vw);
  text-decoration: underline;
  cursor: pointer;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-open-input:checked + label + input + .modal {
  display: block;
  animation: modal-animation .6s;
}

.modal-content-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(670 / 750 * 100vw);
  background-color: #fff;
  z-index: 2;
  border-radius: calc(10 / 750 * 100vw);
}

.modal-close-label {
  background-color: #777;
  color: #fff;
  border: calc(4 / 750 * 100vw) solid #fff;
  border-radius: 50%;
  width: calc(80 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  position: fixed;
  top: calc(-30 / 750 * 100vw);
  right: calc(-30 / 750 * 100vw);
  z-index: 99999;
}

.modal-close-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(24 / 750 * 100vw);
  height: calc(24 / 750 * 100vw);
  background: url(../img_webp/icon-modal-close.webp) no-repeat center / contain;
}

.modal-content {
  max-height: 69vh;
  overflow-y: auto;
  padding: calc(60 / 750 * 100vw);
}

.modal-content h2 {
  font-size: calc(32 / 750 * 100vw);
  margin: 0 -1em calc(52 / 750 * 100vw);
  line-height: 1.8;
}

.modal-content p {
  font-size: calc(28 / 750 * 100vw);
  margin-bottom: calc(44 / 750 * 100vw);
  line-height: 1.6;
}

.modal-content p:last-child {
  margin-bottom: 0;
}

.modal-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .45);
  z-index: 1;
}

@keyframes modal-animation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

@media only screen and (min-width: 751px) {
  .modal-open-label {
    font-size: 2.4rem;
  }

  .modal-content-wrap {
    max-width: 670px;
    border-radius: 10px;
  }

  .modal-close-label {
    border: 4px solid #fff;
    width: 80px;
    height: 80px;
    top: -30px;
    right: -30px;
  }

  .modal-close-label::before {
    width: 24px;
    height: 24px;
  }

  .modal-content {
    padding: 60px;
    max-width: 100%;
    max-height: 80vh;
  }

  .modal-content h2 {
    font-size: 32px;
    margin: 0 -1em 52px;
  }

  .modal-content p {
    font-size: 28px;
    margin-bottom: 44px;
  }
}

/* ======================================
  低用量ピル、生理移動ピルLP共通
  スタイル
====================================== */
/* -----------------------------------
 delivery
-------------------------------------*/
.lowdose .delivery h2,
.physiological .delivery h2 {
  width: calc(649 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .lowdose .delivery h2,
  .physiological .delivery h2 {
    width: 649px;
  }
}

/* ======================================
  低用量ピルLP用
  スタイル
====================================== */
/* -----------------------------------
 about
-------------------------------------*/
.lowdose .about-ttl h2 {
  width: calc(358 / 750 * 100vw);
 }

.lowdose .about .about-merit h3 {
  margin: calc(76 / 750 * 100vw) 0 calc(35 / 750 * 100vw);
}

.lowdose .about-merit__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 calc(30 / 750 * 100vw);
}

.lowdose .about-merit__list li {
  position: relative;
  width: calc(50% - calc(15 / 750 * 100vw));
  padding: calc(34 / 750 * 100vw) 0 calc(34 / 750 * 100vw) calc(80 / 750 * 100vw);

  font-weight: 600;
  color: #e53b4f;
  border-bottom: calc(2 / 750 * 100vw) solid #fedda7;
  line-height: 1;
}

.lowdose .about-merit__list li::before {
  content: "";
  display: block;
  position: absolute;
  width: calc(60 / 750 * 100vw);
  height: calc(60 / 750 * 100vw);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lowdose .about-merit__list li:nth-of-type(1):before {
  background: url(../img/icon_smile_heart_line.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(2):before {
  background: url(../img/icon_baby.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(3):before {
  background: url(../img/icon_waist.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(4):before {
  background: url(../img/icon_peace_heart.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(5):before {
  background: url(../img/icon_calender.svg) no-repeat center / contain;
  width: calc(50 / 750 * 100vw);
  height: calc(50 / 750 * 100vw);
  left: calc(8 / 750 * 100vw);
}

.lowdose .about-merit__list li:nth-of-type(6):before {
  background: url(../img/icon_cycle.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(7):before {
  background: url(../img/icon_test_tube.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(8):before {
  background: url(../img/icon_pink_ribbon.svg) no-repeat center / contain;
  width: calc(43 / 750 * 100vw);
  height: calc(50 / 750 * 100vw);
  left: calc(4 / 750 * 100vw);
}

.lowdose .about-merit__list li:nth-of-type(9):before {
  background: url(../img/icon_mirror.svg) no-repeat center / contain;
}

.lowdose .about-merit__list li:nth-of-type(10):before {
  background: url(../img/icon_smile_face.svg) no-repeat center / contain;
  width: calc(54 / 750 * 100vw);
  height: calc(54 / 750 * 100vw);
  left: calc(3 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .lowdose .about-ttl h2 {
    width: 358px;
   }

  .lowdose .about .about-merit h3 {
    margin: 76px 0 35px;
  }

  .lowdose .about-merit__list {
    gap: 0 30px;
  }

  .lowdose .about-merit__list li {
    width: 330px;
    padding: 34px 0 34px 80px;
    border-bottom: 2px solid #fedda7;
  }

  .lowdose .about-merit__list li::before {
    width: 60px;
    height: 60px;
  }

  .lowdose .about-merit__list li:nth-of-type(5):before {
    width: 50px;
    height: 50px;
    left: 4px;
  }

  .lowdose .about-merit__list li:nth-of-type(8):before {
    width: 43px;
    height: 50px;
    left: 8px;
  }

  .lowdose .about-merit__list li:nth-of-type(10):before {
    width: 54px;
    height: 54px;
    left: 3px;
  }
}

@media only screen and (min-width: 751px) and (max-width:766px) {
  .lowdose .about-merit__list {
    gap: 0;
    justify-content: space-between;
  }
}

/* -----------------------------------
 price
-------------------------------------*/
.lowdose .price .bottom-circle {
  background: #fff3dB;
}

.lowdose .price .ttl-wrap {
  margin-bottom: calc(56 / 750 * 100vw);
}

.lowdose .price .ttl-wrap h2 {
  width: calc(510 / 750 * 100vw);
}

.lowdose .price .ttl-wrap p {
  color: #f69c06;
  border: calc(3 / 750 * 100vw) solid #f69c06;
}

.lowdose .price .lead {
  margin-bottom: calc(50 / 750 * 100vw);
}

.lowdose .price-item {
  background: linear-gradient(180deg, #fdc66d 0%, #fdc66d 20.5%, #fff9ee 20.5%, #fff9ee 100%);
}

.lowdose .price-item li {
  text-align: left;
}

 /*スクロールバーの動く部分*/
 .lowdose .scroll-box::-webkit-scrollbar-thumb {
  background: #fdc66d;
}

.lowdose .about-faq {
  border: calc(3 / 750 * 100vw) solid #fedda7;
}

.lowdose .price-detail h3 {
  width: calc(410 / 750 * 100vw);
} 

.lowdose .price-detail.border-box {
  border: calc(3 / 750 * 100vw) solid #f69c06;
}

@media only screen and (min-width: 751px) {
  .lowdose .price .ttl-wrap {
    margin-bottom: 56px;
  }

  .lowdose .price .ttl-wrap h2 {
    width: 510px;
  }

  .lowdose .price .ttl-wrap p {
    border: 3px solid #f69c06;
  }

  .lowdose .price .lead {
    margin-bottom: 50px;
  }

  .lowdose .price-detail h3 {
    width: 410px;
  }

  .lowdose .price-detail.border-box {
    border: 3px solid #f69c06;
  }
}

@media only screen and (min-width: 751px) {
  .lowdose .about-faq {
    border: 3px solid #fedda7;
  }
}

/*------------------------------------
 usage
------------------------------------*/
.lowdose .about-faq::after {
  background: url(../img/img_doctor_lowdose.svg) no-repeat center / contain;
}

/*------------------------------------
 column
------------------------------------*/
.column {
  position: relative;
  margin-top: calc(-80 / 750 * 100vw);
  z-index: 2;
}

.column .bottom-circle {
  background: #f7f3e9;
}

.column-inner {
  padding: calc(140 / 750 * 100vw) calc(130 / 750 * 100vw);
}

.column h2 {
  width: calc(490 / 750 * 100vw);
  margin: 0 auto calc(60 / 750 * 100vw);
}

.column h3 {
  position: relative;
  margin-bottom: calc(60 / 750 * 100vw);
  padding: calc(24 / 750 * 100vw) calc(30 / 750 * 100vw) calc(20 / 750 * 100vw);
  font-size: calc(48 / 750 * 100vw);
  font-weight: 400;
  line-height: 1.6;
}

.column h3::before,
.column h3::after {
	content: "";
	width: calc(100 / 750 * 100vw);
	height: calc(100 / 750 * 100vw);
	position: absolute;
}

.column h3::before {
  border-left: solid calc(2 / 750 * 100vw) #000f2b;
  border-top: solid calc(2 / 750 * 100vw) #000f2b;
  top: 0;
  left: 0;
}

.column h3::after {
  border-right: solid calc(2 / 750 * 100vw) #000f2b;
  border-bottom: solid calc(2 / 750 * 100vw) #000f2b;
  bottom: 0;
  right: 0;
}

.column h4 {
  margin: calc(68 / 750 * 100vw) 0 calc(60 / 750 * 100vw);
  padding-bottom: calc(30 / 750 * 100vw);
  font-size: calc(40 / 750 * 100vw);
  border-bottom: calc(2 / 750 * 100vw) solid #ad9056;
  color: #ad9056;
  border-bottom: calc(2 / 750 * 100vw) solid #ad9056;
  line-height: 1;
}

.column-supervision {
  margin-bottom: calc(60 / 750 * 100vw);
  padding: calc(20 / 750 * 100vw) calc(30 / 750 * 100vw);
  display: flex;
  gap: 0 calc(20 / 750 * 100vw);
  background: #fcfbf7;
  border-radius: calc(30 / 750 * 100vw);
}

.column-supervision__img {
  width: calc(120 / 750 * 100vw);
}

.column-supervision__img img {
  border-radius: 50%;
}

.column-supervision__txt .ttl {
  font-size: calc(28 / 750 * 100vw);
  margin: calc(4 / 750 * 100vw) 0 calc(3 / 750 * 100vw);

}

.column-supervision__txt .name span {
  margin-left: 1em;
  font-weight: 600;
}

.column-list li:not(:last-child){
  margin-bottom: calc(64 / 750 * 100vw);
}

.column-img {
  width: 100vw;
  max-width: 750px;
  margin-left: calc(-30 / 750 * 100vw);
  margin-bottom: calc(60 / 750 * 100vw);
}

.column-list p {
  line-height: 2;
}

.column-list p + p {
  margin-top: calc(70 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .column {
    margin-top: -80px;
  }

  .column-inner {
    padding: 140px 130px;
  }

  .column h2 {
    width: 490px;
    margin: 0 auto 60px;
  }

  .column h3 {
    padding: 24px 30px 20px;
    margin-bottom: 60px;
    font-size: 4.8rem;
  }

  .column h3::before,
  .column h3::after {
    width: 100px;
    height: 100px;
  }

  .column h3::before {
    border-left: solid 2px #000f2b;
    border-top: solid 2px #000f2b;
  }

  .column h3::after {
    border-right: solid 2px #000f2b;
    border-bottom: solid 2px #000f2b;
  }

  .column h4 {
    margin: 68px 0 60px;
    padding-bottom: 30px;
    font-size: 4rem;
    border-bottom: 2px solid #ad9056;
  }

  .column-supervision {
    margin-bottom: 60px;
    padding: 20px 30px;
    gap: 0 20px;
    border-radius: 30px;
  }

  .column-supervision__img {
    width: 120px;
  }

  .column-supervision__txt .ttl {
    font-size: 2.8rem;
    margin: 4px 0 3px;
  }

  .column-list li:not(:last-child){
    margin-bottom: 64px;
  }

  .column-img {
    margin-left: -30px;
    margin-bottom: 60px;
  }

  .column-list p + p {
    margin-top: 70px;
  }
}

/* -----------------------------------
  mechanism
-------------------------------------*/
.mechanism {
  position: relative;
  margin-top: calc(-80 / 750 * 100vw);
  z-index: 1;
  background: url(../img_webp/bg_usage.webp) repeat center / calc(14 / 750 * 100vw) calc(14 / 750 * 100vw);
}

.mechanism-inner {
  padding: calc(180 / 750 * 100vw) 0 calc(160 / 750 * 100vw);
}

.mechanism .ttl-wrap {
  margin-bottom: calc(68 / 750 * 100vw);
}

.mechanism .ttl-wrap h2 {
  width: calc(625 / 750 * 100vw);
  margin: 0 auto;
}

.mechanism .ttl-wrap p {
  margin-bottom: calc(32 / 750 * 100vw);
  color: #ea6171;
  border: calc(3 / 750 * 100vw) solid #ea6171;
}

.mechanism .cv .marker {
  color: #ea6171;
}

/* ------------------
  スライダー 
--------------------*/
.mechanism-slider {
  padding: 0 calc(60 / 750 * 100vw);
  margin-bottom: calc(40 / 750 * 100vw);
}

.mechanism-slider-item {
  position: relative;
  padding: calc(60 / 750 * 100vw) calc(30 / 750 * 100vw);
  background: #fff;
  min-height: calc(880 / 750 * 100vw);
}

.mechanism-slider-item__ttl {
  text-align: center;
}

.mechanism-slider-item__ttl sup {
  font-weight: 400;
}

.mechanism-slider-item h3 {
  display: inline-block;
  margin-bottom:calc(40 / 750 * 100vw);
  font-size: calc(36 / 750 * 100vw);
  color: #e53b4f;
  position: relative;
  line-height: calc(48 / 750 * 100vw);
  background-repeat: no-repeat;
}

.mechanism-slider-item:nth-of-type(1) h3 {
  padding-left: calc(76 / 750 * 100vw);
  background-image: url(../img/icon_smile_heart_line.svg);
  background-size: calc(57 / 750 * 100vw) calc(48 / 750 * 100vw);
}

.mechanism-slider-item:nth-of-type(2) h3 {
  padding-left: calc(61 / 750 * 100vw);
  background-image: url(../img/icon_pink_ribbon.svg);
  background-size: calc(41 / 750 * 100vw) calc(48 / 750 * 100vw);
}

.mechanism-slider-item:nth-of-type(3) h3 {
  padding-left: calc(70 / 750 * 100vw);
  background-image: url(../img/icon_calender.svg);
  background-size: calc(47 / 750 * 100vw) calc(48 / 750 * 100vw);
}

.mechanism-slider-item:nth-of-type(4) h3 {
  padding-left: calc(76 / 750 * 100vw);
  background-image: url(../img/icon_peace_heart.svg);
  background-size: calc(57 / 750 * 100vw) calc(48 / 750 * 100vw);
}

.mechanism-slider-item:nth-of-type(5) h3 {
  padding-left: calc(54 / 750 * 100vw);
  background-image: url(../img/icon_mirror.svg);
  background-size: calc(35 / 750 * 100vw) calc(48 / 750 * 100vw);
}

.mechanism-slider-item .note {
  margin-top: calc(27 / 750 * 100vw);
}

.mechanism-slider-img {
  margin-bottom: calc(40 / 750 * 100vw);
}

.mechanism-slider-txt {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.8;
}

/* 前への矢印カスタマイズ */
.mechanism .swiper-button-prev::after {
  background-image: url(../img_webp/icon_arrow_prev_pink.webp);
}
/* 次への矢印カスタマイズ */
.mechanism .swiper-button-next::after {
  background-image: url(../img_webp/icon_arrow_next_pink.webp);
}

.mechanism-slider-img img {
  width: 100%;
}

.mechanism .cv_btn {
  width: calc(690 / 750 * 100vw);
  height: calc(152 / 750 * 100vw);
  margin-bottom: calc(46 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .mechanism {
    margin-top: -80px;
    background: url(../img_webp/bg_usage.webp) repeat center;
  }

  .mechanism-inner {
    padding: 180px 0px 160px;
  }

  .mechanism .ttl-wrap {
    margin-bottom: 68px;
  }

  .mechanism .ttl-wrap h2 {
    width: 625px;
  }
  
  .mechanism .ttl-wrap p {
    margin-bottom: 32px;
    border: 3px solid #ea6171;
  }

  /* ------------------
    スライダー 
  --------------------*/
  .mechanism-slider {
    padding: 0 60px;
    margin-bottom: 40px;
  }

  .mechanism-slider-item {
    padding: 60px 30px 60px;
    min-height: 880px;
  }

  .mechanism-slider-item h3 {
    margin-bottom: 40px;
    background-size: 70px 70px;
    line-height: 48px;
    font-size: 3.6rem;
  }

  .mechanism-slider-item:nth-of-type(1) h3 {
    padding-left: 76px;
    background-size: 57px 48px;
  }

  .mechanism-slider-item:nth-of-type(2) h3 {
    padding-left: 61px;
    background-size: 41px 48px;
  }
  
  .mechanism-slider-item:nth-of-type(3) h3 {
    padding-left: 70px;
    background-size: 47px 48px;
  }
  
  .mechanism-slider-item:nth-of-type(4) h3 {
    padding-left: 76px;
    background-size: 57px 48px;
  }

  .mechanism-slider-item:nth-of-type(5) h3 {
    padding-left: 54px;
    background-size: 35px 48px;
  }  

  .mechanism-slider-item .note {
    margin-top: 27px;
  }

  .mechanism-slider-img {
    margin-bottom: 40px;
  }

  .mechanism-slider-txt {
    font-size: 2.8rem;
  }

  .mechanism .cv_btn {
    width: 690px;
    height: 152px;
    margin-bottom: 46px;
  }
}

/* ======================================
  生理移動ピルLP用
  スタイル
====================================== */
/* -----------------------------------
 about
-------------------------------------*/
.physiological .about-ttl h2 {
  width: calc(422 / 750 * 100vw);
}

@media only screen and (min-width: 751px) {
  .physiological .about-ttl h2 {
    width: 422px;
  }
}

/* -----------------------------------
 price
-------------------------------------*/
.physiological .price .bottom-circle {
  background: #DAEEF5;
}

.physiological .price .ttl-wrap h2 {
  width: calc(606 / 750 * 100vw);
}

.physiological .price .ttl-wrap p {
  color: #3a8eB8;
  border: calc(3 / 750 * 100vw) solid #3a8eB8;
}

.physiological .price-item {
  background: linear-gradient(180deg, #6ebbd7 0%, #6ebbd7 32%, #f1f9fb 32%, #f1f9fb 100%);
}

.physiological .price-detail h3 {
  width: calc(260 / 750 * 100vw);
} 

.physiological .price-detail.border-box {
  border: calc(3 / 750 * 100vw) solid #3a8eB8;
  font-size: calc(28 / 750 * 100vw);
}

 /*スクロールバーの動く部分*/
 .physiological .price .scroll-box::-webkit-scrollbar-thumb {
  background: #6ebbd7;
}

@media only screen and (min-width: 751px) {
  .physiological .price .ttl-wrap h2 {
    width: 606px;
  }

  .physiological .price .ttl-wrap p {
    border: 3px solid #3a8eB8;
  }

  .physiological .price-detail h3 {
    width: 260px;
  } 

  .physiological .price-detail.border-box {
    font-size: 2.8rem;
    border: 3px solid #3a8eB8;
  }
}

/* -----------------------------------
 usage
-------------------------------------*/
.physiological .usage .ttl-wrap h2 {
  width: calc(620 / 750 * 100vw);
}

.physiological .usage .ttl-wrap p {
  width: calc(590 / 750 * 100vw);
}

.physiological .usage-list li h5 {
  color: #ea6171;
}

.physiological .usage-list li > p:not(:last-child) {
  margin-bottom: calc(70 / 750 * 100vw);
}

.physiological .usage-list-item {
  margin-bottom: calc(86 / 750 * 100vw);
}

.physiological .usage-list__img {
  width: calc(1620 / 750 * 100vw);
  margin-top: calc(40 / 750 * 100vw);
  padding-bottom: calc(50 / 750 * 100vw);
}

 /*スクロールバーの動く部分*/
 .physiological .usage .scroll-box::-webkit-scrollbar-thumb {
  background: #ea6171;
}

.physiological .about-faq::after {
  background: url(../img/img_doctor_physiological.svg) no-repeat center / contain;
}

.physiological .usage-list li:nth-of-type(2) .about-faq::after {
  background: url(../img/img_doctor_physiological02.svg) no-repeat center / contain;
}

@media only screen and (min-width: 751px) {
  .physiological .usage .ttl-wrap h2 {
    width: 620px;
  }

  .physiological .usage .ttl-wrap p {
    width: 590px;
  }

  .physiological .usage-list li > p:not(:last-child) {
    margin-bottom: 70px;
  }

  .physiological .usage-list-item {
    margin-bottom: 86px;
  }

  .physiological .usage-list__img {
    width: 1620px;
    margin-top: 40px;
    padding-bottom: 50px;
  }
}


