@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font-size */
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-base: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-22: 1.375rem;
  --font-size-25: 1.5625rem;
  --font-size-26: 1.625rem;
  --font-size-27: 1.6875rem;
  --font-size-28: 1.75rem;
  --font-size-30: 1.875rem;
  --font-size-32: 2rem;
  --font-size-35: 2.1875rem;
  --font-size-36: 2.25rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.8125rem;
  --font-size-46: 2.875rem;
  --font-size-48: 3rem;
  --font-size-50: 3.125rem;
  --font-size-55: 3.4375rem;
  --font-size-56: 3.5rem;
  --font-size-60: 3.75rem;
  --font-size-62: 3.875rem;
  --font-size-64: 4rem;
  /* width base settings */
  --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: 999px;
  /* logo width */
  --logo-width: 362px;
  /* map height */
  --map-height: 320px;
  /* btn defaults */
  --btn-height: 50px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-17);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-padding-x: 1em;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-width-xs: 180px;
  --btn-width-small: 200px;
  --btn-width-regular: 240px;
  --btn-width-medium: 300px;
  --btn-width-large: 350px;
  --btn-width-xl: 400px;
  --btn-font-family: var(--font-main);
  /* header */
  --header-height: 120px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-bold);
  --bread-color: var(--color-text-main);
  --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: 50px 0 0;
  --bread-bg-color: transparent;
  --bread-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 10em;
  --prev-next-back-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 1em 1em;
  --prev-next-link-round: 3em;
  --prev-next-link-color: var(--color-white);
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-white);
  --prev-next-link-hov-bg-color: var(--color-accent);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: var(--color-white);
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-accent);
  --tag-btn-round: 3em;
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-base);
  /* pagenation settings */
  --pagenation-margin-top: 56px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 5px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 8px;
  --pagenation-item-bg-color: var(--color-gray);
  --pagenation-item-color: var(--color-white);
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg-color: var(--color-accent);
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  font-size: var(--font-size-17);
  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;
  background-color: var(--color-main);
}

/* global container
-------------------------*/
.global-container {
  overflow: hidden;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
}
.header__inner {
  padding: 10px 20px 10px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}
