@charset "UTF-8";

/***************************************
| Root Variables
****************************************/
:root {
  --color-primary: #EDBD5F;
  --color-secondary: #533D0D;
  
  --color-accent-light: #EFFAE2;
  --color-accent-normal:#D7E8C5;
  --color-accent-dark: #A1C181;
  --color-accent-darker:#668B40;
  --color-accent-darkest:#355516;

  --color-bronze-light: #B8914A;
  --color-bronze-normal:#8B6B2D;
  --color-bronze-dark:#332509;

  --color-cream: #F4F0E8;

  --color-light-gray: #EEE;
  --color-normal-gray: #D1D1D1;
  --color-dark-gray: #333;
  
  --color-white: #FFF;
  --color-black: #222;
}

/***************************************
| General - Colors
****************************************/
.primary-color { color: var(--color-primary); }
.secondary-color { color: var(--color-secondary); }


/***************************************
| Reset & Base
****************************************/
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 position: relative;
 font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif !important;
 font-size: 1rem;
}
body, input, select, optgroup, textarea {
 color: var(--color-black);
}
p {
 margin-bottom: 0;
}
a {
 transition: all 0.3s ease;
}

h3 {
 font-weight: 600;
 font-size: 1.5rem;
 line-height: 1.5;
}



/***************************************
| General
****************************************/
.d-sp {
 display: none;
} 
.d-pc {
 display: block;
}
@media screen and (max-width: 767.98px) {
 .d-sp {
  display: block;
 } 
 .d-pc {
  display: none;
 }
}

/* Additional settings for spacings */
.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; }

@media screen and (max-width: 767.98px) {
 .m-sm-6 {
   margin: 1.5rem !important; }
 .mt-sm-6,
 .my-sm-6 {
   margin-top: 1.5rem !important; }
 .mr-sm-6,
 .mx-sm-6 {
   margin-right: 1.5rem !important; }
 .mb-sm-6,
 .my-sm-6 {
   margin-bottom: 1.5rem !important; }
 .ml-sm-6,
 .mx-sm-6 {
   margin-left: 1.5rem !important; }

 .m-sm-7 {
   margin: 2rem !important; }
 .mt-sm-7,
 .my-sm-7 {
   margin-top: 2rem !important; }
 .mr-sm-7,
 .mx-sm-7 {
   margin-right: 2rem !important; }
 .mb-sm-7,
 .my-sm-7 {
   margin-bottom: 2rem !important; }
 .ml-sm-7,
 .mx-sm-7 {
   margin-left: 2rem !important; }
}

/*---- Animations ----*/
.animate-blob {
 width: 100%;
 max-width: 600px;
 aspect-ratio: 1 / 1;
 overflow: hidden;
 border-radius: 50%;
 animation: blob-morph 20s ease-in-out infinite;
 position: relative;
}
.animate-blob img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform 0.3s ease;
}
@keyframes blob-morph {
 0% {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
 }
 25% {
  border-radius: 50% 60% 70% 30% / 40% 60% 30% 70%;
 }
 50% {
  border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
 }
 75% {
  border-radius: 30% 70% 60% 40% / 50% 60% 40% 60%;
 }
 100% {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
 }
}

