@charset "UTF-8";

/***************************************
| Root Variables
****************************************/
:root {
  --color-primary: #FFC0AE;
  --color-secondary: #A25858;

  --color-accent-light: #D4FEFF;
  --color-accent-normal: #ABEBEC;
  --color-accent-dark: #71D1D3;
  --color-accent-darker: #3C9697;
  --color-accent-darkest: #227475;

  --color-peach-lighter: #FFF2EE;
  --color-peach-light: #FFDED5;
  --color-peach-normal: #FFA789;
  --color-peach-dark: #F99075;

  --color-plum-lightest: #DDB8B8;
  --color-plum-lighter: #CF9797;
  --color-plum-light: #873F3F;
  --color-plum-normal: #7B3737;

  --color-cream: #FAF4E9;
  --color-pink-light: #F8E3E4;

  --color-gray-light: #EEE;
  --color-gray-normal: #CCC;
  --color-gray-dark: #333;

  --color-white: #FFF;
  --color-black: #222;
}


/***************************************
| Reset & Base
****************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
}

body {
  position: relative;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, #FFF, transparent 60%), radial-gradient(circle at 70% 40%, #EBCBCB, transparent 40%), radial-gradient(circle at 50% 80%, #FFF2EE, transparent 40%);
  filter: blur(100px);
  opacity: 0.7;
  animation: moveBlobs 10s ease-in-out infinite alternate;
}

@keyframes moveBlobs {
  0% {
    background-position:
      20% 30%,
      70% 40%,
      50% 80%;
  }

  100% {
    background-position:
      25% 35%,
      65% 45%,
      55% 75%;
  }
}

body.inner::before {
  content: none;
}

@media screen and (max-width: 767.98px) {
  body {
    font-size: 1rem;
  }
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure.size-full {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.wp-block-image {
  padding: 40px 0;
}

.wp-block-image figure {
  border-radius: 8px;
  overflow: hidden;
}

p {
  margin-bottom: 0;
}

h2 {
  font-size: 2.125rem;
}

h2.new {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.7rem;
  line-height: 1.2;
}

h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

h3.styled {
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-secondary);
}

h4 {
  color: var(--color-plum-normal);
  font-size: 1.25rem;
  font-weight: 600;
}

a {
  text-decoration: none;
}

a:not([href]),
a[href=""] {
  pointer-events: none;
  color: var(--color-gray-dark);
  text-decoration: none;
  cursor: default;
}


/***************************************
| General
****************************************/
.d-sp {
  display: none !important;
}

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

@media screen and (max-width: 767.98px) {
  .d-sp {
    display: block !important;
  }

  .d-pc {
    display: none !important;
  }
}


/* Additional settings for spacings */
.p-0 {
  padding: 0 !important;
}

.mb-0 {
  margin-bottom: 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: 1.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 3.5rem !important;
}

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

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

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

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

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

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

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

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

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

.m-8 {
  margin: 4.5rem !important;
}

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767.98px) {
  .m-sm-1 {
    margin: 1rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*---- Animations ----*/
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.animate-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-in.text-slide {
  transform: translateX(-30px);
}

.animate-in.text-slide.in-view {
  transform: translateX(0);
}


/*---- Content Columns ----*/
.content-col {
  display: flex;
  flex-direction: column;
}

/*---- Content Rows ----*/
.content-row {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
}

.content-row.is-align-start {
  align-items: flex-start;
}

.content-row.is-align-end {
  align-items: flex-end;
}

.content-row.is-align-center {
  align-items: center;
}

@media screen and (max-width: 767.98px) {
  .content-row {
    flex-direction: column;
  }
}


/*---- Flex Settings ----*/
.align-center {
  align-items: center;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}


/*---- Lists ----*/
.list-standard,
.wp-block-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-standard li,
.wp-block-list li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.75em;
  line-height: 1.6;
}

.list-standard li::before,
.wp-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-peach-dark);
  border-radius: 50%;
}

.list-check {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 2.2em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px dashed var(--color-gray-normal);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.6em;
  height: 1.6em;
  background-color: var(--color-white);
  border: 2px solid var(--color-peach-dark);
  color: var(--color-peach-dark);
  border-radius: 50%;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
}

.list-check li::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: -2.25em;
  width: 25px;
  height: 25px;
  background: var(--color-peach-lighter);
  border-radius: 50%;
  transform: translateY(-50%);
}


.text-highlight {
  color: var(--color-accent-darker);
  font-weight: 600;
}

.text-arrow {
  margin-bottom: 50px;
  align-items: center;
  gap: 0.75em;
}

.text-arrow p:first-child {
  position: relative;
  padding: 10px 8px 0;
  margin-bottom: 18px;
  width: 100%;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-secondary);
  overflow: visible;
}

