@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font font-size */
  --font-size-base: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-22: 22px;
  --font-size-25: 25px;
  --font-size-26: 26px;
  --font-size-27: 27px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-35: 35px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-44: 44px;
  --font-size-45: 45px;
  --font-size-48: 48px;
  --font-size-50: 50px;
  --font-size-55: 55px;
  --font-size-56: 56px;
  --font-size-60: 60px;
  --font-size-64: 64px;
  /* 幅設定 */
  --min-contents-width: 1280px;
  --wide-inner-width: 1280px;
  --inner-width: 1080px;
  /* border-radius */
  --round-5: 5px;
  --round-10: 10px;
  --round-20: 20px;
  --round-30: 30px;
  --round-full: 999em;
  /* logoの幅 */
  --logo-width: 139px;
  /* mapの高さ */
  --map-height: 320px;
  /* btn defaults */
  --btn-height: 70px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-18);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: .14em;
  --btn-width-xs: 180px;
  --btn-width-small: 200px;
  --btn-width-regular: 240px;
  --btn-width-medium: 300px;
  --btn-width-large: 350px;
  --btn-width-xl: 400px;
  /* header */
  --header-height: 120px;
}

body {
  font-size: var(--font-size-base);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-main);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__inner {
  padding: 10px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 1720px;
  width: 89.5833333333%;
  margin: 0 auto;
  height: var(--header-height);
}
.header__logo {
  width: var(--logo-width);
}
.header__right {
  width: 740px;
}
.header-info {
  width: 100%;
}
.header-info__btn {
  margin-left: 16px;
  --btn-height: 60px;
  --btn-font-size: var(--font-size-17);
  width: 250px;
}
.header-info__sns {
  margin-left: 20px;
}
.header-nav {
  margin-top: 10px;
  width: 100%;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 2em;
}
.header-nav__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-nav__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.25em);
          transform: translate(-50%, 0.25em);
  bottom: 0;
}
.header-nav__link:hover {
  color: var(--color-main);
  opacity: 1;
}
.header-nav__link:hover::after {
  width: 2em;
}
.header-nav__link.current {
  color: var(--color-main);
}
.header-nav__link.current::after {
  width: 2em;
}

/* ===========================================
*
* nav menu style
*
* ======================================== */
.nav-menu {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--color-main);
  color: var(--color-white);
  position: relative;
  z-index: 5;
}
.nav-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1080px;
  margin-inline: auto;
}
.nav-menu__item {
  position: relative;
  z-index: 1;
}
.nav-menu__link {
  position: relative;
  text-align: center;
  padding-block: 19px;
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  gap: 0.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.nav-menu__link__main {
  font-size: 0.6em;
}
.nav-menu__link__sub {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav-menu__link:hover {
  opacity: 1;
}
.nav-menu__link:hover .nav-menu__link__sub {
  color: var(--color-accent);
}
.nav-menu__link.current .nav-menu__link__sub {
  color: var(--color-accent);
}

/* 
  ドロップダウンメニュー
  -------------------------*/
/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background-color: var(--color-theme);
}
.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 50px;
}
.footer__bottom {
  padding-block: 50px 30px;
  color: var(--color-white);
  background-color: var(--color-main);
}
.footer__logo {
  margin-bottom: 36px;
}
.footer-nav {
  margin: 0 auto;
}
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-nav__list:not(:last-child) {
  margin-bottom: 1em;
}
.footer-nav__item:not(:last-child) {
  border-right: 1px solid var(--color-white);
}
.footer-nav__item:first-child {
  padding-left: 0;
}
.footer-nav__item:last-child {
  padding-right: 0;
}
.footer-nav__link {
  line-height: 1;
  font-size: 14px;
  padding-inline: 1.5em;
  letter-spacing: var(--letter-spacing-base);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-nav__link:hover {
  opacity: 0.7;
}
.footer__info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.footer__info__main {
  font-size: 15px;
  margin-bottom: 30px;
}
.footer__info__address {
  font-size: var(--font-size-16);
  margin-bottom: 16px;
  text-align: center;
}
.footer__info__time-table {
  table-layout: fixed;
  width: 100%;
  max-width: 517px;
  margin: 0 auto;
  font-size: 15px;
  letter-spacing: var(--letter-spacing-regular);
}
.footer__info__time-table thead th {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 0.25em 0.25em;
  text-align: center;
}
.footer__info__time-table thead th:not(:first-child) {
  border-left: 2px solid var(--color-theme);
}
.footer__info__time-table tbody th,
.footer__info__time-table tbody td {
  background-color: var(--color-white);
  color: var(--color-main);
  padding: 0.5em 0.25em;
  text-align: center;
  vertical-align: middle;
}
.footer__info__time-table tbody th:not(:first-child),
.footer__info__time-table tbody td:not(:first-child) {
  border-left: 2px solid var(--color-theme);
}
.footer__info__time-table tbody td > span {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  z-index: 1;
}
.footer__info__time-table tbody td > span::after {
  content: "";
  width: 1em;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-bottom: 1px solid var(--color-main);
}
.footer__info__time-table col {
  width: 60px;
}
.footer__info__time-table col:first-child {
  width: 90px;
}
.footer__info__flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  margin-top: 30px;
}
.footer__info__actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 20px;
}
.footer__info__btn {
  width: 370px;
}
.footer__copy {
  font-size: 12px;
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-regular);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: var(--color-white);
  margin-top: 60px;
}

