@charset "UTF-8";

/***************************************
| Root Variables
****************************************/
:root {
  --color-primary: #E9A85A;    
  --color-secondary: #DF8338;   

  --color-accent-lightest: #FFEFDC;  
  --color-accent-light: #FFD198;  
  --color-accent-normal: #E2983D; 
  --color-accent-dark: #e07823;  
  --color-accent-darker: #C56618; 
  --color-accent-darkest: #754319;

  --color-red-lightest: #FFF0ED;
  --color-red-lighter: #FFC1B5;
  --color-red-normal: #FFA290;

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

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

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

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

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

h2 {
 margin-bottom: 20px !important; 
 color: var(--color-secondary); 
 font-size: 2.125rem; /* 34px */
 font-weight: 500 !important;
 font-family: "Noto Serif JP", "Shippori Mincho",  "MS Mincho", serif;
}

.main-content h2 {
 text-align: center;  
}

h3 { 
 margin-bottom: 20px;
 padding-bottom: 10px;
 color: var(--color-accent-darkest); 
 font-size: 1.5rem; /* 24px */
 font-weight: 500;
 border-bottom: 1px dashed var(--color-gray-normal);
}
h3::before {
 content: "◎";
 margin-right: 6px;
}

h4 {
 margin-bottom: 15px;
 color: var(--color-secondary);
 font-size: 1.25rem; /* 20px */
 font-weight: 600;
}
h5 {
 margin-bottom: 5px;
 font-size: 1.125rem;
 font-weight: 600;
}

a {
 color: var(--color-secondary);
 text-decoration: none;
 transition: all 0.5s ease;
}
a:hover {
 color: var(--color-accent-darker);
}
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; }

.mb--6,
.my--6 {
  margin-bottom: -3.75rem; }

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


/*---- 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;
}

@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-around {
 justify-content: space-around;
}
.justify-between {
 justify-content: space-between;
}


/*---- Lists ----*/
ul {
 list-style: none;
 padding-left: 0;
 margin: 0;
}
ul li {
 position: relative;
 padding-left: 1.25em;
 margin-bottom: 0.5rem;
 line-height: 1.6;
}
ul li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.55em;
 width: 0.5em;
 height: 0.5em;
 background-color: var(--color-accent-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 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;
 padding-bottom: 20px;
 text-align: center;
}
.title.special {
 margin-bottom: 20px;
 font-size: 2.125rem;
}
@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-banner {
 position: relative;
 display: flex;
 justify-content: center;
 padding: 32px;
 color: var(--color-accent-darkest);
 text-decoration: none;
 background-color: var(--color-cream);
 border: none;
 border-radius: 4px;
 cursor: pointer;
 transition: color 0.4s ease; 
 z-index: 1;
}
.box-banner::before {
 content: "";
 position: absolute;
 inset: 0;
 padding: 3px;
 background: linear-gradient(135deg, #EDBD5F, #8B6B2D);
 mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
 -webkit-mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
 mask-composite: exclude; 
 -webkit-mask-composite: xor;
 border-radius: 4px;
 z-index: -1;
}
.box-banner::after {
 content: "";
 position: absolute;
 top: 6px;
 left: 6px;
 right: 6px;
 bottom: 6px;
 padding: 2px;
 background: var(--color-cream);
 /*background: linear-gradient(135deg, #8B6B2D, #EDBD5F);*/
 mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
 -webkit-mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
 mask-composite: exclude; 
 -webkit-mask-composite: xor;
 border-radius: 1px;
 z-index: -2;
}
.box-banner a {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 color: var(--color-black);
 text-align: center;
 font-size: 1.875rem;
 font-weight: 600;
 border-radius: 4px;
 animation: animate 16s linear infinite;
 transition: background-position .5s ease-in-out;
}
.box-banner a::after {
 content: "";
 position: absolute;
 right: 0;
 bottom: 0;
 transform: rotate(360deg);
 width: 20px;
 height: 20px;
 border-right: 3px solid var(--color-black);
 border-bottom: 3px solid var(--color-black);
 transition: transform 0.3s ease, right 0.3s ease;
 z-index: 2;
}
.box-banner a:hover::after {
 right: -4px;
}
.box-banner a span:first-child {
 flex: 0 0 26%;
}
.box-banner a span {
 flex: 0 0 14%;
 vertical-align: bottom;
}
.box-banner a span img {
 width: 100%;
 height: 100%;
}
@media screen and (max-width: 991.98px) {
 .box-banner a span:last-child {
  flex: 0 0 25%;
 }
}
@media screen and (max-width: 767.98px) {
 .box-banner a {
  flex-direction: column;
 }
 .box-banner a span:first-child {
  margin-bottom: 10px;
 }
}


/*---- 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-base {
 position: relative;
 display: inline-block;
 width: 100%;
 max-width: 420px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 700;
 text-decoration: none;
 text-align: center;
 padding: 14px 14px 16px; 
 background-color: transparent;
 border: 2px solid var(--color-blue-normal);
 border-radius: 4px;
 transition: all 0.5s ease;
}
.btn-base:hover {
 color: var(--color-cream);
 background-color: var(--color-blue-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;
 overflow: hidden;

 background: none;
 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: 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;
}

.btn-cta a:hover {
 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;
}
.btn-primary a {
 position: relative;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 5px;
 padding: 14px 22px;
 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: 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, #E3F0FA 0%, #B3D9F7 50%, #679BC5 100%);
 opacity: 0;
 transition: opacity 0.5s ease;
 z-index: 0;
}
.btn-primary .cta-btn-text {
 display: inline-block;
}
.btn-primary .cta-arrow {
 position: absolute;
 top: 50%;
 right: 26px;
 width: 12px;
 height: 12px;
 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;
 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);
}

/* 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;
}

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

.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 h3 {
 border-bottom: 1px dashed var(--color-accent-darkest);
}
.card h3::before {
 content: none;
}

.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) */
 padding: 28px 24px;
 background: var(--color-accent-lightest);
 border-radius: 4px; 
}
.card-group-x3 .card:nth-child(even) {
 background: var(--color-cream);
}
.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 (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: 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;
 gap: 1.5%; 
 flex-wrap: nowrap;
 align-items: center;
 justify-content: space-between;
}
#header-logo {
 width: 100%;
 max-width: 75px;
}
#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;
}

