@charset "UTF-8";
:root {
  --text-black: #583a26;
  --green01: #6aaf0d;
  --bg-green: #f1f9f3;
  --yellow01: #ffec5d;
  --bg-yellow: #fffeee;
  --en: "Inter", sans-serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  --shadow-text: 0 3px 6px rba(0, 0, 0, 0.25);
  --border-radius: clamp(10px, clac(20/750 * 100vw), 20px);
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 3.3333333333vw, 25px);
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

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

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
.btn01 {
  background: linear-gradient(#fea035 0%, #ec713a 100%);
  height: 70px;
  animation: pulse 2s infinite alternate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
  height: 70px;
  border-radius: 35px;
  border: 3px solid #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
  display: grid;
  place-content: center;
  position: relative;
  color: white;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
  z-index: 3;
}
.btn01:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: none;
}

.under {
  text-decoration: underline;
  text-underline-offset: 0;
  text-decoration-thickness: 0.4em;
  text-decoration-color: var(--yellow01);
  text-decoration-skip-ink: none;
}

section {
  padding: clamp(40px, 10.6666666667vw, 80px) 0;
}

.fixed-btns {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 100%;
  display: flex;
  z-index: 999;
}
.fixed-btns .fix-btn {
  width: 50%;
  color: white;
  font-size: clamp(18px, 4.9333333333vw, 37px);
  padding: 3px 16px;
  font-weight: 700;
  height: 48px;
  display: grid;
  place-content: center;
  border-radius: 15px 15px 0 0;
}
.fixed-btns .call {
  background: linear-gradient(#ff821a 0%, #be6013 100%);
}
.fixed-btns .link-line {
  background: linear-gradient(#00b900 0%, #018e01 100%);
}
.fixed-btns .link-line span {
  display: flex;
  align-items: center;
}
.fixed-btns .link-line span::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  font-weight: 700;
  height: 1em;
  background: url(../../assets/images/icon-line.png) no-repeat center/contain;
  margin-right: 0.2em;
}

.inner {
  max-width: 672px;
  margin: 0 auto;
  width: 87.8477306003%;
}

.wrapper {
  margin: 0 auto;
  max-width: 750px;
  background-color: #fffeee;
  position: relative;
}

.ta-c {
  text-align: center;
}

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

.mv {
  position: relative;
}
.mv .inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.mv .mv-text {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(105px, 28vw, 210px);
}

.intro {
  padding-bottom: clamp(32px, 8.5333333333vw, 64px);
}
.intro .logo-area {
  position: relative;
  z-index: 2;
  width: 95.6845238095%;
  background-color: var(--bg-yellow);
  border-radius: 10px;
  margin: -10px auto 0;
  padding: 10px 0;
}
.intro .intro-logo {
  margin: 0 auto;
  display: block;
}

.big {
  font-size: 125%;
}

.fz24 {
  font-size: clamp(12px, 3.2vw, 24px);
}

.fz26 {
  font-size: clamp(14px, 3.4666666667vw, 26px);
}

.fz28 {
  font-size: clamp(14px, 3.7333333333vw, 28px);
}

.fz32 {
  font-size: clamp(16px, 4.2666666667vw, 32px);
}

.fz36 {
  font-size: clamp(18px, 4.8vw, 36px);
}

.fz37 {
  font-size: clamp(18px, 4.9333333333vw, 37px);
}

.fz40 {
  font-size: clamp(20px, 5.3333333333vw, 40px);
}

.fz42 {
  font-size: clamp(21px, 5.6vw, 42px);
}

.fz50 {
  font-size: clamp(25px, 6.6666666667vw, 50px);
}

.p32 {
  padding: clamp(16px, 4.2666666667vw, 32px);
}

.s-under {
  text-decoration: underline;
}

.has-check::before {
  content: "✓";
  color: var(--green01);
  font-weight: 700;
  margin-right: 0.2em;
}

.worry {
  padding-bottom: clamp(105px, 28vw, 210px);
  position: relative;
  background: linear-gradient(#fffeee 0%, #badbbe 100%);
}
.worry::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../../assets/images/worry-person.png) no-repeat bottom center/contain;
  width: clamp(263px, 70.1333333333vw, 526px);
  height: clamp(122px, 32.5333333333vw, 244px);
}
.worry .contents {
  background-color: var(--bg-yellow);
  border-radius: 0 0 10px 10px;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: clamp(32px, 8.5333333333vw, 64px);
}
.worry .ttl {
  font-size: clamp(26px, 6.9333333333vw, 52px);
  line-height: 1.3846153846;
  margin-bottom: clamp(16px, 5.3333333333vw, 40px);
}
.worry .list {
  margin-bottom: 16px;
}
.worry .list li {
  margin-bottom: 0.4em;
}

