@charset "UTF-8";

/***************************************
| Root Variables
****************************************/
:root {
  --color-primary: #58B4BB;    
  --color-secondary: #2B7A92;   

  --color-accent-lightest: #DCEEEF;  
  --color-accent-light: #A8DDE0;  
  --color-accent-normal: #72BEC4; 
  --color-accent-dark: #44A2A8;  
  --color-accent-darker: #2E8288; 
  --color-accent-darkest: #1D595E;  
  
  --color-health-lightest: #E2EBE3;
  --color-health-lighter: #D1E9D2; 
  --color-health-light: #AEDBB0;  
  --color-health-normal: #73B476;
  --color-health-dark: #48884B;

  --color-warning-light: #FFE0D9;
  --color-warning-normal: #C56955;

  --color-blue-lightest: #CEE7F3;  
  --color-blue-lighter: #92C8E4; 
  --color-blue-light: #66BAE5;  
  --color-blue-normal: #408BB1;

  /* Utility Neutrals */
  --color-cream: #FDF5E5;

  --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: 0;
 margin-top: 0 !important;
 scroll-behavior: smooth;
}

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

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

figure {
 margin: 0 auto !important;
}

figure img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 box-sizing: border-box;
}

p {
 margin-bottom: 0;
 line-height: 1.6;
 letter-spacing: 0.025em;
}

h2 {
 font-size: 2.125rem; /* 34px */
}
h3 { 
 margin-bottom: 20px;
 font-size: 1.25rem; /* 20px */
}
h3.styled {
 margin-bottom: 25px;
 padding-bottom: 10px;
 border-bottom: 1px solid var(--color-secondary);
}
h4 {
 margin-bottom: 15px;
 color: var(--color-secondary);
 font-size: 1.125rem; /* 18px */
 font-weight: 600;
}
h5 {
 margin-bottom: 5px;
 font-size: 1.125rem;
 font-weight: 600;
}

a {
 transition: all 0.5s ease;
}

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 */
.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: 40px;
}
.content-row.by-2 .row-item {
 flex: 0 0 50%;
}
.content-row.by-3 .row-item {
 flex: 0 0 30%;
}
.content-row.by-3 .item-img {
 width: 180px;
 height: 180px;
 margin: 0 auto;
 margin-bottom: 20px;
}
.content-row.by-3 .item-img img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}



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


/*---- Flex Settings ----*/
.align-center {
 align-items: center !important;
}
.flex-nowrap {
 flex-wrap: nowrap;
}

.justify-end {
 justify-content: flex-end;
}
.justify-center {
 justify-content: center;
}
.justify-around {
 justify-content: space-around;
}
.justify-between {
 justify-content: space-between;
}


/*---- Lists ----*/
.list-standard {
 list-style: none;
 padding-left: 0;
 margin: 0;
}
.list-standard li {
 position: relative;
 padding-left: 1.25em;
 margin-bottom: 0.5rem;
 line-height: 1.6;
}
.list-standard li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.585em;
 width: 0.5em;
 height: 0.5em;
 background-color: var(--color-accent-darker);
 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 dotted 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-health-dark);
 color: var(--color-health-dark);
 border-radius: 50%;
 font-size: 0.9em;
 font-weight: bold;
 text-align: center;
 line-height: 1.5em;
}


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

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


.title {
 position: relative;
 margin-bottom: 40px !important;
 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 {
 padding: 30px 34px;
 background: var(--color-cream);
 border: 1px solid var(--color-blue-normal);
 text-align: center;
 border-radius: 4px;
 box-sizing: border-box;
}
.box-secondary {
 padding: 60px 30px 80px;
 background: var(--color-health-lighter);
}

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

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

.box-warning {
 display: flex;
 padding: 30px 34px;
 width: 100%;
 flex-direction: column;
 background: var(--color-warning-light);
 border: 1px solid var(--color-warning-normal);
 border-radius: 4px;
}
.box-warning ol li::before,
.box-warning ul li::before {
 background-color: var(--color-warning-normal);
}

.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;
  gap: 30px;
}
.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-cta {
 position: relative;
}
.btn-cta a {
 position: relative;
 display: inline-flex;
 justify-content: center;
 gap: 5px;
 padding: 22px 28px;
 min-width: 400px;
 color: var(--color-black) !important;
 font-size: 1.5rem;
 font-weight: 600;
 text-align: center;
 text-decoration: none;
 background: none; 
 border: 3px solid var(--color-secondary);
 border-radius: 60px;
 overflow: hidden;
 transition: color 0.3s ease;
}
.btn-cta a::before {
 content: "";
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 background: linear-gradient(320deg, #72BEC4 0%, #44A2A8 50%, #2E8288 100%);
 opacity: 0;
 z-index: 0;
 transition: opacity 0.5s ease;
}
.btn-cta a:hover::before {
 opacity: 1;
}
.btn-cta a .cta-text,
.btn-cta a::after {
 position: relative;
 z-index: 1;
}
.btn-cta a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 34px;
 width: 12px;
 height: 12px;
 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;
}
.btn-cta a:hover {
 color: var(--color-cream) !important;
 border: 3px solid var(--color-accent-lightest);
}
.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-cta .cta-btn-text {
 z-index: 9;
}