/* ===========================================
*  
*  main layouts
* 
* ======================================== */
.wrapper {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.logo img {
  width: 100%;
}
.logo:hover {
  opacity: 0.7;
}

/* 
inner クラス
-------------------------*/
.inner {
  /* 1080px inner */
  max-width: var(--inner-width);
  width: 100%;
  margin: 0 auto;
}

.wide-inner {
  /* 1280px inner 可変のため子要素は%指定 */
  max-width: var(--wide-inner-width);
  width: 95%;
  margin: 0 auto;
}

/*------------------------------
*
* title
*
------------------------------*/
/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img--center img {
  margin: 0 auto;
}

.ttl-img--left img {
  margin-right: auto;
}

.ttl-img--right img {
  margin-left: auto;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  --ttl-main-size: 1em;
  --ttl-sub-size: var(--font-size-50);
  --ttl-margin-bottom: 60px;
  font-size: var(--font-size-28);
  margin-bottom: var(--ttl-margin-bottom);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cmn-ttl--center {
  /* 中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  /* 左揃え */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  /* 右揃え */
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-size: var(--ttl-main-size);
  margin-block: -0.25em;
  display: inline-block;
  letter-spacing: 0.14em;
}
.cmn-ttl__sub {
  font-size: var(--ttl-sub-size);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 32px;
}
.cmn-ttl::after {
  content: "";
  -ms-flex-preferred-size: block;
      flex-basis: block;
  width: 50px;
  height: 1px;
  background-color: var(--color-accent);
  margin-top: 32px;
}

.cmn-border-left-ttl {
  font-size: var(--font-size-28);
  letter-spacing: 0.14em;
  padding: 0.1428571429em 0 0.1428571429em 20px;
  border-left: 5px solid #d6d1cf;
}

.cmn-border-bottom-ttl {
  font-size: var(--font-size-28);
  letter-spacing: 0.14em;
  text-align: center;
}

.cmn-border-bottom-ttl__main {
 padding-bottom: 12px;
 padding-inline: 10px;
  border-bottom: 6px solid #d6d1cf;
  display: inline-block;
}
.cmn-solid-ttl {
  font-size: var(--font-size-22);
  letter-spacing: 0.14em;
  padding: 0.3863636364em 18px;
  color: var(--color-white);
  background-color: var(--color-main);
}

.cmn-ttl02 {
  font-size: var(--font-size-28);
  letter-spacing: 0.14em;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--color-accent);
}

/*------------------------------
*
* tel style
*
------------------------------*/
a[href^="tel:"] {
  pointer-events: none;
}

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-28);
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--color-text-main);
  --tel-icon-space: 1.2857142857em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.8928571429em;
  --tel-icon-height: 0.8928571429em;
  font-weight: var(--font-weight-medium, 700);
  letter-spacing: var(--tel-letter-space, 0.05);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
}
.tel-icon {
  /* icon付き */
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/icon_tel_main.png) no-repeat center/contain;
}
.tel-icon--white {
  color: var(--color-white);
}
.tel-icon--white::before {
  background: url(../img/icon_tel_white.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --sns-icon-size: 40px;
  gap: var(--sns-icon-space);
}
.sns__icon {
  width: var(--sns-icon-size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

/*------------------------------
*
* table style
*
------------------------------*/
table {
  --table-replace-size: 16px;
  --table-replace-space: 1em;
}
table .replace-txt {
  /* テーブルタグ内で使用するリプレイステキスト */
  height: var(--table-replace-size);
  margin-left: var(--table-replace-space);
  display: inline-block;
}

.main-table {
  --table-letter-spacing: var(--letter-spacing-regular);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-text-align: left;
  --table-th-x-padding: 50px 1em;
  --table-th-y-padding: 0.8847058824em;
  --table-th-bg-color: transparent;
  --table-th-color: var(--color-text-main);
  --table-th-width: 190px;
  --table-td-x-padding: 1em 50px;
  --table-td-y-padding: 0.8847058824em;
  --table-td-bg-color: transparent;
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: rgb(var(--color-main-rgb) / 0.25);
  --table-th-border-color: rgb(var(--color-main-rgb) / 0.25);
  --table-td-border-color: rgb(var(--color-main-rgb) / 0.25);
  --table-width: 100%;
  width: var(--table-width);
  border-block: 1px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
  font-size: var(--font-size-17);
  line-height: 1.76;
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--table-th-border-color);
}
.main-table tr:not(:first-child) td {
  border-top: 1px solid var(--table-td-border-color);
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}
.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 2;
  --sentence-p-margin: 1.42em;
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  line-height: var(--sentence-line-height);
  font-size: var(--font-size-17);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}
.cmn-sentence p::before, .cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/* 
画像
-------------------------*/
.cmn-img img {
  width: 100%;
}

/*------------------------------
*
* time
*
------------------------------*/
.cmn-time {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.cmn-time__item {
  gap: 5px 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-time__item dt {
  color: var(--main-color);
  background-color: var(--color-theme);
  padding: mg(24, 13, 1.5) 5px;
  text-align: center;
  min-width: 95px;
}

/* 
* カラムスタイル
* flexを使用したカラム指定を行うクラスです
* flx-baseとセットで使用します
* col-container-PCColumnNum-SPColumnNum
-------------------------*/
.col-container-2-1,
.col-container-2-2 {
  /* PC2列　SP1列 */
  /* PC2列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 40px;
  /* 左右の余白 */
  --col-x-space: 40px;
  gap: var(--col-y-space, 40px) var(--col-x-space, 40px);
}
.col-container-2-1 > .col-item,
.col-container-2-2 > .col-item {
  width: calc((100% - var(--col-x-space, 40px)) / 2);
}

.col-container-3-1,
.col-container-3-2 {
  /* PC3列　SP1列 */
  /* PC3列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 40px;
  /* 左右の余白 */
  --col-x-space: 30px;
  gap: var(--col-y-space, 40px) var(--col-x-space, 30px);
}
.col-container-3-1 > .col-item,
.col-container-3-2 > .col-item {
  width: calc((100% - var(--col-x-space, 30px) * 2) / 3);
}

.col-container-4-2 {
  /* PC4列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 30px;
  /* 左右の余白 */
  --col-x-space: 20px;
  gap: var(--col-y-space, 30px) var(--col-x-space, 20px);
}
.col-container-4-2 > .col-item {
  width: calc((100% - var(--col-x-space, 20px) * 3) / 4);
}

/*------------------------------
*
* btn style
*
------------------------------*/
.cmn-btn--primary {
  --btn-padding-x: 1em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-main);
  text-align: center;
  border-radius: 0px;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: var(--color-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-main);
}
.cmn-btn--primary:hover {
  background-color: var(--color-main-lighten);
  color: var(--color-main);
  border-color: var(--color-main);
  opacity: 1;
}
.cmn-btn--secondary {
  --btn-padding-x: 1em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--btn-line-height);
  font-family: var(--font-main);
  text-align: center;
  border-radius: 0px;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-white);
}
.cmn-btn--secondary:hover {
  background-color: rgb(var(--color-main-rgb)/0.3);
  color: var(--color-white);
  border-color: var(--color-white);
  opacity: 1;
}
.cmn-btn--arrow-text-main {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-text-main::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 41px;
  height: 17px;
  top: 50%;
  right: 0px;
  translate: 50% -50%;
  background: url(../img/arrow_right_text-main.svg) no-repeat center/contain;
}
.cmn-btn--arrow-text-main:hover::after {
  translate: 75% -50%;
}
.cmn-btn--arrow02 {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow02::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 14px;
  top: 50%;
  right: 15px;
  translate: 50% -50%;
  background: url(../img/arrow_right02.svg) no-repeat center/contain;
}
.cmn-btn--arrow02:hover::after {
  translate: 50% -50%;
}
.cmn-btn--arrow-white {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-white::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  z-index: 1;
  width: 41px;
  height: 17px;
  top: 50%;
  right: 0px;
  translate: 50% -50%;
  background: url(../img/arrow_right_white.svg) no-repeat center/contain;
}
.cmn-btn--arrow-white:hover::after {
  translate: 75% -50%;
}
.cmn-btn--icon-mail > span {
  padding-left: 37px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 27px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_mail.png) no-repeat center/contain;
}
.cmn-btn--icon-ex > span {
  padding-left: 33px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-ex > span::before {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_ex.png) no-repeat center/contain;
}
.cmn-btn--icon-instagram-white > span {
  padding-left: 2.25em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-instagram-white > span::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/icon_instagram_white.svg) no-repeat center/contain;
}
.cmn-btn--xs {
  max-width: var(--btn-width-xs);
}
.cmn-btn--sm {
  width: var(--btn-width-small);
}
.cmn-btn--rg {
  width: var(--btn-width-regular);
}
.cmn-btn--md {
  width: var(--btn-width-medium);
}
.cmn-btn--lg {
  width: var(--btn-width-large);
}
.cmn-btn--xl {
  width: var(--btn-width-xl);
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  --col-x-space: 40px;
  --col-y-space: 40px;
  max-width: 1720px;
  width: 89.5833333333%;
  margin-inline: auto;
  margin-bottom: 50px;
}
.main-visual-item {
  height: clamp(506px, 39.5833333333vw, 760px);
  position: relative;
  z-index: 1;
}
.main-visual-item__catch {
  width: 59.5238095238%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
}
.main-visual-item__arrow {
  width: 70px;
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
}
.main-visual-item:nth-child(1) .main-visual-item__catch {
  -webkit-transform: translate(-50%, -62.5%);
          transform: translate(-50%, -62.5%);
}