.header__logo {
  --logo-width: 27.8461538462%;
}
.header__right {
  width: 870px;
}
.header__tel {
  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;
  gap: 10px;
}
.header__tel .tel__replace {
  height: 12px;
}
.header__tel .tel__replace > img {
  display: block;
}
.header__info {
  width: 100%;
  gap: 40px;
  padding-right: 30px;
}
.header__contact-btn {
  width: 200px;
}
.header-nav {
  margin-top: 20px;
  width: 100%;
}
.header-nav__item:not(:last-child) {
  position: relative;
}
.header-nav__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0% -50%;
  background-color: #737373;
}
.header-nav__link {
  position: relative;
  z-index: 1;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-inline: 30px;
  font-weight: var(--font-weight-bold);
}
.header-nav__link::after {
  content: "";
  width: 32px;
  height: 32px;
  background-color: var(--color-sub);
  position: absolute;
  inset: 0;
  z-index: -1;
  margin: auto;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-nav__link:hover::after {
  opacity: 1;
}
.header-nav__link.current::after {
  opacity: 1;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  background-color: var(--color-white);
}
.footer__inner {
  padding-block: 60px 15px;
}
.footer__head {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer__info {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.footer__info__main {
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer__contact-btn {
  width: 200px;
}
.footer__tel {
  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;
  gap: 10px;
}
.footer__tel .tel__replace {
  height: 12px;
}
.footer__tel .tel__replace > img {
  display: block;
}
.footer-nav {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid #a6a6a6;
}
.footer-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75em 24px;
}
.footer-nav__link {
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: var(--font-size-14);
}
.footer-nav__link:hover, .footer-nav__link.current {
  color: var(--color-accent);
}
.footer__actions {
  margin-top: 50px;
}
.footer__address {
  font-size: var(--font-size-15);
}
.footer__copy {
  margin-top: 65px;
  font-size: 15px;
  letter-spacing: var(--letter-spacing-small);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
}

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

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px 27px;
  margin-bottom: 60px;
}
.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--deco::before {
  content: "";
  display: block;
  width: 79px;
  height: 50px;
  background: url("/img/common/ttl_deco.png") no-repeat top center/contain;
}
.cmn-ttl__main {
  font-size: var(--font-size-46);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
  margin-block: -0.25em;
  display: inline-block;
}

/* cmn-bg-ttl
-------------------------*/
.cmn-bg-ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
  font-family: var(--font-sub);
  color: var(--color-white);
  background: var(--color-accent);
  text-align: center;
  padding: 0.1666666667em 1em;
}

/* cmn-border-left-ttl
-------------------------*/
.cmn-border-left-ttl {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
  font-family: var(--font-sub);
  line-height: 1.8;
  padding-left: 21px;
  border-left: 7px solid var(--color-sub);
}

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

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-30);
  --tel-icon-space: 1.2em;
  --tel-icon-position: 0.5725em;
  --tel-icon-width: 0.8333333333em;
  --tel-icon-height: 0.8333333333em;
  font-family: var(--font-main, sans-serif);
  font-weight: var(--font-weight-bold, 700);
  font-size: var(--tel-font-size, 28px);
  letter-spacing: var(--letter-spacing-small);
  line-height: 1;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.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/common/icon_tel.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns__icon {
  width: var(--sns-icon-size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

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

.main-table {
  --table-letter-spacing: var(--letter-spacing-base);
  --table-th-font-weight: var(--font-weight-bold);
  --table-th-text-align: left;
  --table-th-x-padding: 40px;
  --table-th-y-padding: 1.3922222222em;
  --table-th-bg-color: var(--color-white);
  --table-th-color:var(--color-text-main);
  --table-th-width: 285px;
  --table-td-x-padding: 0 40px;
  --table-td-y-padding: 1.3922222222em;
  --table-td-bg-color: var(--color-white);
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-main);
  --table-th-border-color: var(--color-main);
  --table-td-border-color: var(--color-main);
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
  line-height: 1.66;
  font-size: var(--font-size-18);
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:last-child) th {
  border-bottom: 2px solid var(--table-th-border-color);
}
.main-table tr:not(:last-child) td {
  border-bottom: 2px 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);
  font-weight: var(--font-weight-medium);
}

