@charset "UTF-8";
:root {
  --sans: "Noto Sans", sans-serif;
  --serif: "Noto Serif", serif;
  --poppins: "Poppins", sans-serif;
  --blue: #2965af;
  --black: #4e5866;
  --gra: linear-gradient(135deg, #5aedfd 0%, #1d63b9 100%);
  --gra2: linear-gradient(135deg, #ffa84e 0%, #ee3735 100%);
  color: var(--black);
  font-family: var(--sans);
  line-height: 1.8;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.6;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

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

.serif {
  font-family: var(--serif);
}

.gradient-text {
  background: linear-gradient(135deg, #5aedfd 0%, #1d63b9 100%);
  -webkit-background-clip: text; /* 背景を文字で切り抜き */
  -webkit-text-fill-color: transparent; /* 文字自体は透明にする */
  background-clip: text; /* 一部ブラウザ用 */
  color: transparent; /* 念のため */
}

.sp__cont {
  width: 390px;
  margin: 0 auto;
}

.cta {
  aspect-ratio: 390/228;
  background-image: url(../img/treatment/mounjaro/cta_bg.webp);
  background-size: cover;
  background-position: center;
  padding: 15px 0;
}

.cta__ttl {
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}

.cta__link {
  width: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  position: relative;
  background: var(--gra2);
  margin-left: auto;
  margin-right: auto;
}
.cta__link::after {
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url(../img/treatment/mounjaro/arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  display: block;
  content: "";
  transition: all 0.3s ease;
}
.cta__link:hover::after {
  transform: translate(5px, -50%);
}

.reason__sec {
  padding: 50px 0;
  background-image: url(../img/treatment/mounjaro/reason_bg.webp);
  background-size: cover;
  background-position: center;
}

.base__ttl-bl {
  margin-bottom: 30px;
}

.base__ttl-en {
  text-align: center;
  font-size: 15px;
  font-family: var(--poppins);
  letter-spacing: 0.1em;
}

.base__ttl-ja {
  font-size: 30px;
  font-weight: bold;
  color: var(--blue);
  text-align: center;
  font-family: var(--serif);
}

.reason__list-tag {
  position: absolute;
  width: 195px;
  height: 22px;
  background: var(--gra);
  top: -22px;
  right: 47%;
  font-family: var(--poppins);
  color: #fff;
  text-align: right;
  padding-right: 10px;
  line-height: 22px;
  font-size: 22px;
  transform: skewX(30deg);
}
.reason__list-tag .txt {
  display: inline-block;
  transform: skewX(-30deg);
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reason__list li {
  display: flex;
}
.reason__list li .img {
  width: 35%;
  border-radius: 0 60px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.reason__list li .cont {
  width: 67%;
  position: relative;
  z-index: 2;
  margin-top: 35px;
  background: #fff;
  padding: 15px 15px 15px calc(2% + 15px);
  margin-left: -2%;
}
.reason__list li .cont .txt .small {
  font-size: 14px;
  display: block;
  line-height: 1.6;
}
.reason__list li .cont .txt .blue {
  color: var(--blue);
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  display: block;
  line-height: 1.4;
}
.reason__list li:nth-of-type(even) {
  flex-direction: row-reverse;
}
.reason__list li:nth-of-type(even) .img {
  border-radius: 60px 0 0 0;
}
.reason__list li:nth-of-type(even) .cont {
  margin-left: 0;
  margin-right: -2%;
  padding: 15px calc(2% + 15px) 15px 15px;
}
.reason__list li:nth-of-type(even) .cont .reason__list-tag {
  right: auto;
  left: 47%;
  text-align: left;
  padding-left: 10px;
  transform: skewX(-30deg);
}
.reason__list li:nth-of-type(even) .cont .reason__list-tag .txt {
  transform: skewX(30deg);
  display: inline-block;
}

.what__sec {
  background: var(--gra);
  padding: 50px 0;
}
.what__sec .base__ttl-en {
  color: #fff;
}
.what__sec .base__ttl-ja {
  color: #fff;
}

.inner {
  width: 90%;
  margin: 0 auto;
}

.what__bl {
  border-radius: 10px;
  background-color: #fff;
  padding: 120px 20px 20px;
  background-size: 100%;
  background-position: top 0 center;
  background-image: url(../img/treatment/mounjaro/what_reason.webp);
}

.what__main-txt {
  text-align: center;
  font-size: 15px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 25px;
}

.what__list {
  display: grid;
  gap: 30px;
}
.what__list li .txt {
  font-size: 15px;
  margin-bottom: 15px;
}
.what__list li .img img {
  border-radius: 10px;
}

.what__list-ttl {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.what__list-ttl-tag {
  width: 54px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--gra);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-family: var(--poppins);
  font-weight: 400;
  padding-top: 3px;
  gap: 1px;
}
.what__list-ttl-tag .small {
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 1;
}
.what__list-ttl-tag .num {
  font-size: 22px;
  line-height: 1;
  display: block;
  text-align: center;
}

.what__list-ttl-ja {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--blue);
  font-family: var(--serif);
  width: calc(100% - 66px);
}

.select__sec {
  padding: 0 0 40px;
  background-image: url(../img/treatment/mounjaro/select_bg.webp);
  background-size: cover;
  background-position: center;
}
.select__sec .base__ttl-bl {
  position: relative;
  padding: 50px 0 30px;
  margin-bottom: 0;
  line-height: 1.4;
}
.select__sec .base__ttl-bl::after {
  aspect-ratio: 138/174;
  width: 138px;
  background-image: url(../img/treatment/mounjaro/person.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
.select__sec .base__ttl-bl .base__ttl-en {
  text-align: left;
  line-height: 1.4;
  color: var(--blue);
  margin-bottom: 10px;
}
.select__sec .base__ttl-bl .base__ttl-ja {
  text-align: left;
  font-size: 30px;
  line-height: 1.4;
}
.select__sec .base__ttl-bl .base__ttl-ja .small {
  font-size: 22px;
}

.select__list {
  border-radius: 10px;
  background: var(--gra);
}
.select__list li {
  border-bottom: 1px solid #fff;
  padding: 15px 15px 15px 50px;
  display: flex;
  position: relative;
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}
.select__list li::before {
  width: 22px;
  aspect-ratio: 1/1;
  background-image: url(../img/treatment/mounjaro/check.webp);
  background-size: contain;
  background-position: center;
  display: block;
  position: absolute;
  left: 17px;
  top: 15px;
  content: "";
}

.select__message {
  text-align: center;
  font-family: var(--serif);
  color: var(--blue);
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
  margin-top: 20px;
}
.select__message .big {
  font-size: 30px;
}

.price__sec {
  background-color: #f0f3f7;
  padding: 50px 0;
}
.price__sec .base__ttl-en {
  text-align: left;
  color: var(--blue);
  margin-bottom: 5px;
}
.price__sec .base__ttl-ja {
  text-align: left;
}
.price__sec .base__ttl-bl {
  position: relative;
}
.price__sec .base__ttl-bl::after {
  position: absolute;
  width: 90px;
  aspect-ratio: 1/1;
  background-image: url(../img/treatment/mounjaro/bg_circle.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}
.price__sec .reason__float-ttl {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--serif);
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
}
.price__sec .reason__float-ttl span {
  display: block;
  text-align: center;
}

.price__table {
  border-collapse: collapse;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.price__table thead th {
  width: 50%;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}
.price__table thead th.bg_cyan {
  background-color: #4ed0ef;
}
.price__table thead th.bg_blue {
  background-color: var(--blue);
}
.price__table tbody td {
  width: 50%;
  padding: 12px 5px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.price__table tbody td:nth-of-type(1) {
  border-right: 1px solid #eee;
}
.price__table tbody td small {
  display: block;
  text-align: center;
  font-size: 12px;
}
.price__table tbody td .blue {
  text-align: center;
  display: block;
  font-size: 16px;
  color: var(--blue);
  font-weight: bold;
  font-family: var(--serif);
}

.price__caution {
  text-align: center;
  font-size: 12px;
  margin-top: 12px;
}

.doctor__sec {
  padding: 50px 0;
  background-image: url(../img/treatment/mounjaro/doctor_bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.doctor__sec .img {
  width: 35%;
  position: absolute;
  top: 50px;
  right: 0;
}
.doctor__sec .base__ttl-en {
  text-align: left;
  color: var(--blue);
}
.doctor__sec .base__ttl-ja {
  text-align: left;
  margin-bottom: 40px;
}
.doctor__sec .doctor__message-ttl {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: bold;
  line-height: 1.6;
}

.doctor__txt {
  font-size: 14px;
  margin-bottom: 10px;
}

.doctor__name {
  text-align: right;
}
.doctor__name .add {
  display: block;
  text-align: right;
  font-size: 14px;
  color: var(--blue);
  font-family: var(--serif);
}
.doctor__name .name {
  display: block;
  text-align: right;
  font-family: var(--serif);
  color: var(--blue);
}
.doctor__name .name .small {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}
.doctor__name .name .big {
  font-size: 21px;
  line-height: 1.4;
}
.doctor__name .caution {
  text-align: right;
  font-size: 14px;
  color: var(--blue);
  font-family: var(--serif);
  margin-top: -3px;
  display: block;
}

.step__sec {
  padding: 0 0 60px;
  background-color: #cfeaf7;
}

.step__ttl {
  background: var(--gra);
  padding: 30px 0;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  font-family: var(--serif);
  font-weight: bold;
}
.step__ttl .small {
  font-size: 18px;
  text-align: center;
}
.step__ttl .middle {
  text-align: center;
  font-size: 22px;
}
.step__ttl .big {
  font-size: 30px;
}

.step__list {
  width: 90%;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  margin-top: 50px;
}
.step__list li {
  position: relative;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.step__list li .txt {
  font-size: 14px;
  padding: 5px 20px 20px;
}
.step__list li::before {
  height: 3px;
  width: 100%;
  display: block;
  background: var(--gra);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.step__list li .step__tag {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--gra);
  display: block;
  padding: 3px 30px;
  border-radius: 30px;
  color: #fff;
  font-family: var(--poppins);
  font-size: 15px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.4;
}

.step__list-ttl {
  position: relative;
  padding: 30px 0 20px 5%;
  font-size: 19px;
  color: var(--blue);
  font-family: var(--serif);
  font-weight: bold;
  line-height: 1.5;
}
.step__list-ttl::before {
  width: 151px;
  aspect-ratio: 151/98;
  background-image: url(../img/treatment/mounjaro/step01.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
}
.step__list-ttl.p2::before {
  background-image: url(../img/treatment/mounjaro/step02.webp);
}

.step__caution {
  font-size: 11px;
  opacity: 0.7;
  margin-top: -15px;
  padding: 0 20px 30px;
}

.step__float-txt {
  position: absolute;
  background: var(--gra);
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  padding: 7px 15px;
  border-radius: 10px;
  bottom: -17px;
  right: -10px;
}

.faq__sec {
  background-color: #f0f3f7;
  padding: 50px 0 50px;
}
.faq__sec .base__ttl-en {
  color: var(--blue);
}
.faq__sec .base__ttl-bl {
  margin-bottom: 20px;
}

.faq__list {
  display: grid;
  gap: 10px;
}
.faq__list li {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
}
.faq__list li .txt {
  font-size: 14px;
}

.faq__list-ttl {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 15px;
}
.faq__list-ttl .q {
  font-size: 18px;
  font-family: var(--poppins);
  color: #fff;
  background: var(--gra);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 1;
}
.faq__list-ttl .ttl {
  display: block;
  width: calc(100% - 42px);
  font-family: var(--serif);
  color: var(--blue);
  font-weight: bold;
  line-height: 1.4;
  font-size: 14px;
}

.support__sec {
  background-image: url(../img/treatment/mounjaro/support_bg.webp);
  background-size: cover;
  background-position: center;
  padding: 20px 0;
}
.support__sec .inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.support__ttl .small {
  font-size: 16px;
  font-family: var(--serif);
  line-height: 1.4;
  display: block;
}
.support__ttl .obi {
  margin-bottom: 3px;
  background-color: var(--blue);
  line-height: 1.1;
  padding: 1px 5px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-family: var(--serif);
  font-weight: bold;
  font-size: 29px;
}
.support__ttl .obi.p1 {
  margin-top: 10px;
}

.support__txt .w-obi {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  line-height: 1.1;
  color: var(--blue);
  font-weight: bold;
  font-family: var(--serif);
  font-size: 14px;
  margin-bottom: 2px;
  background-color: #fff;
}

.caution__sec {
  padding: 30px 0;
}

.caution__ttl {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.caution__ttl-middle {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 400;
}

.caution__txt {
  font-size: 14px;
}

footer {
  background-color: var(--blue);
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding: 10px;
}

/* スケール土台：中央寄せにする */
#scale-wrap {
  width: 100%;
  /* height は JS で与えるのでここは未指定でもOK */
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: flex-start;
}

/* 390pxデザイン本体：起点を「中央・上」に */
#design-390 {
  width: 390px;
  transform-origin: 50% 0; /* ←ここがキモ（中央起点） */
}/*# sourceMappingURL=mounjaro.css.map */