/* ==========================================================
Custom Variable Customization 
========================================================== */
:root {
  --common-product-slider-arrow-size: 5rem;
  --common-product-slider-arrow-top: 8.2rem;
}

@media screen and (min-width: 768px) {
  :root {
    --common-product-slider-arrow-top: min(10.7142857143svw, 15rem);
    --common-product-slider-arrow-top: 32%;
  }
}

@media (hover: hover) and (pointer:fine) {
  :where(a) {
    transition: opacity var(--transition-default);
  }
  :where(a):hover {
    opacity: 0.6;
  }
}

/* Global Header */
.global-header {
  --brand-logo-width: 19.5rem;
  --border-style: solid 1px #F4EFE4;
}

@media screen and (min-width: 768px) {
  .global-header {
    --brand-logo-width: min(21.4285714286svw, 30rem);
  }
  .global-header[data-stick-header] {
    position: sticky;
    top: calc(-1 * var(--height-header-primary));
  }
  .global-header .header__content-wrapper--primary .header__content-inner {
    width: 100% !important;
    padding-block: 1rem;
    padding-inline: min(2.8571428571svw, 4rem);
    padding-left: min(2.7142857143svw, 3.8rem) !important;
    padding-right: min(2.7142857143svw, 3.8rem) !important;
  }
  .global-header .header-primary__navigation-container .header-primary__navigation-contents-wrapper {
    column-gap: 3rem;
  }
}

.global-header__nav-item {
  --nav-icon-size: 2rem;

  text-decoration: none;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text-default);
  display: inline-flex;
  align-items: center;
  column-gap: 0.6rem;
}

.global-header__nav-item .global-header__nav-item-icon {
  display: inline-block;
  width: var(--nav-icon-size);
}