.fade-in-block {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-block.in-view {
 opacity: 1;
 transform: translateY(0);
}
.fade-in-item {
 opacity: 0;
 transform: translateY(20px);
}
.fade-in-item.in-view {
 animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
 from {
  opacity: 0;
  transform: translateY(20px);
 }
 to {
  opacity: 1;
  transform: translateY(0);
 }
}

.content-col {
 display: flex;
 position: relative;
 flex-direction: column;
}
.content-row {
 display: flex;
 position: relative;
 flex-direction: row;
 gap: 30px;
}
.content-row.align-center {
 align-items: center;
}
.content-row.justify-end {
 justify-content: flex-end;
}
@media screen and (max-width: 767.98px) {
 .content-row {
  flex-direction: column;
  gap: 20px;
 }
}


.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: 45px;
 color: var(--color-secondary); 
 text-align: center;  
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 2rem;
 font-weight: 600;
 z-index: 1;
}
.title.special {
 margin-bottom: 20px;
 font-size: 2.5rem;
}
.title::after {
 content: "";
 display: block;
 position: absolute;
 left: 50%;
 bottom: 0;
 width: 2px;
 height: 35px;
 background: linear-gradient(0deg, #EDBD5F, #B8914A, #8B6B2D);
}

@media screen and (max-width: 767.98px) {
  .title {
   margin-bottom: 20px;
   font-size: 1.75rem;
  }
  .title.special {
   font-size: 2.25rem;
  }
}

/*---- Box ----*/
.box-cream {
 background: var(--color-cream);
 border-radius: 4px;
 box-shadow: 0 4px 8px rgb(240 235 225 / 90%);
}
.box-white {
 background: var(--color-white);
 border-radius: 4px;
 box-shadow: 0 4px 8px rgb(225 210 150 / 90%);
}

/*---- Box (CTA) ----*/
.box-cta {
 display: flex;
 flex-direction: column;
 border-radius: 8px;
 text-align: center;
}
.box-cta .cta-head {
 margin-bottom: 20px;
 color: var(--color-secondary);
 text-align: center;
 font-size: 1.5rem;
 font-weight: 600;
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
}
.box-cta .btn {
 margin: 0 auto; 
}
.box-cta .btn a { 
 position: relative;
 display: flex;
 justify-content: center;
 min-width: 360px;
 padding: 12px 24px;
 color: var(--color-secondary);
 font-weight: 500;
 text-align: center;
 text-decoration: none;
 border-radius: 6px;
 background: var(--color-white);
 border: 1px solid var(--color-secondary);
 transition: all 0.5s ease;
}
.box-cta .btn a::before {
 content: none;
}
.box-cta .btn a:hover { 
 color: var(--color-white);
 background: var(--color-bronze-dark);
}
.box-cta .btn a:hover::after { 
 border-right: 3px solid var(--color-white);
 border-bottom: 3px solid var(--color-white);
}

@media screen and (max-width: 767.98px) {
 .box-cta .btn {
  width: 100%;
 }
 .box-cta .btn a {
  min-width: 100%;
 }
}



/*---- Buttons ----*/
.btn-group {
 display: flex;
 align-items: center;
 flex-direction: row;
 gap: 30px;
}
.btn-group .btn {
 flex: 1;
}
.btn a {
 display: block;
 padding: 16px 16px 18px;
 color: var(--color-black);
 font-size: 1.25rem;
 font-weight: 500;
 text-align: center;
 text-decoration: none;
 border-radius: 4px;
 transition: all 0.4s ease;
}
.btn a::before {
 content: "";
 width: 35px;
 height: 35px;
 vertical-align: middle;
}
.btn a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 20px;
 transform: translateY(-50%) rotate(315deg);
 width: 12px;
 height: 12px;
 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; 
}
.btn a:hover {
 color: var(--color-dark-gray);
 background-position: right center;
}
.btn a:hover::after {
 right: 16px; 
}