h2 {
  font-size: clamp(28px, 7.8vw, 60px);
  font-weight: 700;
  color: var(--green01);
  line-height: 1;
  padding-bottom: 0.6em;
  text-align: center;
  position: relative;
  margin-bottom: 1em;
  letter-spacing: 0;
}
h2::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, #8cc63f 0%, #02a41d 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.color-red {
  color: #e95818;
}

.about {
  background-color: var(--bg-yellow);
}
.about .lead {
  margin-bottom: 1em;
}
.about .img-under {
  padding-top: 2em;
}
.about .img-under .text {
  margin-bottom: 1em;
}
.about .sec-bottom-text {
  line-height: 1.4;
  letter-spacing: -0.1em;
  white-space: nowrap;
}

.small {
  font-size: 70%;
}

.recommend {
  background-color: white;
}
.recommend h2 {
  line-height: 1.3;
}
.recommend .flex-wrapper {
  margin-bottom: 1em;
}
.recommend .flex-wrapper .img-wrapper {
  width: 31.5476190476%;
  margin-right: 24px;
}
.recommend .flex-wrapper .text-wrapper {
  flex: 1;
}
.recommend .recommend-item {
  border: 2px solid var(--green01);
  padding: 1em;
  border-radius: 10px;
  margin-bottom: 0.5em;
}
.recommend .recommend-item dt {
  margin-bottom: 0.2em;
}

.color-white {
  color: white;
}

.color-green {
  color: var(--green01);
}

.feature {
  background-color: var(--green01);
}
.feature h2::after {
  background: white;
}
.feature .feature-list .item {
  margin-bottom: 2em;
}
.feature .feature-list .item:nth-child(2) h3::before {
  background: url(../../assets/images/icon-feature02.png) no-repeat center/contain;
}
.feature .feature-list .item:nth-child(3) h3::before {
  background: url(../../assets/images/icon-feature03.png) no-repeat center/contain;
}
.feature h3 {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.4em;
  display: flex;
  align-items: center;
  color: var(--yellow01);
}
.feature h3::before {
  content: "";
  background: url(../../assets/images/icon-feature01.png) no-repeat center/contain;
  width: 2em;
  height: 2em;
  margin-right: 0.3em;
  display: inline-block;
}
.feature .lead {
  margin-bottom: 1em;
}
.feature table {
  background-color: #fafafa;
  width: 100%;
}
.feature table th,
.feature table td {
  padding: 0.5em;
  border: #707070 1px solid;
}
.feature table thead th {
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.feature table thead th:nth-of-type(2) {
  background-color: #dfdfdf;
}
.feature table thead th:nth-of-type(3) {
  background-color: #f8ffbb;
}
.feature table tbody th {
  font-weight: 700;
  white-space: nowrap;
}
.feature table tbody td:nth-of-type(2) {
  background-color: #fffeee;
}
.feature .img-wrapper {
  margin-bottom: 1em;
}
.feature .text {
  color: white;
}
.feature .lead {
  color: white;
}

.price {
  position: relative;
}
.price .item {
  margin-bottom: 2em;
}
.price .item h3 {
  margin-bottom: 0.2em;
}
.price table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.price table tbody th,
.price table tbody td {
  font-size: clamp(14px, 3.4666666667vw, 26px);
  padding: 0.5em;
  font-weight: 700;
  background: white;
  border: 1px solid var(--green01);
}
.price table tbody tr:nth-of-type(1) th {
  border-top-left-radius: 10px;
}
.price table tbody tr:nth-of-type(1) td {
  border-top-right-radius: 10px;
}
.price table tbody tr:last-of-type th:nth-of-type(1) {
  border-bottom-left-radius: 10px;
}
.price table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 10px;
}
.price::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #9f8038 0%, #f3e4bb 27.2%, #c29a49 57.74%, #f2d79f 84.52%, #c7ae74 100%);
}