#header-buttons {
 margin-left: auto;
}
#header-buttons .content-row {
 gap: 0;
 background: var(--color-primary);
}
#header-buttons .content-row a:first-child::after {
 content: "";
 position: absolute;
 right: 0;
 width: 1px;
 height: 100%;
 background: var(--color-accent-light);
}

.phone-link {
 position: relative;
 display: flex;
 padding: 8px 16px 10px;
 flex-direction: row;
 align-items: center;
 gap: 6px;
 color: var(--color-black);
 font-size: 1.4rem;
 font-weight: 700;
 text-decoration: none;
 border-radius: 4px;
}
.phone-link:hover {
 color: var(--color-black);
 background: var(--color-accent-normal);
}
.phone-link::before {
 content: "";
 display: flex;
 width: 28px;
 height: 28px;
 background: url(images/icon-contact-phone.svg) no-repeat; 
}
.reserve-link {
 position: relative;
 display: flex;
 padding: 12px 18px;
 flex-direction: row;
 align-items: center;
 gap: 6px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 700;
 text-decoration: none;
 border-radius: 4px;
}
.reserve-link:hover {
 color: var(--color-black);
 background: var(--color-accent-normal);
}
.reserve-link::before {
 content: "";
 display: flex;
 width: 26px;
 height: 26px;
 background: url(images/icon-contact-web-reserve-dark.svg) no-repeat;
}


/* Desktop Menu */
.pc-menu,
.main-menu {
 display: flex;
 margin: 0;
 margin-left: auto;
 gap: 30px;
 list-style: none;
}
.pc-menu ul li::before, 
.main-menu ul li::before {
 content: none !important;
}
.main-menu .menu-item a {
 display: block;
 padding: 36px 0;
}
.menu-item {
 font-size: 1rem;
 font-weight: 500; 
 line-height: 1;
}
.menu-item a {
 color: var(--color-black);
 text-decoration: none;
}
.menu-item a:hover {
 color: var(--color-secondary);
}

