@charset "UTF-8";
/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
:root {
  --base: 12;
}
@media only screen and (min-width: 1441px) {
  :root {
    --base: 14;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --base: 12;
  }
}

.topicpath, .footer__top-contact, .footer__bottom {
  margin-inline: auto;
}
@media only screen and (min-width: 1025px) {
  .topicpath, .footer__top-contact, .footer__bottom {
    width: calc(1180 / 1440 * 100%);
    max-width: 1180px;
  }
}
@media only screen and (min-width: 1441px) {
  .topicpath, .footer__top-contact, .footer__bottom {
    max-width: 1280px;
  }
}
@media only screen and (max-width: 1024px) {
  .topicpath, .footer__top-contact, .footer__bottom {
    width: calc(348 / 428 * 100%);
  }
}

/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _header.scss
author     : Abilive
style info : Header Component (BEM)
=================================================================== */
body.is-modal-open {
  overflow: hidden;
}

.l-header {
  --color-header-text: #fff;
  position: relative;
  z-index: 1000;
}
.l-header.is-sticky-active .l-header__default {
  opacity: 0;
  pointer-events: none;
}

.l-header__default {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: var(--color-header-text);
  padding: 1.2em 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__default {
    padding: 1.2em 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__default {
    padding: 1.5em 0;
  }
}
.l-header__default-inner {
  width: 94.4444444444%;
}
@media only screen and (max-width: 767px) {
  .l-header__default-inner {
    width: 90%;
  }
}
.l-header__default-inner {
  display: flex;
  align-items: space-between;
  margin-inline: auto;
  gap: 2em;
  position: relative;
}
.l-header__default .l-header__gnav {
  display: flex;
  justify-content: flex-end;
}

.icon_logo {
  width: 6.8em;
  aspect-ratio: 81/28;
}

.l-header__logo {
  margin-right: auto;
}

.l-header__logo-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.l-header__nav {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 0.9em 1.4em;
  width: fit-content;
}
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  .l-header__nav-list {
    gap: 0.9em 1em;
  }
}

.l-header__nav-item {
  list-style: none;
}