.global-header__nav-item.global-header__nav-item--button {
  font-weight: 500;
  color: var(--color-primary);
  min-width: 12rem;
  padding-inline: 1.5rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  border: 1px solid var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-header .header__content-wrapper--global-nav .header__content-inner {
  width: 100%;
  background-color: var(--color-secondary);
}

.global-nav__text--link {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.global-nav__text--link::after {
  background-color: var(--color-primary);
}

.hamburger-menu__toggle-button {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-content: center;
  justify-items: center;
  aspect-ratio: unset;
  border-radius: unset;
  top: 1rem !important;
  right: 1rem !important;
  translate: unset !important;
}
.hamburger-menu__toggle-button-inner {
  width: 3rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.3rem;
  padding: 0.5rem;
}
.hamburger-menu__toggle-button-inner > span {
  position: relative;
  top: unset !important;
  left: unset !important;
  right: unset !important;
  bottom: unset !important;
  margin: unset !important;
  height: 4px;
  border-radius: 2px;
}
.hamburger-menu__toggle-button-inner > span:nth-child(1) {
  background-color: var(--color-project-accent-blue);
}
.hamburger-menu__toggle-button-inner > span:nth-child(2) {
  background-color: var(--color-primary);
}
.hamburger-menu__toggle-button-inner > span:nth-child(3) {
  background-color: var(--color-project-accent-yellow);
}
.hamburger-menu__toggle-button-label {
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.global-nav__link-button {
  width: 100%;
  height: 3.5rem;
  border-radius: 1.75rem;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-family: var(--font-ja);
}
.global-nav__link-button-icon {
  display: block;
  width: 2rem;
  aspect-ratio: 1;
}
.global-nav__link-button--secondary {
  background-color: var(--color-project-bg-beige-bold);
  color: var(--color-text-default);
}
.global-nav__link-button--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
}
.global-nav__link-button--secondary .global-nav__link-button-label {
  font-weight: 500;
}
.global-nav__link-button--primary .global-nav__link-button-label {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .global-header .header__content-wrapper--global-nav .header__content-inner,
  .global-header__inner {
    background-color: var(--color-white);
  }
  .global-header .header__content-wrapper--primary {
    border-bottom: none;
  }
  .global-header__nav-item {
    --nav-icon-size: 3rem;
  }
  .global-header .header__content-wrapper--primary .header__content-inner {
    display: grid;
    grid-template-columns: max-content 1fr auto;
    padding-right: 0.5rem !important;
    border-bottom: unset;
  }
  .global-header__nav-item {
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
  }
  .global-header .header__content-wrapper--global-nav .header__content-inner {
    display: block;
    width: 100%;
    padding: 0 1.5rem 1rem;
  }
  .global-nav__content-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .global-nav__content-list {
    column-gap: min(2svw, 2.8rem);
  }
  .global-header__nav-item {
    --nav-icon-size: min(1.4285714286svw, 2rem);
  
    font-size: min(1.07142857143svw, 1.5rem);
    column-gap: min(0.4285714286svw, 0.6rem);
  }
  
  .global-header__nav-item[data-nav-target="location"] {
    --nav-icon-size: 1.2rem;
  }
  .global-header__nav-item[data-nav-target="organization"] {
    --nav-icon-size: 1.6rem;
  }
  .global-nav__text--link {
    font-size: min(1.07142857143svw, 1.5rem);
  }
  .global-nav__content-list-item {
    display: flex;
    align-items: center;
  }
  [data-side-border="right"]::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 1.5rem;
    background-color: #BBBBBB;
    margin-left: min(2svw, 2.8rem);
  }
}


/* Footer */
.global-footer {
  --color-default-text: var(--color-text-default);

  background-color: var(--color-secondary);
  border-top: 2px solid var(--color-text-default);
}
.global-footer__inner {
  padding-top: 4.4rem;
  padding-bottom: 5rem;
}

.global-footer-menu__head {
  font-weight: var(--fw-bold);
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  column-gap: min(1.07142857143svw, 1.5rem);
}
.global-footer-menu__head-decoration {
  display: inline-flex;
  align-items: center;
  gap: min(0.5714285714svw, 0.8rem);
}
.global-footer-menu__head-decoration-piece {
  display: block;
  flex-shrink: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 1px;
}
[data-piece-color="blue"] {
  background-color: var(--color-project-accent-blue);
}
[data-piece-color="orange"] {
  background-color: var(--color-project-primary);
}
[data-piece-color="yellow"] {
  background-color: var(--color-project-accent-yellow);
}
.global-footer-menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.global-footer-menu__item {
  font-size: 1.5rem;
}
.global-footer-menu__item a {
  font-size: inherit;
}

.global-footer-menu__item[data-item-target="daigas"] img {
  width: min(6.4285714286svw, 9rem);
}

.global-footer-social {
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.global-footer-social__head {
  font-weight: var(--fw-bold);
  font-size: 1.3rem;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
}

.brand-sns__line-block {
  margin-top: 2rem;
  border: 1px dotted var(--color-text-default);
  border-radius: 0.3rem;
  padding: 1.5rem;
}
.brand-sns__line-block-inner {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
}
.brand-sns__line-block-icon {
  display: block;
  width: 4rem;
}
.brand-sns__line-block-description {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.brand__wrapper {
  width: var(--footer-logo-width);
}

.global-footer .law-page__link-text {
  font-size: 1.1rem;
}

.global-footer .law-page__link-list {
  flex-wrap: wrap;
  row-gap: 1rem;
}

.global-footer .law-page__copyright-text {
  color: #918C82;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.global-footer .law-page__link-wrapper {
  row-gap: 3rem;
}

@media screen and (min-width: 768px) {
  .global-footer__inner {
    width: 100% !important;
    padding-left: min(7.1428571429svw, 10rem) !important;
    padding-right: min(7.1428571429svw, 10rem) !important;
    row-gap: 5rem;
  }
  .global-footer__inner--bottom {
    --footer-logo-width: min(39.2857142857svw, 55rem);
    padding-top: 0;
    border-top: none;
  }
  .global-footer__inner--top {
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: min(3.2142857143svw, 4.5rem);
  }
  .global-footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: min(2.8571428571svw, 4rem);
  }
  .brand-sns__link-list {
    column-gap: min(2.1428571429svw, 3rem);
  }
  .global-footer .law-page__link-list {
    justify-content: flex-end;
  }
  .law-page__link-wrapper {
    width: min(35.7142857143svw, 50rem);
  }
}

@media screen and (max-width: 767px) {
  .global-footer__inner {
    padding-inline: 2.5rem !important;
    row-gap: 2rem;
  }
  .global-footer-menu {
    display: grid;
    grid-template-columns: 15.5rem 1fr;
    gap: 4rem 2.5rem;
    padding-inline: 1rem;
  }
  .global-footer-menu__head {
    font-size: 1.2rem;
    align-items: flex-end;
    padding-bottom: 2rem;
    column-gap: 1rem;
  }
  .global-footer-menu__head-decoration {
    gap: 0.5rem;
  }
  .global-footer-menu__head-decoration-piece {
    width: 0.5rem;
    height: 0.5rem;
  }
  .global-footer-menu__head-decoration {
    margin-bottom: 0.3rem;
  }
  .global-footer-menu__column:nth-of-type(2) {
    order: 2;
  }
  .global-footer-menu__column:nth-of-type(3) {
    order: 1;
  }
  .global-footer-menu__column:nth-of-type(4) {
    order: 3;
  }
  .global-footer-menu__item {
    font-size: 1.4rem;
  }
  .global-footer-social {
    width: calc(100% - 2rem);
    margin-top: 3rem;
    margin-inline: auto;
  }
  .law-page__link-list {
    display: flex;
  }
  .global-footer__inner--bottom {
    row-gap: 2.7rem;
  }
  .law-page__link-wrapper {
    border-top: 1px solid #E5E5E5;
    padding-top: 3rem;
  }
  .law-page__link-list {
    column-gap: 2rem;
    row-gap: 1rem;
  }
  .brand-sns__link-list {
    gap: 3rem;
  }
}


/* Common Product Slider */
.common-product-slider {
  position: relative;
  padding-inline: 2.5rem !important;
  transition: opacity 1s ease;
}
.common-product-slider:not(.swiper-initialized) {
  opacity: 0;
}
.common-product-slider__button {
  position: absolute;
  z-index: 10;
  width: var(--common-product-slider-arrow-size);
  height: auto;
  aspect-ratio: 1/1;
}
.common-product-slider__button--prev {
  left: 0;
}
.common-product-slider__button--next {
  right: 0;
}

.common-product-slider__button--prev.swiper-button-disabled,
.common-product-slider__button--next.swiper-button-disabled{
  opacity: 0.3;
}

.swiper-locked .common-product-slider__button--prev,
.swiper-locked .common-product-slider__button--next{
  display: none;
}


.common-product-slider__pagination {
  position: relative !important;
  bottom: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.common-product-slider__pagination .swiper-pagination-bullet {
  width: 0.6rem !important;
  height: 0.6rem !important;
  margin: 0 !important;
  background-color: #E5E5E5 !important;
  opacity: 1 !important;
}
.common-product-slider__pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary) !important;
}
.common-product-slider::before,
.common-product-slider::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 100%;
  background-color: var(--color-white);
  position: absolute;
  z-index: 2;
  top: 0;
}
.common-product-slider::before {
  left: 0;
}
.common-product-slider::after {
  right: 0;
}
.common-product-slider__button--prev {
  left: 0;
}
.common-product-slider__button--next {
  right: 0;
}