/* Dropdown (Desktop) */
#header-navigation .menu-item {
 position: unset;
 padding: 0;
 margin: 0;
}
#header-navigation .menu-item .sub-menu {
 position: absolute;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 gap: 18px;
 padding: 25px 25px 30px;
 top: 85px;
 left: 0;
 width: 100%;
 list-style: none;
 background: rgb(255 255 255 / 95%);
 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;
}
#header-navigation .menu-item:hover .sub-menu {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
 pointer-events: auto;
}
#header-navigation .menu-item .sub-menu li {
 flex: 0 0 32%;
}
#header-navigation .menu-item .sub-menu li a {
 display: block;
 padding: 0;
 color: var(--color-black);
 text-decoration: none;
 transition: all 0.3s ease;
}
#header-navigation .menu-item .sub-menu li a:hover {
 color: var(--color-accent-darker);
}


/* Hamburger Menu */
.toggle-menu {
 display: none;
 flex-direction: column;
 align-items: center;
 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: 120px 25px 25px;
 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 {
 margin-bottom: 0;
}
.mobile-menu-list li a,
.mobile-menu-list li span {
 display: block;
 padding: 18px 0;
 color: var(--color-gray-dark);
 font-weight: 600;
 text-decoration: none;
 border-bottom: 1px solid var(--color-accent-light);
}
.mobile-menu-list li a:hover,
.mobile-menu-list li a:active {
 color: var(--color-blue-normal);
}
.mobile-menu-list > li::before {
 content: none;
}
.mobile-menu-list .sub-menu li::before {
 content: "";
 top: 50%;
 width: 14px;
 height: 2px;
 border-radius: 0;
}
.mobile-menu-list .sub-menu .menu-item {
 margin-bottom: 0;
 border-bottom: 1px dotted var(--color-gray-normal);
}
.mobile-menu-list .sub-menu .menu-item a {
 font-weight: 400;
 border-bottom: none;
}

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

@media screen and (max-width: 1199.98px) { 
 .pc-menu, .main-menu {
  gap: 20px;
 }
 .phone-link::before {
  width: 22px;
  height: 22px;
 }
}

@media screen and (max-width: 991.98px) { 
 #header {
  position: sticky;
 }
 #header-logo {
  max-width: 50px;
 }
 .pc-menu, .main-menu {
  gap: 15px;
 }
 .phone-link {
  font-size: 1rem;
 }
 .phone-link::before {
  width: 24px;
  height: 24px;
 }
 .reserve-link {
  padding: 4px 12px 8px;
  font-size: 1rem;
 }
}
@media screen and (max-width: 991.98px) {
  .pc-menu {
    display: none;
  }
  .toggle-menu {
    display: flex;
  }
  #header-main {
    flex-direction: row;
  }
  #header-main .header-row {
    padding: 8px 0;
    gap: 2%;
  }
  #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 {
 background: var(--color-gray-dark);
}
#footer .footer-content {
 color: var(--color-white);
 font-size: 0.875rem;
 text-align: center; 
}
#footer .footer-bottom {
 padding: 15px 0 90px;
}
.footer-menu {
 padding: 30px 0;
 border-bottom: 1px solid var(--color-gray-normal);
}
.footer-menu .footer-nav {
 display: flex;
 flex-direction: row;
 text-align: left;
}
.footer-menu .footer-nav > .menu-item {
 flex: 25%;
}

.footer-menu ul li::before {
 content: none !important;
}

.footer-menu .menu-item {
 color: var(--color-cream);
 list-style: none;
}
.footer-menu .menu-item a {
 line-height: 2;
 color: var(--color-gray-light);
}
.footer-menu .menu-item a:hover {
 color: var(--color-accent-light);
}
.footer-menu .sub-menu {
 position: relative;
}
.footer-menu .sub-menu .menu-item a::before {
 content: "ー";
 position: absolute;
 left: 0;
 opacity: 0.5;
}