/*------------------------------
*
* main style page visual
*
------------------------------*/
.page-visual {
  max-width: 1720px;
  width: 89.5833333333%;
  margin-inline: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  height: clamp(333px, 26.0416666667vw, 500px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.page-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 20;
  font-size: var(--font-size-44);
  letter-spacing: var(--letter-spacing-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1;
  padding: 54px 70px;
  background-color: rgb(var(--color-white-rgb)/0.92);
  white-space: nowrap;
}
.page-visual__catch__main {
  border-bottom: 6px solid #d6d1cf;
  padding-bottom: 20px;
  letter-spacing: 0.2em;
  line-height: 1.25em;
}
.page-visual__catch__sub {
  letter-spacing: var(--letter-spacing-large);
  font-size: var(--font-size-32);
  color: var(--color-accent);
  margin-top: 20px;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 64px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--gray-color);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--white-color);
  --pagenation-item-current-bg: var(--main-color);
  margin-top: var(--pagenation-margin-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenation li > a {
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  display: grid;
  place-content: center;
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: transparent;
  --post-width: 100%;
  --post-item-margin: 20px;
  --post-tags-width: 100%;
  --post-title-line: 1;
  --post-title-font-size: var(--font-size-17);
  --post-date-font-size: var(--font-size-16);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
  --hov-bg-color-to: var(--darken-theme-color);
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post__box {
  width: calc(100% - 120px);
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 100px;
  aspect-ratio: 1/1;
}
.cmn-post__right {
  padding-block: 5px;
  border-left: 1px solid rgb(var(--color-main-rgb)/0.25);
  padding-left: 17px;
  width: calc(100% - 112px);
}
.cmn-post__tags {
  width: var(--post-tags-width, auto);
  margin-bottom: 7px;
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size, 16px);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 15px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 1;
  --tag-x-padding: 0;
  --tag-round: 0px;
  --tag-color: var(--color-accent);
  --tag-bg-color: transparent;
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  --tag-font-size: 15px;
  --tag-letter-space: var(--letter-spacing-base);
  --tag-height: 25px;
  --tag-x-padding: 8px;
  --tag-round: 4px;
  --tag-color: var(--color-accent);
  --tag-bg-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--tag-color);
}
.tag-link:hover {
  background-color: var(--tag-color);
  color: var(--color-white);
}

.tag-list {
  --tag-space: 8px 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--tag-space);
}

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 30px;
  gap: 10px;
}