.common-product-slider__button {
  top: var(--common-product-slider-arrow-top);
}

@media screen and (max-width: 768px) {

  .common-product-slider__button--prev {
    left: -0.5rem;
  }
  .common-product-slider__button--next {
    right: -0.5rem;
  }
  .global-footer-menu__item[data-item-target="daigas"] img {
    width: 7.5rem;
  }
  .hb-social {
    background-color: #FAF7F0;
    padding: 1rem;
  }
  .hb-social .global-footer-social {
    margin-top: 0;
    width: 100%;
  }
  .brand-sns__line-block-inner {
    color: var(--color-text-default);
    text-decoration: none;
  }
  .hamburger-menu__contents-wrapper {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .common-product-slider {
    width: min(89.2857142857svw, 125rem);
    padding-inline: min(2.1428571429svw, 3rem) !important;
  }
  .common-product-slider::before,
  .common-product-slider::after {
    width: min(1.7857142857svw, 2.5rem);
  }
  .common-product-slider {
  }
  .common-product-slider__button {
    /* top: min(10.7142857143svw, 15rem); */
    /* width: min(3.5714285714svw, 5rem);
    height: min(3.5714285714svw, 5rem); */
  }
  .common-product-slider::before,
  .common-product-slider::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 100%;
    background-color: var(--color-white);
    position: absolute;
    z-index: 2;
    top: 0;
  }
  .common-product-slider::before {
    left: 0;
  }
  .common-product-slider::after {
    right: 0;
  }
}

/* Home Product */
.common-product {
  display: block;
  color: var(--color-text-default);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-top: 3rem;
}
.common-product__image {
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
}
.common-product__image img {
  height: 100%;
  object-fit: contain;
}