.text-arrow p:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 100%;
  height: 1.25em;
  background: var(--color-secondary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.text-arrow p:last-child {
  color: var(--color-plum-normal);
  font-size: 1.75rem;
  font-weight: 600;
}

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

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

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


.title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  color: var(--color-secondary);
  text-align: center;
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.title.special {
  margin-bottom: 20px;
  font-size: 2.125rem;
}

.title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

@media screen and (max-width: 767.98px) {
  .title {
    font-size: 1.875rem;
  }
}

/*---- Box ----*/
.box-primary {
  margin: 0 auto;
  max-width: 900px;
  padding: 30px 34px;
  background: var(--color-cream);
  border: 1px solid var(--color-plum-normal);
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
}

.box-secondary {
  padding: 60px 30px 80px;
  background: var(--color-peach-lighter);
}

.box-access {
  display: flex;
  flex-direction: column;
  background: var(--color-cream);
  border: 1px solid var(--color-plum-normal);
  border-radius: 4px;
  box-sizing: border-box;
}

.box-notice {
  padding: 14px 16px;
  background: var(--color-peach-lighter);
  border: 1px solid var(--color-secondary);
}

.box-note {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  box-shadow: 0 3px 6px rgb(235 220 215 / 80%);
  padding: 35px 30px 20px 30px;
  padding-bottom: 20px;
  border-radius: 4px;
}

.box-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media screen and (max-width: 767.98px) {
  .box-access {
    width: 100%;
    padding: 26px 20px;
  }
}



/*---- Buttons ----*/
.btn-group {
  display: flex;
  margin: 20px 0;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.btn-group.in-box {
  padding: 30px 60px;
  background: var(--color-cream);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgb(215 165 70 / 90%);
}

.btn-group .btn {
  flex: 1;
}

.btn-base {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 420px;
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 14px 14px 16px;
  background-color: transparent;
  border: 2px solid var(--color-plum-normal);
  border-radius: 4px;
  transition: all 0.5s ease;
}

.btn-base:hover {
  color: var(--color-cream);
  background-color: var(--color-plum-normal);
}

.btn-cta a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  padding: 22px 28px;
  min-width: 400px;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 3px solid var(--color-secondary);
  border-radius: 4px;
  background: -webkit-linear-gradient(320deg, #d98585 0%, #ba6666 50%, #994545 100%);
  background-size: 100% 0%;
  background-repeat: no-repeat;
  background-position: bottom;
  transition: background-size 0.5s ease, color 0.3s ease;
}

.btn-cta a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 14px;
  height: 14px;
  border: solid var(--color-black);
  border-width: 3px 3px 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.btn-cta a:hover {
  background-size: 100% 100%;
  color: var(--color-cream);
}

.btn-cta a:hover .cta-text {
  color: var(--color-cream);
}

.btn-cta a:hover::after {
  border-color: var(--color-cream);
  transform: translate(4px, -50%) rotate(45deg);
}

.btn-primary {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 500px;
}

.btn-primary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 22px 28px;
  min-width: 400px;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 3px solid var(--color-secondary);
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-primary a span {
  z-index: 9;
}

.btn-primary a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(320deg, #D98585 0%, #BA6666 50%, #994545 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.btn-primary .cta-btn-text {
  opacity: 0;
  display: inline-block;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.btn-primary.in-view .cta-btn-text {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary .cta-arrow {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 14px;
  height: 14px;
  border: solid var(--color-black);
  border-width: 3px 3px 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.btn-primary a:hover {
  color: var(--color-cream);
}

.btn-primary a:hover::after {
  opacity: 1;
}

.btn-primary a:hover .cta-arrow {
  border-color: var(--color-cream);
  transform: translate(4px, -50%) rotate(45deg);
}

.btn-secondary a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 22px 28px;
  min-width: 400px;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 3px solid var(--color-peach-dark);
  border-radius: 4px;
  background: transparent;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-secondary a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(320deg, var(--color-primary) 0%, var(--color-peach-normal) 50%, var(--color-peach-dark) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.btn-secondary a:hover {
  color: var(--color-black);
}

.btn-secondary a:hover::after {
  opacity: 1;
}

.btn-return a {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 18px;
  max-width: 280px;
  margin: 0 auto;
  color: var(--color-white) !important;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(320deg, #DDB8B8 0%, #CF9797 50%, #C58181 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  transition: background-size 0.5s ease, color 0.3s ease;
  border-radius: 4px;
  transition: all 0.5s ease;
}

.btn-return a:hover {
  color: var(--color-cream) !important;
  background-size: 300% 100%;
}

.btn-reserve {
  background: var(--color-peach-dark);
  background: hsla(13, 100%, 84%, 1);
  background: linear-gradient(280deg, #f8dacf, hsla(15, 100%, 77%, 1) 50%, rgb(241, 149, 126) 100%);
}

.btn-phone {
  background: var(--color-accent-darker);
  background: hsla(182, 46%, 66%, 1);
  background: linear-gradient(280deg, #b6e5e7, hsla(181, 53%, 64%, 1) 50%, rgb(87, 175, 177) 100%);
}

.cta-subtext2 br {
  display: none;
}

.btn-line {
  background: rgb(68 174 78);
  background: linear-gradient(280deg, #b9e1bb, hsl(123.51deg 57.9% 61.09%) 50%, rgb(68 174 78) 100%);
}

/* Animation keyframes */
@keyframes animate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media screen and (max-width: 991.11px) {
  .cta-subtext2 br {
    display: block;
  }

  .footer-cta-sticky .btn a .cta-wrap .cta-subtext {
    top: -35px !important;
  }

  .footer-cta-sticky .btn a .cta-wrap .cta-subtext2 {
    top: -35px !important;
  }
}

@media screen and (max-width: 767.98px) {
  .btn-primary {
    max-width: 100%;
  }

  .btn-primary a {
    min-width: 100%;
    font-size: 1.25rem;
  }
}

/* Cards */
.card {
  flex: 1;
}

.card-group,
.card-group-x3,
.card-group-x4 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: space-between;
}

.card-group-x3 .card {
  flex: 1 1 calc((100% - 60px) / 3);
  /* 3 cards with 2 gaps (30px * 2) */
  min-width: 280px;
}

.card-group-x4 .card {
  flex: 1 1 calc((100% - 90px) / 4);
  /* 4 cards with 3 gaps (30px * 3) */
  min-width: 280px;
}

.card-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 68px;
  min-height: 300px;
  background: var(--color-peach-lighter);
  border-radius: 100rem;
}

.card-bubble blockquote {
  position: relative;
  font-family: "Klee One", cursive, serif;
  font-size: 1.25rem;
}

.card-bubble blockquote::before {
  content: "“";
  position: absolute;
  left: -20px;
  top: -50px;
  color: var(--color-secondary);
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 5.5rem;
  line-height: 1;
}

.card-bubble blockquote::after {
  content: "”";
  position: absolute;
  right: -15px;
  bottom: -80px;
  color: var(--color-secondary);
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 5.5rem;
  line-height: 0.5;
}


.card-filled {
  padding: 0 2rem 2rem;
  background: var(--color-peach-lighter);
  border-radius: 4px;
}

.card-btn {
  margin-top: auto;
  text-align: center;
}

.card-img {
  padding: 0;
  margin-bottom: 15px;
  aspect-ratio: 1 / 0.65;
  border-radius: 4px;
  overflow: hidden;
}

.card-icon {
  width: 180px;
  height: 180px;
  padding: 0;
  margin: 0 auto;
  margin-bottom: 20px;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-title {
  width: 100%;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-plum-normal);
}

.card-text {
  margin-bottom: 30px;
  color: var(--color-gray-dark);
  font-weight: normal;
  line-height: 1.75;
}

@media screen and (max-width: 1024px) {

  .card-group-x3 .card,
  .card-group-x4 .card {
    flex: 1 1 calc((100% - 30px) / 2);
  }
}

@media screen and (max-width: 767.98px) {

  .card-group-x3 .card,
  .card-group-x4 .card {
    flex: 1 1 100%;
  }
}

/* Tabbed Content */
.tabs {
  display: flex;
  cursor: pointer;
}

.tab {
  flex: 1;
  padding: 20px 20px;
  color: var(--color-gray-dark);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-plum-lightest);
  transition: all 0.4s ease;
}

.tab.active,
.tab:hover {
  color: var(--color-white);
  background: var(--color-secondary);
}

.tab-content {
  display: none;
  opacity: 0;
  padding: 30px 0;
  transition: opacity 0.4s ease-in-out;
}

.tab-content.fade-in {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 767.98px) {
  .tab {
    padding: 16px 16px 20px;
    font-size: 1rem;
  }
}


/* Tables */
.table-primary table,
.table-secondary table {
  margin: auto;
  width: 100%;
  height: auto !important;
  border-spacing: 0;
}

.table-primary tbody tr:not(:first-child) td,
.table-secondary tbody tr:not(:first-child) td {
  border-top: none;
}

.table-secondary tbody tr:not(:first-child) td:not(.td-bg) {
  border-left: none;
}

.table-primary tr th:not(:first-child),
.table-primary tr td:not(:first-child),
.table-secondary tr th:not(:first-child),
.table-secondary tr td:not(:first-child) {
  border-left: none;
}

.table-primary thead,
.table-primary tfoot {
  border: 0 !important;
}

.table-primary thead th {
  background: #F1D8BB;
  border: 1px solid #D7B295;
  border-bottom: 0;
}

.table-primary tfoot td {
  padding: 6px 0;
  text-align: left;
  border: none;
}

.table-primary th,
.table-primary td {
  padding: 12px;
}

.table-primary td {
  text-align: center;
  border: 1px solid #D7B295;
}

.table-primary td.td-bg {
  background: var(--color-cream);
}

.table-primary time {
  display: flex;
  justify-content: center;
}

.table-secondary th,
.table-secondary td {
  padding: 16px 20px;
}

.table-secondary td {
  text-align: left;
  border: 1px solid var(--color-plum-lighter);
}

.table-secondary td.td-bg {
  color: var(--color-plum-normal);
  font-weight: 600;
  vertical-align: top;
  background: var(--color-peach-light);
}

.table-secondary tbody tr td:first-of-type {
  color: var(--color-plum-normal);
  font-weight: 600;
  vertical-align: top;
  background: var(--color-peach-light);
  border-left: 1px solid var(--color-plum-lighter) !important;
}

.td-w20 {
  width: 20%;
}

.td-w30 {
  width: 30%;
}

.circle {
  margin: 0 auto;
  width: 15px;
  height: 15px;
  border: 1px solid var(--color-black);
  border-radius: 50%;
}

@media screen and (max-width: 767px) {

  .table-primary,
  .table-secondary {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-primary table,
  .table-secondary table {
    font-size: 0.875rem;
  }

  .table-primary table td,
  .table-secondary table th {
    width: auto !important;
  }
}


/* Toggle */
details {
  margin: 0 auto 1.6rem;
  max-width: 1080px;
}

details summary {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  font-weight: bold;
  font-size: 18px;
}

details summary:before,
details summary:after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 1.5px);
  right: 16px;
  width: 16px;
  height: 3px;
  background: var(--color-black);
  transition: all 0.5s ease;
}

details summary:before {
  transform: rotateZ(0deg);
}

details summary:after {
  transform: rotateZ(90deg);
}

details[open] summary:before {
  transform: rotateZ(45deg);
}

details[open] summary:after {
  transform: rotateZ(135deg);
}

details summary::marker {
  content: "";
  display: none;
}

details .details-body {
  padding: 40px 40px 60px;
}

details:nth-of-type(2n) h2,
details:nth-of-type(2n) h3 {
  color: var(--color-secondary);
}

details:nth-of-type(2n) summary {
  background: var(--color-plum-lighter);
  color: var(--color-black);
}

details:nth-of-type(2n - 1) summary {
  background: var(--color-primary);
  color: var(--color-black);
}

details:last-of-type {
  margin-bottom: initial;
}

details[open] a.res {
  display: block;
  width: calc(100% - 2rem);
  max-width: 360px;
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  border-radius: 99rem;
  text-decoration: none;
}

details[open] h3 {
  padding: initial;
  margin-top: 1.6rem;
  border: initial;
}

details[open] figure {
  margin: 1rem auto;
}

details[open] figure iframe {
  width: 100%;
}

details .wp-block-table .has-fixed-layout th,
details .wp-block-table .has-fixed-layout td {
  border-left: initial;
  border-right: initial;
}

details .wp-block-table,
details figure {
  max-width: 800px;
  margin: 0 auto;
}


/***************************************
| Container
****************************************/
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}


/***************************************
| Header
****************************************/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.inner #header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-peach-lighter);
}

#header.on-scroll {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
}

#header-top {
  padding: 10px 10px 12px;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--color-secondary);
}

#header-main .header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#header-logo {
  width: 100%;
  max-width: 200px;
}