.btn-line a,
.btn-phone a {
 display: flex;
 position: relative;
 padding: 30px;
 text-align: left;
 line-height: 1.5; 
 flex-direction: row;
 align-items: center;
 justify-content: center; 
 gap: 15px;
 background: var(--color-white);
 border: 2px solid var(--color-secondary);
}
.btn-line a:hover {
 background-image: linear-gradient(135deg, #19DC69, #06C755, #04A747);
}
.btn-phone a:hover {
 background-image: linear-gradient(135deg, #FFCC66, #FFAA44);
}
.btn-line a::before {
 width: 38px;
 height: 38px;
 background-image: url('assets/img/icon-contact-line.svg');
 background-repeat: no-repeat;
 background-size: contain;
}
.btn-phone a::before {
 background-image: url('assets/img/icon-contact-phone.svg');
 background-repeat: no-repeat;
 background-size: contain;
}

.btn-shop {
 width: 100%;
}
.btn-shop a {
 position: relative; 
 display: flex;
 flex-direction: row;
 justify-content: center;
 gap: 15px; 
 width: 100%;
 padding: 25px;
 text-align: left;
 line-height: 1.725;
 background: var(--color-white);
 border: 2px solid var(--color-primary);
 border-radius: 2px;
}
.btn-shop a:hover {
 color: var(--color-bronze-dark);
 background-image: linear-gradient(135deg, #FFDB93, #EDBD5F);
 background-position: unset;
}
.btn-shop a::before {
 width: auto;
}
.btn-shop a::after {
 top: unset;
 bottom: 10px;
 right: 10px;
 transform: translateY(-50%) rotate(0deg);
}

.shop-qoo010 a::before {
 width: 100px;
 margin: 0;
 background-image: url('assets/img/icon-shop-qoo10.png');
 background-position: center center;
 background-repeat: no-repeat;
 background-size: contain;
}
.shop-yahoo a::before {
 width: 140px;
 margin: 0;
 background-image: url('assets/img/icon-shop-yahoo.png');
 background-position: center center; 
 background-repeat: no-repeat;
 background-size: contain;
}


.btn-bordered {
 position: relative;
 display: flex;
 justify-content: center;
 padding: 12px 24px;
 color: var(--color-bronze-dark);
 text-decoration: none; 
 background-color: var(--color-cream);
 border: none; 
 border-radius: 4px;
 cursor: pointer;
 z-index: 1;
 transition: color 0.4s ease;
}
.btn-bordered a {
 position: relative;
 padding: 8px;
 width: 100%;
 font-size: 1.375rem;
 border-radius: 4px; 
 animation: animate 16s linear infinite;
 transition: background-position .5s ease-in-out;
}
.btn-bordered a:hover {
 background-position: 100% 50%;
}
.btn-bordered a::after {
 right: 6px;
}
.btn-bordered a:hover::after {
 right: 10px;
}
.btn-bordered::before {
 content: "";
 position: absolute;
 inset: 0;
 padding: 3px;
 background: linear-gradient(135deg, #EDBD5F, #8B6B2D);
 -webkit-mask:
  linear-gradient(#FFF 0 0) content-box,
  linear-gradient(#FFF 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 border-radius: 4px;
 z-index: -1;
}
.btn-bordered::after {
 content: "";
 position: absolute;
 top: 6px;
 left: 6px;
 right: 6px;
 bottom: 6px;
 padding: 2px;
 background: linear-gradient(135deg, #8B6B2D, #EDBD5F);
 -webkit-mask:
  linear-gradient(#FFF 0 0) content-box,
  linear-gradient(#FFF 0 0);
 -webkit-mask-composite: xor;
 mask-composite: exclude;
 border-radius: 1px;
 z-index: -2;
}
.btn-bordered:hover {
 color: var(--color-secondary);
}


.btn-card a {
 display: block;
 padding: 18px 28px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 500;
 text-align: center;
 text-decoration: none;
 background: linear-gradient(120deg, #F6E7A1, #EDBD5F, #E6A125);
 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-black);
 background-position: right center;
 transform: translateY(1px);
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767.98px) {
 .btn-group {
  flex-direction: column;
  gap: 20px;
 }
 .btn-group .btn,
 .btn-group.in-box .btn {
  width: 100%;
 }
 .btn-group.in-box {
  padding: 20px;
  flex-direction: column;
 }
 .btn a {
  font-size: 1.125rem;
 }
 .btn-bordered {
  padding: 18px 4px;
 }
 .btn-bordered a {
  padding: 0;
  font-size: 1rem;
 }
 .btn-bordered a::before,
 .btn-bordered a::after {
  content: none;
 }
 .btn-line a,
 .btn-phone a {
  padding: 15px;
 }
 .btn-line a::before,
 .btn-phone a:before {
  width: 30px;
  height: 30px;
  margin-right: 0;
 }
}


/* Cards */
.card {
 display: flex;
 flex-direction: column;
}
.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-head {
 margin-bottom: 20px;
 padding-bottom: 15px;
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 1.25rem;
 border-bottom: 1px solid var(--color-light-gray);
}

.card-review {
 min-height: 240px;
 padding: 70px 40px 30px;
 background-color: var(--color-white);
 border-radius: 4px;
 box-shadow: 0 3px 8px rgb(197 183 165 / 60%);
 transition: transform 0.3s ease;
}

.card-text {
 margin-bottom: 30px;
 color: var(--color-dark-gray); 
 font-size: 1rem;
 font-weight: normal;
 line-height: 1.75;
}
.card-title {
 margin-top: auto;
 font-size: 1.125rem;
 font-weight: 500;
 text-align: center;
}

.with-quote {
 position: relative;
 color: var(--color-secondary);
 font-size: 1.2rem;
 line-height: 1.6;
}
.with-quote::before {
 content: "“";
 position: absolute;
 left: 28px;
 top: 40px;
 color: var(--color-secondary);
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 5.5rem;
 line-height: 0.5;
}
.with-quote::after {
 content: "”";
 position: absolute;
 right: 40px;
 bottom: -4px;
 color: var(--color-secondary);
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 5.5rem;
 line-height: 0.5;
}

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


/***************************************
| Container
****************************************/
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 760px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1401px) {
  .container {
    max-width: 1320px;
  }
}

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

/***************************************
| Header
****************************************/
#header {
 background-color: var(--color-white);
 border-bottom: 1px solid var(--color-light-gray);
}
#header-top {
 padding: 10px;
 color: var(--color-white);
 font-size: 0.875rem;
 font-weight: 500;
 background: var(--color-secondary);
}
#header-main .header-row {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: flex-start;
 gap: 30px;
 padding: 20px 0;
}
#header-logo {
 width: 100%;
 max-width: 200px;
}
#header-logo a {
 color: var(--color-black);
 font-size: 1.5rem;
 font-weight: bold;
 text-decoration: none;
}
#header-navigation {
 margin-left: auto;
}

.phone-link {
 position: relative;
 display: flex;
 flex-direction: row;
 align-items: center;
 gap: 6px;
 color: var(--color-secondary);
 font-size: 1.75rem;
 font-weight: 700;
 text-decoration: none;
}
.phone-link:hover {
 color: var(--color-bronze-normal);
}
.phone-link::before {
 content: "";
 display: inline-block;
 background: url('assets/img/icon-contact-phone.svg');
 width: 28px;
 height: 28px;
}


/* Desktop Menu */
.pc-menu,
.main-menu {
 display: flex;
 margin: 0;
 gap: 30px;
 list-style: none;
}
.main-menu li a {
 color: var(--color-dark-gray);
 font-weight: 500;
 text-decoration: none;
}
.main-menu li a:hover {
 color: var(--color-secondary);
}

/* Hamburger Menu */
.toggle-menu {
 display: none;
 flex-direction: column;
 gap: 4px;
 cursor: pointer;
}
.toggle-menu span {
 display: block;
 width: 25px;
 height: 3px;
 background: var(--color-dark-gray);
}

/* Mobile Menu */
.mobile-menu {
 display: none;
 position: absolute;
 top: 65px;
 left: 0;
 right: 0;
 padding: 20px;
 background: var(--color-white);
 border-top: 1px solid var(--color-light-gray);
 z-index: 999;
}
.mobile-menu.open {
 display: block;
}
.mobile-menu .menu-header {
 display: flex;
 justify-content: flex-end;
 margin-bottom: 15px;
}
.mobile-menu-list {
 list-style: none;
}
.mobile-menu-list li a {
 display: block;
 padding: 10px 0;
 color: var(--color-dark-gray);
 text-decoration: none;
}

@media (max-width: 767.98px) {
  #header-main .header-row {
   justify-content: space-between;
  }

  .pc-menu {
    display: none;
  }
  .toggle-menu {
    display: flex;
  }
  #header-main {
    flex-direction: row;
  }
  #header-logo {
    flex: 1;
  }
}