/*------------------------------
*
* check list style
*
------------------------------*/
.check-list__item p {
  padding-left: 2.25em;
  position: relative;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-20);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-medium);
  z-index: 1;
}
.check-list__item p::before {
  content: "";
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/check_mark.svg) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}
.check-list__item:not(:last-child) {
  margin-bottom: 20px;
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 2;
  --sentence-p-margin: 1.5em;
  letter-spacing: var(--letter-spacing-base);
  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 {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*------------------------------
*
* business-info
*
------------------------------*/
.cmn-business-info {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.cmn-business-info__item {
  gap: 5px 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-business-info__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--round {
  border-radius: var(--round-20);
}
.cmn-btn--round-full {
  border-radius: var(--round-full);
}
.cmn-btn--primary {
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-space);
  line-height: var(--btn-line-height);
  font-family: var(--btn-font-family);
  text-align: center;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: var(--color-accent);
  color: var(--color-white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--primary:hover {
  background-color: var(--color-accent-darken);
  color: var(--color-white);
  opacity: 1;
}
.cmn-btn--icon-mail > span {
  padding-left: 34px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cmn-btn--icon-mail > span::before {
  content: "";
  width: 21px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icon_mail_white.png) 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;
}

/*------------------------------
*
* mv main visual
*
------------------------------*/
.mv {
  width: 100%;
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
}
.mv__catch {
  width: 18.8541666667%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 4.4791666667%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 0;
}
.mv__catch::after, .mv__catch::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.mv__catch::before {
  width: 55.2486187845%;
  height: 8.0409356725%;
  top: 0;
  left: 0;
  translate: -47% -152.7272727273%;
  background: url("/img/top/mv_top.png") no-repeat top center/contain;
}
.mv__catch::after {
  width: 82.8729281768%;
  height: 19.8830409357%;
  bottom: 0;
  right: 0;
  translate: 57.3333333333% 56.6176470588%;
  background: url("/img/top/mv_bottom.png") no-repeat top center/contain;
}
.mv__swiper {
  height: clamp(540px, 42.1875vw, 810px);
  width: 71.3541666667%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  margin-left: auto;
  margin-right: 0;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sv::after, .sv::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.sv::before {
  width: 200px;
  height: 55px;
  top: 0;
  left: 0;
  translate: -4% 0;
  background: url("/img/sv/sv_deco_top.png") no-repeat top center/contain;
}
.sv::after {
  width: 300px;
  height: 136px;
  bottom: 0;
  right: 69.6354166667%;
  translate: 0 10px;
  background: url("/img/sv/sv_deco_bottom.png") no-repeat top center/contain;
}
.sv__img {
  height: 460px;
  width: 70.3125%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
  margin-left: auto;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: 6.25%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  z-index: 20;
  font-size: var(--font-size-62);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-small);
  font-weight: var(--font-weight-bold);
  padding: 2px 40px;
  background-color: var(--color-white);
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  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);
  border-radius: var(--pagenation-item-round);
  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-color);
  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);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-item-bg-color: transparent;
  --post-width: 100%;
  --post-item-margin: 40px;
  --post-item-flex-margin-space: 10px;
  --post-link-padding: 0px;
  --post-tags-width: calc(100% - 110px);
  --post-title-font-size: 16px;
  --post-date-font-size: 16px;
  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__flex {
  margin-bottom: var(--post-item-flex-margin-space, 12px);
}
.cmn-post__tags {
  width: var(--post-tags-width, auto);
}
.cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size, 16px);
  font-weight: var(--font-weight-bold);
}
.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);
  font-weight: var(--font-weight-medium);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 15px;
  --tag-height: 20px;
  --tag-x-padding: 10px;
  --tag-round: 1em;
  --tag-color: var(--color-text-main);
  --tag-bg-color: var(--color-main);
  display: inline-block;
  font-size: var(--tag-font-size);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-bold);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0 var(--tag-x-padding);
}
.tag-link:hover {
  background-color: var(--color-sub);
}

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

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 40px;
  gap: 16px;
}