#header-logo a {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}

#header-logo a img {
  width: 100%;
  height: auto;
}

.phone-link {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  color: var(--color-secondary);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--color-plum-normal);
}

.phone-link::before {
  content: "";
  display: inline-block;
  background: url(images/icon-contact-phone.svg) no-repeat;
  width: 28px;
  height: 28px;
}


/* Desktop Menu */
.pc-menu,
.main-menu {
  position: relative;
  display: flex;
  margin: 0;
  gap: 30px;
  list-style: none;
}

.menu-item {
  color: var(--color-gray-dark);
  font-size: 1rem;
  font-weight: 500;
}

.menu-item a {
  display: block;
  padding: 24px 0;
  color: var(--color-black);
  text-decoration: none;
}

.menu-item a:hover {
  color: var(--color-secondary);
}

/* Dropdown (Desktop) */
.menu-item.has-dropdown .dropdown {
  position: absolute;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  top: 70px;
  left: 0;
  width: 100%;
  list-style: none;
  background: rgb(255 255 255 / 98%);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 2px 8px rgb(40 40 40 / 10%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9;
}

.menu-item.has-dropdown:hover .dropdown {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-item.has-dropdown .dropdown li a {
  display: block;
  padding: 4px 0;
  color: var(--color-black);
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-item.has-dropdown .dropdown li a:hover {
  color: var(--color-plum-normal);
}


/* Hamburger Menu */
.toggle-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 40px;
  cursor: pointer;
  z-index: 100;
}

.toggle-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--color-gray-dark);
  transition: all 0.3s ease;
}