/***************************************
| Footer
****************************************/
#footer {
 padding: 15px 0 120px;
 background: var(--color-bronze-dark);
}
#footer .footer-content {
 color: var(--color-white);
 font-size: 0.875rem;
 text-align: center; 
}

/* Fixed CTA Button */
.footer-cta-sticky {
 position: fixed;
 left: 0;
 bottom: 0;
 width: 100%;
 z-index: 990;
 opacity: 0;
 transition: opacity 0.6s ease, transform 0.6s ease;
}
.footer-cta-sticky .btn-group {
 display: flex;
 margin: 10px auto;
 max-width: 840px;
 align-items: center;
 flex-direction: row;
 gap: 30px;
}

@media screen and (max-width: 767.98px) {
 .footer-cta-sticky .container {
  padding-left: 0rem;
  padding-right: 0rem;
 }
 .footer-cta-sticky .btn-group {
  margin: auto;
  max-width: 100%;
  gap: 0;
 }
}


/***************************************
| Base - Column
****************************************/
.category-content .post-list article a {
 border: 1px solid var(--color-bronze-normal);
 border-radius: 4px;
}
.category-content .post-list article a:hover {
 background: var(--color-cream);
 transform: none !important;
}
.category-content .post-list article a .post-thumbnail .post-category {
 position: absolute;
 top: 6px;
 right: 4px;
 line-height: 100%;
}
.category-content .post-list article a .post-thumbnail .post-category span {
 color: var(--color-black);
 background: var(--color-primary);
 border-radius: 2px;
}
.category-content .post-list article a .post-content .post-date span {
 font-size: 80%;
 font-weight: 500;
 color: var(--color-secondary);
}
.pagination .current {
 border-color: var(--color-secondary);
 background: var(--color-secondary);
 color: var(--color-cream);
}
.pagination a:hover, 
.pagination a:focus, 
.pagination a:active {
 border-color: var(--color-bronze-normal);
}