.tag-btn {
  --tag-btn-color: #b3b3b3;
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-main);
  --tag-btn-round: 3em;
  --tag-btn-padding: 3em;
  padding: 0.5em 1em;
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tag-btn:hover {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  opacity: 1;
}
.tag-btn.current {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.2;
}
.prev-next__item.prev, .prev-next__item.next {
  width: 8em;
}
.prev-next__item:not(:last-child) {
  margin-right: 1.5em;
}
.prev-next__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 3em;
  color: #b3b3b3;
  background-color: var(--color-gray);
}
.prev-next__link:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2em;
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 3em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  /* パンくず設定 */
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-medium);
  --bread-color: var(--color-text-main);
  /* gratere = 「>(大なり)」 */
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: "＞";
  --bread-grater-space: 0 1em;
  --bread-hov-color: var(--color-accent);
  --bread-link-color: var(--color-text-main);
  --bread-last-item-color: var(--color-accent);
  --bread-padding: 1em 0 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-crumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: var(--bread-font-size, 14px);
  letter-spacing: var(--bread-letter-space, 0.05em);
  font-weight: var(--bread-font-weight, 400);
  overflow: hidden;
  padding: var(--bread-padding, 1em 0);
}
.bread-crumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bread-color);
  white-space: nowrap;
}
.bread-crumb__item:not(:last-child)::after {
  content: var(--bread-grater-content, ">");
  margin: var(--bread-grater-space, 0.5em);
  color: var(--bread-grater-color);
}
.bread-crumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  color: var(--bread-last-item-color);
}
.bread-crumb__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color);
}
.bread-crumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color);
}

/* ----------------------------------------------------
*  Utility（スタイルの調整用クラス　common.cssにあるものは省略）
*  ---------------------------------------------------- */
/* margin style
  -------------------------*/
.mx--center {
  margin-inline: auto;
}

.mt-min {
  margin-top: 10px;
}

.mt-smr {
  margin-top: 20px;
}

.mt-sm {
  margin-top: 30px;
}

.mt-nm {
  margin-top: 40px;
}

.mt-rg {
  margin-top: 50px;
}

.mt-md {
  margin-top: 60px;
}

.mt-lg {
  margin-top: 70px;
}

.mt-lgr {
  margin-top: 80px;
}

.mb-min {
  margin-bottom: 10px;
}

.mb-smr {
  margin-bottom: 20px;
}

.mb-sm {
  margin-bottom: 30px;
}

.mb-nm {
  margin-bottom: 40px;
}

.mb-rg {
  margin-bottom: 50px;
}

.mb-md {
  margin-bottom: 60px;
}

.mb-lg {
  margin-bottom: 70px;
}

.mb-lgr {
  margin-bottom: 80px;
}

/* padding style
-------------------------*/
.cmn-pd {
  padding: 100px 0;
}

.pt-min {
  margin-top: 10px;
}

.pt-smr {
  margin-top: 20px;
}

.pt-sm {
  margin-top: 30px;
}

.pt-nm {
  margin-top: 40px;
}

.pt-rg {
  margin-top: 50px;
}

.pt-md {
  margin-top: 60px;
}

.pt-lg {
  margin-top: 70px;
}

.pt-lgr {
  margin-top: 80px;
}

.pb-min {
  margin-bottom: 10px;
}

.pb-smr {
  margin-bottom: 20px;
}

.pb-sm {
  margin-bottom: 30px;
}

.pb-nm {
  margin-bottom: 40px;
}

.pb-rg {
  margin-bottom: 50px;
}

.pb-md {
  margin-bottom: 60px;
}

.pb-lg {
  margin-bottom: 70px;
}

.pb-lgr {
  margin-bottom: 80px;
}