.toggle-menu.is-active span:nth-child(1) {
  transform: rotate(40deg) translate(5px, 5px);
}

.toggle-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.toggle-menu.is-active span:nth-child(3) {
  transform: rotate(-40deg) translate(10px, -10px);
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -105%;
  width: 100vw;
  height: 100vh;
  padding: 90px 20px 20px;
  background: var(--color-white);
  transition: right 0.4s ease;
  overflow-y: auto;
  z-index: 99;
}

.mobile-menu.open {
  right: 0;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu .menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.mobile-menu-list {
  font-size: 1.25rem;
  font-weight: 500;
  list-style: none;
}

.mobile-menu-list li a,
.mobile-menu-list li span {
  display: block;
  padding: 18px 0;
  color: var(--color-gray-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a:active {
  color: var(--color-plum-normal);
}

@media screen and (max-width: 991.98px) {
  #header-logo {
    max-width: 140px;
  }

  .pc-menu,
  .main-menu {
    gap: 15px;
  }

  .phone-link {
    font-size: 1rem;
  }

  .phone-link::before {
    width: 24px;
    height: 24px;
  }
}

@media screen and (max-width: 767.98px) {
  .pc-menu {
    display: none;
  }

  .toggle-menu {
    display: flex;
  }

  #header-main {
    flex-direction: row;
  }

  #header-logo {
    flex: 1;
    z-index: 999;
  }

  .menu-item.has-dropdown .dropdown {
    display: none;
    padding-left: 15px;
  }

  .menu-item.has-dropdown.open .dropdown {
    display: block;
  }

  .menu-item.has-dropdown>a::after {
    content: "▼";
    float: right;
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/***************************************
| Footer
****************************************/
#footer {
  padding: 15px 0 120px;
  background: var(--color-gray-dark);
}

#footer .footer-content {
  color: var(--color-white);
  font-size: 0.875rem;
  text-align: center;
}

/* Fixed CTA Button */
.footer-cta-sticky {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 990;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-cta-sticky .btn-group {
  display: flex;
  margin: 10px auto;
  max-width: 900px;
  align-items: center;
  flex-direction: row;
  gap: 15px;
}

.footer-cta-sticky .btn {
  position: relative;
  display: flex;
  justify-content: center;
}

.footer-cta-sticky .btn a {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  width: 100%;
  color: #000;
  font-size: 1.375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: none;
  border-radius: 4px;
  animation: animate 16s linear infinite;
  transition: background-position .5s ease-in-out;
}

.footer-cta-sticky .btn a:hover {
  background-position: 100% 50%;
}


.footer-cta-sticky .btn a .cta-wrap {
  padding: 14px 0 16px;
  border: 2px solid var(--color-white);
}

.footer-cta-sticky .btn a .cta-wrap .cta-subtext {
  position: absolute;
  padding: 6px 8px 6px 12px;
  top: -24px;
  left: 50%;
  width: 90%;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  background: var(--color-white);
  border: 4px solid #ffbaa6;
  border-radius: 40px;
  transform: translateX(-50%);
}

.footer-cta-sticky .btn a .cta-wrap .cta-subtext2 {
  position: absolute;
  padding: 6px 8px 6px 12px;
  top: -24px;
  left: 50%;
  width: 90%;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  background: var(--color-white);
  border: 4px solid #bbe5b8;
  border-radius: 40px;
  transform: translateX(-50%);
}

.footer-cta-sticky .btn a .cta-wrap .cta-subtext span {
  color: var(--color-plum-light);
}

@media screen and (max-width: 767.98px) {
  .footer-cta-sticky .container {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .footer-cta-sticky .btn-group {
    margin: auto;
    gap: 0;
  }

  .footer-cta-sticky .btn a {
    padding: 4px;
    font-size: 1.125rem;
  }

  .footer-cta-sticky .btn a .cta-wrap {
    padding: 18px 0;
    word-break: auto-phrase;
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .footer-cta-sticky .btn a .cta-wrap .cta-subtext {
    top: -33px !important;
    width: 94%;
    font-size: 0.75rem;
  }

  .footer-cta-sticky .btn a .cta-wrap .cta-subtext2 {
    top: -33px !important;
    width: 94%;
    font-size: 0.75rem;
  }

  .footer-cta-sticky .btn a .cta-wrap .cta-subtext span {
    display: block;
  }
}



/***************************************
| Section - FV
****************************************/
.main-fv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 100px 15px 40px;
  color: var(--color-gray-dark);
  box-sizing: border-box;
  overflow: hidden;
  /*background-color: #D5DAD9; */
}

/* Pseudo-element background layer */
.main-fv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/img-diet-main-fv-sp.webp) no-repeat top left;
  background-size: cover;
  background-color: #D5DAD9;
  z-index: -1;
}