@media screen and (max-width: 767.98px) {
 .category-content .post-list article a .post-content {
  width: 52%;
  padding: 0 0 0 15px;
 }
 .category-content .post-list article a .post-content .entry-header .entry-title {
  font-size: 95% !important;
 }
 .category-content .post-list article a .post-thumbnail img {
  height: auto !important;
 }
}

/***************************************
| Section - FV
****************************************/
.main-fv {
 position: relative;
 display: flex;
 min-height: 60vh;
 align-items: center;
 justify-content: center;
 color: var(--color-dark-gray);
 background: url(https://www.hiro-clinic.or.jp/generio/wp-content/uploads/2025/05/img-generio-main-fv-scaled.webp) no-repeat top 70% right;
 background-size: 75%;
 background-color: var(--color-white);
}

.fv-content {
 text-align: center;
}
.fv-title { 
 position: relative;
 display: flex;
 justify-content: center;
 margin-bottom: 50px;
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 font-size: 4.5rem;
 background: linear-gradient(128deg, #FACA74, #D09E3E, #E4AD4B, #8B6B2D);
 background-clip: text;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 overflow: hidden;
}
.fv-title::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 200%;
 height: 100%;
 background: linear-gradient(128deg, transparent 70%, rgba(255, 255, 255, 0.15) 60%, transparent 50%);
 transform: skewX(-20deg);
 animation: shine 4s ease-out forwards;
 mix-blend-mode: screen;
 pointer-events: none;
}
@keyframes shine {
  to {
    left: 100%;
  }
}
.fv-scroll-more {
 display: inline-flex;
 min-width: 120px;
 min-height: 120px;
 flex-direction: column;
 justify-content: center;
 color: var(--color-secondary);
 font-size: 1rem;
 font-weight: 500;
 text-align: center;
 text-decoration: none;
 border: 1px solid var(--color-secondary);
 border-radius: 100%;
 transition: all 0.5s ease;
}
.fv-scroll-more:hover {
 color: var(--color-cream);
 background: var(--color-bronze-dark);
}

.fv-scroll-arrow {
 position: relative;
 width: 20px;
 height: 20px;
 margin: 0 auto;
 opacity: 0.8;
 animation: arrow-bounce 2.5s infinite ease-in-out;
}
.fv-scroll-arrow::before {
 content: '';
 position: absolute;
 top: 0;
 left: 50%;
 width: 14px;
 height: 14px;
 border-right: 2px solid var(--color-secondary);
 border-bottom: 2px solid var(--color-secondary);
 transform: translateX(-50%) rotate(45deg);
}

.fv-scroll-more:hover .fv-scroll-arrow::before  {
 border-right: 2px solid var(--color-white);
 border-bottom: 2px solid var(--color-white);
}

@keyframes arrow-bounce {
 0%, 100% {
  transform: translateY(0) rotate(0deg);
 }
 50% {
  transform: translateY(10px) rotate(0deg);
 }
}

@media (max-width: 991.98px) {
 .main-fv {
  min-height: 55vh;
  background: url(https://www.hiro-clinic.or.jp/generio/wp-content/uploads/2025/05/img-generio-main-fv-scaled.webp) no-repeat top 60% right 35%;
  background-size: cover;
 }
 .fv-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
 }
}

@media (max-width: 767.98px) {
 .main-fv {
  padding: 20px 0;
  min-height: 50vh;
  background: url(https://www.hiro-clinic.or.jp/generio/wp-content/uploads/2025/05/img-generio-main-fv-scaled.webp) no-repeat top right 20%;
  background-size: cover;
 }
 .fv-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
 }
 .fv-title {
  display: block;
  margin-bottom: 0;
  font-size: 2.5rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
 }
 .fv-title span {
  display: block;
 }
 .fv-scroll-more {
  padding: 8px 0 0;
  min-width: 100px;
  min-height: 100px;
  font-size: 0.875rem;
 }
}


/***************************************
| Section - Intro
****************************************/
.main-intro {
 position: relative;
 padding: 100px 0 0;
 background: var(--color-cream);
 overflow: hidden;
}
.main-intro .intro-row { 
 flex-wrap: wrap;
 justify-content: space-between;
 z-index: 99;
}
.main-intro .intro-row .text {
 text-align: center;
 line-height: 2;
} 
.main-intro .intro-visual {
 position: relative;
 width: 100%;
 height: 600px;
}
.main-intro .intro-visual .bg-image {
 background-image: url('https://www.hiro-clinic.or.jp/generio/wp-content/uploads/2025/05/img-generio-main-intro-scaled.webp');
 background-size: cover;
 background-position: center;
 width: 100%;
 height: 100%;
}
.main-intro .intro-visual .bg-wave {
 position: absolute;
 top: -40px;
 left: 0;
 width: 100%;
 height: 300px;
 z-index: 2;
}

@media (max-width: 767.98px) {
 .main-intro {
  padding: 40px 0 0;
 }
 .main-intro .intro-row { 
  flex-direction: column;
  text-align: left;
 }
 .main-intro .intro-visual {
  height: 500px;
 }
 .main-intro .intro-visual .bg-image {
  background-position: left 35% center;
 }
}


/***************************************
| Section - About
****************************************/
.main-about {
 position: relative;
 padding: 60px 0 100px;
 z-index: 0;
}
.main-about::before {
 content: '';
 position: absolute;
 top: -4%;
 left: -4%;
 width: 400px;
 height: 400px;
 background: #EDEAE4;
 border-radius: 50%;
 filter: blur(40px);
 animation: floatBlob 10s ease-in-out infinite alternate;
 z-index: 0;
}
@keyframes floatBlob {
 0% {
  transform: translate(0, 0) scale(1);
 }
 100% {
  transform: translate(20px, 20px) scale(1.1);
 }
}

.main-about figure { 
 margin: 0;
 width: 640px;
 height: 100%;
 overflow: hidden;
 transition: clip-path 2s ease-in-out;
}
.main-about figure img { 
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.main-about .subtitle {
 margin-bottom: 20px;
 font-family: "Shippori Mincho", "Shippori Mincho B1", serif;
 color: var(--color-accent-darkest);
}
.main-about .text {
 margin-bottom: 15px;
}
.main-about .content-row .row-item {
 flex: 1;
}
.main-about .content-row .row-item:first-child {
 z-index: 1;
}


@media (max-width: 767.98px) {
 .main-about {
  padding: 60px 0;
 }
 .main-about::before {
  content: none;
 }
 .main-about figure {
  margin: 0;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
 }
 .main-about .content-row .row-item:first-child {
  position: relative;
  display: flex;
  margin: 0 3%;
  margin-top: -60px;
  padding: 50px 0 0;
  flex-direction: column;
  transform: none;
  z-index: 2;
 }
}


/***************************************
| Section - Contents
****************************************/
.main-contents {
 position: relative;
 padding: 40px 0 80px;
 background-color: var(--color-cream);
}
.main-contents .card {
 align-items: center;
}
.main-contents .card figure {
 width: 200px;
 max-width: 200px;
}
.main-contents .contents-visual {
 position: relative;
 width: 100%;
}
.main-contents .contents-visual .bg-wave {
 position: absolute;
 top: -180px;
 left: 0;
 width: 100%;
 height: 180px;
 transform: rotateX(180deg);
 z-index: 2;
}

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


/***************************************
| Section - Product Line-up
****************************************/
.main-lineup {
 padding: 80px 0;
}

.card-product {
 position: relative;
 display: flex;
 margin-top: 120px;
 padding: 120px 25px 25px;
 flex-direction: column;
 background-color: var(--color-white);
 border-radius: 4px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.card-product .card-subtitle {
 margin-bottom: 10px;
 color: var(--color-bronze-normal);
 font-weight: 600;
}
.card-product figure {
 position: absolute;
 top: -18%;
 left: 50%; 
 margin: 0;
 transform: translateX(-50%);
}
.card-product figure img {
 margin: 0 auto;
 max-width: 140px;
}

.card-product.s-img figure {
 top: -78px;
}
.card-product.s-img figure img {
 max-width: 220px;
}

.card-product .btn-card {
 margin-top: auto;
}

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


/***************************************
| Section - CTA
****************************************/
.main-cta {
 position: relative;
 padding: 30px 0 35px;
 overflow: hidden;
 z-index: 1;
 background: var(--color-light-gray);
}


/***************************************
| Section - Customer Reviews
****************************************/
.main-review {
 position: relative;
 padding: 60px 0 70px;
 background-color: var(--color-cream);
 overflow: hidden;
}

.bg-blobs {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
 pointer-events: none;
 overflow: hidden;
}
.bg-blobs::before,
.bg-blobs::after {
 content: "";
 position: absolute;
 width: 500px;
 height: 500px;
 border-radius: 50% 60% 45% 55% / 55% 45% 60% 50%;
 opacity: 0.5;
 z-index: 0;
 animation: float 4s ease-in-out infinite alternate;
}
.bg-blobs::before {
 top: -5%;
 left: 0;
 background-color: #E6DFD3;
}
.bg-blobs::after {
 bottom: -10%;
 right: -5%;
 background-color: #D7C495;
 animation-delay: 2s;
}
@keyframes float {
 0% {
  transform: translateY(0) translateX(0);
 }
 100% {
  transform: translateY(-20px) translateX(20px);
 }
}


/***************************************
| Section - Column
****************************************/
.main-column {
 padding: 60px 0;
 border-bottom: 1px solid var(--color-normal-gray);
}
.news-list {
 display: flex;
 margin: 0;
 padding: 0;
 flex-direction: row;
 flex-wrap: wrap;
 gap: 30px;
 list-style: none;
}
.news-item {
 flex: 1 1 calc(50% - 15px);
}
.news-item a {
 display: flex;
 align-items: flex-start;
 padding: 16px 18px;
 text-decoration: none;
 border: 1px solid var(--color-bronze-normal);
 border-radius: 4px;
 height: 100%;
}
.news-item a:hover {
 background: var(--color-cream);
}
.news-item .news-thumb {
 width: 100px;
 height: 100px;
 margin-right: 20px;
 background: var(--color-accent-dark); 
 border: 1px solid var(--color-normal-gray);
 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: 4px;
 font-size: 1rem;
 font-weight: 500;
 color: var(--color-secondary);
}
.news-item .news-title {
 font-size: 1rem;
 line-height: 1.5;
 font-weight: 500;
}
.news-link { 
 position: relative;
 display: flex;
 justify-content: flex-end;
 margin-top: 40px;
}
.news-link a {
 position: relative;  
 padding-right: 40px;
 color: var(--color-black);
 font-size: 1.125rem;
 font-weight: 500;
 text-decoration: none;
 transition: all 0.3s;
}
.news-link a::after {
 content: "";
 position: absolute;
 top: 50%;
 right: 20px;  
 width: 12px;
 height: 12px;
 border-right: 3px solid var(--color-black);
 border-bottom: 3px solid var(--color-black);  
 transform: translateY(-50%) rotate(315deg);
 transition: transform 0.3s ease, right 0.3s ease;
 z-index: 2;
}
.news-link a:hover {
 color: var(--color-secondary);
}
.news-link a:hover::after {
 right: 16px;
}
@media (max-width: 767.98px) {
 .news-list {
  gap: 20px;
 }
 .news-item {
  flex: 1 1 100%;
 }
 .news-item:nth-child(2) {
  border-top: none;
 }
 .news-item a {
  padding: 14px;
  flex-direction: row;
  align-items: flex-start;
 }
 .news-item .news-thumb {
  margin-right: 15px;
 }
 .news-item .date {
  font-size: 0.875rem;
  margin-bottom: 4px;
 }
 .news-item .info {
  text-align: left;
  }
 .news-item .info {
  text-align: left;
  }  
 .news-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
 }
 .news-link {
  justify-content: center;
 }
 .news-item .info {
  text-align: center;
  }
}


/***************************************
| Section - FAQ
****************************************/
.main-faq {
 padding: 80px 0;
}
.faq-item {
 margin-bottom: 20px;
 border-radius: 4px;
 background: #B7D598;
 background: linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
 background: -moz-linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
 background: -webkit-linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
}
.faq-item input {
 display: none;
}
.faq-item label {
 position: relative;
 display: block; 
 padding: 20px 15px 20px 15px;
 color: var(--color-accent-darkest);
 font-size: 1.25rem;
 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-cream);
 border-radius: 0 0 4px 4px;
}
.faq-item .answer p {
 position: relative;
 margin: 0;
 padding: 15px 15px 25px 50px;
 line-height: 1.6;
}
.faq-item .answer p::before {
 content: "A.";
 position: absolute;
 top: 15px;
 left: 20px;
 color: var(--color-accent-darker);
 font-size: 1.25rem;
 font-weight: bold;
 line-height: 1.4;
}
.faq-item input:checked ~ .answer {
  max-height: 500px;
}

@media screen and (max-width: 767.98px) {
  .main-faq {
   padding: 40px 0;
  }
  .faq-item label {
    padding: 20px 50px 20px 20px;
    font-size: 1.25rem;
  }
  .faq-item label::before,
  .faq-item label::after {
    right: 18px;
  }
  .faq-item .answer p {
    font-size: 1.25rem;
  }
}


/***************************************
| Section - Shop
****************************************/
.main-shop {
 position: relative;
 padding: 60px 0 70px;
 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-shop .btn-group {
 flex-direction: column;
}
.main-shop .shop-item {
 flex: 1;
}
.main-shop .shop-item p {
 font-size: 1.125rem;
 text-align: center;
}
.main-shop .shop-item:last-child .text {
 margin-bottom: 20px;
 color: var(--color-secondary);
 font-size: 1.25rem;
 font-weight: 600;
}


/***************************************
| Section - Contact
****************************************/
.main-contact {
 padding: 60px 0;
 background: var(--color-cream); 
}
.main-contact .text {
 margin-bottom: 30px;
 font-size: 1.125rem;
 text-align: center;
}

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



/***************************************
| Inner
****************************************/
:not(.home) .title::after {
 margin: 0;
}
:not(.home) .title::after {
 content: none;
}
#page_banner {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 30vh;
 position: relative;
 text-align: center;
 flex-direction: column;
}
#page_banner .thumb_img {
 position: absolute;
 margin: 0;
 width: 100%;
 height: 100%;
 z-index: -1;
}
#page_banner .thumb_img img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
#page_banner .title-wrap {
 background: rgba(255, 250, 250, 0.8) !important;
 border-radius: 2px;
 box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}