/* 
pc時に非表示
-------------------------*/
.pc-none {
  display: none !important;
}

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* top-shop
*
------------------------------*/
.top-shop {
  margin-top: 50px;
}
.top-shop__inner {
  max-width: 1720px;
  width: 89.5833333333%;
  min-width: 1280px;
  padding: 218px 0 157px;
  position: relative;
  z-index: 1;
}
.top-shop__content {
  padding-left: 34px;
}
.top-shop__img {
  width: calc(100% - 615px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.top-shop__img > img {
  -o-object-position: 20% 50%;
     object-position: 20% 50%;
}
.top-shop__ttl {
  border-left: 10px solid #d6d1cf;
  font-size: var(--font-size-48);
  letter-spacing: 0.14em;
  padding: 30px 0 30px 30px;
  gap: 1em;
}
.top-shop__ttl__sub {
  font-size:calc( var(--font-size-48) - 0.625rem);/*38px*/
  letter-spacing: 0.14em;
  display: block;
  margin-block: -0.25em;
}
.top-shop__ttl__main {
  display: block;
  margin-block: -0.25em;
}
.top-shop__btn {
  margin-top: 40px;
  width: 440px;
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.top-news::after {
  content: "";
  width: 95%;
  max-width: 1720px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: var(--color-theme);
}
.top-news__left {
  width: 180px;
}
.top-news .cmn-post {
  width: 860px;
}
.top-news__btn {
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  padding-left: 80px;
  line-height: 60px;
  position: relative;
  z-index: 1;
}
.top-news__btn::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/arrow_right_text-main.svg) no-repeat left center/66.67%, var(--color-accent);
}
.top-news__btn:hover::after {
  background: url(../img/arrow_right_text-main.svg) no-repeat left center/66.67%, var(--color-accent-lighten);
}

/*------------------------------
*
* top-online
*
------------------------------*/
.top-online {
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
  background: url(../img/top/top-online_bg.png) no-repeat bottom right/min(50%, 960px) auto;
}
.top-online__ttl {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.top-online__ttl::before {
  content: "";
  width: 5.1785714286em;
  height: 4.3571428571em;
  background: url(../img/finanshe.png) no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  top: 5.3214285714em;
  right: 0;
  translate: 0.5357142857em 0;
}
.top-online__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 54px;
  width: 575px;
}
.top-online__img {
  width: max(560px, 50vw - 80px);
  height: 480px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.top-online__gallery {
  max-width: 1850px;
  width: 95%;
  margin: 90px auto 0;
  --col-x-space: 30px;
  --col-y-space: 30px;
}
.top-online__gallery-item {
  aspect-ratio: 1/1;
}
.top-online__container {
  max-width: 1920px;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* padding-right: min(420px, calc(50% - 540px));
   */
}

/*------------------------------
*
* top-gift
*
------------------------------*/
.top-gift {
  background: url(../img/top/gift_bg.jpg) no-repeat center/cover;
}
.top-gift__ttl {
  margin-bottom: 50px;
}
.top-gift__box {
  border: 1px solid var(--color-white);
  margin-inline: auto;
  width: 980px;
  padding: 130px;
  position: relative;
  z-index: 1;
}
.top-gift__box::after {
  content: "";
  width: calc(100% - 100px);
  height: calc(100% - 100px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url(../img/top/gift_illust01.png) no-repeat top 163px left 100px/153px, url(../img/top/gift_illust02.png) no-repeat bottom 83px right 40px/125px, rgb(var(--color-white-rgb)/0.94);
}
.top-gift__btn {
  width: 440px;
  margin: 50px auto 0;
}

/*------------------------------
*
* top-about
*
------------------------------*/
.top-about {
  padding-top: 110px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.top-about::before {
  content: "";
  width: calc(985px + 50% - 540px);
  height: 420px;
  background-color: var(--color-theme);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.top-about__ttl {
  margin-bottom: 50px;
}
.top-about__content {
  position: relative;
  margin-top: 20px;
  z-index: 1;
  margin-inline: 0 auto;
  max-width: 590px;
}
.top-about__content::before {
  content: "";
  width: 123px;
  height: 192px;
  background: url(../img/coffee.png) no-repeat top center/contain;
  left: 350px;
  top: 0;
  translate: 0 -78px;
  z-index: -1;
  position: absolute;
}
.top-about__img {
  width: max(540px, 50vw - 100px);
  max-width: 860px;
  height: 500px;
}
.top-about__container {
  max-width: 1920px;
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: min(420px, calc(50% - 540px));
  margin: 0 auto;
}
.top-about__btn {
  margin-top: 60px;
  width: 440px;
}

/*------------------------------
*
* top-cafe
*
------------------------------*/
.top-cafe {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background-color: var(--color-theme);
}
.top-cafe::before {
  content: "";
  height: 370px;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--color-main);
}
.top-cafe__container {
  --col-x-space: 40px;
  --col-y-space: 40px;
}
.top-cafe-item__img {
  width: 100%;
  aspect-ratio: 62/42;
  margin-bottom: -50px;
}
.top-cafe-item__content {
  position: relative;
  z-index: 10;
  background-color: var(--color-white);
  -webkit-box-shadow: 0px 0px 12.87px 0.13px rgb(var(--color-black-rgb)/0.1);
          box-shadow: 0px 0px 12.87px 0.13px rgb(var(--color-black-rgb)/0.1);
  padding: 50px 20px 16px;
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
.top-cafe-item__ttl {
  margin-bottom: 32px;
}
.top-cafe-item__ttl__main {
  margin-block: -0.25em;
  display: inline-block;
  font-size: var(--font-size-20);
  letter-spacing: 0.14em;
}
.top-cafe-item__ttl__sub {
  font-size: var(--font-size-35);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 20px;
}
.top-cafe-item__btn {
  margin-top: 30px;
  margin-left: auto;
  width: 140px;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  padding-left: 62px;
  line-height: 50px;
  position: relative;
  z-index: 1;
}
.top-cafe-item__btn::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/arrow_right_text-main.svg) no-repeat left center/66.67%, var(--color-accent);
}
.top-cafe-item__btn:hover::after {
  background: url(../img/arrow_right_text-main.svg) no-repeat left center/66.67%, var(--color-accent-lighten);
}

/*------------------------------
*
* top-reserve
*
------------------------------*/
.top-reserve {
  padding: 130px 0 120px;
  background: url(../img/top/reserve_bg.jpg) no-repeat center/cover;
  color: var(--color-white);
}
.top-reserve__ttl {
  margin-bottom: 50px;
}
.top-reserve__actions {
  margin-top: 40px;
  gap: 40px;
}
.top-reserve__sentence {
  font-size: var(--font-size-18);
  color: var(--color-white);
  text-align: center;
}
.top-reserve__btn {
  width: 440px;
  text-align: left;
  --btn-height: 100px;
  --btn-padding-x: 30px;
  --btn-padding-y: 16px;
  --btn-font-size: var(--font-size-22);
}
.top-reserve__tel {
  --tel-font-size: var(--font-size-34);
  --tel-icon-space: 1.3235294118em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.7647058824em;
  --tel-icon-height: 0.7647058824em;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/* about pageでカラーが変更になるため、以下はその調整 */
.about-page {
  --color-accent: #0f5474;
  --color-accent-rgb: 15 84 116;
  --color-accent-darken: #0a445e;
  --color-accent-lighten: #1a82b2;
  --color-accent-saturate: #0c5679;
  --color-accent-desaturate: #135472;
}
.about-page .nav-menu{
  background-color: var(--color-accent);
}
.about-page .nav-menu__link:hover{
  opacity: .7;
}
.about-page .nav-menu__link:hover .nav-menu__link__sub{
  color: var(--color-white);
}
.about-page .nav-menu__link.current .nav-menu__link__sub{
  color: var(--color-white);
}
.about-page .cmn-ttl::after{
  background-color: var(--color-accent);
}
.about-page .cmn-border-left-ttl{
  border-color: var(--color-accent);
}
.about-page .bread-crumb {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
/*------------------------------
*
* feature
*
------------------------------*/
.feature {
  background: url(../img/about/feature_bg.png) no-repeat top center / cover;
}
.feature-item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.feature-item:nth-child(odd) {
  padding-right: calc(50% - 540px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature-item:nth-child(even) {
  padding-left: calc(50% - 540px);
}
.feature-item:not(:last-child) {
  margin-bottom: 50px;
}
.feature-item:nth-child(1) .feature-item__content::after {
  width: 112px;
  height: 98px;
  background: url(../img/about/feature_illust01.png) no-repeat top center/contain;
  right: 10px;
  bottom: 0px;
}
.feature-item:nth-child(2) .feature-item__content {
  width: 568px;
}
.feature-item:nth-child(2) .feature-item__content::after {
  width: 128px;
  height: 62px;
  background: url(../img/about/feature_illust02.png) no-repeat top center/contain;
  right: 60px;
  bottom: -10px;
}
.feature-item__ttl {
  margin-bottom: 40px;
}
.feature-item__content {
  padding-top: 20px;
  position: relative;
  z-index: 1;
  width: 560px;
}
.feature-item__content::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.feature-item__img {
  width: 560px;
  aspect-ratio: 56/35;
}

/*------------------------------
*
* gift
*
------------------------------*/
.gift {
  position: relative;
  z-index: 1;

}
.gift::before {
  content: "";
  height: 100%;
  width: calc(780px + 50% - 540px);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-color: var(--color-accent);
}
.gift__ttl.cmn-ttl::after {
  background-color: var(--color-white);
}
.gift__container {
  padding-right: calc(50% - 540px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.gift__img {
  height: 580px;
  width: max(560px, 50vw - 80px);
}
.gift__content {
  width: 560px;
  position: relative;
  z-index: 1;
}
.gift__content::after {
  content: "";
  width: 125px;
  height: 155px;
  background: url(../img/about/gift_illust.png) no-repeat top center/contain;
  top: 0;
  right: 0;
  translate: 61px -38px;
  position: absolute;
  z-index: -1;
}
.gift__btn {
  width: 440px;
  margin-top: 50px;
  --btn-height: 100px;
  --btn-padding-x: 30px;
  --btn-padding-y: 16px;
  --btn-font-size: var(--font-size-22);
}

/*------------------------------
*
* cafe
*
------------------------------*/
.cafe {
  position: relative;
  z-index: 1;
  padding: 120px 0 100px;
  background-color: var(--color-theme);
}
.cafe::before {
  content: "";
  height: 568px;
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-color: var(--color-main);
}
.cafe::after {
  content: "";
  width: 123px;
  height: 182px;
  background: url(../img/about/coffee_white.png) no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  top: 185px;
  left: calc(50% + 390px);
}
.cafe__ttl.cmn-ttl::after {
  background-color: var(--color-white);
}
.cafe__container {
  --col-x-space: 40px;
  --col-y-space: 40px;
}
.cafe__sentence {
  text-align: center;
  margin-bottom: 60px;
}
.cafe-item {
  aspect-ratio: 62/42;
  position: relative;
  z-index: 1;
}
.cafe-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.cafe-item__ttl {
  width: 400px;
  height: 170px;
  background-color: rgb(var(--color-white-rgb)/0.94);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.cafe-item__ttl__main {
  margin-block: -0.25em;
  display: inline-block;
  font-size: var(--font-size-20);
  letter-spacing: 0.14em;
}
.cafe-item__ttl__sub {
  font-size: var(--font-size-35);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 20px;
}
.cafe-item__btn {
  margin-top: 30px;
  margin-left: auto;
  display: inline-block;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  padding-left: 62px;
  line-height: 50px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  color: var(--color-white);
}
.cafe-item__btn::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  background: url(../img/arrow_right_white.svg) no-repeat left center/66.67%, var(--color-accent);
}

/* ===========================================
*
* morning-cafe-page
*
* ======================================== */
.morning-cafe-link__container {
  gap: 60px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1080px;
  width: 100%;
}
.morning-cafe-link__btn {
  width: 500px;
}

/*------------------------------
*
* service
*
------------------------------*/
.service__ttl {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.service__sentence {
  text-align: center;
}
.service__container {
  margin-top: 60px;
}
.service-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-item:not(:last-child) {
  margin-bottom: 60px;
}
.service-item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-right: calc(50% - 540px);
}
.service-item:nth-child(even) {
  padding-left: calc(50% - 540px);
}
.service-item__ttl {
  margin-bottom: 40px;
}
.service-item__content {
  width: 600px;
}
.service-item__btn {
  margin-top: 40px;
  width: 440px;
  --btn-font-size: var(--font-size-22);
}
.service__copy {
  font-size: var(--font-size-26);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.615;
  margin-top: 60px;
  margin-bottom: 60px;
}
.service__copy > span {
  padding-inline: 2em;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.service__copy > span::after {
  content: "";
  width: 100%;
  height: 2.7692307692em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  background: url(../img/morning-cafe/service_copy_right.png) no-repeat right center/contain, url(../img/morning-cafe/service_copy_left.png) no-repeat left center/contain;
}
.service__data {
  margin-top: 50px;
  max-width: 1080px;
  width: 100%;
}
.service__data__item:not(:last-child) {
  margin-bottom: 50px;
}
.service__data__item dt {
  margin-bottom: 20px;
}
.service__data__item dt .small {
  font-size: var(--font-size-20);
}
.service__time-table {
  table-layout: fixed;
  width: 100%;
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
}
.service__time-table thead th {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 0.5em 1em;
  text-align: center;
}
.service__time-table thead th:not(:first-child) {
  border-left: 2px solid var(--color-white);
}
.service__time-table tbody th,
.service__time-table tbody td {
  background-color: var(--color-theme);
  color: var(--color-main);
  padding: 0.5em 1em;
  text-align: center;
  vertical-align: middle;
}
.service__time-table tbody th:not(:first-child),
.service__time-table tbody td:not(:first-child) {
  border-left: 2px solid var(--color-white);
}
.service__time-table tbody td > span {
  display: inline-block;
  width: 1em;
  height: 1em;
  position: relative;
  z-index: 1;
}
.service__time-table tbody td > span::after {
  content: "";
  width: 1em;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-bottom: 1px solid var(--color-main);
}
.service__time-table col {
  width: 127px;
}
.service__time-table col:first-child {
  width: 191px;
}
.service__business-time__item dt{
  padding: .55em 1em;
  font-size: var(--font-size-20);
  letter-spacing: 0.14em;
}
.service__business-time__item:not(:last-child) {
  margin-bottom: 28px;
}
.service__business-time__item dd {
  margin-top: 19px;
}
.service__please {
margin-top: 35px;
font-size: var(--font-size-18);
letter-spacing: var(--letter-spacing-small);
}
#service-morning.service .service__ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -47% -49%;
  width: 24.7142857143em;
  height: 6.6071428571em;
  background: url(../img/morning-cafe/mornig_ttl_illust.png) no-repeat top center/contain;
}
#service-morning.service .service__time-table th,
#service-morning.service .service__time-table td {
  border-color: var(--color-theme);
}
#service-morning.service .service__time-table tbody th,
#service-morning.service .service__time-table tbody td {
  background-color: var(--color-white);
}

#service-afternoon.service .service__ttl {
  position: relative;
  z-index: 1;
}
#service-afternoon.service .service__ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -47% -62%;
  width: 23.8214285714em;
  height: 6.5357142857em;
  background: url(../img/morning-cafe/afternoon_ttl_illust.png) no-repeat top center/contain;
}

/* volume-deal
-------------------------*/
.volume-deal {
  margin-top: 60px;
}
.volume-deal__ttl {
  margin-bottom: 40px;
}
.volume-deal__sentence {
  text-align: center;
}

/* recom-menu
-------------------------*/
.recom-menu {
  margin-top: 70px;
  padding: 27px 54px 50px;
  max-width: 1080px;
  border: 1px solid var(--color-main);
}
.recom-menu__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.recom-menu__content {
  width: 694px;
  position: relative;
  z-index: 1;
}
.recom-menu__content::after {
  content: "";
  position: absolute;
}
.recom-menu__sentence {
  --sentence-line-height: 1.765;
}
.recom-menu__img {
  width: 236px;
}
.recom-menu__ttl {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.14em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 35px;
}
.recom-menu__ttl__sub {
  font-size: var(--font-size-20);
  letter-spacing: 0.14em;
  padding-bottom: 1.5em;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 11px;
}
.recom-menu__ttl__sub::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0%;
  width: 12em;
  height: 1.9em;
  background: url(../img/morning-cafe/menu_recom_ttl_deco.png) no-repeat top center/contain;
}
.recom-menu__ttl__main {
  color: var(--color-accent);
}
.recom-menu__ttl__main .small {
  font-size: var(--font-size-22);
}

#recom-menu-morning.recom-menu .recom-menu__content::after {
  top: -20px;
  z-index: -1;
  right: 148px;
  width: 157px;
  height: 136px;
  background: url(../img/morning-cafe/menu_recom_morning_illust.png) no-repeat top center/contain;
}

#recom-menu-afternoon.recom-menu .recom-menu__content::after {
  top: -6px;
  z-index: -1;
  right: -8px;
  width: 185px;
  height: 123px;
  background: url(../img/morning-cafe/menu_recom_afternoon_illust.png) no-repeat top center/contain;
}

/*------------------------------
*
* instagram-section
*
------------------------------*/
.instagram-section {
  background: url(../img/morning-cafe/instagram_bg.jpg) no-repeat center/cover;
}
.instagram-section__btn {
  width: 440px;
  --btn-font-size: var(--font-size-20);
}
.night-cafe-page .instagram-section{
  background: url(../img/night-cafe/instagram_bg.jpg) no-repeat center/cover;

}
/*------------------------------
*
* page-link
*
------------------------------*/
.page-link {
  padding: 110px 0 100px;
  background: url(../img/pattern/bg_border.jpg) repeat center/auto;
}
.page-link__container {
  --col-x-space: 40px;
  --col-y-space: 40px;
}
.page-link__sentence {
  text-align: center;
  margin-bottom: 60px;
}
.page-link-item {
  aspect-ratio: 62/42;
  position: relative;
  z-index: 1;
}
.page-link-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.page-link-item__ttl {
  width: 400px;
  height: 170px;
  background-color: rgb(var(--color-white-rgb)/0.94);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}
.page-link-item__ttl__main {
  margin-block: -0.25em;
  display: inline-block;
  font-size: var(--font-size-20);
  letter-spacing: 0.14em;
}
.page-link-item__ttl__sub {
  font-size: var(--font-size-35);
  line-height: 1;
  letter-spacing: var(--letter-spacing-regular);
  margin-bottom: 20px;
}
.page-link-item__btn {
  margin-top: 30px;
  margin-left: auto;
  display: inline-block;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-regular);
  padding-left: 62px;
  line-height: 50px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  color: var(--color-white);
}
.page-link-item__btn::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
  background: url(../img/arrow_right_white.svg) no-repeat left center/66.67%, var(--color-accent);
}