@media screen and (max-width: 767.98px) {
 .btn-cta a {
  min-width: 100%;
  font-size: 1.25rem;
 }
 .btn-cta a::after {
  width: 12px;
  height: 12px;
 }
}


.btn-primary {
 display: flex;
 flex-direction: column;
}
.btn-primary a {
 position: relative;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 5px;
 padding: 16px 18px 20px;
 min-width: 320px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 600;
 text-align: center;
 text-decoration: none;
 border: 2px solid var(--color-secondary);
 border-radius: 60px;
 background: transparent;
 overflow: hidden;
 transition: color 0.4s ease;
}
.btn-primary a:hover {
 color: var(--color-accent-lightest);
 background: var(--color-secondary);
}
.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.4s ease, border-color 0.3s ease;
 z-index: 2;
}
.btn-primary a:hover .cta-arrow {
 border-color: var(--color-cream);
 transform: translate(4px, -50%) rotate(45deg);
}

.btn-primary.w-30 {
 width: 30%;
 margin: 0 auto;
}

@media screen and (max-width: 767.98px) {
 .btn-primary a {
  min-width: 100%;
  font-size: 1.25rem;
 }
 .btn-primary.w-30 {
  width: 100%;
 }
}

/* Button - Web */
.for-web a::before {
 content: "";
 display: inline-block;
 background: url(images/icon-contact-web-reserve.svg) center no-repeat;
 width: 28px;
 height: 28px;
 z-index: 9;
}
.for-web a:hover::before {
 background: url(images/icon-contact-web-reserve-hover.svg) center no-repeat;
}

.btn-reserve {
 background: var(--color-health-dark);
 background: hsla(13, 100%, 84%, 1);
 background: linear-gradient(280deg, hsla(13, 100%, 84%, 1) 0%, 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, hsla(182, 46%, 66%, 1) 0%, hsla(181, 53%, 64%, 1) 50%, rgb(87, 175, 177) 100%);
}