/* Fixed CTA Button */
.footer-cta-sticky {
 position: fixed;
 left: 0;
 bottom: 0;
 width: 100%;
 background: linear-gradient(-45deg, #FF9878, #F9CAAB, #FFAE78, #F3C7BB, #E9A85A);
 background-size: 600%;
 border-radius: 2px;
 animation: animate 20s linear infinite;
 z-index: 990;
 opacity: 0;
 transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.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-gray-dark);
 font-size: 1.375rem;
 font-weight: 600; 
 text-align: center;
 text-decoration: none;
}
.footer-cta-sticky .btn a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 40%;
 width: 10px;
 height: 10px;
 border-right: 3px solid var(--color-gray-dark);
 border-bottom: 3px solid var(--color-gray-dark);
 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%;
}
.footer-cta-sticky .btn a:hover {
 color: var(--color-gray-dark);
}

@media screen and (max-width: 991.98px) {
 .footer-menu .menu-item:not(first-child) {
  flex: 30%;
 }
 .footer-cta-sticky .btn a::after {
  top: 52%;
  right: 36%;
 }
 .footer-cta-sticky .btn a:hover::after {
  right: 34%;
 }
}

@media screen and (max-width: 767.98px) {
 .footer-menu .footer-nav {
  flex-direction: column;
 }

 .footer-menu .footer-nav .menu-item {
  padding-top: 4px;
  padding-bottom: 4px;  
  border: none;
 }
 .footer-cta-sticky .container {
  padding-left: 0rem;
  padding-right: 0rem;
 }
 .footer-cta-sticky .btn-group {
  margin: auto;
  gap: 0;
 }
 .footer-cta-sticky .btn a::after {
  right: 6%;
 }
.footer-cta-sticky .btn a:hover::after {
  right: 38%;
}
 .footer-cta-sticky .btn a .cta-wrap {
  word-break: auto-phrase;
 }
}


/***************************************
| Breadcrumb
****************************************/
.breadcrumb {
  margin-bottom: 50px;
}
.breadcrumb a {
  position: relative;
  color: var(--color-accent-darkest);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb a::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--color-gray-normal);
  border-bottom: 2px solid var(--color-gray-normal);
  transform: translateY(-50%) rotate(315deg);
  z-index: 2;
}


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

.main-fv .fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}

/* Tablet: 768px and up */
@media screen and (min-width: 768px) {
  .main-fv {
    justify-content: center;
    align-items: flex-end;
    min-height: 50vh;
  }
}
/* Desktop: 1200px and up */
@media screen and (min-width: 1200px) {
  .main-fv .fv-bg {
    object-position: 40% 45%;
  }
}
/* Desktop: 1400px and up */
@media screen and (min-width: 1400px) {
  .main-fv .fv-bg {
    object-position: center 20%;
  }
}
/* Desktop: 1800px and up */
@media screen and (min-width: 1800px) {
  .main-fv .fv-bg {
    object-position: center 30%;
  }
}