/***************************************
| Inner - FAQ
****************************************/
.q-a {
 margin-bottom: 20px;
 cursor: pointer;
}
.q-a p {
 padding: 25px;
}
.q-a p:before {
 content: "A.";
 margin-right: 10px;
 color: var(--color-accent-darker);
 font-size: 1.25rem;
 font-weight: 700;
}
summary { 
 position: relative;
 padding: 20px 15px 20px 52px;
 color: var(--color-accent-darkest);
 font-size: 1.25rem;
 font-weight: bold;
 background: #B7D598;
 background: linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
 background: -moz-linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
 background: -webkit-linear-gradient(290deg, #B7D598 0%, #A1C181 100%);
}
summary::marker {
 content: "";
 display: none;
}
summary:before {
 content: "Q.";
 display: block;
 position: absolute;
 top: 18px;
 left: 25px;
 text-align: center;
 border-radius: 99rem;
}
.content {
 max-height: 0;
 opacity: 0; 
 overflow: hidden;
 background: var(--color-cream);
 transition: max-height 0.4s ease, opacity 0.4s ease;
}
details[open] .content {
 max-height: 1000px;
 opacity: 1;
}

details summary:after {
 transform: rotateZ(0deg);
 position: absolute;
 font-size: 28px;
 display: block;
 right: 0.5rem;
 top: calc(50% - 14px);
 content: "+";
 transition: transform 0.3s ease-out;
 height: 28px;
 width: 28px;
 line-height: 28px;
 text-align: center;
}
details[open] summary:after {
 transform: rotateZ(45deg);
}





/***************************************
| Inner - Column
****************************************/
.column-title {
 margin: 0 0 40px;
 text-align: center;
}
.category-content .post-list article a {
 display: flex;
 padding: 16px;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: flex-start;
 color: inherit;
 text-decoration: none;
 background: var(--color-white);
}
.category-content .pagination .nav-links { 
 display: flex; 
 flex-direction: row; 
 flex-wrap: wrap; 
 justify-content: center; 
 gap: 5px; 
}
.category-content .pagination .nav-links .page-numbers { 
 display: flex;
 padding: 0; 
 width: 40px;  
 height: 40px;
 text-align: center; 
 flex-direction: row; 
 flex-wrap: wrap; 
 justify-content: center; 
 align-items: center; 
 align-content: center; 
}
.category-content .pagination .nav-links .page-numbers:hover { 
 border-color: var(--color-bronze-normal);
}
.category-content .pagination .nav-links .page-numbers.current { 
 border-color: var(--color-secondary);
 background: var(--color-bronze-normal);
}
.category-content .pagination .nav-links .page-numbers.prev, 
.category-content .pagination .nav-links .page-numbers.next {
 min-width: auto;
 font-size: 1.6rem;
}


@media screen and (max-width: 767.98px) {
 .category-content .post-list article { 
  width: 100%;
 }
 .category-content .post-list article:nth-child(2) { 
  border-top: 0; 
 }
}