.btn-card a {
 display: block;
 padding: 18px 28px;
 color: var(--color-gray-dark);
 font-size: 1.125rem;
 font-weight: 600;
 text-align: center;
 text-decoration: none;
 background: linear-gradient(120deg, #F6E7A1, #EDBD5F, #CB9B44);
 background-size: 200% auto;
 background-position: left center;
 border: 1px solid #F6E5A1;
 border-radius: 4px;
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
 transition: background-position 0.4s ease, color 0.3s ease, transform 0.2s ease;
 cursor: pointer;
 -webkit-font-smoothing: antialiased;
}
.btn-card a:hover {
 color: var(--color-secondary);
 background-position: right center;
 transform: translateY(1px);
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

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

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


/* Cards */
.card {
 flex: 1;
}
.card-group,
.card-group-x3,
.card-group-x4 {
 display: flex;
 flex-wrap: wrap;
 gap: 30px;
 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-btn {
 margin-top: auto;
 text-align: center;
}
.card-img {
 margin-bottom: 15px;
 aspect-ratio: 1 / 0.65;
 border-radius: 4px;
 overflow: hidden;
}
.card-icon {
 width: 180px;
 height: 180px;
 margin: 0 auto;
 margin-bottom: 20px;
}
.card-icon img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}
.card-title {
 font-size: 1.125rem;
 font-weight: 600;
 color: var(--color-blue-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-blue-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 {
 margin: auto;
 width: 100%; 
 height: auto !important;
 border-spacing: 0;
}
.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 tbody tr:not(:first-child) td {
 border-top: none;
}
.table-primary 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) {
 border-left: none;
}
.table-primary thead th {
 background: #F1D8BB;
 border:1px solid #D7B295;
 border-bottom: 0;
}
.table-primary tfoot td {
 padding: 6px 0;
 border: none;
}

.table-primary time {
 display: flex;
 justify-content: center;
}
.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 {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
 }
 .table-primary table {
  font-size: 0.875rem;
 }
 .table-primary table td, th {
  width: auto !important;
 }
}


/***************************************
| Container
****************************************/
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767.98px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@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: sticky;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 background: var(--color-white);
 transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.inner #header {
 border-bottom: 1px solid var(--color-health-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 {
 position: relative;
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
}
#header-logo {
 width: 100%;
 max-width: 200px;
}
#header-logo a {
 display: flex;
 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;
 padding: 6px 20px 10px;
 flex-direction: row;
 align-items: center;
 gap: 6px;
 color: var(--color-black);
 font-size: 1.5rem;
 font-weight: 700;
 text-decoration: none;
 background: var(--color-accent-light);
 border-radius: 4px;
}
.phone-link:hover {
 background: var(--color-accent-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 {
 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,
.menu-item p {
 display: block;
 padding: 20px 0 28px;
 color: var(--color-black);
 text-decoration: none;
}
.menu-item a:hover,
.menu-item p:hover {
 color: var(--color-secondary);
}

/* Dropdown (Desktop) */
.pc-menu .menu-item.has-dropdown .dropdown {
 position: absolute;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-between;
 gap: 2%;
 padding: 20px 20px 30px;
 top: 72px;
 left: 0;
 width: 100%;
 min-height: 120px;
 background: var(--color-white);
 border: 1px solid var(--color-accent-lightest);
 border-radius: 0 0 3px 3px;
 box-shadow: 0px 1px 1px -2px rgb(144 144 144 / 5%), 0px 0px 6px rgb(144 144 144 / 5%), 0px 0px 20px rgb(144 144 144 / 5%);
 opacity: 0;
 visibility: hidden;
 transform: translateY(-10px);
 pointer-events: none;
 transition: opacity 0.2s ease, transform 0.4s ease;
 z-index: 9;
}
.pc-menu .menu-item.has-dropdown:hover .dropdown {
 display: flex;
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
 pointer-events: auto;
}
.pc-menu .menu-item.has-dropdown .drop-thumb {
 flex-basis: 20%;
 border-radius: 8px;
 overflow: hidden;
}
.pc-menu .menu-item.has-dropdown .drop-list {
 flex-basis: 77%;
}
.pc-menu .menu-item.has-dropdown .drop-list ul {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: space-between;
 gap: 15px;
 list-style: none;
}
.pc-menu .menu-item.has-dropdown .drop-list ul li {
 flex: 0 0 46%;
}
.pc-menu .menu-item.has-dropdown .drop-list ul li a {
 position: relative;
 display: block;
 padding: 0;
 padding-bottom: 10px;
 color: var(--color-black);
 font-size: 1.125rem;
 text-decoration: none;
 transition: all 0.3s ease;
 border-bottom: 1px dashed var(--color-gray-normal);
}
.pc-menu .menu-item.has-dropdown .drop-list ul li a:hover {
 color: var(--color-accent-dark);
}
.pc-menu .menu-item.has-dropdown .drop-list ul li a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 8px;
 width: 8px;
 height: 8px;
 border: solid var(--color-black);
 border-width: 2px 2px 0 0;
 transform: translateY(-50%) rotate(45deg);
 transition: transform 0.3s ease, border-color 0.3s ease;
}
.pc-menu .menu-item.has-dropdown .drop-list ul li a:hover::after {
 border-color: var(--color-accent-dark);
 transform: translate(2px, -50%) rotate(45deg);
}


/* Hamburger Button */
.btn-toggle {
 display: none;
 flex-direction: column;
 gap: 8px;
 min-width: 34px;
 cursor: pointer;
 z-index: 100;
}
.btn-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background: var(--color-gray-dark);
 transition: all 0.3s ease;
}
.btn-toggle.is-active span:nth-child(1) {
  transform: rotate(40deg) translate(5px, 5px);
}
.btn-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.btn-toggle.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;
}
.mobile-menu .menu-header {
 display: flex;
 justify-content: space-between;
 margin-bottom: 15px;
}
.mobile-menu .mobile-menu-list {
 font-size: 1.25rem;
 font-weight: 500;
 list-style: none;
}
.mobile-menu .mobile-menu-list li a {
 display: block;
 padding: 18px 0;
}
.mobile-menu .mobile-menu-list li a:hover,
.mobile-menu .mobile-menu-list li a:active {
 color: var(--color-accent-dark);
}
.mobile-menu .menu-item {
 border-bottom: 1px solid var(--color-gray-normal);
}
.mobile-menu .menu-item.has-dropdown > a {
 position: relative;
 padding-right: 30px;
}
.mobile-menu .menu-item.has-dropdown > a::before,
.mobile-menu .menu-item.has-dropdown > a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 6px;
 width: 16px;
 height: 2px;
 background: var(--color-accent-darkest);
 transform-origin: center;
 transition: transform 0.5s ease;
}