/* Tablet: 768px and up */
@media screen and (min-width: 768px) {
  .main-fv {
    justify-content: center;
    align-items: flex-end;
    min-height: 65vh;
    padding: 265px 0 40px;
  }

  .main-fv::before {
    background: url(images/img-diet-main-fv-m.webp) no-repeat center right;
    background-size: 120%;
  }
}

/* Desktop: 1200px and up */
@media screen and (min-width: 1200px) {
  .main-fv {
    min-height: 66vh;
    padding: 160px 0 40px;
  }

  .main-fv::before {
    background: url(images/img-diet-main-fv.webp) no-repeat center right 16%;
    background-size: cover;
  }
}

/* Desktop: 1400px and up */
@media screen and (min-width: 1400px) {
  .main-fv {
    min-height: 66vh;
    padding: 160px 0 40px;
  }

  .main-fv::before {
    background-position: center right;
    background-size: cover;
  }
}

/* Desktop: 1800px and up */
@media screen and (min-width: 1800px) {
  .main-fv::before {
    background-position: center right;
    background-size: 120%;
  }
}

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

.fv-title {
  position: relative;
  margin-bottom: 20px;
  color: var(--color-gray-dark);
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 3.125rem;
  text-align: right;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.fv-title span {
  color: #964646;
}

.fv-tagline {
  display: inline-flex;
  padding: 4px 100px 8px;
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 1.75rem;
  font-weight: 600;
  background: linear-gradient(128deg, #FFA789, #FCB69E, #FF9F87, #EEC2B7);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 767.98px) {
  .fv-title {
    display: block;
    font-size: 2.125rem;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .fv-tagline {
    display: block;
    padding: 4px 38px 6px;
    font-size: 1rem;
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .fv-title {
    margin-bottom: 300px;
  }
}


/***************************************
| Section - Intro
****************************************/
.main-intro {
  padding: 60px 0 30px;
}

.main-intro .content-row {
  margin-bottom: 60px;
  gap: 40px;
}

.main-intro .content-row .row-item {
  flex: 1;
}

.main-intro .content-row .row-item .subtitle {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: 500;
}

.main-intro .content-row .row-item .text {
  margin-bottom: 15px;
  text-align: left;
}

.main-intro .content-row .row-item figure {
  height: 340px;
  max-height: 340px;
  overflow: hidden;
}

.main-intro .content-row .row-item figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

@media screen and (max-width: 767.98px) {
  .main-intro .content-row:nth-child(odd) {
    flex-direction: column-reverse;
  }

  .main-intro .content-row:last-child {
    margin-bottom: 30px;
  }
}


/***************************************
| Section - About
****************************************/
.main-for {
  padding: 80px 0 90px;
  background: var(--color-peach-lighter);
}


/***************************************
| Section - Contents
****************************************/
.main-contents {
  padding: 80px 0;
  background-color: var(--color-cream);
}

@media screen and (max-width: 767.98px) {
  .main-contents {
    padding: 60px 0;
  }
}

/***************************************
| Section - Reason
****************************************/
.main-reason {
  padding: 80px 0;
  background-color: var(--color-pink-light);
}

.bold {
  font-weight: bold;
}

.reason-frame {
  border: 2px solid #d38484;
  border-radius: 10px;
  padding: 20px;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
}

.reason-cap {
  font-family: serif;
  text-align: center;
  margin-bottom: -60px;
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (max-width: 767.98px) {
  .main-reason {
    padding: 60px 0;
  }

  .reason-frame {
    border: 2px solid #d38484;
    border-radius: 10px;
    padding: 20px;
    white-space: normal;
  }

}

/***************************************
| Section - CTA
****************************************/
.main-cta {
  position: relative;
  padding: 40px 0;
  text-align: center;
  background: var(--color-peach-light);
}

.main-cta p {
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 1.75rem;
  font-weight: 600;
}


/***************************************
| Section - Treatment Menu
****************************************/
.main-treatment {
  padding: 80px 0;
}

.treatment-item {
  margin-bottom: 20px;
  padding: 0 8px;
  border-radius: 4px;
  background: #aa6767;
  background: linear-gradient(320deg, #FFDED5 0%, #FFC0AE 50%, #FBB0A7 100%);
  background: -moz-linear-gradient(290deg, #FFDED5 0%, #FFC0AE 50%, #FBB0A7 100%);
  background: -webkit-linear-gradient(320deg, #994A4A 0%, #aa6767 50%, #774848 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position .5s ease-in-out;
}

.treatment-item:hover {
  background-position: 100% 50%;
}

.treatment-item input {
  display: none;
}

.treatment-item label {
  position: relative;
  display: block;
  padding: 16px 0 16px 20px;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
}

.treatment-item label:hover,
.treatment-item input:checked+label {
  color: var(--color-white);
}

/* Create plus sign using two lines */
.treatment-item label::before,
.treatment-item label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 3px;
  background-color: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.treatment-item label::before {
  transform: translateY(-50%) rotate(90deg);
}

.treatment-item label::after {
  transform: translateY(-50%) rotate(0deg);
}

.treatment-item .item-description {
  height: 0;
  background-color: var(--color-white);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  transition: height 0.4s ease;
}

.treatment-item .item-description .item-content {
  padding: 20px;
}

.treatment-item input:checked~.item-description {
  margin-bottom: 8px;
}

.treatment-item input:checked~.item-description::after {
  content: '';
  display: block;
  height: 20px;
}

.treatment-item .item-description p:last-child,
.treatment-item .item-description ul:last-child {
  margin-bottom: 0;
}

.treatment-item .item-description p {
  position: relative;
  margin: 0;
  padding: 0 0 20px 0;
  line-height: 1.6;
}

@media screen and (max-width: 767.98px) {
  .main-treatment {
    padding: 60px 0 40px;
  }

  .treatment-item label {
    padding: 20px 45px;
    text-indent: -2rem;
  }

  .treatment-item label::before,
  .treatment-item label::after {
    right: 5px;
  }
}


/***************************************
| Section - Column
****************************************/
.main-column {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-normal-gray);
}

.news-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;

}

.news-item {
  flex: 1 1 calc(50% - 15px);
}

.news-item a {
  display: flex;
  height: 100%;
  padding: 16px 18px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--color-secondary);
  border-radius: 4px;
}

.news-item a:hover {
  background: var(--color-cream);
}

.news-item .news-thumb {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  background: var(--color-accent-dark);
  border: 1px solid var(--color-gray-normal);
  border-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
}

.news-item .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item .info {
  flex-grow: 1;
}

.news-item .date {
  display: block;
  margin-bottom: 5px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.news-item .news-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.news-link {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.news-link a {
  position: relative;
  padding-right: 40px;
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.news-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: translateY(-50%) rotate(315deg);
  transition: transform 0.3s ease, right 0.3s ease;
  z-index: 2;
}

.news-link a:hover {
  color: var(--color-secondary);
}

.news-link a:hover::after {
  right: 16px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

@media screen and (max-width: 767.98px) {
  .news-item {
    flex: 1 1 100%;
  }

  .news-item:nth-child(2) {
    border-top: none;
  }

  .news-item a {
    flex-direction: row;
    align-items: center;
  }

  .news-link {
    justify-content: center;
  }
}


/***************************************
| Section - Flow
****************************************/
.main-flow {
  padding: 80px 0;
  background: var(--color-cream);
}

.main-flow .content-col {
  gap: 20px;
  counter-reset: step;
}

.flow-item {
  position: relative;
  flex: 1;
  justify-content: space-between;
  min-height: 280px;
  background: var(--color-peach-light);
  counter-increment: step;
  overflow: hidden;
}

.flow-item::before {
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 6px 8px;
  width: 28px;
  height: 28px;
  color: var(--color-cream);
  font-size: 1.25rem;
  font-weight: 500;
  background: var(--color-secondary);
  border-radius: 50%;
}

.flow-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-wrap: break-word;
  justify-content: flex-start;
  min-width: 0;
  padding: 34px 34px 34px 78px;
  text-align: left;
}

.flow-text {
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.flow-image {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  max-width: 380px;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.flow-image.img-full img {
  object-fit: cover;
}

.flow-image.img-padded img {
  padding: 20px;
}

.flow-image.bottom img {
  object-position: bottom;
}

.flow-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767.98px) {
  .main-flow {
    padding: 60px 0;
  }

  .main-flow .content-col {
    gap: 30px;
  }

  .flow-item {
    max-height: 100%;
    gap: 0;
    overflow: visible;
  }

  .flow-item::before {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    z-index: 2;
  }

  .flow-content {
    padding: 40px 30px 0;
    text-align: center;
  }
}


/***************************************
| Section - How to Use + After
****************************************/
.main-how,
.main-after {
  padding: 80px 0;
}

.main-how .row-item,
.main-after .row-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  align-items: center;
}

.main-how figure img,
.main-after figure img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.main-how .item-text,
.main-after .item-text {
  margin-bottom: 20px;
}


/***************************************
| Section - Doctor Info
****************************************/
.main-doctor {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-secondary);
}

.main-doctor .doctor-img {
  flex: 20%;
}

.main-doctor .doctor-info {
  flex-grow: 1;
  text-align: left;
}

.main-doctor .d-name {
  padding-bottom: 20px;
  font-size: 1.125rem;
  border-bottom: 1px solid var(--color-secondary);
}

.main-doctor .d-name span {
  font-size: 1.25rem;
}

@media screen and (max-width: 991.98px) {
  .main-doctor .content-row div {
    flex: 1 !important;
  }
}



/***************************************
| Section - Contact
****************************************/
.main-contact {
  padding: 80px 0;
  background: hsla(48, 88%, 93%, 1);
  background: linear-gradient(315deg, hsla(48, 88%, 93%, 1) 0%, hsla(48, 83%, 80%, 1) 100%);
  background: -moz-linear-gradient(315deg, hsla(48, 88%, 93%, 1) 0%, hsla(48, 83%, 80%, 1) 100%);
  background: -webkit-linear-gradient(315deg, hsla(48, 88%, 93%, 1) 0%, hsla(48, 83%, 80%, 1) 100%);
}

.main-contact p {
  font-size: 1.125rem;
  text-align: center;
}

.main-contact .contact-item {
  flex: 1;
}


/***************************************
| INNER - Page Heading
****************************************/
.page-heading {
  position: relative;
  padding: 150px 0 60px;
  background: var(--color-peach-light);
  overflow: hidden;
}

.page-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, var(--color-primary) 0%, transparent 70%),
    linear-gradient(240deg, var(--color-secondary) 0%, transparent 70%),
    linear-gradient(300deg, var(--color-plum-lightest) 0%, transparent 70%),
    linear-gradient(180deg, var(--color-plum-lighter) 0%, transparent 70%);
  background-size: 200% 200%;
  opacity: 0.85;
  filter: blur(30px);
  animation: aurora-wave 4s ease-in-out infinite alternate;
}

.page-heading .container,
.page-heading * {
  position: relative;
  z-index: 1;
}

@keyframes aurora-wave {
  0% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }

  50% {
    background-position: 100% 50%, 0% 100%, 50% 0%, 100% 50%;
  }

  100% {
    background-position: 0% 50%, 50% 0%, 100% 50%, 50% 100%;
  }
}

.page-heading .heading-title {
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 2.75rem;
}

.page-body {
  padding: 60px 0;
}

.page-body a {
  color: var(--color-plum-normal);
}

.navigation.pagination {
  padding: 60px 0 20px;
}

.page-body .pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-body .pagination .nav-links>* {
  flex: 0 0 32px;
  text-align: center;
  text-decoration: none;
}

.page-body .pagination .current,
.page-body .pagination a:hover {
  padding: 3px 6px 6px;
  color: var(--color-cream);
  background: var(--color-secondary);
  border-radius: 50%;
}

.inner-content h2 {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: 0 0 10px;
  width: 100%;
  color: var(--color-secondary);
  text-align: center;
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 2.125rem;
  font-weight: 600;
}

.inner-content h2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-plum-lightest);
  transform: translateX(-50%);
}

.inner-content h3 {
  margin: 1.875rem 0 0.5rem;
}

.inner-content h3 strong,
.inner-content h4 strong {
  font-weight: 600;
}

.inner-content h4 {
  margin-bottom: 8px;
  padding: 20px 0 0;
}

.inner-content ol,
.inner-content ul {
  margin-top: 10px;
}


.page-breadcrumb {
  padding: 10px 0;
}

.page-breadcrumb a {
  position: relative;
  padding-left: 35px;
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: var(--color-secondary);
}

.page-breadcrumb a:first-child {
  padding-left: 0;
}

.page-breadcrumb a:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  pointer-events: none;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.4s ease;
}