.common-product__cicon:not(.common-product__cicon--custom) {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.common-product__cicon:not(.common-product__cicon--custom) .common-product__cicon-item {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-text-default);
  border-radius: 0.2rem;
  padding-inline: 0.8rem;
  padding-bottom: 0.1rem;
}
.common-product__cicon:not(.common-product__cicon--custom) .common-product__cicon-item[data-icon-index="3"] {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.common-product__cicon--custom {
  width: 100%;
  position: absolute;
  top: 0;
  left: 1.5rem;
}
.common-product__cicon--custom .common-product__cicon-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.common-product__cicon--custom .common-product__cicon-item::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='21.618' viewBox='0 0 16 21.618'%3E%3Cpath id='map' d='M7717.526,7001.5v0c-1.649-2.047-5.6-7.028-6.654-9.046a7.37,7.37,0,0,1-.846-3.461,7.5,7.5,0,0,1,15,0,7.42,7.42,0,0,1-.751,3.271c-1.069,2.2-5.435,7.626-6.747,9.237Zm.027-14.607a2.321,2.321,0,0,0-.532,4.581,2.287,2.287,0,0,0,.538.063,2.321,2.321,0,0,0,.533-4.581A2.355,2.355,0,0,0,7717.553,6986.894Z' transform='translate(-7709.525 -6981.001)' fill='%23f27649' stroke='%23f27649' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.common-product__inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.common-product__name {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .common-product__cicon--custom {
    left: 0;
  }
  .common-product__cicon--custom .common-product__cicon-item::before {
    width: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='icon_-_map' data-name='icon - map' transform='translate(-56.524 -2876)'%3E%3Crect id='base' width='20' height='20' transform='translate(56.524 2876)' fill='rgba(255,255,255,0)'/%3E%3Cg id='MAP' transform='translate(-668.531 2620.165)'%3E%3Cg id='パス' fill='%23f27649'%3E%3Cpath d='M 734.9009399414062 273.5975646972656 C 733.8441162109375 272.2863464355469 730.9281616210938 268.6201171875 730.1588745117188 267.145751953125 C 729.7588500976562 266.379638671875 729.5560302734375 265.5493469238281 729.5560302734375 264.6778564453125 C 729.5560302734375 261.7317810058594 731.9529418945312 259.3349914550781 734.8991088867188 259.3349914550781 C 737.84521484375 259.3349914550781 740.2420654296875 261.7317810058594 740.2420654296875 264.6778564453125 C 740.2420654296875 265.4956970214844 740.0623168945312 266.2803039550781 739.7078247070312 267.0098571777344 C 738.9613037109375 268.546142578125 735.9752197265625 272.2761535644531 734.9009399414062 273.5975646972656 Z' stroke='none'/%3E%3Cpath d='M 734.8991088867188 259.8349914550781 C 732.2286376953125 259.8349914550781 730.0560302734375 262.0075073242188 730.0560302734375 264.6778564453125 C 730.0560302734375 265.4679260253906 730.23974609375 266.2203674316406 730.6021118164062 266.9144592285156 C 731.2288208007812 268.115478515625 733.483642578125 271.0266418457031 734.9026489257812 272.8021850585938 C 736.3486328125 271.0061950683594 738.6515502929688 268.0395812988281 739.2581176757812 266.7913513183594 C 739.5792236328125 266.1304321289062 739.7420654296875 265.4193725585938 739.7420654296875 264.6778564453125 C 739.7420654296875 262.0075073242188 737.5695190429688 259.8349914550781 734.8991088867188 259.8349914550781 M 734.8991088867188 258.8349914550781 C 738.1260375976562 258.8349914550781 740.7420654296875 261.45068359375 740.7420654296875 264.6778564453125 C 740.7420654296875 265.5923461914062 740.531982421875 266.4577941894531 740.1575317382812 267.2283935546875 C 739.2103881835938 269.177490234375 734.8991088867188 274.3895263671875 734.8991088867188 274.3895263671875 C 734.8991088867188 274.3895263671875 730.6904907226562 269.2454223632812 729.715576171875 267.3770751953125 C 729.2940673828125 266.5697937011719 729.0560302734375 265.6517028808594 729.0560302734375 264.6778564453125 C 729.0560302734375 261.45068359375 731.6719970703125 258.8349914550781 734.8991088867188 258.8349914550781 Z' stroke='none' fill='%23f27649'/%3E%3C/g%3E%3Ccircle id='楕円形' cx='1.656' cy='1.656' r='1.656' transform='translate(732.929 266.066) rotate(-76.663)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
  .common-product__cicon--custom .common-product__cicon-item {
    font-size: 1.2rem;
    gap: 0.35rem;
  }
  .common-product__name {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .navigation-content {
    display: grid;
    grid-template-columns: min(15svw, 21rem) 1fr;
    column-gap: min(3.5714285714svw, 5rem);
  }
  .navigation-content__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-right: 1px solid #E5E5E5;
  }
  .navigation-content__head:has(.navigation-content__head-button) {
    min-height: 14rem;
  }
  .navigation-content__title {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
  }
  .navigation-content__title--sub {
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.46;
    letter-spacing: 0.06em;
    color: #AFA8A1;
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
  }
  .navigation-content__title--main {
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }
  .navigation-content__title-decoration {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
  }
  .navigation-content__title-decoration-piece {
    display: block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 1px;
  }
  .navigation-content__body {
    display: grid;
  }
  .navigation-content__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 2rem;
  }
  .navigation-content__item {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
    color: var(--color-text-default);
  }
  .navigation-content__item a {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
  }

  .navigation-content__list[data-navigation-for="lesson"] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 1.7rem;
    row-gap: 2rem;
  }

  .nav-lesson-item {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem;
    text-align: center;
  }

  .nav-lesson-item__image {
    aspect-ratio: 175 / 118;
    border-radius: 1rem;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .navigation-content__head-button {
    display: inline-block;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: var(--color-text-default);
    text-decoration: none;
    border-bottom: 1px solid var(--color-text-default);
    
  }

  .navigation-category-item-inner {
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
    color: var(--color-text-default);
  }

  .navigation-category-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 3.5rem;
    row-gap: 2rem;
  }
  .navigation-category-item-inner {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
  .navigation-category-item-inner::after {
    content: '';
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='arrow' transform='translate(-104 -1489)'%3E%3Crect id='bg' width='20' height='20' rx='10' transform='translate(104 1489)' fill='%23f27649'/%3E%3Cpath id='パス' d='M3046.954,1995.078l4-3.5-4-3.5' transform='translate(-2934.454 -492.578)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .navigation-date-list {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1.7rem;
    align-self: center;
  }
  .navigation-date-item-inner {
    border: 1px solid #E5E5E5;
    border-radius: 1rem;
    color: var(--color-text-default);
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
  }
  .navigation-date-item-inner[data-date-value="saturday"] {
    color: #086FA8;
  }
  .navigation-date-item-inner[data-date-value="sunday"] {
    color: #C12306;
  }
}

@media screen and (max-width: 767px) {
  .navigation-content__item a {
    color: var(--color-text-default);
    text-decoration: none;
  }
  .navigation-content__list[data-navigation-for="lesson"] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0.5rem;
    row-gap: 1rem;
    padding-bottom: 3rem;
  }
  .nav-lesson-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0.6rem;
    color: var(--color-text-default);
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }
  .accordion__content:has(.navigation-content__list[data-navigation-for="lesson"]),
  .accordion__content:has(.navigation-date-list) {
    padding-left: 1.5rem;
    border-top: unset;
  }

  .navigation-date-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    padding-bottom: 3rem;
  }
  .navigation-date-item-inner {
    border: 1px solid #E5E5E5;
    border-radius: 1rem;
    color: var(--color-text-default);
    font-size: 1.5rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.8rem;
  }
  .navigation-date-item-inner[data-date-value="saturday"] {
    color: #086FA8;
  }
  .navigation-date-item-inner[data-date-value="sunday"] {
    color: #C12306;
  }
  [data-state-accordion=opened] > .accordion__summary {
    background-color: var(--color-white);
  }
}