.mobile-menu .menu-item.has-dropdown > a::before {
 transform: translateY(-50%) rotate(0deg); 
}
.mobile-menu .menu-item.has-dropdown > a::after {
 transform: translateY(-50%) rotate(90deg); 
}
.mobile-menu .menu-item.has-dropdown.open > a::before {
 transform: translateY(-50%) rotate(45deg);
}
.mobile-menu .menu-item.has-dropdown.open > a::after {
 transform: translateY(-50%) rotate(135deg);
}
.mobile-menu .menu-item.has-dropdown > .dropdown {
 position: static;
 display: none;
 margin: 0; 
 padding: 10px 0 6px;
 width: 100%;
 background: transparent;
 border: 0;
 border-radius: 0;
 box-shadow: none;
 opacity: 1;
 pointer-events: auto;
 visibility: visible; 
 transform: none; 
}
.mobile-menu .menu-item.has-dropdown > .dropdown li a {
 position: relative;
 text-indent: 1em;
 border-top: 1px dashed var(--color-gray-normal);
}
.mobile-menu .menu-item.has-dropdown.open > .dropdown {
 display: block;
}

@media screen and (max-width: 991.98px) { 
 #header-main .header-row {
  padding: 8px 0;
 }
 #header-main #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;
 }
 #header-main {
  flex-direction: row;
 }
 #header-main #header-logo {
  flex: 1;
  z-index: 999;
 }
 #header-main .btn-toggle {
  display: flex;
 }
}


/***************************************
| Footer
****************************************/
#footer {
 padding: 15px 0 95px;
 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%;
 background: var(--color-accent-darkest);
 z-index: 990;
 opacity: 0;
 transition: opacity 0.6s ease, transform 0.6s ease;
}
.footer-cta-sticky .btn-group {
 display: flex;
 margin: 0 auto;
 align-items: center;
 flex-direction: row;
 gap: 30px;
}
.footer-cta-sticky .btn {
 display: flex;
 justify-content: center;
}
.footer-cta-sticky .btn a {
 display: inline-flex;
 position: relative;
 flex-direction: column;
 justify-content: center;
 padding: 22px;
 width: 100%;
 color: var(--color-white);
 font-size: 1.375rem;
 font-weight: 500; 
 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::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 40%;
 width: 10px;
 height: 10px;
 border-right: 3px solid var(--color-white);
 border-bottom: 3px solid var(--color-white);
 transform: translateY(-50%) translateX(-40%) rotate(315deg);
 transition: transform 0.3s ease, right 0.3s ease;
 z-index: 2;
}
.footer-cta-sticky .btn a:hover::after {
 right: 38%;
 border-right: 3px solid var(--color-accent-lightest);
 border-bottom: 3px solid var(--color-accent-lightest);
}
.footer-cta-sticky .btn a:hover {
 color: var(--color-accent-lightest);
}

.footer-cta-sticky .cta-wrap {
 display: flex;
 justify-content: center;
 gap: 8px;
}
.footer-cta-sticky .cta-wrap::before {
 content: "";
 display: inline-block;
 background: url(images/icon-contact-reservation.svg) center no-repeat;
 width: 34px;
 height: 34px;
 z-index: 9;
}

@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: 18px;
  font-size: 1.25rem;
 }
 .footer-cta-sticky .btn a::after {
  right: 8%;
  transform: translateY(-50%) translateX(-8%) rotate(315deg);
 }
 .footer-cta-sticky .btn a:hover::after {
  right: 6%;
 }
 .footer-cta-sticky .btn a .cta-wrap {
  word-break: auto-phrase;
 }
}


/***************************************
| Section - FV
****************************************/
.main-fv {
  position: relative;
  padding-top: 13.5em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 86vh;
  color: var(--color-gray-dark);
  box-sizing: border-box;
  overflow: hidden;
  background: url(images/img-fastcheck-main-fv-sp.webp) no-repeat center;
  background-size: cover;
  background-color: var(--color-accent-lightest)
}

/* Tablet: 768px and up */
@media screen and (min-width: 768px) {
 .main-fv {
   padding-top: 0;
   justify-content: center;
   align-items: flex-end;
   min-height: 46vh;
   background: url(images/img-fastcheck-main-fv-lg.webp) no-repeat 75% 20%;
   background-size: cover;
 }
}