@media screen and (max-width: 767.98px) {
  .page-heading {
    padding: 130px 0 50px;
  }

  .page-heading .heading-title {
    font-size: 2.125rem;
    font-weight: 600;
  }

  .page-body {
    padding: 40px 0;
  }
}


/***************************************
| INNER - About
****************************************/
.about-wrap .content-row {
  gap: 40px;
}

.about-wrap .content-row .row-item {
  flex: 1;
}


/***************************************
| INNER - Price Information
****************************************/
.price-wrap .card-group {
  margin: 0 auto;
  max-width: 600px;
}

.price-wrap .card-group .card-icon {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767.98px) {
  .price-wrap .card-group {
    gap: 20px;
  }

  .price-wrap .card-group .card-icon {
    height: auto;
  }
}


/***************************************
| INNER - FAQ
****************************************/
.faq-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 4px;
  background: var(--color-peach-light);
  border: 1px solid var(--color-secondary);
}

.faq-item::before {
  content: "Q.";
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--color-plum-normal);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.faq-item:nth-child(even) {
  background: var(--color-plum-lightest);
  border: 1px solid var(--color-secondary);
}

.faq-item input {
  display: none;
}

.faq-item label {
  position: relative;
  display: block;
  padding: 18px 16px 18px 50px;
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
}