/* ===========================================
*
* night-cafe-page
*
* ======================================== */
.night-cafe-page .bread-crumb {
  background-color: var(--color-theme);
}
.night-cafe-page .page-link {
  background: var(--color-white);
}

/*------------------------------
*
* service
*
------------------------------*/
#service-night.service .service__ttl {
  position: relative;
  z-index: 1;
}
#service-night.service .service__ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  translate: -47% -53%;
  width: 18.2857142857em;
  height: 4.4642857143em;
  background: url(../img/night-cafe/night_ttl_illust.png) no-repeat top center/contain;
}
#service-night.service .service__time-table th,
#service-night.service .service__time-table td {
  border-color: var(--color-theme);
}
#service-night.service .service__time-table tbody th,
#service-night.service .service__time-table tbody td {
  background-color: var(--color-white);
}

/* volume-deal
-------------------------*/
#volume-deal-night.volume-deal {
  position: relative;
  z-index: 1;
}
#volume-deal-night.volume-deal::after {
  content: "";
  width: 234px;
  height: 181px;
  background: url(../img/night-cafe/volume_illust.png) no-repeat top center/contain;
  position: absolute;
  z-index: -1;
  top: 40px;
  right: calc(50% - 553px);
}

/* recom-menu
-------------------------*/
#recom-menu-night.recom-menu .recom-menu__content::after {
  top: -12px;
  z-index: -1;
  right: 120px;
  width: 157px;
  height: 136px;
  background: url(../img/night-cafe/menu_recom_night_illust.png) no-repeat top center/contain;
}