/* Desktop: 1200px and up */
@media screen and (min-width: 1200px) {
 .main-fv {
   min-height: 50vh;
   background: url(images/img-fastcheck-main-fv-lg.webp) no-repeat center 10%;
   background-size: cover;
 }
}

/* Desktop: 1400px and up */
@media screen and (min-width: 1400px) {
 .main-fv {
   min-height: 54vh;
   background-position: center top;
   background-size: cover;
 }
}

/* Desktop: 1800px and up */
@media screen and (min-width: 1800px) {
 .main-fv {
   min-height: 56vh;
   background-position: center 28%;
   background-size: cover;
 }
}

.fv-title { 
 position: relative;
 color: var(--color-gray-dark);
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 3.5rem;
 text-align: left; 
 text-indent: -1.75rem;
 letter-spacing: -0.025em;
 line-height: 1.6;
 word-break: keep-all;
}
.fv-title span {
 display: block;
}
.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: 1.875rem;
  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: 80px 0;
}
.main-intro .wp-block-group__inner-container {
 position: relative;
 padding: 0 0 0 40px;
 isolation: isolate; 
 z-index: 1;
}
.main-intro .wp-block-group__inner-container h3 {
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 1.5rem;
 font-weight: 800;
 line-height: 1.8;
}
.main-intro .wp-block-group__inner-container .row-figure {
 position: relative;
 left: 50%;
 right: 50%;
 margin-left: -52vw;
 margin-right: -52vw;
 width: 100vw;
 max-width: 58vw;
 overflow: hidden;
border-radius: 0 18px 18px 0;
}
.main-intro .wp-block-group__inner-container .row-figure figure,
.main-intro .wp-block-group__inner-container .row-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@supports (aspect-ratio: 1 / 1) {
  .main-intro .wp-block-group__inner-container .row-figure figure {
    aspect-ratio: 16 / 9;  
    overflow: hidden;
  }
  .main-intro .wp-block-group__inner-container .row-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main-intro .wp-block-group__inner-container .row-text {
 background: var(--color-blue-lightest);
 padding: clamp(18px, 3vw, 48px);
 max-width: min(600px, 55%);
 border-radius: 22px;
 z-index: 2;
}

@media (min-width: 992px) {
  .main-intro .wp-block-group__inner-container .content-row {
    display: block; 
  }
  .main-intro .wp-block-group__inner-container .row-text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); 
  }
}
@media screen and (max-width: 991.98px) {
  .main-intro .wp-block-group__inner-container {
   padding: 0;
  }
  .main-intro .wp-block-group__inner-container .content-row {
    display: flex;            
    flex-direction: column;
    gap: 0;
  }
  .main-intro .wp-block-group__inner-container .row-text {
    position: static;
    transform: none;
    max-width: 100%;
    margin: 0 auto;
  }
  .main-intro .wp-block-group__inner-container .row-figure {
    margin-left: -45vw;
    margin-right: -45vw;
    width: 90vw;
    border-radius: 18px;
  }
  .main-intro .wp-block-group__inner-container .row-figure figure {
    aspect-ratio: 16 / 10;
  }
}

@media screen and (max-width: 767.98px) {
 .main-intro .wp-block-group__inner-container {
  padding: 0;
 }
 .main-intro .wp-block-group__inner-container .row-figure {
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 18px;
 }  
 .main-intro .content-row:nth-child(odd) {
  flex-direction: column-reverse;
 }
 .main-intro .content-row:last-child {
  margin-bottom: 30px;
 }
 .main-intro .content-row .row-text {
  position: relative;
  max-width: 100%;
  padding: 25px;
 }
}


/***************************************
| Section - About
****************************************/
.main-for {
 padding: 80px 0;
 background: var(--color-cream);
}
.main-for .content-row.by-3 {
 text-align: center;
 gap: 80px;
}
.main-for .content-row.by-3 .row-item {
 flex: 1 1 calc(33.333% - var(--gap));
 min-width: 0;
 box-sizing: border-box;
 overflow: hidden; 
}
@media screen and (max-width: 767.98px) {
 .main-for {
  padding: 60px 0;
 }
 .main-for .content-row.by-3 .row-item {
  flex: 1 1 auto;
  flex-basis: auto !important;
 }
}