/* Drawer */
.hamburger-menu__wrapper {
  --hamburger-icon-width: 2rem;
  --hamburger-icon-position: 1.5rem;
  --padding-content: 1.6rem;
}
[data-animation-type=horizontal-slide] .hamburger-menu__contents-wrapper {
  translate: 100% 0;
  left: auto;
  right: 0;
}
.hamburger-menu__bg {
  height: 100dvh;
}
/* #hamburger-menu {
  display: none;
} */
.header-primary__hamburger-menu-container {
  min-width: 5rem;
}
[data-hamburgermenu-type=overlay] .hamburger-menu__toggle-button[aria-expanded=true] > span {
  filter: unset;
  width: 100%;
  height: 100%;
  padding: 2rem;
}
[aria-expanded=true] .hamburger-menu__toggle-button-inner > span {
  background-color: var(--color-text-default);
  width: 1.7rem;
}
[aria-expanded=true] .hamburger-menu__toggle-button-label {
  display: none;
}
[aria-expanded=true] .hamburger-menu__toggle-button-inner > span:first-of-type,
[aria-expanded=true] .hamburger-menu__toggle-button-inner > span:last-of-type {
  position: absolute !important;
  top: 50% !important;
  translate: 0 -50% !important;
}
[data-hamburgermenu-type=overlay] .hamburger-menu__contents-wrapper {
  width: 32.5rem;
}
.hamburger-menu__bg {
  background: rgba(51,51,51,0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(3px);
  --webkit-backdrop-filter: blur(3px);
  /* (plus shape's fill blended on top as a separate layer with 60% opacity) */
}
[data-hamburgermenu-type=overlay] .hamburger-menu__toggle-button[aria-expanded=true] {
  z-index: 50;
}

.hb-section {
  padding: 1.5rem 2rem;
}

.hb-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--color-text-default);
  text-decoration: none;
}
.hb-nav-link::before {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.hb-nav-link--login::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='icon' transform='translate(-313 -10)'%3E%3Crect id='bg' width='40' height='40' transform='translate(313 10)' fill='rgba(255,255,255,0)'/%3E%3Cpath id='ユーザー' d='M16.5,16.084a.553.553,0,0,1-.554.548H2.052a.186.186,0,0,1-.04,0,.548.548,0,0,1-.511-.585,7.522,7.522,0,0,1,4.586-6.35.727.727,0,0,0,.2-1.209,4.017,4.017,0,1,1,5.42,0,.728.728,0,0,0,.2,1.209A7.518,7.518,0,0,1,16.5,16.044C16.5,16.058,16.5,16.07,16.5,16.084Z' transform='translate(324 20.934)' fill='none' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.hb-nav-link--register::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='icon' transform='translate(-313 -10)'%3E%3Crect id='bg' width='40' height='40' transform='translate(313 10)' fill='rgba(255,255,255,0)'/%3E%3Cg id='pen' transform='translate(320.459 14.382)'%3E%3Cpath id='パス' d='M6.63,18.073,18.938,5.76l3.783,3.783L10.409,21.852' transform='translate(-1.181)' fill='none' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3Cpath id='パス-2' data-name='パス' d='M5.449,33.39,4.5,38.118l4.728-.949' transform='translate(0 -15.317)' fill='none' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3Cline id='線' x2='2.001' y2='2.001' transform='translate(16.884 10.199)' fill='none' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}
.hb-nav-link--mypage::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='icon' transform='translate(-313 -10)'%3E%3Crect id='bg' width='40' height='40' transform='translate(313 10)' fill='rgba(255,255,255,0)'/%3E%3Cpath id='ユーザー' d='M16.5,16.084a.553.553,0,0,1-.554.548H2.052a.186.186,0,0,1-.04,0,.548.548,0,0,1-.511-.585,7.522,7.522,0,0,1,4.586-6.35.727.727,0,0,0,.2-1.209,4.017,4.017,0,1,1,5.42,0,.728.728,0,0,0,.2,1.209A7.518,7.518,0,0,1,16.5,16.044C16.5,16.058,16.5,16.07,16.5,16.084Z' transform='translate(324 20.934)' fill='%2389827d' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.hb-nav-link--favorite::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg id='icon' transform='translate(-313 -10)'%3E%3Crect id='bg' width='40' height='40' transform='translate(313 10)' fill='rgba(255,255,255,0)'/%3E%3Cpath id='ハート' d='M18.087,8.35l-2.03,2.03-5.675,5.678L2.675,8.35A4.014,4.014,0,0,1,8.353,2.675L10.382,4.7l2.027-2.027A4.014,4.014,0,1,1,18.087,8.35Z' transform='translate(323 21)' fill='%2389827d' stroke='%2389827d' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.hb-account-name {
  display: flex;
  gap: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.hb-account-name span {
  color: #89827D;
}

.hamburger-menu__text--section-title[data-title-bg=active] {
  background-color: #FAF7F0;
}

.hamburger-menu__text--section-title[data-title-bg=active] {
  background-color: #FAF7F0;
}
.hamburger-menu__text--section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.7rem;
}
.hamburger-menu__text--link::after {
  background-size: 0.6rem auto;
  background-position: center;
}
.hamburger-menu__text--section-title small {
  font-size: 1.2rem;
  color: #AFA8A1;
}
.accordion__icon-wrapper {
  width: 1.2rem;
  margin-inline: auto;
}
.hamburger-menu__text--link {
  grid-template-columns: 1fr 2rem;
  padding-left: 1rem;
  padding-right: 0.1rem;
}
ul:not([data-structure="child"]) > li > details > .hamburger-menu__text--link .accordion__icon-wrapper {
  background-color: var(--color-primary);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
}
ul:not([data-structure="child"]) > li > .hamburger-menu__text--link::after {
  background-size: contain;
}
ul:not([data-structure="child"]) > li > .hamburger-menu__text--link,
ul:not([data-structure="child"]) > li > details > .hamburger-menu__text--link {
  grid-template-columns: 1fr 2rem;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding-left: var(--padding-content);
  padding-right: var(--padding-content);
}
ul:not([data-structure="child"]) > li > details > .hamburger-menu__text--link .accordion__icon-wrapper::before, 
ul:not([data-structure="child"]) > li > details > .hamburger-menu__text--link .accordion__icon-wrapper::after {
  background-color: var(--color-white);
  width: 1rem;
  height: 1.5px;
  top: 50%;
  left: 50%;
  right: unset;
  bottom: unset;
  translate: -50% -50%;
}
ul:not([data-structure="child"]) > li > .hamburger-menu__text--link::after,
ul:not([data-structure="child"]) > li > details > .hamburger-menu__text--link::after {
  width: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='arrow' transform='translate(-104 -1489)'%3E%3Crect id='bg' width='20' height='20' rx='10' transform='translate(104 1489)' fill='%23f27649'/%3E%3Cpath id='パス' d='M3046.954,1995.078l4-3.5-4-3.5' transform='translate(-2934.454 -492.578)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.accordion__content {
  padding-left: 3rem;
  padding-right: 1.5rem;
}
.accordion__content .accordion__content {
  padding-right: 0;
}