.color-pink {
  color: #f77899;
}

.guarantee {
  padding-top: 5rem;
  background: white;
  position: relative;
}
.guarantee > * {
  position: relative;
  z-index: 1;
}
.guarantee .guarantee-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 73.6%;
}
.guarantee::after {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #9f8038 0%, #f3e4bb 27.2%, #c29a49 57.74%, #f2d79f 84.52%, #c7ae74 100%);
}
.guarantee::before {
  content: "";
  background: url(../../assets/images/guarantee-bg.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.guarantee h2 {
  color: inherit;
}
.guarantee h2::after {
  content: none;
}
.guarantee table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 1em;
}
.guarantee table caption {
  font-weight: 700;
}
.guarantee table th,
.guarantee table td {
  background-color: white;
  border: 1px solid var(--green01);
  padding: 0.5em;
  text-align: center;
  font-weight: 700;
}
.guarantee table thead th:first-of-type {
  border-top-left-radius: 10px;
}
.guarantee table thead th:last-of-type {
  border-top-right-radius: 10px;
}
.guarantee table tbody tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 10px;
}
.guarantee table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 10px;
}
.guarantee .lead {
  margin-bottom: 1em;
}

.pay {
  background: linear-gradient(#2266c5 0%, #043a84 100%);
}
.pay h2 {
  line-height: 1.3;
}
.pay h2::after {
  content: none;
}
.pay .content {
  background: white;
  border-radius: 10px;
  padding: 0.5em;
  margin-bottom: 1em;
}
.pay .content .grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.flow {
  background-color: var(--bg-green);
}
.flow .flow-list {
  counter-reset: 0;
}
.flow .flow-list .item {
  counter-increment: flow-num;
  box-shadow: var(--shadow);
  background-color: white;
  border-radius: 10px;
  margin-bottom: 2em;
  position: relative;
}
.flow .flow-list .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green01);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 12.9464285714%;
  height: 4vw;
}
.flow .flow-list .item .text-wrapper {
  padding: 1em;
}
.flow .flow-list .item .img-wrapper {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.flow .flow-list .item h3 {
  color: var(--green01);
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: clamp(16px, 4.2666666667vw, 32px);
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--green01);
}
.flow .flow-list .item h3::before {
  content: "0" counter(flow-num);
  border-radius: 50%;
  margin-right: 0.3em;
  width: 2em;
  height: 2em;
  display: grid;
  line-height: 1;
  place-content: center;
  color: white;
  font-weight: 700;
  font-size: 80%;
  background: linear-gradient(#8cc63f 0%, #6aaf0d 100%);
}
.flow .flow-list .item .text {
  font-weight: 700;
}

.info {
  background-color: white;
}
.info .img-wrapper {
  margin-bottom: 2em;
}
.info .text {
  margin-bottom: 1em;
}
.info .info-bottom-logo {
  width: 55.6547619048%;
  display: block;
  margin: 0 auto;
}

.greeting {
  background: #ecf2e4;
}
.greeting .content {
  background: white;
  border-radius: 10px;
  overflow: hidden;
}
.greeting .content .img-wrapper {
  margin-bottom: 1em;
}
.greeting .content .doctor-info {
  padding: 1em;
}
.greeting .content .doctor-info .name {
  margin-bottom: 1em;
}
.greeting .content .message {
  padding: 1em;
}
.greeting .content .message .lead {
  margin-bottom: 1em;
}
.greeting .content .message .has-dash {
  text-decoration: underline dashed;
  line-height: 3.2;
  text-underline-offset: 10px;
  text-decoration-color: #d8d8d8;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.cta {
  display: block;
  margin: 2em auto;
}
.cta img {
  display: block;
  margin: 0 auto;
  animation: breathing 2.5s ease-in-out infinite;
}

@keyframes breathing {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/*# sourceMappingURL=style.css.map */