/***************************************
| 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 - CTA
****************************************/
.main-cta {
 position: relative;
 padding: 40px 0;
 text-align: center;
 background: hsla(185, 36%, 57%, 1);
 background: linear-gradient(0deg, hsla(185, 36%, 57%, 1) 0%, hsla(183, 47%, 77%, 1) 50%, hsla(183, 47%, 77%, 1) 100%);
 background: -moz-linear-gradient(0deg, hsla(185, 36%, 57%, 1) 0%, hsla(183, 47%, 77%, 1) 50%, hsla(183, 47%, 77%, 1) 100%);
 background: -webkit-linear-gradient(0deg, hsla(185, 36%, 57%, 1) 0%, hsla(183, 47%, 77%, 1) 50%, hsla(183, 47%, 77%, 1) 100%);
}
.main-cta .btn-cta::before {
 content: "";
 display: block;
 position: absolute;
 left: 20%;
 bottom: -2.5em;
 width: 10em;
 height: 12em;
 background-image: url(images/img-fastcheck-cta.webp);
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
 z-index: 1;
}
.main-cta p {
 margin-bottom: 20px;
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 1.75rem;
 font-weight: 600;
}
@media screen and (max-width: 991.98px) {
 .main-cta .btn-cta::before {
  left: -5%;
 }
}
@media screen and (max-width: 767.98px) {
 .main-cta .btn-cta {
  display: flex;
  justify-content: flex-end;
 }
 .main-cta .btn-cta::before {
  left: -1.4em;
  bottom: -2.5em;
  width: 7em;
  height: 11em;
 }
 .main-cta .btn-cta a {
  min-width: 245px;
 }
 .main-cta .btn-cta a::after {
  right: 30px;
  width: 9px;
  height: 9px;
  border-width: 2px 2px 0 0;
 }
}


/***************************************
| Section - Service Menu
****************************************/
.main-service {
 padding: 60px 0;
}
.main-service .service-item {
 gap: 0;
}
.main-service .service-item .item-wrap {
 padding: 60px;
 background: var(--color-accent-lightest);
}
.main-service .service-item .item-img,
.main-service .service-item .item-description {
 flex-basis: 50%; 
 border-radius: 18px;
 overflow: hidden;
}
.main-service .service-item .item-img figure {
 height: 100%;
}
.main-service .service-item .item-img figure img {
 display: block;
 width: 100%;
 height: 100% !important;
 object-fit: cover;
 box-sizing: border-box;
}
.main-service .service-item .item-description h3 {
 margin-bottom: 10px;
}

@media screen and (max-width: 767.98px) {
 .main-service {
  padding: 60px 0 40px;
 }
 .main-service .service-item .item-wrap {
  padding: 32px 30px 38px;
 }
 .main-service .service-item .item-img {
  border-radius: 18px 18px 0 0;
  order: -1;
 }
 .main-service .service-item .item-description {
  border-radius: 0 0 18px 18px;
 }
}


/***************************************
| Section - Column
****************************************/
.main-column {
 padding: 80px 0;
 border-top: 1px solid var(--color-accent-lightest);
}
.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-accent-lightest);
}
.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;
}
.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::after {
 right: 16px;
 border-right: 2px solid var(--color-accent-lightest);
 border-bottom: 2px solid var(--color-accent-lightest);
}
@media screen and (max-width: 767.98px) {]
 .main-column {
  padding: 60px 0;
 }
 .news-list {
  gap: 20px;
 }
 .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 (TOP)
****************************************/
.main-flow {
 padding: 80px 0;
 background: var(--color-health-lightest);
}
.main-flow .content-col {
 position: relative;
 padding-left: 10rem;
 justify-content: center;
 align-items: center;
 gap: 25px;
 counter-reset: step;
}
.main-flow .content-col::before {
 content: '';
 background-color: #A6C4A8;
 position: absolute;
 bottom: 0;
 top: 20px;
 left: 6%;
 width: 3px;
 min-height: 105%;
 z-index: 0;
}
.main-flow .flow-item { 
 position: relative;
 height: 200px;
 align-items: center;
 justify-content: space-between;
 gap: 2%;
 background: var(--color-health-light);
 counter-increment: step;
}
.main-flow .flow-item::before {
 content: counter(step);
 position: absolute;
 left: -100px;
 top: 0;
 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-health-dark);
 border-radius: 50%;
 z-index: 9;
}

