@charset "UTF-8";
/* CSS Document */
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  color: #222;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (max-width: 576px) {
  body,
  html {
    font-size: 14px;
  }
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/*見出し、本文フォント設定*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
}

small {
  font-size: 0.6em;
}

p {
  font-family: "Noto Sans JP", sans-serif;
}

b,
strong {
  font-weight: 700;
}

/*リストスタイル設定*/
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

li {
  list-style: none;
}

/*テーブルスタイル設定*/
table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

tr {
  border-bottom: solid #E6E6E6 1px;
}

th {
  width: 20%;
  min-width: 8rem;
  padding: 1rem 1rem 1rem 0;
  text-align: inherit;
}

td {
  padding: 1rem 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 2rem;
  margin-left: 0;
}

/*リンクスタイル設定*/
a {
  color: #222;
  text-decoration: none;
  background-color: transparent;
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

code,
kbd,
pre,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  width: 100%;
  vertical-align: middle;
  border-style: none;
  height: auto;
}

/*マージン設定*/
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.mt-2,
.my-2 {
  margin-top: 2rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 2rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 2rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.mt-3,
.my-3 {
  margin-top: 3rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 3rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 3rem !important;
}

.m-4 {
  margin: 4rem !important;
}

.mt-4,
.my-4 {
  margin-top: 4rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 4rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 4rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 4rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 3rem !important;
}

.pt-1,
.py-1 {
  padding-top: 3rem !important;
}

.pr-1,
.px-1 {
  padding-right: 3rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 3rem !important;
}

.pl-1,
.px-1 {
  padding-left: 3rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.pt-2,
.py-2 {
  padding-top: 2rem !important;
}

.pr-2,
.px-2 {
  padding-right: 2rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 2rem !important;
}

.pl-2,
.px-2 {
  padding-left: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.pt-3,
.py-3 {
  padding-top: 3rem !important;
}

.pr-3,
.px-3 {
  padding-right: 3rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 3rem !important;
}

.pl-3,
.px-3 {
  padding-left: 3rem !important;
}

.p-4 {
  padding: 12rem !important;
}

.pt-4,
.py-4 {
  padding-top: 12rem !important;
}

.pr-4,
.px-4 {
  padding-right: 12rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 12rem !important;
}

.pl-4,
.px-4 {
  padding-left: 12rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.pt-6 {
  padding-top: 4rem !important;
}

.mx-auto {
  margin: 0 auto;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.align-items-center {
  align-items: center;
}

.main {
  padding-top: 60px;
  overflow: hidden;
}

/*コンテナサイズ設定*/
.container {
  width: 100%;
  max-width: 1100px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container-sm {
  width: 100%;
  max-width: 830px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  row-gap: 40px;
}

@media (max-width: 767px) {
  .row {
    row-gap: 20px;
  }
}
.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-sm-block,
.d-md-block {
  display: none;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
}
.nav {
  z-index: 500;
  top: 0;
  width: 100%;
  transition: 0.3s;
  height: 60px;
  position: fixed;
  background: #fff;
}
.nav .container {
  height: 60px;
  display: flex;
  align-items: center;
}
@media (min-width: 1800px) {
  .nav .container {
    max-width: 80%;
  }
}
.nav_logo img {
  height: 30px;
  width: auto;
}
.nav_right {
  display: flex;
  margin-left: auto;
  gap: 1rem;
  align-items: center;
}
.nav_right_link {
  display: flex;
  gap: 1.5rem;
  margin-right: 1rem;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .nav_right_link {
    display: none;
  }
}
.nav_right_link a {
  font-size: 16px;
  font-weight: 500;
  color: #5E5E5E;
  text-decoration: none;
  border-bottom: solid 2px transparent;
}
.nav_right_link a:hover {
  border-bottom: solid 2px #4D4D4D;
}
.nav_btn {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #d67f83 0%, #e4888d 50%, #d67f83 100%);
  padding: 0.5rem 1rem;
  width: auto;
  margin-left: auto;
}
.nav_hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 25px;
  margin-left: 20px;
  cursor: pointer;
  z-index: 800;
}
@media (max-width: 1000px) {
  .nav_hamburger {
    display: block;
  }
}
.nav_hamburger_line {
  position: absolute;
  width: 30px;
  height: 1.3px;
  background-color: #A68656;
  transition: all 0.6s;
}
.nav_hamburger_line-1 {
  top: 0;
}
.nav_hamburger_line-2 {
  top: 10px;
}
.nav_hamburger_line-3 {
  top: 20px;
}

.nav_drawer-nav {
  position: fixed;
  visibility: hidden;
  padding: 50px 20px 20px;
  opacity: 0;
  top: 0;
  right: -80%;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  box-shadow: 0px 0px 28px -5px #b4c2cb;
  transition: all 0.6s;
  z-index: 700;
  overflow-y: auto;
}
.nav_drawer-nav .nav_btn {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
}
.nav_drawer-nav .nav_btn-line {
  background: #A68656;
}
.nav_drawer-nav_list {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
.nav_drawer-nav_list li a {
  font-size: 1.2rem;
  display: block;
  padding: 10px 5px;
  font-weight: 500;
  margin: 0;
  border-bottom: 1px solid #A68656;
  text-decoration: none;
  color: #A68656;
}
.nav_drawer-nav_list li a:hover {
  background-color: #eee;
  color: #212121;
}
.nav_drawer-nav .sub-menu {
  padding-left: 1.5rem;
}
.nav_drawer-nav .sub-menu a {
  font-size: 1rem;
}

.nav_sns {
  display: flex;
  gap: 0 30px;
  margin: 20px 0;
  padding-bottom: 20px;
  justify-content: center;
}
.nav_sns a {
  width: auto;
  height: 30px;
}

.nav-open .nav_drawer-nav {
  visibility: visible;
  opacity: 1;
  right: 0;
}
.nav-open .nav_hamburger_line-1 {
  transform: rotate(45deg);
  top: 10px;
}
.nav-open .nav_hamburger_line-2 {
  width: 0;
  left: 50%;
}
.nav-open .nav_hamburger_line-3 {
  transform: rotate(-45deg);
  top: 10px;
}

.fv_section {
  position: relative;
  min-height: 543px;
  overflow: hidden;
  background: url("../img/fv_bg.png") center/cover no-repeat;
  font-weight: 700;
  color: #626262;
  text-align: center;
}
@media (min-width: 576px) {
  .fv_section {
    min-height: auto;
    background-position: center;
    background-image: url("../img/fv_bg_pc.png");
    aspect-ratio: 4/3;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .fv_section {
    aspect-ratio: 4/1.8;
  }
}
.fv_section p {
  font-family: "Noto Serif JP", serif;
}

.fv_person {
  position: absolute;
  left: 14.5%;
  bottom: 0;
  width: 352px;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (min-width: 414px) {
  .fv_person {
    left: auto;
    right: -2%;
  }
}
@media (min-width: 576px) {
  .fv_person {
    width: 50%;
    height: calc(100% - 50px);
    right: 0;
  }
}
@media (min-width: 768px) {
  .fv_person {
    width: 44%;
    height: calc(100% - 30px);
    right: 2%;
  }
}
.fv_copy {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
@media (min-width: 576px) {
  .fv_copy {
    width: 56%;
    position: absolute;
    top: 20%;
    left: 3%;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .fv_copy {
    top: 16%;
    left: 40%;
    transform: translateX(-50%);
  }
}
.fv_sub {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 5px;
}
@media (min-width: 576px) {
  .fv_sub {
    margin: 0;
    font-size: 4vw;
  }
}
@media (min-width: 768px) {
  .fv_sub {
    font-size: 3vw;
  }
}
.fv_main {
  margin-top: 4px;
  font-size: 30px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .fv_main {
    font-size: 5vw;
  }
}
@media (min-width: 768px) {
  .fv_main {
    font-size: 3.8vw;
  }
}
.fv_main .-lg {
  color: #b89a6a;
  font-size: 48px;
}
@media (min-width: 576px) {
  .fv_main .-lg {
    font-size: 145%;
  }
}
.fv_main .-lg span {
  position: relative;
}
.fv_main .-lg span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  transform: translateX(-50%);
  background: #b89a6a;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .fv_main .-lg span::before {
    width: 14%;
    height: 10%;
  }
}
.fv_main .-md {
  position: relative;
  top: -8px;
  left: 4px;
  font-size: 38px;
}
@media (max-width: 360px) {
  .fv_main .-md {
    left: -6px;
  }
}
@media (min-width: 576px) {
  .fv_main .-md {
    top: 0;
    font-size: 108%;
  }
}
.fv_vertical {
  position: absolute;
  z-index: 2;
  left: 6%;
  bottom: 20%;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.27em;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
@media (min-width: 480px) {
  .fv_vertical {
    left: 31%;
    transform: translateX(-50%);
  }
}
@media (min-width: 576px) {
  .fv_vertical {
    left: 4%;
    bottom: 15%;
    font-size: 3.2vw;
    writing-mode: unset;
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .fv_vertical {
    left: 26%;
    bottom: 13%;
    transform: translateX(-50%);
    font-size: 2.3vw;
  }
}
.fv_vertical > span {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  white-space: nowrap;
}
.fv_vertical > span:nth-of-type(2) {
  margin-top: 21%;
}
@media (min-width: 576px) {
  .fv_vertical > span:nth-of-type(2) {
    margin-top: 0;
  }
}
.fv_vertical > span:nth-of-type(3) {
  margin-top: 74.5%;
}
@media (min-width: 576px) {
  .fv_vertical > span:nth-of-type(3) {
    margin-top: 0;
  }
}
.fv_vertical > span > span {
  position: relative;
  display: inline-block;
  margin: 2px 0;
  padding: 5px 3px 1px;
  line-height: 1;
  color: #fff;
  background: #b89a6a;
  text-shadow: none;
  z-index: 2;
}
@media (min-width: 576px) {
  .fv_vertical > span > span {
    margin: 0 4px 0 0;
    padding: 3px 1px 4px 4px;
  }
}
@media (min-width: 768px) {
  .fv_vertical > span > span {
    margin: 0 2% 0 0;
    padding: 1.8% 0.5% 2% 2.5%;
  }
}

.floating_cta {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  padding: 35px 0 50px;
  background: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .floating_cta {
    padding: 60px 0 70px;
  }
}
.floating_cta_lead {
  margin-bottom: 2px;
  color: #d67f83;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 900;
}
@media (min-width: 576px) {
  .floating_cta_lead {
    font-size: 18px;
  }
}
.floating_cta_lead::before, .floating_cta_lead::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  border-color: #d67f83;
  vertical-align: -3px;
}
.floating_cta_lead::before {
  margin-right: 6px;
  border-left: 1px solid;
  transform: rotate(-24deg);
}
.floating_cta_lead::after {
  margin-left: 6px;
  border-right: 1px solid;
  transform: rotate(24deg);
}

.cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70px;
  padding: 19px 10px 21px;
  color: #fff;
  background: linear-gradient(90deg, #d67f83 0%, #e4888d 50%, #d67f83 100%);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.cta_button::after {
  content: "";
  width: 8px;
  height: 15px;
  margin-left: 10px;
  background-image: url("../img/arrow_wh.png");
  background-size: contain;
  background-position: center;
}

.about_section,
.price_section {
  padding: 60px 0;
  background: #f8f6f2;
}
@media (min-width: 768px) {
  .about_section,
  .price_section {
    padding: 80px 0;
  }
}

.section_title {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .section_title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .section_title {
    font-size: 32px;
  }
}
.section_title span {
  display: block;
  color: #222;
  font-size: 18px;
}
.section_title_gold {
  color: #b89a6a;
}
.section_title_pink {
  color: #b77a86;
}
.section_title_pink span {
  font-size: 24px;
}

.about_section .section_title_gold {
  color: #d6b77f;
}

.about_list {
  display: grid;
  gap: 48px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .about_list {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .about_list {
    max-width: none;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
}
.about_item {
  position: relative;
  display: flex;
  min-height: 76px;
  background: #fff;
}
@media (min-width: 768px) {
  .about_item {
    flex-direction: column;
    width: calc((100% - 120px) / 3);
  }
}
.about_item + .about_item::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 15px);
  left: 50%;
  width: 0;
  height: 0;
  border-top: 18px solid #d6b77f;
  border-right: 19px solid transparent;
  border-left: 19px solid transparent;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .about_item + .about_item::before {
    bottom: auto;
    left: auto;
    top: 50%;
    right: calc(100% + 9px);
    transform: translateY(-50%);
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 18px solid #d6b77f;
    border-right: none;
  }
}
.about_step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  color: #fff;
  background: #d6b77f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .about_step {
    padding: 5px 0 8px;
    width: 100%;
  }
}
.about_step::before {
  content: "";
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 32px;
  height: 32px;
  background: #F8ECD5;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.about_step b {
  font-family: "Cormorant Infant", serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1;
}
.about_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 55%;
  padding: 9px 15px 12px 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid #d6b77f;
  border-left: none;
}
@media (min-width: 768px) {
  .about_text {
    width: 100%;
    border-left: 1px solid #d6b77f;
    border-top: none;
    text-align: center;
    flex: 1;
  }
}
.about_text b {
  margin-bottom: 1px;
  color: #d6b77f;
  font-size: 20px;
  line-height: 1.5;
}

.about_item_pink .about_step {
  background: #d67f83;
}
.about_item_pink .about_step::before {
  background: #FDE0E6;
}
.about_item_pink .about_text {
  border-color: #d67f83;
}
.about_item_pink .about_text b {
  color: #d67f83;
}

.outline_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 334px;
  margin: 0 auto;
  padding: 16px 20px 18px;
  border: 1px solid #b8744f;
  border-radius: 999px;
  color: #b8744f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .outline_button {
    max-width: 370px;
  }
}
.outline_button::after {
  content: "";
  width: 13px;
  height: 8px;
  margin-left: 10px;
  background-image: url("../img/arrow_or.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.nayami_section {
  position: relative;
  padding: 50px 0 15.3%;
  color: #fff;
  background: url("../img/nayami_bg.png") bottom center/cover no-repeat;
  text-align: center;
  z-index: 2;
}
@media (min-width: 576px) {
  .nayami_section {
    background-image: url("../img/nayami_bg_pc.png");
  }
}
@media (min-width: 768px) {
  .nayami_section {
    padding: 70px 0 120px;
  }
}
.nayami_section p {
  font-family: "Noto Serif JP", serif;
}

.nayami_title, .nayami_large, .nayami_bottom {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nayami_title {
  font-size: 28px;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .nayami_title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .nayami_title {
    font-size: 32px;
  }
}
.nayami_copy {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 375px) {
  .nayami_copy p {
    font-size: 15px;
  }
}
.nayami_quote {
  font-size: 20px;
}
@media (min-width: 768px) {
  .nayami_quote {
    font-size: 24px;
  }
}
.nayami_quote {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .nayami_quote {
    margin-bottom: 0;
  }
}
.nayami_large {
  margin-top: 20px;
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .nayami_large {
    font-size: 22px !important;
  }
}
@media (min-width: 768px) {
  .nayami_large {
    margin-top: 35px;
    font-size: 26px;
  }
}
.nayami_card {
  width: 100%;
  max-width: 650px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
  text-align: left;
}
.nayami_card img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.nayami_bottom {
  margin-top: 30px;
  font-size: 28px;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .nayami_bottom {
    font-size: 26px;
  }
}
.nayami_bottom span {
  font-size: 22px;
}
@media (min-width: 768px) {
  .nayami_bottom span {
    font-size: 26px;
  }
}

.yellow_text {
  color: #f5e040;
  line-height: 1.5;
  font-size: 20px;
}
@media (min-width: 768px) {
  .yellow_text {
    font-size: 24px;
  }
}

.check_list li {
  position: relative;
  padding-left: 28px;
}
.check_list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 21px;
  height: 21px;
  background: url("../img/check_bl.png") center/contain no-repeat;
}

.check_list_dark {
  padding: 5px 15px 25px;
  color: #222;
  font-weight: 500;
}
.check_list_dark li {
  padding: 15px 0 15px 27px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px dashed #222;
}

.kaiketsu_section {
  margin-top: -15.3%;
  padding: calc(15.3% + 30px) 0 46px;
  color: #fff;
  background: url("../img/kaiketsu_bg.png") center/cover no-repeat;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 576px) {
  .kaiketsu_section {
    background-image: url("../img/kaiketsu_bg_pc.png");
  }
}
@media (min-width: 768px) {
  .kaiketsu_section {
    margin-top: -280px;
    padding: 360px 0 80px;
  }
}
.kaiketsu_section p {
  font-size: 17px;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 768px) {
  .kaiketsu_section p {
    font-size: 18px;
  }
}

.kaiketsu_title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width: 375px) {
  .kaiketsu_title {
    font-size: 26px;
  }
}
@media (min-width: 860px) {
  .kaiketsu_title {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.kaiketsu_title > span {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 8px;
  box-shadow: 0 0 8px #b89a6a;
  z-index: 1;
  background-color: #fff;
}
.kaiketsu_title > span > span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #b68c3a 20%, #d6b77f 50%, #b68c3a 80%);
  -webkit-background-clip: text;
          background-clip: text;
}
@media (min-width: 576px) {
  .kaiketsu_title > span {
    margin: 0 10px;
  }
}
.kaiketsu_title small {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .kaiketsu_title small:last-of-type {
    margin-top: 5px;
    display: block;
    width: 100%;
  }
}
.kaiketsu_bottom {
  margin-top: 10px;
  font-size: 18px;
}
.kaiketsu_bottom b {
  border-bottom: 1px solid #fff;
  font-size: 28px;
}
@media (max-width: 375px) {
  .kaiketsu_bottom b {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .kaiketsu_bottom b {
    font-size: 32px;
  }
}

.big_num {
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 375px) {
  .big_num {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .big_num {
    font-size: 36px;
  }
}

.know_section p,
.plan_section p,
.price_section p,
.reason_item p,
.greet_box p {
  line-height: 1.8;
}

.know_section {
  padding: 50px 0 60px;
  background: #f4edee;
}
@media (min-width: 768px) {
  .know_section {
    padding: 70px 0 80px;
  }
}
.know_section p {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .know_section p {
    text-align: center;
  }
}
.know_section .section_title {
  margin-bottom: 30px;
}

.under_pink {
  display: block;
  padding-bottom: 3px;
  border-bottom: 1px solid #b77a86;
  color: #b77a86;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 375px) {
  .under_pink {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .under_pink {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 22px;
  }
}

.know_box img,
.program_box > img,
.reason_item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.know_box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .know_box {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .know_box p {
    order: 2;
  }
}
@media (min-width: 768px) {
  .know_box img {
    width: 48%;
  }
}
.know_copy {
  margin: 25px 0;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .know_copy {
    margin-bottom: 10px;
  }
}
.know_copy p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
.know_copy strong {
  display: block;
  margin-bottom: 5px;
  color: #b77a86;
  font-size: 26px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}
@media (min-width: 768px) {
  .know_copy strong {
    display: inline-block;
  }
}
.know_list {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 10px;
}
.know_list li {
  position: relative;
  padding: 5px 5px 6px 34px;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #fff;
  background: #b77a86;
  font-weight: 700;
  line-height: 1.5;
}
.know_list li:last-of-type {
  margin-bottom: 0;
}
.know_list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 16px;
  height: 19px;
  background: url("../img/check_wh.png") center/contain no-repeat;
}
.know_card {
  margin-top: 30px;
  padding: 20px 15px 35px;
  border: 1px solid #8a4f5a;
  background: #fff;
}
@media (min-width: 768px) {
  .know_card {
    margin-top: 40px;
    padding: 30px 15px 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.know_card.drug_box {
  margin-top: 50px;
}
.know_card h3 {
  color: #8a4f5a;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .know_card h3 {
    font-size: 24px;
  }
}
.know_card p {
  line-height: 1.5;
}

p.know_copy_bottom {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
p.know_copy_bottom strong {
  display: inline-block;
  margin-right: 5px;
  color: #b77a86;
  font-size: 30px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

p.drug_swipe_text {
  margin-top: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  animation: move 1s ease-in-out infinite alternate;
}
@media (min-width: 768px) {
  p.drug_swipe_text {
    margin-top: 10px;
    text-align: left;
  }
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
.drug_scroll {
  display: flex;
  width: 770px;
  gap: 10px;
  margin: 0;
  scroll-snap-type: x mandatory;
}
@media (min-width: 768px) {
  .drug_scroll {
    width: 990px;
  }
}
.drug_scroll_outer {
  width: 100%;
  margin-top: 10px;
  overflow-x: auto;
}
.drug_scroll_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 146px;
  padding: 15px 0;
  background: #f4edee;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .drug_scroll_item {
    width: 190px;
  }
}
.drug_scroll_item h4 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 8px 2px;
  margin-bottom: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #b77a86, #8a4f5a);
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .drug_scroll_item h4 {
    font-size: 14px;
  }
}
.drug_scroll_item img {
  width: 90px;
  margin: 10px auto 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .drug_scroll_item img {
    width: 110px;
  }
}
.drug_scroll_item b,
.drug_scroll_item p {
  display: block;
  line-height: 1.5;
}
.drug_scroll_item p {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.program_box h3 {
  margin-bottom: 0;
}
.program_box h3 span {
  display: block;
  font-size: 16px;
}
@media (min-width: 768px) {
  .program_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 30px;
  }
  .program_top p {
    width: 49%;
    text-align: left;
  }
}
.program_top_img {
  margin: 15px 0 10px;
}
@media (min-width: 768px) {
  .program_top_img {
    flex: 1;
    margin: 0;
  }
}
.program_top_img img {
  width: 100%;
}
.program_list {
  display: grid;
  gap: 10px;
  margin: 20px 0 5px;
}
@media (min-width: 768px) {
  .program_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.program_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  background: #f4edee;
}
.program_list img {
  width: 70px;
}
.program_list h4,
.program_list p {
  display: block;
  line-height: 1.5;
}
.program_list h4 {
  margin: 0;
  font-size: 14px;
}
.program_list p {
  font-size: 12px;
  text-align: left;
}
.program_note {
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .program_note {
    text-align: left !important;
  }
}

.plan_section {
  padding: 50px 0 60px;
  background: #e9d6da;
}
@media (min-width: 768px) {
  .plan_section {
    padding: 70px 0 80px;
  }
}
.plan_section p {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .plan_section .container {
    max-width: 830px;
  }
}

.plan_title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 30px;
  color: #8a4f5a;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 375px) {
  .plan_title {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .plan_title {
    font-size: 32px;
  }
}
.plan_title span {
  display: inline-block;
  font-size: 18px;
}
@media (min-width: 768px) {
  .plan_title span {
    font-size: 20px;
  }
}
.plan_box {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .plan_box {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .plan_box > p {
    text-align: center;
  }
}
.plan_list {
  margin: 5px 0 0;
}
.plan_list li {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 15px 10px 15px 15px;
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(183, 122, 134, 0.3);
}
@media (min-width: 768px) {
  .plan_list li {
    padding: 20px;
    gap: 40px;
  }
}
.plan_list li:last-of-type {
  margin-bottom: 0;
}
.plan_num {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 55px;
  color: #b77a86;
  font-size: 44px;
  line-height: 1;
}
@media (max-width: 375px) {
  .plan_num {
    width: 50px;
    font-size: 41px;
  }
}
@media (min-width: 768px) {
  .plan_num {
    width: 70px;
    font-size: 54px;
  }
}
.plan_num::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: #b77a86;
}
@media (min-width: 768px) {
  .plan_num::before {
    height: 50px;
  }
}
.plan_num span {
  display: block;
  width: 25px;
  padding-bottom: 2px;
  font-size: 12px;
  line-height: 1.2;
  flex: 1;
}
@media (min-width: 768px) {
  .plan_num span {
    font-size: 16px;
  }
}
.plan_text {
  font-family: "Noto Sans JP", sans-serif;
  flex: 1;
}
.plan_text h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #b77a86;
}
@media (max-width: 375px) {
  .plan_text h3 {
    font-size: 15px;
  }
}
@media (min-width: 768px) {
  .plan_text h3 {
    font-size: 18px;
  }
}
.plan_text p {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .plan_text p {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .plan_bottom {
    display: flex;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .plan_bottom_text {
    width: 52%;
  }
}
.plan_bottom_img {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .plan_bottom_img {
    margin-top: 0;
    flex: 1;
  }
}
.plan_bottom_img img {
  width: 100%;
}

p.plan_copy {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px) {
  p.plan_copy {
    text-align: left;
  }
}
p.plan_copy span {
  display: block;
  color: #8a4f5a;
  font-size: 30px;
  line-height: 1.3;
}
@media (max-width: 375px) {
  p.plan_copy span {
    font-size: 26px;
  }
}

.price_section {
  padding: 50px 0 40px;
}
@media (min-width: 768px) {
  .price_section {
    padding: 70px 0 80px;
  }
}
.price_section .section_title {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .price_section .section_title {
    margin-bottom: 40px;
  }
}

.price_card {
  border: 1px solid #b89a6a;
  border-top: none;
  background: #fff;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.price_card h3 {
  padding: 7px 15px 8px;
  color: #fff;
  background: linear-gradient(270deg, #b68c3a 0%, #d6b77f 50%, #b68c3a 100%);
  font-size: 20px;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .price_card h3 {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .price_card h3 {
    font-size: 22px;
  }
}
.price_card strong {
  display: block;
  margin-top: 20px;
  color: #b8744f;
  font-size: 42px;
  line-height: 1;
}
@media (min-width: 768px) {
  .price_card strong {
    font-size: 46px;
  }
}
.price_card p {
  padding: 15px 15px 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.price_difference_title {
  margin: 40px 0 20px;
  color: #222;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .price_difference_title {
    margin-top: 50px;
    font-size: 20px;
  }
}
.price_difference_title span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #b89a6a;
  font-size: 32px;
}
@media (min-width: 768px) {
  .price_difference_title span {
    font-size: 36px;
  }
}
.price_difference_title span::before, .price_difference_title span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 2px;
  background: #b89a6a;
}
@media (min-width: 768px) {
  .price_difference_title span::before, .price_difference_title span::after {
    width: 288px;
  }
}
.price_difference_title span::before {
  left: calc(100% + 15px);
}
.price_difference_title span::after {
  right: calc(100% + 15px);
}
.price_difference_list {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 800px;
}
.price_difference_list li {
  width: calc((100% - 20px) / 3);
  padding: 12px 5px;
  background: #f4ebdd;
  text-align: center;
}
.price_difference_list p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 768px) {
  .price_difference_list p {
    font-size: 16px;
  }
}
.price_difference_list p span {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .price_difference_list p span {
    font-size: 18px;
  }
}
.price_difference_icon {
  width: 70px;
  margin: 0 auto 7px;
}
@media (min-width: 768px) {
  .price_difference_icon {
    width: 100px;
  }
}
.price_note {
  position: relative;
  margin: 5px auto 0;
  padding-left: 1em;
  font-size: 12px;
  max-width: 800px;
}
.price_note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.price_program {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .price_program {
    margin-top: 50px;
  }
}
.price_program h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .price_program h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.price_program h3 span {
  color: #b89a6a;
}
.price_program p {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .price_program p:first-of-type {
    text-align: center;
  }
}
.price_program_cont {
  position: relative;
  max-width: 800px;
  margin: 35px auto 0;
  padding: 25px 15px 5px;
  background: #f4ebdd;
}
@media (min-width: 768px) {
  .price_program_cont {
    padding-top: 35px;
    padding-bottom: 20px;
  }
}
.price_program_cont h4 {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 2px 20px 1px;
  color: #fff;
  background: #b89a6a;
  font-size: 16px;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .price_program_cont h4 {
    font-size: 18px;
  }
}
.price_program_cont .check_list {
  margin: 0;
}
@media (min-width: 768px) {
  .price_program_cont .check_list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
}
.price_program_cont .check_list li {
  padding: 5px 0 5px 25px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .price_program_cont .check_list li {
    width: 47%;
  }
}
.price_program_cont .check_list li::before {
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/check_gd.png);
}
@media (min-width: 768px) {
  .price_program_cont .check_list li::before {
    top: 6px;
  }
}

.bad_section {
  padding: 30px 0 25px;
  color: #fff;
  background: linear-gradient(180deg, #7a9fb3 0%, #3f5f70 100%);
}
@media (min-width: 768px) {
  .bad_section {
    padding: 50px 0 45px;
  }
}
@media (min-width: 768px) {
  .bad_section .container {
    max-width: 600px;
  }
}
.bad_section h2 {
  margin-bottom: 25px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .bad_section h2 {
    margin-bottom: 40px;
    font-size: 26px;
  }
}
.bad_section h2 span {
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-size: 30px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .bad_section h2 span {
    font-size: 36px;
  }
}
.bad_section p {
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 576px) {
  .bad_section p {
    margin-bottom: 40px;
    text-align: center;
  }
}
.bad_section dl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.5;
}
.bad_section dl dt,
.bad_section dl dd {
  font-weight: 400;
  margin: 0;
}
.bad_section dl dd {
  position: relative;
  padding-left: 1em;
}
.bad_section dl dd::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.bad_icon {
  width: 58px;
  margin: 0 auto 15px;
}
@media (min-width: 768px) {
  .bad_icon {
    width: 78px;
  }
}

.reason_section {
  padding: 50px 0 60px;
  background: #f4edee;
}
@media (min-width: 576px) {
  .reason_section {
    padding: 70px 0 80px;
  }
}

.reason_list {
  margin-top: 75px;
}
@media (min-width: 576px) {
  .reason_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0 40px;
  }
}
.reason_item {
  position: relative;
  padding: 35px 0 20px;
  margin-bottom: 85px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(183, 122, 134, 0.5);
}
@media (min-width: 576px) {
  .reason_item {
    width: 45%;
  }
  .reason_item:nth-of-type(3) {
    margin-bottom: 0;
  }
}
.reason_item:last-of-type {
  margin-bottom: 0;
}
.reason_item > span {
  position: absolute;
  top: -46px;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 102px;
  height: 102px;
  padding-top: 10px;
  font-family: "Cormorant Infant", serif;
  font-size: 64px;
  font-style: italic;
  line-height: 0.7;
  color: #b77a86;
  border: 1px solid #b77a86;
  border-radius: 50%;
  transform: translateX(-50%);
}
.reason_item > span span {
  display: block;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}
.reason_item h3 {
  margin: 0 5px 10px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 375px) {
  .reason_item h3 {
    margin: 0 3px 10px;
    font-size: 17px;
  }
}
@media (min-width: 576px) {
  .reason_item h3 {
    font-size: 20px;
  }
}
.reason_item p {
  padding: 0 10px;
}
.reason_item p span {
  color: #b77a86;
  font-weight: 700;
}
.reason_item b {
  color: #b77a86;
}
.reason_img {
  margin-bottom: 20px;
}

.faq_section {
  padding: 60px 0;
}
@media (min-width: 576px) {
  .faq_section {
    padding: 80px 0;
  }
}
.faq_section .section_title {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .faq_section .section_title {
    margin-bottom: 30px;
  }
}

.faq_ac {
  font-family: "Noto Sans JP", sans-serif;
}
.faq_ac:last-of-type {
  margin-bottom: 0;
}
.faq_q {
  position: relative;
  display: flex;
  gap: 5px;
  padding: 15px 26px 15px 0;
  border-bottom: 1px solid #b89a6a;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .faq_q {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 18px;
  }
}
.faq_q::before {
  content: "Q";
  flex: 0 0 20px;
  color: #b89a6a;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 576px) {
  .faq_q::before {
    padding-top: 2px;
  }
}
.faq_q span::before, .faq_q span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 2px;
  background: #b89a6a;
  transform: translateY(-50%);
}
.faq_q span::after {
  transform: translateY(-50%) rotate(90deg);
}
.faq_a {
  padding: 8px 0 0 26px;
  color: #222;
  letter-spacing: 0.05em;
}
.faq_a li {
  position: relative;
  padding-left: 1em;
}
.faq_a li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.faq_ac[open] .faq_q span::after {
  content: none;
}

.greet_section {
  padding: 50px 0 60px;
  background: #f8f6f2;
}
@media (min-width: 768px) {
  .greet_section {
    padding: 70px 0 80px;
  }
}
.greet_section .section_title {
  margin-bottom: 30px;
}
.greet_section .section_title span {
  font-size: 22px;
  color: #b89a6a;
}

.greet_doctor {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .greet_doctor {
    width: 450px;
    justify-content: flex-end;
  }
}
.greet_doctor_name {
  color: #b68c3a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .greet_doctor_name {
    font-size: 26px;
    padding-right: 40px;
  }
}
.greet_doctor_name span {
  display: block;
  font-size: 16px;
}
@media (min-width: 768px) {
  .greet_doctor_name span {
    font-size: 18px;
  }
}
.greet_doctor_img {
  width: 150px;
}
@media (min-width: 768px) {
  .greet_doctor_img {
    width: 220px;
  }
}
.greet_box {
  width: 100%;
  max-width: 750px;
  margin: -27px auto 0;
  padding: 40px 15px 20px;
  background: #fff;
}
.greet_box dl {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #222;
}
.greet_box dl dt {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.greet_box dl dt::before, .greet_box dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc((100% - 2em - 24px) / 2);
  height: 1px;
  background: #222;
}
.greet_box dl dt::before {
  left: 0;
}
.greet_box dl dt::after {
  right: 0;
}
.greet_box dl dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.greet_box p {
  margin-bottom: 1em;
}
.greet_box p:last-of-type {
  margin-bottom: 0;
}
.greet_box p.text-right {
  font-size: 12px;
}
@media (min-width: 576px) {
  .greet_box p.text-right {
    font-size: 14px;
  }
}

.access_section {
  padding: 50px 0 60px;
}
@media (min-width: 768px) {
  .access_section {
    padding: 70px 0 80px;
  }
}
.access_section .section_title {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .access_section .section_title {
    margin-bottom: 50px;
  }
}
.access_section h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 768px) {
  .access_section h3 {
    text-align: left;
    margin: 10px 0 15px;
  }
}

@media (min-width: 768px) {
  .access_inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .access_img {
    width: 50%;
  }
}
.access_cont {
  flex: 1;
}
.access_map {
  position: relative;
  margin-top: 30px;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .access_map {
    margin-top: 50px;
    flex: 1;
    aspect-ratio: 16/7;
  }
}
.access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_table {
  margin-top: 10px;
}
.access_table div {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #dcdcdc;
}
.access_table dt,
.access_table dd {
  font-family: "Noto Sans JP", sans-serif;
}
.access_table dt {
  flex: 0 0 auto;
  font-weight: 700;
}
.access_table dd {
  margin: 0;
  flex: 1;
  text-align: right;
}

.cta_section {
  padding: 50px 0;
  background: url("../img/cta_bg.png") center/cover no-repeat;
}

.cta_panel {
  padding: 25px 0 30px;
  border: 2px solid #b68c3a;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(184, 154, 106, 0.6);
  text-align: center;
}
@media (min-width: 576px) {
  .cta_panel {
    max-width: 750px;
    padding: 35px 0 45px;
    margin: 0 auto;
  }
}
.cta_panel h2 {
  color: transparent;
  background: linear-gradient(90deg, #b68c3a 20%, #d6b77f 50%, #b68c3a 80%);
  -webkit-background-clip: text;
          background-clip: text;
  font-size: 24px;
  line-height: 1.4;
}
.cta_panel h2 .-lg {
  font-size: 40px;
  line-height: 1;
}
.cta_panel h2 .-md {
  font-size: 32px;
  line-height: 1.3;
}
@media (min-width: 576px) {
  .cta_panel h2 .-sm {
    font-size: 32px;
  }
}
.cta_panel h2 b {
  font-size: 32px;
}
.cta_panel > p {
  margin: 20px 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 375px) {
  .cta_panel > p {
    font-size: 16px;
  }
}
.cta_panel .floating_cta_lead {
  margin: 0 0 2px;
}
@media (max-width: 375px) {
  .cta_panel .floating_cta_lead {
    font-size: 16px;
  }
}
.cta_panel .cta_button {
  width: calc(100% - 20px);
  max-width: 450px;
  margin: 2px auto 0;
}
@media (max-width: 375px) {
  .cta_panel .cta_button {
    font-size: 18px;
  }
}

.footer_section {
  padding: 15px 0;
  color: #fff;
  background: #414141;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 576px) {
  .footer_section {
    padding: 20px 0 15px;
  }
}
.footer_section p {
  font-family: "Noto Serif JP", serif;
}

.footer_nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.footer_nav a {
  color: #fff;
}

.tracking_footer {
  display: none;
  position: fixed;
  width: 340px;
  max-width: 90%;
  left: 50%;
  bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
  z-index: 999;
}
@media (min-width: 576px) {
  .tracking_footer {
    width: 320px;
    left: auto;
    right: 15px;
    transform: translateX(0);
  }
}
.tracking_footer::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50%;
  z-index: 2;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(45deg);
  color: transparent;
  animation: shine 4s infinite ease-in-out;
}
.tracking_footer a {
  display: block;
}

@keyframes shine {
  10% {
    left: 150%;
    opacity: 1;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@media (min-width: 576px) {
  .image_stack {
    grid-template-columns: 1fr 1fr;
  }
  .image_stack p {
    grid-column: 1/-1;
  }
  .box_card,
  .included_box {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }
}/*# sourceMappingURL=style.css.map */