.faq-item label:hover,
.faq-item input:checked+label {
  color: var(--color-plum-normal);
}

.faq-item label::before,
.faq-item label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 3px;
  background-color: var(--color-plum-normal);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.faq-item label::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item label::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-item input:checked+label::before {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-item .answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  background: var(--color-white);
  border-radius: 0 0 4px 4px;
}

.faq-item .answer p {
  position: relative;
  margin: 0;
  padding: 15px 15px 20px 50px;
  line-height: 1.6;
}

.faq-item .answer p::before {
  content: "A.";
  position: absolute;
  top: 15px;
  left: 20px;
  color: var(--color-secondary);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
}

.faq-item input:checked~.answer {
  max-height: 500px;
}

@media screen and (max-width: 767.98px) {

  .faq-item label,
  .faq-item .answer p {
    font-size: 1rem;
  }

  .faq-item::before,
  .faq-item .answer p::before {
    font-size: 1.125rem;
  }

  .faq-item label {
    padding: 20px 45px;
  }

  .faq-item::before {
    top: 22px;
    left: 16px;
  }

  .faq-item label::before,
  .faq-item label::after {
    right: 18px;
    width: 18px;
  }

  .faq-item .answer p {
    padding: 15px 15px 15px 45px;
  }

  .faq-item .answer p::before {
    top: 18px;
    left: 16px;
  }
}

a.blog-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  width: 95%;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 5px 7px 5px #febad3;
  margin: 0 auto 2rem;
  display: block;
  text-decoration: none;
}

a.blog-card:hover {
  text-decoration: underline;
  color: #e54c84;
}

.blog-card .blog-card-content .blog-card-title {
  color: #00ad2d;
  font-weight: 700;
  display: block;
  padding: 0 0 10px 0;
  font-size: 120%;
  line-height: 1.5em;
}

.blog-card .blog-card-content .blog-card-excerpt {
  color: #333;
  line-height: 1.5em;
  font-size: .85em;
}



/***************************************
| INNER - COLUMN/ENTRIES
****************************************/
.post-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.post-list article {
  position: relative;
  margin: 3px auto;
  width: 48%;
  border-bottom: 1px solid var(--color-gray-normal);
}

.post-list article a {
  display: flex;
  padding: 3%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: inherit;
  text-decoration: none;
}

.post-list article a .post-content {
  width: 44%;
  padding: 0 0 0 20px;
}

.post-list article a .post-thumbnail {
  position: relative;
  display: inline-block;
  width: 56%;
  max-width: 274px;
}

.post-list article a .post-thumbnail img {
  max-width: 100%;
  height: 171px !important;
  object-fit: cover;
}

.post-list article a .post-thumbnail .post-category {
  position: absolute;
  top: -0.1px;
  right: 0;
  line-height: 100%;
}