.main-flow .flow-title {
 margin-bottom: 10px;
}
.main-flow .flow-content {
 position: relative;
 display: flex;
 align-self: flex-start;
 padding: 30px 35px;
 flex: 0 0 68%;
 flex-direction: column;
 justify-content: flex-start;
}
.main-flow .flow-image {
 display: flex;
 flex: 0 0 30%;
 align-items: center;
 justify-content: center;
 max-height: 100%;
 overflow: hidden;
}
.main-flow .flow-image.img-full img { 
 object-fit: cover;
}
.main-flow .flow-image.img-padded img { 
 padding: 20px;
}
.main-flow .flow-image.bottom img { 
 object-position: bottom;
}
.main-flow .flow-image img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}
@media screen and (max-width: 1199.98px) {
 .main-flow .content-col {
  padding-left: 8rem;
 }
 .main-flow .flow-item::before {
  left: -90px;
 }
}
@media screen and (max-width: 767.98px) {
 .main-flow {
  padding: 60px 0;
 }
 .main-flow .content-col {
  padding-left: 0;
  gap: 60px;
 }
 .main-flow .content-col::before {
  top: 0;
  left: 50%;
  transform: none;
 }
 .main-flow .flow-item {
  width: 100%;
  height: auto;
  max-height: 100%;
  flex-direction: column !important;
  gap: 0;
  overflow: visible;
 }
 .main-flow .flow-item::before {
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 2;
 }
 .main-flow .flow-content {
  flex: 0 0 100%;
  width: 100%;
  padding: 20px 25px 25px;
  justify-content: center;
  align-self: center;
 }
 .main-flow .flow-title {
  text-align: center;
 }
 .main-flow .flow-image {
  order: -1;
  flex: 0 0 100%;
  max-height: 250px;
  align-items: flex-start;
 }
 .main-flow .flow-image img {
  object-position: top;
 }
}

/***************************************
| Section - Flow (Inner)
****************************************/
.inner-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}
.inner-flow .flow-step {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px 20px 20px 105px;
  background-color: var(--color-accent-lightest);  
  border: 1px solid var(--color-accent-normal);
  border-radius: 8px;
}
.inner-flow .flow-step::after {
  content: '';
  position: absolute;
  left: 50%;  
  bottom: -26px;
  width: 14px;
  height: 14px;  
  transform: translateX(-50%) rotate(-45deg);
  border-left: 3px solid var(--color-accent-dark);
  border-bottom: 3px solid var(--color-accent-dark);
}
.inner-flow .flow-step.last::after {
  display: none;
}
.inner-flow .step-number {
  position: absolute;  
  top: 20px;
  left: 20px;
  padding: 4px 10px;
  font-size: 1rem;  
  font-weight: bold;
  color: var(--color-white);  
  background-color: var(--color-accent-darker);
  border-radius: 4px;
}
.inner-flow .step-content h4 {
  margin-top: 0;  
  color: var(--color-accent-darker);
  font-size: 1.2rem;
}
.inner-flow .step-content p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.6;
}



/***************************************
| Section - FAQ
****************************************/
.main-faq {
 padding: 80px 0;
}

.details-content {
 position: relative;
 padding: 25px 40px;
 transition: max-height 0.5s ease;
}
.details-content p::before {
 content: "A.";
 position: absolute;
 top: 22px;
 left: 18px;
 font-size: 1.125rem;
 font-weight: 600;
}

details {
 position: relative;
 margin: 0 auto;
 margin-bottom: 20px;
 width: 100%;
 max-width: 1000px;
 border: 1px solid var(--color-secondary);
 border-radius: 4px;
}
details:nth-of-type(2n) {
 border: 1px solid var(--color-health-dark);
}