.fv-content {
 text-align: right;
}
.fv-title { 
 position: relative;
 margin-bottom: 20px;
 color: var(--color-gray-dark);
 font-family: "IBM Plex Sans JP", sans-serif;
 font-size: 3.125rem;
 text-align: center; 
 letter-spacing: -0.025em;
 line-height: 1.4;
}
.fv-title span {
 color: #964646;
}
.fv-tagline {
 display: inline-flex;
 padding: 4px 100px 8px;
 font-family: "IBM Plex Sans JP", sans-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 - CTA
****************************************/
.main-cta {
 background: linear-gradient(45deg, var(--color-cream) 50%, var(--color-white) 100%);
}
.main-cta .btn-primary a {
 margin: 0 auto;
 max-width: 480px;
 padding: 24px 28px;
 background: linear-gradient(140deg, #E3F0FA 0%, #B3D9F7 60%, #679BC5 100%);
 background-size: 160%;
 border: 1px solid var(--color-black);
}
.main-cta .btn-primary a::after {
 background: linear-gradient(230deg, #E3F0FA 10%, #B3D9F7 70%, #679BC5 100%);
 background-size: 140%;
}
.main-cta .btn-primary a:hover .cta-arrow {
 border-color: var(--color-gray-dark);
}
.main-cta a .cta-btn-text {
 color: var(--color-black);
}


/***************************************
| Section - Contents
****************************************/
.main-content {
 padding: 80px 0;
}
@media screen and (max-width: 767.98px) {
 .main-content {
  padding: 60px 0;
 }
}

.main-content .wp-block-columns.main-inner {
 position: relative;

 left: 50%;
 right: 50%;
 width: 100vw !important;
 margin-left: -50vw;
 margin-right: -50vw;
}
.main-content .main-inner > div {
 margin: auto;
 max-width: 1280px;
}
.main-content .main-inner.main-target {
 background: var(--color-cream);
}


/***************************************
| Section - Column
****************************************/
.main-column {
 padding: 80px 0;
 border-top: 1px solid var(--color-gray-normal);
}
.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-gray-light);
 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-lightest);
 border: 1px solid var(--color-gray-normal);
 border-radius: 4px; 
 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;
 border: none;
}
.news-link { 
 position: relative;
 display: flex;
 justify-content: flex-end;
 margin-top: 40px;
}
.news-link a {
 position: relative;
 padding-left: 40px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 500;
 text-decoration: none;
 transform: translateX(-6px);
 transition: transform 0.3s ease, right 0.3s ease;
}
.news-link a::before {
 content: "→";
 position: absolute;
 display: inline-flex;
 top: 52%;
 left: 0;
 justify-content: center;
 align-items: center;
 width: 1.8em;
 height: 1.8em;
 border: 1px solid var(--color-gray-dark);
 border-radius: 20px;
 transform: translateY(-52%);
 transition: transform 0.3s ease, right 0.3s ease;
 z-index: 2;
}
.news-link a:hover {
 color: var(--color-accent-darkest);
 transform: translateX(0);
}
.news-link a:hover::before {
 background: var(--color-cream);
 border: 1px solid var(--color-accent-darkest);
}