/* ===========================================
*
* access page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info__map {
  margin-top: 60px;
  height: var(--map-height);
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}
.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 16px;
  line-height: 1;
}
.single__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
.single__ttl {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--color-main);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 32px;
}
.single__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 32px;
}
.single__footer {
  margin-top: 64px;
  width: 100%;
}

/* ===========================================
*
* site page
*
* ======================================== */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}
.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--color-main);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  color: var(--color-main);
}
.sitemap-list__link:hover::after {
  right: 1em;
}

/* ===========================================
*
* privacy page
*
* ======================================== */
.privacy-ttl {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
  line-height: 1.5em;
  margin-bottom: 12px;
  border-left: 5px solid var(--color-main);
  padding-left: 0.75em;
}

.privacy-box {
  margin-bottom: 40px;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

/* ===========================================
*
* ECページ用
*
* ======================================== */
/*------------------------------
*
* ご利用ガイド　他3ページ共通
*
------------------------------*/
.ec-guide:not(:last-child) {
  margin-bottom: 80px;
}

.ec-guide__table {
  --table-th-width: 200px;
}

.ec-guide__ttl {
  margin-bottom: 40px;
}

.ec-guide__sentence {
  margin-bottom: 30px;
}

.ec-guide__link {
  gap: 24px;
}

.ec-guide__link__btn {
  width: calc((100% - 72px) / 4);
  position: relative;
  z-index: 1;
  text-align: left;
  padding-inline: 10px 20px;
  --btn-height: 50px;
  --btn-font-size: 15px;
}
.ec-guide__link__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0% -50%;
  rotate: 45deg;
}