.tag-btn {
  padding: var(--tag-btn-padding);
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  font-size: var(--tag-btn-font-size);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.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: var(--prev-next-link-width);
}
.prev-next__item:not(:last-child) {
  margin-right: var(--prev-next-link-gutter);
}
.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%;
  color: var(--prev-next-link-color);
  background-color: var(--prev-next-link-bg-color);
  padding: var(--prev-next-link-padding);
  font-size: var(--prev-next-link-font-size);
}
.prev-next__link:hover {
  background-color: var(--prev-next-link-hov-bg-color);
  color: var(--prev-next-link-hov-color);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--prev-next-link-round);
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  border-radius: var(--prev-next-link-round);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--prev-next-back-link-width);
}
.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 {
  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-tiny {
  margin-top: 10px;
}

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

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

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

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

.mt-2xl {
  margin-top: 60px;
}

.mt-3xl {
  margin-top: 70px;
}

.mt-4xl {
  margin-top: 80px;
}

.mt-huge {
  margin-top: 100px;
}

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

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

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

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

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

.mb-2xl {
  margin-bottom: 60px;
}

.mb-3xl {
  margin-bottom: 70px;
}

.mb-4xl {
  margin-bottom: 80px;
}

.mb-huge {
  margin-bottom: 100px;
}

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

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

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

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

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

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

.pt-2xl {
  margin-top: 60px;
}

.pt-3xl {
  margin-top: 70px;
}

.pt-4xl {
  margin-top: 80px;
}

.pt-huge {
  margin-top: 100px;
}

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

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

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

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

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

.pb-2xl {
  margin-bottom: 60px;
}

.pb-3xl {
  margin-bottom: 70px;
}

.pb-4xl {
  margin-bottom: 80px;
}

.pb-huge {
  margin-bottom: 100px;
}

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

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
/*------------------------------
*
* intro
*
------------------------------*/
.intro {
  position: relative;
  z-index: 0;
  padding-top: 130px;
  background: var(--color-white);
}
.intro::after {
  content: "";
  width: 100%;
  height: 310px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.intro::before {
  content: "";
  height: 514px;
  width: min(874px, 45.5208333333%);
  position: absolute;
  z-index: -1;
  right: 0;
  top: 68px;
  background: url("/img/top/intro_bg_right.png") no-repeat top right/contain;
}
.intro__ttl {
  font-size: var(--font-size-48);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-bold);
  line-height: 64px;
  margin-left: 60px;
  position: relative;
  z-index: 1;
}
.intro__ttl::after {
  content: "";
  width: 81px;
  height: 178px;
  background: url("/img/top/intro_deco.png") no-repeat top center/contain;
  position: absolute;
  left: 0;
  bottom: 0;
  translate: -50% 0;
}
.intro__ttl .sm {
  font-size: var(--font-size-40);
}
.intro__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.intro__sentence {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-base);
  line-height: 2.22;
  position: relative;
  z-index: 10;
}
.intro__img {
  width: 700px;
  aspect-ratio: 700/550;
  position: absolute;
  top: 100px;
  right: calc(50% + 30px);
}
.intro__img > img {
  border-radius: var(--round-10);
}
.intro__img::after {
  content: "";
  width: 30.7142857143%;
  height: 118%;
  background: url("/img/top/intro_img_deco.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 37.2093023256% -50%;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link__container {
  --col-x-space: 60px;
  --col-y-space: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-link__item {
  height: 430px;
  position: relative;
  z-index: 0;
  overflow: unset;
}
.page-link__item__img {
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: var(--round-10);
}
.page-link__item__ttl {
  border-left: 7px solid var(--color-sub);
  background-color: var(--color-white);
  padding-inline: 36px;
  line-height: 70px;
  font-size: var(--font-size-36);
  letter-spacing: var(--letter-spacing-medium);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 40px;
  left: 0;
  translate: -10px 0;
}
.page-link--hotoke {
  /* 仏事 */
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
}
.page-link--hotoke::after {
  content: "";
  max-width: 1720px;
  width: 96%;
  height: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
  margin: auto;
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
}
.page-link--eating {
  /* お食事 */
  background: url("/img/top/link_bg_left.png") no-repeat left bottom 18px/min(870px, 45.3125%) auto, var(--color-white);
  position: relative;
  z-index: 0;
}
.page-link--eating::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 432px;
  height: 432px;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  background: url("/img/top/link_bg_top.png") no-repeat top center/contain;
}

/*------------------------------
*
* history
*
------------------------------*/
.history {
  padding-top: 0;
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
}
.history::after {
  content: "";
  z-index: -1;
  height: calc(100% - 30px);
  width: 89.5833333333%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
}
.history__content {
  margin-top: 130px;
}
.history__container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-left: 7.8125%;
  gap: 60px;
}
.history__ttl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.history__sentence {
  --sentence-p-margin: 2.22em;
}
.history__img {
  width: 560px;
  aspect-ratio: 560/560;
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.history__img > img {
  border-radius: var(--round-10);
}
.history__img::after {
  content: "";
  width: 145.5357142857%;
  height: 104.6428571429%;
  background: url("/img/top/history_deco.png") no-repeat top center/contain;
  position: absolute;
  top: 0%;
  right: 0;
  translate: 9.5705521472% 0.6825938567%;
}

/*------------------------------
*
* greeting
*
------------------------------*/
.greeting {
  position: relative;
  z-index: 1;
  background: url("/img/top/greeting_bg_right.png") no-repeat bottom 114px right/min(870px, 45.3125%) auto, var(--color-white);
}
.greeting__content {
  margin-top: 40px;
}
.greeting__container {
  -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;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding-right: 7.8125%;
  gap: 50px;
}
.greeting__ttl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.greeting__name {
  text-align: right;
  font-size: var(--font-size-25);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-sub);
  line-height: 1;
  margin-top: 54px;
}
.greeting__sentence {
  --sentence-p-margin: 2.22em;
}
.greeting__img {
  width: 560px;
  aspect-ratio: 560/560;
  position: relative;
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.greeting__img > img {
  border-radius: var(--round-10);
}
.greeting__img::after {
  content: "";
  width: 30.7142857143%;
  height: 39.2857142857%;
  background: url("/img/top/greeting_deco.png") no-repeat top center/contain;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 52.9069767442% 10%;
}

/*------------------------------
*
* info
*
------------------------------*/
.info--top .info__btn {
  margin-top: 50px;
  width: 340px;
  --btn-height: 60px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
}
.top-news .cmn-post {
  width: 810px;
}

/* under pages
-------------------------*/
.cmn-wrapper {
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
  padding: 100px calc(50% - 540px);
}

/* ===========================================
*
* curry page
*
* ======================================== */
/*------------------------------
  *
  * cooking
  *
  ------------------------------*/
.service__sentence {
  --sentence-line-height: 2.22;
  text-align: center;
  font-size: var(--font-size-18);
  margin-bottom: 130px;
}
.service__item {
  --col-x-space: 60px;
  --col-y-space: 60px;
}
.service__item:not(:last-child) {
  margin-bottom: 70px;
}
.service__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.service__item__ttl {
  margin-bottom: 40px;
}
.service__item__img {
  position: relative;
  z-index: 1;
}
.service__item__img > img {
  border-radius: var(--round-10);
}
.service__item__note {
  margin-top: 40px;
}
.service__item--map {
  --col-x-space: 40px;
}
.service__item--map .service__item__img {
  max-width: 324px;
}
.service__copy {
  text-align: center;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-22);
  line-height: 40px;
  margin-top: 62px;
}
.service__copy p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.service__copy p::after, .service__copy p::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 133px;
  height: 140px;
}
.service__copy p::before {
  background: url("/img/eternal/copy_deco_left.png") no-repeat top center/contain;
  left: 0;
  top: 50%;
  translate: -100% -50%;
}
.service__copy p::after {
  background: url("/img/eternal/copy_deco_right.png") no-repeat top center/contain;
  right: 0;
  top: 50%;
  translate: 100% -50%;
}
.service--hotoke {
  position: relative;
  z-index: 0;
  background: url("/img/eternal/service_bottom.png") no-repeat bottom right/47.9166666667% auto;
  background-color: var(--color-white);
}
.service--hotoke::after {
  content: "";
  width: 100%;
  height: 350px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service--hotoke .service__sentence {
  position: relative;
  z-index: 1;
}
.service--hotoke .service__sentence::after, .service--hotoke .service__sentence::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.service--hotoke .service__sentence::before {
  width: 172px;
  height: 306px;
  background: url("/img/eternal/service_deco_left.png") no-repeat top center/contain;
  left: 0;
  top: 50%;
  translate: -7px -52%;
}
.service--hotoke .service__sentence::after {
  width: 287px;
  height: 357px;
  background: url("/img/eternal/service_deco_right.png") no-repeat top center/contain;
  right: 0;
  top: 50%;
  translate: 65px -56%;
}
.service--hotoke .service__box {
  padding-bottom: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
}
.service--sougi {
  position: relative;
  z-index: 0;
  background: url("/img/funeral/service_deco01.png") no-repeat bottom 10px right/47.9166666667% auto;
  background-color: var(--color-white);
}
.service--sougi::after {
  content: "";
  width: 100%;
  height: 400px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.service--sougi .service__box {
  padding-bottom: 36px;
  width: 640px;
  margin-top: 42px;
}
.service--sougi .service__item__ttl {
  margin-bottom: 50px;
}
.service--sougi .service__item__sentence {
  --sentence-p-margin: 3em;
}
.service--houji {
  position: relative;
  z-index: 0;
  background: url("/img/funeral/service_deco02.png") no-repeat bottom 80px left/45.3125% auto, url("/img/common/bg_washi.jpg") repeat center/auto;
}
.service--houji .service__box {
  padding-bottom: 36px;
  width: 640px;
  margin-top: 42px;
}
.service--houji .service__item__ttl {
  margin-bottom: 50px;
}

/*------------------------------
*
* counsel
*
------------------------------*/
.counsel {
  background: url("/img/eternal/counsel_bg.jpg") no-repeat top center/cover;
}
.counsel__ttl {
  margin-bottom: 64px;
}
.counsel__sentence {
  text-align: center;
  --sentence-p-margin: 3.2em;
}

/*------------------------------
*
* eternal
*
------------------------------*/
.eternal {
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
}
.eternal__container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.eternal__ttl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 65px;
}
.eternal__content {
  width: 580px;
}
.eternal__img {
  aspect-ratio: 460/295;
  position: relative;
  z-index: 1;
  width: 460px;
}
.eternal__img > img {
  border-radius: var(--round-10);
}
.eternal__img::after {
  content: "";
  width: 150.4347826087%;
  height: 137.6271186441%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -55% -51%;
  z-index: 1;
  background: url("/img/eternal/eternal_img_deco.png") no-repeat top center/contain;
}

/* cmn-box
-------------------------*/
.cmn-box {
  padding: 30px;
  background-color: var(--color-white);
  border: 1px solid #b3b3b3;
}
.cmn-box__ttl {
  margin-bottom: 30px;
}
.cmn-box__list {
  padding-left: 20px;
}
.cmn-box__price {
  line-height: 1;
  font-size: var(--font-size-32);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  text-align: center;
}
.cmn-box__note {
  margin-top: 25px;
}

/* ===========================================
*
* curry page
*
* ======================================== */
/*------------------------------
  *
  * cooking
  *
  ------------------------------*/
.cooking__item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.cooking__item:not(:last-child) {
  margin-bottom: 70px;
}
.cooking__item:nth-child(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.cooking__item__content {
  width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.cooking__item__ttl {
  margin-bottom: 30px;
}
.cooking__item__ttl .bg-txt {
  font-size: var(--font-size-26);
  padding-inline: 14px;
}
.cooking__item__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 0;
}
.cooking__item__img > img {
  border-radius: var(--round-10);
}
.cooking__item__illust {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: -16px;
}
.cooking__item__note {
  margin-top: 40px;
}
.cooking--curry {
  position: relative;
  z-index: 0;
  background: url("/img/curry/curry_deco_bottom.png") no-repeat bottom 68px left/48.125% auto, var(--color-white);
}
.cooking--curry::after {
  content: "";
  width: 100%;
  height: 400px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cooking--shojin {
  position: relative;
  z-index: 0;
  background: url("/img/shojin/cooking_deco.png") no-repeat bottom 29px left/47.6041666667% auto, var(--color-white);
}
.cooking--shojin::after {
  content: "";
  width: 100%;
  height: 400px;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.cooking--shojin .cooking__item__img--deco01::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 141px;
  height: 148px;
  background: url("/img/shojin/cooking_img_deco01.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: 43px 118px;
}
.cooking--shojin .cooking__item__img--deco02::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 144px;
  height: 121px;
  background: url("/img/shojin/cooking_img_deco02.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: 61px 24px;
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature {
  background: var(--color-white);
  position: relative;
  z-index: 0;
}
.feature::after {
  content: "";
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
  max-width: 1720px;
  width: 96%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.feature__item {
  gap: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature__item:not(:last-child) {
  margin-bottom: 50px;
}
.feature__item__ttl {
  margin-bottom: 50px;
}
.feature__item__content {
  width: 520px;
}
.feature__item__img {
  position: relative;
  z-index: 1;
  width: 500px;
}

/*------------------------------
*
* curry-price
*
------------------------------*/
.curry-price {
  background: url("/img/curry/price_deco.png") no-repeat top center/auto, var(--color-white);
}
.curry-price__note {
  text-align: center;
  margin-top: 30px;
  font-weight: var(--font-weight-bold);
}

.price-data__item {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-main);
}
.price-data__item:not(:last-child) {
  margin-bottom: 2px;
}
.price-data__item dt,
.price-data__item dd {
  width: 50%;
  padding-inline: 40px;
  padding-block: 26px;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
}
.price-data__item dd {
  text-align: right;
}

.curry-bnr-wrapper {
  background: url("/img/common/bg_washi.jpg") repeat top center/auto;
}

.curry-bnr {
  position: relative;
  z-index: 1;
  width: 1000px;
  display: block;
}
.curry-bnr__container {
  border-radius: var(--round-20);
  border: 2px solid var(--color-sub);
  background: url("/img/curry/bnr_bg.jpg") no-repeat top center/cover;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.curry-bnr__content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.curry-bnr__copy {
  font-size: var(--font-size-28);
  text-align: center;
  margin-bottom: 23px;
}
.curry-bnr__btn {
  --btn-height: 50px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-22);
  --btn-font-weight: var(--font-weight-bold);
  --btn-padding-x: 0.5em;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-font-family: var(--font-sub);
  max-width: 380px;
  width: 100%;
}
.curry-bnr__img {
  height: 230px;
}
.curry-bnr::after, .curry-bnr::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.curry-bnr::before {
  width: 133px;
  height: 95px;
  background: url("/img/curry/banner_deco_left.png") no-repeat top center/contain;
  top: 0;
  left: 0;
  translate: -30px -27px;
}
.curry-bnr::after {
  width: 172px;
  height: 144px;
  background: url("/img/curry/banner_deco_right.png") no-repeat top center/contain;
  bottom: 0;
  right: 0;
  translate: 47px 77px;
}

/* ===========================================
*
* shojin page
*
* ======================================== */
/*------------------------------
*
* shojin-price
*
------------------------------*/
.shojin-price {
  background: url("/img/shojin/price_deco.png") no-repeat bottom right/min(960px, 50%) auto;
}
.shojin-price__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.shojin-price__content {
  width: 580px;
}
.shojin-price__img {
  width: 460px;
  aspect-ratio: 46/30;
  position: relative;
  z-index: 1;
}
.shojin-price__img::after {
  content: "";
  width: 37.3913043478%;
  height: 121.6666666667%;
  background: url("/img/shojin/price_img_deco.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: -50% -50%;
  z-index: 1;
}
.shojin-price__img > img {
  border-radius: var(--round-10);
}
.shojin-price__note {
  font-size: var(--font-size-16);
  margin-top: 32px;
  font-weight: var(--font-weight-bold);
}
.shojin-price .price-data__item {
  background-color: var(--color-white);
}
.shojin-price .price-data__item dt,
.shojin-price .price-data__item dd {
  padding-inline: 20px;
}

/*------------------------------
*
* use
*
------------------------------*/
.use {
  background: url("/img/common/bg_washi.jpg") repeat top center/auto;
}
.use__sentence {
  text-align: center;
}
.use__data {
  margin: 40px auto 0;
  max-width: 780px;
  width: 100%;
}
.use__data dt {
  padding-inline: 40px 20px;
  width: 260px;
}
.use__data dd {
  padding-inline: 10px 10px;
  width: calc(100% - 260px);
  text-align: left;
}
.use .price-data__item {
  background-color: var(--color-white);
}

/* ===========================================
*
* access page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info__map {
  margin-top: 48px;
  height: var(--map-height);
}
.info__table {
  --table-th-width: 200px;
}

/*------------------------------
  *
  * attractions
  *
  ------------------------------*/
.attractions {
  background: url("/img/common/bg_washi.jpg") repeat center/auto;
}
.attractions__item {
  --col-x-space: 60px;
  --col-y-space: 60px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.attractions__item:not(:last-child) {
  margin-bottom: 60px;
}
.attractions__item__ttl {
  margin-bottom: 40px;
}
.attractions__item__img {
  aspect-ratio: 51/33;
  position: relative;
  z-index: 1;
}
.attractions__item__img > img {
  border-radius: var(--round-10);
}
.attractions__item__img::after {
  content: "";
  width: 36.4705882353%;
  height: 88.1818181818%;
  position: absolute;
  bottom: 0;
  left: 0;
  translate: -46.7741935484% 10.9965635739%;
  z-index: 1;
  background: url("/img/access/ajisai_deco.png") no-repeat top center/contain;
}

/* ===========================================
*
* 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;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.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-28);
  border-left: 5px solid var(--color-sub);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 48px;
}
.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 rgb(var(--color-text-main-rgb)/0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: var(--font-weight-bold);
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  border-right: 2px solid rgb(var(--color-text-main-rgb)/0.4);
  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-accent);
  border-color: var(--color-accent);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-accent);
}

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

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

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