/* Section common */
.home-section {
  margin-block: 6rem;
}
[data-bg-beige] {
  background-color: var(--color-project-bg-beige-default);
}


.home-section__head {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.home-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.7rem;
  font-family: var(--font-ja);
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 4rem;
}
.home-section__title small {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #AFA8A1;
}

.home-section__title-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.home-section__title-decoration-piece {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 1px;
}
.home-section__title-decoration-piece[data-piece-color="blue"] {
  background-color: var(--color-project-accent-blue);
}
.home-section__title-decoration-piece[data-piece-color="orange"] {
  background-color: var(--color-project-primary);
}
.home-section__title-decoration-piece[data-piece-color="yellow"] {
  background-color: var(--color-project-accent-yellow);
}

.home-section__button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-section__button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  color: var(--color-text-default);
  text-decoration: none;
  width: 24.5rem;
  height: 5.5rem;
  border-radius: 2.75rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  background-color: var(--color-white);
  border: 1px solid #EEEEEE;
}

.home-section__button::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='arrow' transform='translate(-104 -1489)'%3E%3Crect id='bg' width='20' height='20' rx='10' transform='translate(104 1489)' fill='%23f27649'/%3E%3Cpath id='パス' d='M3046.954,1995.078l4-3.5-4-3.5' transform='translate(-2934.454 -492.578)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .home-section__inner {
    width: min(85.7142857143svw, 120rem);
    margin-inline: auto;
  }
  .home-section__button-container {
    margin-top: 3rem;
  }
  .home-section__button {
    width: min(17.5svw, 24.5rem);
    height: 6rem;
    border-radius: 3rem;
    font-size: 1.6rem;
    column-gap: min(1.07142857143svw, 1.5rem);
  }
  [data-bg-beige] {
    padding-block: 6rem;
  }
}