details summary {
 position: relative;
 padding: 16px 44px 16px 16px;
 font-size: 1.125rem;
 font-weight: 600 !important;
 line-height: 1.35;
 list-style: none !important;
}
details summary strong {
 font-weight: 600 !important;
} 
details summary::marker {
 content: "";
 display: none;
}
details summary::marker,
details summary::-webkit-details-marker { 
 display: none; 
}
details summary:before,
details summary:after {
 content: "";
 display: block; 
 position: absolute;
 top: calc(50% - 1.5px);
 right: 16px; 
 width: 16px;
 height: 2px;
 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:nth-of-type(2n) summary {
 color: var(--color-black); 
 background: var(--color-health-light);
}
details:nth-of-type(2n - 1) summary {
 color: var(--color-black); 
 background: var(--color-accent-light);
}

details:nth-of-type(2n) h2,
details:nth-of-type(2n) h3 {
 color: var(--color-secondary);
}
details:last-of-type {
 margin-bottom: initial;
}
details[open] a.res {
 width: calc(100% - 2rem);
 max-width: 450px;
 margin: 1rem auto;
}
details:nth-of-type(2n) a:first-of-type {
 border: 1px solid var(--color-secondary);
 color: var(--color-secondary);
}
details:nth-of-type(2n-1) a {
 border: 1px solid var(--color-secondary);
 color:var(--main-color);
}
details[open] h3 {
 padding: initial;
 border: initial;
 margin-top: 1.6rem;
}
details[open] figure {
 margin: 1rem auto;
}
details[open] figure iframe {
 width: 100%;
}
details .wp-block-table .has-fixed-layout td,
details .wp-block-table .has-fixed-layout th {
 border-left: initial;
 border-right: initial;
}
details .wp-block-table,
details figure {  
 margin: 0 auto;
 max-width: 800px;
}


.faq-item {
 position: relative;
 margin-bottom: 20px;
 border-radius: 4px;
 background: var(--color-accent-light);
 border: 1px solid var(--color-secondary);
}
.faq-item::before {
 content: "Q.";
 position: absolute;
 top: 20px;
 left: 18px;
 color: var(--color-accent-darkest);
 font-size: 1.25rem;
 font-weight: bold;
 line-height: 1.2;
}
.faq-item:nth-child(even) {
 background: var(--color-accent-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-accent-darkest);
}

.faq-item label::before,
.faq-item label::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 20px;
 width: 20px;
 height: 3px;
 background-color: var(--color-accent-darkest);
 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) {
  .main-faq {
   padding: 60px 0;
  }
  .main-faq .wp-block-columns {
   margin-bottom: 0 !important;
  } 

  details summary {
   text-indent: -25px;
   padding: 16px 44px 16px 44px; 
  }

  .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;
  }
}



/***************************************
| 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 {
 padding: 140px 0 100px;
 color: var(--color-black);
 background-size: cover;
 background-position: 50% 20%;
 background-repeat: no-repeat;
 background-color: #B8D6E0;
}
.page-heading .heading-title {
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 2.5rem;
}
.page-body {
 padding: 60px 0;
}
.page-body a {
 color: var(--color-blue-normal);
}

@media screen and (max-width: 767.98px) {
 .page-heading {
  padding: 130px 0 50px;
 }
 .page-heading .heading-title {
  font-size: 2rem;
 }
 .page-body {
  padding: 40px 0;
 }
}

/***************************************
| INNER - Page Body
****************************************/
.page-body .wp-block-heading.title {
 display: flex;
 justify-content: center;
 width: 100%;
}
.page-body .wp-block-separator {
 color: var(--color-gray-light);
 border-top: 1px solid;
}
.page-body .inner-wrap {
  margin: 60px 0;
}
.page-body .inner-figure {
 width: 100%;
 height: 460px;
 overflow: hidden;
}
.page-body .inner-figure img {
 height: 100%;
 object-position: center 70%;
}


/***************************************
| INNER - Clinic Information
****************************************/
.box-access iframe {
 margin-top: auto;
 padding-top: 20px;
 min-height: 320px;
}
.access-url {
 margin-bottom: 2rem;
}
.access-url .access-inner {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 width: 100%;
 max-width: 706px;
 margin: 1rem auto;    
}

.access-inner a {
 position: relative;
 display: inline-block;
 width: 45%;
 margin: 1%;
 padding: 1.1rem 0; 
 color: var(--color-black);
 font-weight: 500;
 text-align: center; 
 text-decoration: none; 
 background: var(--color-white);
 border: 1px solid #D1B694;
 border-radius: 4px;
 box-sizing: border-box;
 transition: all 0.5s ease;
}
.access-inner a:hover {
 background: #D1B694;
}
.access-inner {
 display: flex;
 justify-content: center;
 flex-wrap: wrap;
 width: 90%;
 max-width: 706px;
 margin: 0rem auto;
}
.access-subtitle {
 text-align: center;
}
.access-text {
 margin-top: 10px; 
 margin-bottom:30px;
 color: var(--color-black); 
 font-weight:normal;
 line-height: 1.5rem;
 text-align: center;
}
.access-clinic iframe {
 height: 450px !important;
 margin: 2rem auto;
}

@media screen and (max-width: 767.98px) {
 .access-url .access-inner {
  margin: 1rem auto 0;
 }
 .access-url .access-inner .except {
  padding: 1.1rem 0 !important; 
 }
 .access-box .access-inner a {   
  padding: 0.8rem 0;
 }
 .access-box .access-inner span {
  font-size: 16px;
 }
 .access-url .access-inner a:not(.line-link) {   
  padding: 1.1rem 0;
  height: 60px;
 }
}

@media screen and (max-width: 376px){
 .access-url .access-inner a:not(.line-link) {
  width: 100%;
 }
 .access-url .access-inner .except {
  width: 100% !important;
 }
}