@media screen and (max-width: 767.98px) {
 .main-column { 
  padding: 50px 0;
 }
 .news-list { 
  gap: 18px;
 }
 .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 - FAQ
****************************************/
.wp-block-details {
 position: relative;
 margin-bottom: 20px;
 border-radius: 4px;
 background: var(--color-white);
 border: 1px solid var(--color-secondary);
 box-sizing: border-box;
}

.main-content .main-inner.main-faq > div {
 max-width: 720px;
}

.details-body {
 padding: 30px 30px 60px;
}
.details-inner {
 position: relative;
 margin: 0;
 padding: 18px 16px 18px 50px;
 line-height: 1.6;
}
.details-inner::before {
 content: "A.";
 position: absolute;
 top: 15px;
 left: 0.95em;
 margin-right: 8px;
 color: var(--color-accent-darkest);
 font-size: 1.25rem;
 font-weight: bold;
 line-height: 1.4;
}

details summary {
 position: relative;
 padding: 16px 44px 16px 16px;
 font-size: 1.125rem;
 font-weight: 500 !important;
 line-height: 1.35;
 list-style: none !important;
}
details summary strong {
 font-weight: 500 !important;
}
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: 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:nth-of-type(2n) h2,
details:nth-of-type(2n) h3 {
 color: var(--color-secondary);
}
details:nth-of-type(2n) summary {
 color: var(--color-black); 
 background: var(--color-cream);
}
details:nth-of-type(2n - 1) summary {
 color: var(--color-black); 
 background: var(--color-accent-light);
}
details:last-of-type{
 margin-bottom:initial;
}
details[open] a.res {
 width: calc(100% - 2rem);
 max-width: 450px;
 margin: 1rem auto;
 border: 2px solid;
 padding: 1rem;
 display: block;
 text-align: center;
 border-radius: 99rem;
 text-decoration:none;
}
details:nth-of-type(2n) a:first-of-type {
 border-color: var(--color-secondary);
 color: var(--color-secondary);
}
details:nth-of-type(2n-1) a {
 border-color:var(--main-color);
 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;
}


/***************************************
| INNER - Page Heading
****************************************/
.page-heading {
 padding: 150px 0 60px;
 background: var(--color-health-light); 
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}
.page-heading .heading-title {
 font-family: "IBM Plex Sans JP", sans-serif;
 font-size: 2.5rem;
}
.page-body {
 padding: 60px 0;
}

@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 - Columns
****************************************/
.column-top .category-inner {
 padding: 60px 0 80px;
}
.column-top .category-content .post-list {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 gap: 0 2%;
 justify-content: space-between;
}
.column-top .category-content .post-list article {
 position: relative;
 width: 48%;
 border-bottom: 1px solid var(--color-gray-light);
}
.column-top .category-content .post-list article:nth-child(1), 
.column-top .category-content .post-list article:nth-child(2) {
 border-top: 1px solid var(--color-gray-light);
}

.column-top .category-content .post-list article a { 
 padding: 3%;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: flex-start;
 color: inherit;
 text-decoration: none;
 background: var(--color-white);
}
.column-top .category-content .post-list article a .post-thumbnail .post-category {
 position: absolute; 
 left: 14px;
 bottom: 14px;
 line-height: 100%;
}





.column-page .page-heading {
 background-image: url("https://www.hiro-clinic.or.jp/std/wp-content/uploads/2025/08/img-heading-general-scaled.webp");
}
.column-page .page-body {
 padding: 25px 0 60px;
}

.column-page .page-body .column-date {  
 display: inline-block; 
 margin: 0 0 30px; 
 font-size: 14px; 
}

.column-page .page-body figure {
 margin: 2.25rem auto;
 max-width: 800px;
 text-align: center;
 border-radius: 4px;
 overflow: hidden;
}
.column-page .page-body figure img {
 display: block;
 margin: 0 auto;
 max-width: 100%;
 height: auto;
}

.column-page .entry-content {
 width: 100%;
 margin: 0 auto;
}

.column-page .entry-content ul,
.column-page .entry-content p {
 padding: 0 0 1.5rem;
 line-height: 1.6;
}
.column-page .entry-content ol { 
 padding: 0 0 0 1.25rem;
}
.column-page .entry-content li {
 text-indent: -3rem; 
 padding-left: 3rem; 
}
.column-page .entry-content h1, 
.column-page .entry-title {
 margin-bottom: 5px !important;
 font-size: 2.5rem;
}
.column-page .entry-content h2 {
 margin: 3rem 0 1rem;
 font-size: 2rem;
}
.column-page .entry-content h3 strong {
 font-weight: 500;
}
.column-page .entry-content h4 {
 font-size: 1.5rem;
}
.column-page .entry-content h5 {
 font-size: 1.2rem;
}
.column-page .entry-content h6 {
 font-size: 1rem;
}
.column-page .entry-content h2:first-of-type,
.column-page .entry-content h3:first-of-type {
 margin-top: 0;
}



/***************************************
| WP Overrides
****************************************/
:where(.is-layout-flex) {
 gap: 0.95em;
}

/* For Top Page */
.main-content .wp-block-group.is-vertical > * {
 width: 100%;
}
.main-content .wp-block-group:first-child {
 margin-bottom: 60px;
 justify-content: center;
 align-items: center;
}

.main-content .wp-block-separator {
 margin: 60px 0;
 border: none;
 border-top: 1px solid var(--color-gray-normal) !important;
}

.wp-block-columns .wp-block-column figure {
 width: 100px;
 height: 100px;
 margin: 0 auto;
 margin-bottom: 20px;
}
.wp-block-columns .wp-block-column figure img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}

.wp-block-buttons .wp-block-button__link {
 padding: calc(.75em + 2px) calc(1.4em + 2px) calc(.85em + 2px) !important;
}

.wp-element-button:hover {
 color: var(--color-white);
 background: var(--color-black);
}

.wp-block-table td, 
.wp-block-table th {
 padding: 0.65em;
 border: 1px solid var(--color-gray-normal);
}
.wp-block-table .has-fixed-layout tr:first-of-type td {
 background: var(--color-cream);
}

/* For Inner Page */
.page-body .wp-block-separator {
 margin: 30px 0;
 border: none;
 border-top: 1px solid var(--color-gray-normal) !important;
}