.l-header__nav-link {
  font-size: 109%;
  color: var(--color-header-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1025px) and (max-width: 1099px) {
  .l-header__nav-link {
    font-size: 92%;
  }
}
.l-header__nav-link:hover {
  border-color: rgba(var(--color-header-text), 0.6);
  text-decoration: none;
}

.l-header__controls {
  display: flex;
  align-items: center;
  gap: 1.2em;
  flex-shrink: 0;
  margin-left: 5.5vw;
}
@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  .l-header__controls {
    margin-left: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__controls {
    gap: 0.6em;
  }
}
.l-header__controls .c-button {
  display: inline-flex;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__controls .c-button {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__controls .c-button {
    display: none;
  }
}

.l-header__cta {
  min-width: 10.7em;
  text-align: center;
  padding: 0.9em 1.2em !important;
}
.l-header__cta .c-button__label {
  padding-left: 0.4em;
}

.l-header__menu-btn {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.7em 1.2em;
  margin-right: -1.2em;
}
.l-header__menu-btn svg {
  --icon-width: 2em;
  aspect-ratio: 25/17;
}

.l-header__contact {
  display: flex;
  align-items: center;
  gap: 4px;
}
.l-header__contact .t {
  margin-right: 0.5em;
}
.l-header__contact .contact-time {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.l-header__contact .contact-time .tel-number {
  font-size: 117%;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1;
}
.l-header__contact .contact-time .time {
  font-size: 75%;
  font-weight: 600;
}

.l-header__sticky {
  --color-header-text: $c_title1_main;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  background-image: url("../images/header/bg_header_sticky.png");
  background-repeat: repeat-x;
  background-position: top left;
  color: #1B1B1B;
  height: 71px;
}
.l-header__sticky.is-visible {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.l-header__sticky-inner {
  width: 94.4444444444%;
}
@media only screen and (max-width: 767px) {
  .l-header__sticky-inner {
    width: 90%;
  }
}
.l-header__sticky-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  height: 60px;
  position: relative;
}
.l-header__sticky .l-header__gnav {
  display: flex;
  justify-content: flex-end;
}

.l-header__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.l-header__modal-image {
  flex: 0 0 70%;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) and (max-width: 1099px) {
  .l-header__modal-image {
    flex: 0 0 65%;
  }
}
@media only screen and (max-width: 1024px) {
  .l-header__modal-image {
    display: none;
  }
}
.l-header__modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-header__modal-content {
  flex: 1;
  background: rgba(247, 247, 247, 0.95);
  display: flex;
  flex-direction: column;
  padding: 1.2em 2.3em;
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-content {
    padding: 2em 3em;
  }
}
.l-header__modal.is-open .l-header__modal-content {
  transform: translateX(0);
}
.l-header__modal-content-inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-content-inner {
    align-items: flex-start;
  }
}
.l-header__modal-content-inner {
  justify-content: center;
  flex-direction: column;
  margin: auto;
  width: unset;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-content-inner {
    width: 100%;
  }
}
.l-header__modal-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 50/36;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 2em;
  padding: 0;
  position: absolute;
  top: 1.2em;
  right: 2.3em;
}
.l-header__modal-close svg {
  --icon-width: 1.3em;
}
.l-header__modal-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.3em;
  align-content: start;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-nav {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.l-header__modal-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__modal-nav-link {
  display: block;
  padding: 1.2em 0;
  font-size: 109%;
  line-height: 1;
  color: #1B1B1B;
  text-decoration: none;
  position: relative;
}
.l-header__modal-nav-link span {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.l-header__modal-nav-link:hover span {
  border-color: rgba(var(--color-header-text), 0.6);
  text-decoration: none;
}
.l-header__modal-nav-link svg {
  --icon-width: 1.2em;
}
.l-header__modal-contact {
  padding-top: 0.8em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-self: stretch;
}
.l-header__modal-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__modal-contact-row .icon_phone {
  color: #838266;
  --icon-width: 1.1em;
}
.l-header__modal-contact-row .contact-time > a, .l-header__modal-contact-row .contact-time .tel-number {
  font-size: 134%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__modal-contact-row .contact-time > a, .l-header__modal-contact-row .contact-time .tel-number {
    font-size: 134%;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__modal-contact-row .contact-time > a, .l-header__modal-contact-row .contact-time .tel-number {
    font-size: 117%;
  }
}

.l-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(27, 27, 27, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.l-header__backdrop.is-visible {
  display: block;
}
.l-header__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

#abichat, #abichat-callout-message {
  position: absolute;
  opacity: 0;
  transition: ease 0.3s opacity;
}
#abichat.is-fixed, #abichat-callout-message.is-fixed {
  position: fixed;
  opacity: 1;
}

/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _header.scss
author     : Abilive
style info : Header Component (BEM)
=================================================================== */
.footer {
  background: #F7F7F5;
  position: relative;
  z-index: 4;
  /*  position: relative;
    z-index: 10;*/
}
.footer__top {
  position: relative;
  overflow: hidden;
}
.footer__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../images/footer/footer_contact_pc.webp) no-repeat center;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .footer__top::before {
    background: url(../images/footer/footer_contact_sp.webp) no-repeat center;
    background-size: cover;
  }
}
.footer__top-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.footer__top-banner picture {
  display: block;
  height: 100%;
}
.footer__top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.footer__top-contact {
  position: relative;
  z-index: 2;
}
.footer__top-contact .info {
  max-width: 36em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  padding-block: 7.1em;
  color: #fff;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .footer__top-contact .info {
    padding-bottom: 4.3em;
  }
}
.footer__top-contact .info .title {
  font-size: 300%;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 0.4em;
}
.footer__top-contact .info .action {
  width: 100%;
}
.footer__top-contact .info .action a {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: #fff;
  padding: 1.4em 1.2em;
  border-radius: 4px;
  background: #838266;
  font-size: 109%;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1025px) {
  .footer__top-contact .info .action a:hover {
    background: #63634e;
  }
}
.footer__top-contact .info .contact {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2px;
}
@media only screen and (max-width: 767px) {
  .footer__top-contact .info .contact {
    flex-direction: column;
  }
}
.footer__top-contact .info .contact .txt {
  margin-right: 0.4em;
}
@media only screen and (max-width: 767px) {
  .footer__top-contact .info .contact .txt {
    margin-right: 0;
  }
}
.footer__top-contact .info .contact .txt {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .footer__top-contact .info .contact .txt {
    margin-bottom: 0.4em;
  }
}
.footer__top-contact .info .contact a, .footer__top-contact .info .contact .tel {
  font-size: 134%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__top-contact .info .contact a, .footer__top-contact .info .contact .tel {
    font-size: 134%;
  }
}
@media only screen and (max-width: 767px) {
  .footer__top-contact .info .contact a, .footer__top-contact .info .contact .tel {
    font-size: 167%;
  }
}
.footer__top-contact .info .contact a, .footer__top-contact .info .contact .tel {
  line-height: 1;
  letter-spacing: 0.5px;
  text-decoration: none;
  vertical-align: middle;
  color: #fff;
}
.footer__top-contact .info .contact a svg, .footer__top-contact .info .contact .tel svg {
  width: 13px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.footer__bottom {
  padding-block: 4.3em;
  text-align: center;
  color: #1B1B1B;
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    padding-bottom: 7em;
  }
}
.footer__brand {
  margin-bottom: 3.4em;
}
@media only screen and (max-width: 767px) {
  .footer__brand {
    overflow: hidden;
  }
}
.footer__logo {
  margin-bottom: 3.4em;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 135%;
    margin-left: -17%;
  }
}
.footer__address-text {
  letter-spacing: 0.05em;
}
.footer__tel {
  letter-spacing: 0.05em;
}
.footer__tel a {
  text-decoration: none;
  color: inherit;
}
.footer__nav {
  margin-bottom: 3.4em;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
  }
}
.footer__nav-list {
  gap: 1em 1.7em;
}
@media only screen and (max-width: 767px) {
  .footer__nav-list {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    gap: initial;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav-item {
    width: 50%;
    text-align: left;
  }
  .footer__nav-item:nth-child(n+3) {
    margin-top: 1em;
  }
}
.footer__nav-link {
  text-decoration: none;
  color: inherit;
  font-size: 109%;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .footer__nav-link {
    padding: 0 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .footer .icon_instagram svg {
    width: 0.8em;
  }
}
.footer__banners {
  margin-bottom: 3.4em;
  display: flex;
  gap: 1em 1.4em;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  .footer__banners {
    flex-direction: column;
  }
}
.footer__banners {
  max-width: 36em;
}
@media only screen and (max-width: 767px) {
  .footer__banners {
    max-width: 100%;
  }
}
.footer__banners {
  margin-inline: auto;
}
.mouse .footer__banners .footer__banner {
  transition: opacity 0.3s ease-in;
}
.mouse .footer__banners .footer__banner:hover, .touch .footer__banners .footer__banner.touchstart {
  opacity: 0.7;
}
.touch .footer__banners .footer__banner {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .footer__banners .footer__banner.touchend {
  transition-delay: 200ms;
}

/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _header.scss
author     : Abilive
style info : Header Component (BEM)
=================================================================== */
@keyframes fadezoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.c-slider {
  background-color: unset;
}
.c-slider__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.c-slider .splide__slide {
  overflow: hidden;
}
.c-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-slider .splide__slide.is-animating img {
  animation: fadezoom 14s linear forwards;
}
.c-slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid #838266;
  opacity: 0.4;
  margin: 4px;
  transition: all 0.5s ease;
}
.c-slider .splide__pagination__page.is-active {
  width: 8px;
  height: 8px;
  background: #838266;
  opacity: 1;
  transform: scale(1);
}
.c-slider .splide__pagination {
  bottom: 1em;
}
.c-slider--dots-right .splide__pagination {
  justify-content: flex-end;
}
.c-slider--dots-left-vertical-bottom {
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom {
    padding-left: 0;
  }
}
.c-slider--dots-left-vertical-bottom {
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom {
    padding-bottom: 25px;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  position: absolute;
  left: -6px;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__controls {
    left: 0;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  right: unset;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__controls {
    right: 0;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  bottom: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__controls {
    flex-direction: row;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  justify-content: unset;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__controls {
    justify-content: center;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  margin-inline: unset;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__controls {
    margin-inline: auto;
  }
}
.c-slider--dots-left-vertical-bottom .splide__controls {
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.c-slider--dots-left-vertical-bottom .splide__pagination {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__pagination {
    flex-direction: row;
  }
}
.c-slider--dots-left-vertical-bottom .splide__pagination {
  justify-content: unset;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__pagination {
    justify-content: center;
  }
}
.c-slider--dots-left-vertical-bottom .splide__pagination {
  align-items: unset;
}
@media only screen and (max-width: 767px) {
  .c-slider--dots-left-vertical-bottom .splide__pagination {
    align-items: center;
  }
}
.c-slider--dots-left-vertical-bottom .splide__pagination {
  padding: 0;
  gap: 12px;
}
.c-slider--dots-left-vertical-bottom .splide__pagination .splide__pagination__page {
  margin: 0;
  display: block;
}
.c-slider--dots-left-vertical-bottom .splide__toggle {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #838266;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
}
.c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2px 0 2px 4px;
  border-color: transparent transparent transparent #fff;
  margin-left: 1px;
}
.c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__pause {
  width: 4px;
  height: 4px;
  position: relative;
}
.c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__pause::before, .c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__pause::before {
  left: 0;
}
.c-slider--dots-left-vertical-bottom .splide__toggle .splide__toggle__pause::after {
  right: 0;
}
.c-slider--no-arrows .splide__arrows {
  display: none;
}
.c-slider--basic .splide__pagination__page {
  display: none;
}

/* ===================================================================
CSS information

file name	: common.css
author		 : Abilive
style info : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _header.scss
author     : Abilive
style info : Header Component (BEM)
=================================================================== */
.c-modal__content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.c-modal__content.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url("../images/common/modal_bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
  cursor: pointer;
}
.c-modal__box {
  position: relative;
  z-index: 2;
  background: rgba(247, 247, 245, 0.95);
  padding: calc(60 / var(--base) * 1em) calc(80 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .c-modal__box {
    padding: calc(48 / var(--base) * 1em) calc(16 / var(--base) * 1em);
  }
}
.c-modal__box {
  max-width: calc(900 / var(--base) * 1em);
  margin-inline: 5%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.c-modal__box::-webkit-scrollbar {
  width: 6px;
}
.c-modal__box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.c-modal__content.is-open .c-modal__box {
  transform: translateY(0);
}
.c-modal__close {
  position: absolute;
  top: calc(15 / var(--base) * 1em);
  right: calc(15 / var(--base) * 1em);
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
  padding: calc(5 / var(--base) * 1em);
  display: flex;
  color: #231815;
  transition: opacity 0.3s ease;
}
.c-modal__close:hover {
  opacity: 0.6;
}

html {
  font-size: calc(12 / 16 * 100%);
  line-height: 1.5;
}
@media only screen and (min-width: 1441px) {
  html {
    font-size: calc(14 / 16 * 100%);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  html {
    font-size: calc(12 / 16 * 100%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  html {
    font-size: calc(12 / 16 * 100%);
  }
}

body {
  color: #231815;
  background: #fff;
  -webkit-text-size-adjust: none;
}
body a {
  color: #231815;
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
}
body img {
  max-width: 100%;
  -webkit-touch-callout: none;
  line-height: 1;
}

body,
pre,
input,
textarea,
select {
  font-family: "Zen Old Mincho", serif;
}

input,
select,
textarea {
  font-size: 100%;
}

html.ie8 .view_tab,
html.ie8 .view_tab_sp,
html.ie8 .view_sp {
  display: none !important;
}
html.ie8 #abi_page {
  min-width: 1280px !important;
  margin: auto;
  font-size: 100% !important;
}

@media only screen and (min-width: 1025px) {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab,
  body .view_tab {
    display: none !important;
  }
}

* {
  box-sizing: border-box;
}

#svg_defs {
  display: none;
}

svg {
  --icon-width: 1em;
  width: var(--icon-width);
  aspect-ratio: 1/1;
}
svg.icon_instagram {
  --icon-width: 1.2em;
}
svg.icon_logo_text {
  --icon-width: 24em;
  aspect-ratio: 334/92;
}
svg.icon_close_mobile {
  --icon-width: 2.6em;
  aspect-ratio: 36/21;
}

.mouse .over {
  transition: opacity 0.3s ease-in;
}
.mouse .over:hover, .touch .over.touchstart {
  opacity: 0.7;
}
.touch .over {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .over.touchend {
  transition-delay: 200ms;
}

.en {
  font-family: "Cormorant Garamond", serif;
}

.u-font-special {
  font-family: "Noto Serif Display", serif;
}

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

.c-txt--s12 {
  font-size: 100%;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.c-txt--s11 {
  font-size: 92%;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.c-txt--s10 {
  font-size: 84%;
  line-height: 1;
  letter-spacing: 0.05em;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button {
  cursor: pointer;
  color: #231815;
}
button:focus-visible {
  outline: 2px solid blue;
}

.c-button {
  display: inline-flex;
  gap: 1em;
  align-items: center;
  font-size: 109%;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.c-button__label {
  width: 100%;
  text-align: center;
  font-size: inherit;
  letter-spacing: 0.05em;
}
.c-button__icon {
  font-size: inherit;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.c-button__icon .icon_arrow_right {
  --icon-width: 0.7em;
}
.c-button--small {
  font-size: 92%;
}
.c-button--primary {
  gap: 0;
  background: #838266;
  color: #fff;
  border-radius: 4px;
  padding: 1.4em 1.2em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-button--primary {
    padding: 1em 1.2em !important;
  }
}
@media only screen and (min-width: 1025px) {
  .c-button--primary:hover {
    background: #63634e;
  }
}
.c-button--secondary {
  gap: 0.3rem;
  background: none;
  color: #414134;
  border-bottom: 1px solid #AA9D79;
  padding: calc(10 / var(--base) * 1em) 0;
}
.c-button--secondary .c-button__icon {
  position: relative;
  width: calc(36 / var(--base) * 1em);
  aspect-ratio: 36/23;
  color: #fff;
  text-align: center;
}
.c-button--secondary .c-button__icon::before {
  content: "";
  width: calc(36 / var(--base) * 1em);
  aspect-ratio: 36/23;
  background: #838266;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 50%;
  transform: rotate(-20deg);
  transition: ease 0.3s background;
}
.c-button--secondary .c-button__icon svg {
  margin: auto;
}
@media only screen and (min-width: 1025px) {
  .c-button--secondary:hover {
    border-bottom: 1px solid transparent;
  }
  .c-button--secondary:hover .c-button__icon::before {
    background: #63634e;
  }
}
.c-button--fw {
  width: 100%;
}

.c-link {
  text-decoration: none;
  font-size: 92%;
  line-height: 1;
  padding: 1em 2em 1.5em 0;
  letter-spacing: 0.05em;
  color: #414134;
  display: inline-flex;
  align-items: center;
  gap: 0.625em;
  position: relative;
  min-width: 120px;
}
.c-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #AA9D79;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.c-link__icon {
  position: absolute;
  top: 40%;
  right: 0.5em;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1025px) {
  .c-link:hover::before {
    opacity: 0;
  }
}

.c-title {
  color: #1B1B1B;
  line-height: 1;
  font-weight: 400;
}
.c-title--en {
  font-family: "Cormorant Garamond", serif;
}
.c-title--jp {
  font-family: "Zen Old Mincho", serif;
}
.c-title--sub {
  font-size: 117%;
  font-weight: 500;
}
.c-title--sm {
  font-size: 134%;
  font-weight: 500;
  line-height: 1.125;
}
.c-title--s20 {
  font-size: 167%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s20 {
    font-size: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s20 {
    font-size: 134%;
  }
}
.c-title--s20 {
  line-height: 1.5;
}
.c-title--ms20 {
  font-size: 167%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--ms20 {
    font-size: 150%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--ms20 {
    font-size: 134%;
  }
}
.c-title--ms20 {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-title--s24 {
  font-size: 200%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s24 {
    font-size: 184%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s24 {
    font-size: 100%;
  }
}
.c-title--ms24 {
  font-size: 200%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--ms24 {
    font-size: 184%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--ms24 {
    font-size: 167%;
  }
}
.c-title--ms24 {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-title--s36 {
  font-size: 300%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s36 {
    font-size: 284%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s36 {
    font-size: 267%;
  }
}
.c-title--s50 {
  font-size: 417%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s50 {
    font-size: 384%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s50 {
    font-size: 350%;
  }
}
.c-title--s80 {
  font-size: 667%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s80 {
    font-size: 501%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s80 {
    font-size: 400%;
  }
}
.c-title--s180 {
  font-size: 1500%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title--s180 {
    font-size: 1001%;
  }
}
@media only screen and (max-width: 767px) {
  .c-title--s180 {
    font-size: 667%;
  }
}
.c-title--s180 {
  line-height: 0.8;
}
.c-title--main1 {
  color: #1B1B1B;
}
.c-title--main2 {
  color: #37461C;
}
.c-title--fill-white {
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title--fill-image {
  background-image: url("../images/common/bg_text.png");
  background-color: #F0F0E7;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title--fill-green-image {
  background-image: linear-gradient(rgba(27, 27, 27, 0.5), rgba(27, 27, 27, 0.5)), url("../images/common/bg_text2.png");
  background-color: #1B1B1B;
  background-blend-mode: overlay;
  /* overlay hoặc multiply */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-group-title {
  display: flex;
  gap: calc(6 / var(--base) * 1em);
}
.c-group-title--row {
  align-items: flex-end;
  gap: calc(16 / var(--base) * 1em);
}
.c-group-title--row .c-group-title--sm.u-align--bt {
  transform: translateY(-100%);
}
@media only screen and (max-width: 767px) {
  .c-group-title--row .c-group-title--sm.u-align--bt {
    transform: translateY(-50%);
  }
}
.c-group-title--row .c-group-title--s24 {
  margin-left: calc(8 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .c-group-title--row .c-group-title--s24 {
    margin-left: 0;
  }
}
.c-group-title--row .c-group-title--s24.u-align--bt {
  transform: translateY(-38%);
}
@media only screen and (max-width: 767px) {
  .c-group-title--row .c-group-title--s24.u-align--bt {
    transform: translateY(-20%);
  }
}
.c-group-title--column {
  flex-direction: column;
}
.c-group-title--lg {
  font-family: "Cormorant Garamond", serif;
  font-size: 667%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-group-title--lg {
    font-size: 501%;
  }
}
@media only screen and (max-width: 767px) {
  .c-group-title--lg {
    font-size: 400%;
  }
}
.c-group-title--lg {
  font-weight: 400;
  line-height: 1;
  background-image: linear-gradient(rgba(27, 27, 27, 0.5), rgba(27, 27, 27, 0.5)), url("../images/common/bg_text2.png");
  background-color: #1B1B1B;
  background-blend-mode: overlay;
  /* overlay hoặc multiply */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-group-title--sm {
  font-size: 117%;
  font-weight: 500;
  line-height: 1;
  color: #37461C;
}
.c-group-title--s24 {
  font-size: 200%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-group-title--s24 {
    font-size: 184%;
  }
}
@media only screen and (max-width: 767px) {
  .c-group-title--s24 {
    font-size: 167%;
  }
}
.c-group-title--s24 {
  line-height: 1;
  font-weight: 400;
}
.c-group-title--fill-green {
  background-color: #37461C;
  background-blend-mode: overlay;
  /* overlay hoặc multiply */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-group-title--fill-gray {
  background-color: #6D6565;
  background-blend-mode: overlay;
  /* overlay hoặc multiply */
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-table tr th,
.c-table tr td {
  padding: calc(8 / var(--base) * 1em) calc(20 / var(--base) * 1em);
  background: #F7F7F5;
  border-bottom: 3px solid transparent;
  background-clip: padding-box;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.c-table tr th {
  width: 28%;
  color: #1B1B1B;
  font-size: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-table tr th {
    font-size: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-table tr th {
    font-size: 92%;
  }
}
.c-table tr td {
  font-size: 92%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .c-table tr td {
    font-size: 92%;
  }
}
@media only screen and (max-width: 767px) {
  .c-table tr td {
    font-size: 84%;
  }
}
.c-table tr td {
  color: #231815;
}
.c-table--no-bg tr th,
.c-table--no-bg tr td {
  padding: 0 calc(10 / var(--base) * 1em) 0 0;
  font-size: 92%;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.c-table--no-bg tr th {
  color: #1B1B1B;
}
.c-table--fw {
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  #abi_page {
    width: 100%;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  #abi_page {
    font-size: 100% !important;
  }
}

.p-fv {
  position: relative;
  color: #fff;
}
.p-fv .c-title {
  color: inherit;
  line-height: 1.8;
  text-align: center;
}
.p-fv__body {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fv__body-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  align-items: center;
}

/* Styles need to be updated once the Figma design is ready. */
.topicpath {
  padding-block: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5em;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.js-fade-up.is-active {
  opacity: var(--fade-opacity, 1);
  transform: translateY(0);
}
/*# sourceMappingURL=common.css.map */