.home-news__tab {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}
.home-news__tab-item {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #BBBBBB;
}
.home-news__tab-item.is-active {
  padding-bottom: 0.2rem;
  color: var(--color-text-default);
  border-bottom: 2px solid var(--color-text-default);
}
.home-news-list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.home-news-item {
  background-color: var(--color-project-bg-beige-default);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}
.home-news-date {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px dashed #BBBBBB;
}
.home-news-tag {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: #89827D;
}
.home-news-tag::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cg id='icon_-_map' data-name='icon - map' transform='translate(-56.524 -2876)'%3E%3Crect id='base' width='20' height='20' transform='translate(56.524 2876)' fill='rgba(255,255,255,0)'/%3E%3Cg id='MAP' transform='translate(-668.531 2620.165)'%3E%3Cg id='パス' fill='%23f27649'%3E%3Cpath d='M 734.9009399414062 273.5975646972656 C 733.8441162109375 272.2863464355469 730.9281616210938 268.6201171875 730.1588745117188 267.145751953125 C 729.7588500976562 266.379638671875 729.5560302734375 265.5493469238281 729.5560302734375 264.6778564453125 C 729.5560302734375 261.7317810058594 731.9529418945312 259.3349914550781 734.8991088867188 259.3349914550781 C 737.84521484375 259.3349914550781 740.2420654296875 261.7317810058594 740.2420654296875 264.6778564453125 C 740.2420654296875 265.4956970214844 740.0623168945312 266.2803039550781 739.7078247070312 267.0098571777344 C 738.9613037109375 268.546142578125 735.9752197265625 272.2761535644531 734.9009399414062 273.5975646972656 Z' stroke='none'/%3E%3Cpath d='M 734.8991088867188 259.8349914550781 C 732.2286376953125 259.8349914550781 730.0560302734375 262.0075073242188 730.0560302734375 264.6778564453125 C 730.0560302734375 265.4679260253906 730.23974609375 266.2203674316406 730.6021118164062 266.9144592285156 C 731.2288208007812 268.115478515625 733.483642578125 271.0266418457031 734.9026489257812 272.8021850585938 C 736.3486328125 271.0061950683594 738.6515502929688 268.0395812988281 739.2581176757812 266.7913513183594 C 739.5792236328125 266.1304321289062 739.7420654296875 265.4193725585938 739.7420654296875 264.6778564453125 C 739.7420654296875 262.0075073242188 737.5695190429688 259.8349914550781 734.8991088867188 259.8349914550781 M 734.8991088867188 258.8349914550781 C 738.1260375976562 258.8349914550781 740.7420654296875 261.45068359375 740.7420654296875 264.6778564453125 C 740.7420654296875 265.5923461914062 740.531982421875 266.4577941894531 740.1575317382812 267.2283935546875 C 739.2103881835938 269.177490234375 734.8991088867188 274.3895263671875 734.8991088867188 274.3895263671875 C 734.8991088867188 274.3895263671875 730.6904907226562 269.2454223632812 729.715576171875 267.3770751953125 C 729.2940673828125 266.5697937011719 729.0560302734375 265.6517028808594 729.0560302734375 264.6778564453125 C 729.0560302734375 261.45068359375 731.6719970703125 258.8349914550781 734.8991088867188 258.8349914550781 Z' stroke='none' fill='%23f27649'/%3E%3C/g%3E%3Ccircle id='楕円形' cx='1.656' cy='1.656' r='1.656' transform='translate(732.929 266.066) rotate(-76.663)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
}
.home-news-tag span {
  line-height: 1;
}
.home-news-tag span + span {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #BBBBBB;
}
.home-news-article {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 768px) {
  .home-news-list {
    width: min(80%, 84.3rem);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .home-news__tab {
    margin-bottom: 2rem;
  }
  .home-news__tab-item {
    font-size: 1.5rem;
  }
  .home-news-tag {
    font-size: 1.2rem;
  }
  .home-news-date {
    font-size: 1.3rem;
  }
  .home-news-article {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
ul:not([data-structure="child"]) > li > details > .accordion__content [data-state-accordion=opened] > .accordion__summary {
  background-color: var(--color-white);
}
.hamburger-menu__text--link + .hamburger-menu__content-list[data-structure="child"] {
  border-top: var(--border-style);
}

.modal__container::backdrop {
  background: rgba(51,51,51,0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(3px);
  --webkit-backdrop-filter: blur(3px);
  /* (plus shape's fill blended on top as a separate layer with 60% opacity) */
}

[data-hb-section="content"] .accordion__content [data-structure=child] .hamburger-menu__text--link{
  font-size: 1.4rem;
  padding-top: 0;
}
[data-hb-section="content"] .accordion__content [data-structure=child] .hamburger-menu__text--link::after{
  display: none;
}
[data-hb-section="content"] .accordion__content .hamburger-menu__content-list > li {
  border: none !important;
}
[data-hb-section="content"] .accordion__content {
  border-top: none !important;
}
[data-hb-section="content"] [data-state-accordion=opened] > .accordion__summary {
  background-color: var(--color-white);
}

.p-newslist .home-section__button-container {
  display: none;
}

.hb-section[data-hb-section="account"] {
  padding-right: 3rem;
}

[data-genre-name="和食"] {
  order: 1;
}
[data-genre-name="洋食"] {
  order: 2;
}
[data-genre-name="中華"],
[data-genre-name="中華料理"] {
  order: 3;
}
[data-genre-name="アジア料理"] {
  order: 4;
}
[data-genre-name="パン"] {
  order: 5;
}
[data-genre-name="洋菓子"] {
  order: 6;
}
[data-genre-name="和菓子"] {
  order: 7;
}
[data-genre-name="魚おろし"] {
  order: 8;
}
[data-genre-name="他"] {
  order: 9;
}