.ec-guide__list:not(:last-child) {
  margin-bottom: 40px;
}

.ec-guide__list__ttl {
  margin-bottom: 20px;
}

.ec-guide__list__ttl .num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  font-size: var(--font-size-20);
  width: 1.75em;
  height: 1.75em;
  text-align: center;
  display: inline-block;
  line-height: 1.75em;
  color: var(--white-color);
  background: var(--main-text-color);
  border-radius: 50%;
  letter-spacing: 0;
}

.ec-guide__list__ttl .main {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
  display: inline-block;
}

.ec-guide__list ul,
.ec-guide__list ol {
  line-height: 1.875;
  margin-block: -0.4375em;
}

.ec-guide__list ul li:not(:last-child),
.ec-guide__list ol li:not(:last-child) {
  margin-bottom: 14px;
}

.ec-guide__list__item:not(:last-child) {
  margin-bottom: 40px;
}

.ec-guide__data__item:not(:last-child) {
  margin-bottom: 36px;
}

.ec-guide__data__ttl {
  margin-bottom: 20px;
}
.ec-guide__data__ttl.cmn-border-left-ttl {
  font-size: var(--font-size-22);
  padding: -0.0681818182em 0 -0.0681818182em 17px;
}

.ec-guide .cmn-sentence {
  --sentence-line-height: 1.875;
  --sentence-p-margin: 1.875em;
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-small);
}

.ec-guide__data__content ul {
  line-height: 2;
  margin-block: -0.5em;
}

.ec-guide__data__item .privacy-btn {
  color: var(--color-accent);
  line-height: 1;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-accent);
  letter-spacing: var(--letter-spacing-small);
}

.ec-guide__btn {
  width: 360px;
  margin-top: 40px;
}