.post-list article a .post-thumbnail .post-category span {
  padding: 0.2em 0.5em;
  color: var(--label-text-color);
  font-size: 0.75rem;
  background-color: var(--label-bg);
  opacity: 0.88;
}

.entry-post-date {
  display: block;
  margin: 8px 0 40px;
  color: var(--color-plum-normal);
  font-size: 0.875rem;
}

.entry-content h2 {
  position: relative;
  margin-bottom: 30px;
  padding: 30px 0 10px;
  color: var(--color-secondary);
  text-align: left;
  font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
  font-size: 2.125rem;
  font-weight: 600;
}

.entry-content h2::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-plum-lightest);
  transform: translateX(-50%);
}

.entry-content h3 {
  margin: 1.875rem 0 0.5rem;
}

.entry-content h3 strong,
.entry-content h4 strong {
  font-weight: 600;
}

.entry-content h4 {
  margin-bottom: 8px;
  padding: 20px 0 0;
}

.entry-content ol,
.entry-content ul {
  margin-top: 10px;
}

.entry-content .entry-thumb img {
  border-radius: 8px;
  overflow: hidden;
}

.entry-cta {
  position: relative;
  display: flex;
  padding: 60px 0;
  flex-direction: column;
  align-items: center;
}

.entry-cta .entry-cta-inner {
  position: relative;
  width: 30vw;
  max-width: 540px;
}

.entry-cta .entry-cta-inner::after {
  content: "";
  display: block;
  position: absolute;
  right: clamp(0px, 0.125vw, 10px);
  bottom: 0;
  width: 130px;
  height: 200px;
  background-image: url(images/img-diet-cta.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 99;
}

.entry-cta .entry-cta-inner a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  padding-right: 110px;
  text-decoration: none;
  background: linear-gradient(0deg, transparent calc(100% - 2px), rgb(255, 225, 222, 0.25) calc(100% - 2px)), linear-gradient(90deg, transparent calc(100% - 2px), rgba(255, 225, 222, 0.25) calc(100% - 2px)), -webkit-linear-gradient(45deg, hsla(0, 56%, 73%, 1) 0%, hsla(0, 80%, 84%, 1) 50%, hsla(13, 100%, 88%, 1) 100%);
  background-size: min(22.551px + 0.653061vw, 28px) min(22.551px + 0.653061vw, 28px), min(22.551px + 0.653061vw, 28px) min(22.551px + 0.653061vw, 28px), cover;
  background-repeat: repeat, repeat, no-repeat;
  background-position: 4px 4px, 4px 4px, center;
  border: 1px solid var(--color-peach-normal);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.entry-cta .entry-cta-inner a:hover {
  opacity: 0.85;
}

.entry-cta .entry-cta-inner p {
  padding: 0;
}

.entry-cta .entry-cta-inner .cta-inner-text {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025rem;
}

.entry-cta .entry-cta-inner .cta-inner-link {
  padding: 10px 0 14px;
  min-width: 240px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-peach-light);
  border: 2px solid var(--color-secondary);
  border-radius: 50px;
}

.entry-footer .entry-navigation .nav-links {
  display: flex;
  padding: 60px 0 80px;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid var(--color-gray-normal);
}

.entry-footer .entry-navigation .nav-links>div {
  flex: 0 0 30%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.entry-footer .entry-navigation .nav-links a:hover,
.entry-footer .entry-navigation .nav-links a:hover::before,
.entry-footer .entry-navigation .nav-links a:hover::after {
  color: var(--color-primary) !important;
}

.entry-footer .entry-navigation .nav-links a::before,
.entry-footer .entry-navigation .nav-links a::after {
  transition: transform 0.4s ease;
}

.entry-footer .entry-navigation .nav-links .nav-previous a,
.entry-footer .entry-navigation .nav-links .nav-next a {
  position: relative;
  display: block;
  padding: 0 30px;
  color: inherit;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  line-height: 1.8;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.5s ease;
}

.entry-footer .entry-navigation .nav-previous a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.4s ease;
}

.entry-footer .entry-navigation .nav-next a::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  pointer-events: none;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.4s ease;
}

.entry-footer .entry-navigation .nav-previous a:hover::before {
  transform: translate(-6px, -50%) rotate(-45deg);
}

.entry-footer .entry-navigation .nav-next a:hover::before {
  transform: translate(6px, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .entry-content .entry-thumb {
    max-width: 720px;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1999.98px) {
  .entry-cta .entry-cta-inner {
    width: 35vw;
  }
}

@media screen and (max-width: 1699.98px) {
  .entry-cta .entry-cta-inner {
    width: 40vw;
  }
}

@media screen and (max-width: 1399.98px) {
  .entry-cta .entry-cta-inner {
    width: 50vw;
  }
}

@media screen and (max-width: 1199.98px) {
  .entry-cta .entry-cta-inner {
    width: 55vw;
  }
}

@media screen and (max-width: 991.98px) {
  .entry-cta .entry-cta-inner {
    width: 70vw;
  }
}

@media screen and (max-width: 767.98px) {
  .entry-content .entry-thumb {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .entry-cta .entry-cta-inner {
    width: 90vw;
  }
}

@media screen and (max-width: 575.98px) {
  .entry-cta {
    padding: 40px 0;
  }

  .entry-cta .entry-cta-inner {
    width: 90vw;
  }

  .entry-cta .entry-cta-inner a {
    padding-right: 70px;
    align-items: flex-start;
  }

  .entry-cta .entry-cta-inner .cta-inner-link {
    min-width: 225px;
  }

  .entry-cta .entry-cta-inner .cta-inner-text {
    font-size: 1.375rem;
  }

  .entry-footer .entry-navigation .nav-links {
    padding: 40px 0;
  }

  .entry-footer .entry-navigation .nav-links>div {
    flex: 0 0 48%;
  }

  .entry-footer .entry-navigation .nav-return {
    flex: 100% !important;
    margin-top: 30px;
    order: 3;
  }
}