@charset "UTF-8";

/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/* ===========================================
*
* base styles
*
* ======================================== */
/* css custom properties
-------------------------*/
:root {
  /* font-size */
  --font-size-15: 0.9375rem;
  --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-38: 2.375rem;
  --font-size-40: 2.5rem;
  --font-size-45: 2.8125rem;
  --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-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: 999em;
  /* logo width */
  --logo-width: 207px;
  /* map height */
  --map-height: 480px;
  /* btn defaults */
  --btn-height: 45px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-15);
  --btn-font-weight: var(--font-weight-medium);
  --btn-letter-space: 0.1em;
  --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: 480px;
  --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-regular);
  --bread-color: var(--color-text-main);
  --bread-grater-color: var(--color-text-main);
  --bread-grater-content: ">";
  --bread-grater-space: 0 0.5em;
  --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-width: 100%;
  /* prev next settings */
  --prev-next-link-width: 8em;
  --prev-next-link-gutter: 1.5em;
  --prev-next-link-padding: 0.75em 1em;
  --prev-next-link-round: 0em;
  --prev-next-link-color: #b3b3b3;
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-main);
  --prev-next-link-hov-bg-color: var(--color-white);
  /* pagenation settings */
  --pagenation-margin-top: 64px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-round: 0px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg-color: var(--color-gray);
  --pagenation-item-color: #b3b3b3;
  --pagenation-item-current-color: var(--color-white);
  --pagenation-item-current-bg-color: var(--color-main);
}

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

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;
  background: url("../img/pattern/bg.jpg") repeat center/auto;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  background: url("../img/pattern/bray_bg.jpg") repeat center/auto;
  color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}

.header__inner {
  padding: 10px min(70px, 3.6458333333%);
  -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 {
  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;
  gap: 10px;
  text-align: center;
}

.header__logo-txt {
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  letter-spacing: 0.3em;
}

.header-info {
  width: 100%;
  gap: 20px;
}

.header-info__btns {
  gap: 20px;
}

.header-info__btn {
  --btn-font-size: 13px;
  --btn-height: 35px;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  width: 150px;
}

.header-info__btn-contact::after {
  right: 11px !important;
}

.header-info__carts {
  gap: 24px;
}

.header-info__carts .ec-headerNav .ec-headerNav__item {
  font-size: 13px;
}

.header-info__carts .ec-headerNav .ec-headerNav__item a {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 6px;
}

.header-info__carts .ec-headerNav .ec-headerNav__itemLink {
  margin: 0;
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-medium);
  font-size: 13px;
  margin: 0;
  /* display: none; */
}

.header-info__carts .ec-headerNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.header-info__carts .ec-headerNav__itemIcon {
  font-size: 16px;
  margin: 0;
}

.header-info__carts .fa-lock:before,
.header-info__carts .fa-user:before {
  color: var(--color-white);
}

.header-info__carts .ec-cartNavi {
  padding: 10px 14px;
  min-width: 140px;
}

.header-info__carts .ec-cartNavi .ec-cartNavi__badge {
  left: -4px;
  top: -3px;
}

.header-info__carts {
  align-items: center;
}

.header-info__carts .ec-cartNavi .ec-cartNavi__price {
  font-size: 13px;
}

.header-info__carts .ec-cartNavi .fa-shopping-cart:before {
  font-size: 15px;
}

.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;
  line-height: 1;
}

.header-nav__link::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0.5em);
  transform: translate(-50%, 0.5em);
  bottom: 0;
}

.header-nav__link:hover::after {
  width: 2em;
}

.header-nav__link.current::after {
  width: 2em;
}

.header__links {
  width: 100%;
  gap: 26px;
  margin-top: 5px;
}

@media screen and (max-width: 1400px) {
  .header__logo {
    --logo-width: 196px;
  }

  .header__logo-txt {
    font-size: 14px;
  }

  .header__inner {
    padding-inline: 24px;
  }

  .header-info {
    gap: 16px;
  }

  .header-info__btns {
    gap: 10px;
  }

  .header-info__carts {
    gap: 16px;
  }

  .header-info__carts .ec-headerNav {
    gap: 12px;
  }

  .header-info__carts .ec-cartNavi {
    min-width: 120px;
  }
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url("../img/pattern/bray_bg.jpg") repeat center/auto;
  color: var(--color-white);
}

.footer__inner {
  padding-block: 80px 40px;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer-nav {
  margin-top: 50px;
}

.footer-nav__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em 0;
}

.footer-nav__item:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.footer-nav__link {
  font-size: 14px;
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
  padding-inline: 2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-nav__link:hover {
  opacity: 0.7;
}

.footer-info__main {
  gap: 30px;
}

.footer-info__address {
  margin-bottom: 30px;
}

.footer__copy {
  font-size: 12px;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-regular);
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 60px;
  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;
}

.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
*
------------------------------*/
/* 
title style
-------------------------*/
.cmn-ttl {
  font-size: var(--font-size-28);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  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__main {
  margin-block: -0.25em;
  display: inline-block;
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-regular);
}

.cmn-ttl__main .big {
  font-size: var(--font-size-40);
}

.cmn-ttl__sub {
  font-size: var(--font-size-45);
  letter-spacing: var(--letter-spacing-medium);
  font-family: var(--font-en);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradation-main))
  );
  background: linear-gradient(90deg, var(--gradation-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-block: -0.25em;
}

/* ボーダー付きタイトル（下）
-------------------------*/
.cmn-border-bottom-ttl {
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-22);
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-sub);
}

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

.tel {
  /* tel　style */
  --tel-font-size: var(--font-size-25);
  --tel-icon-space: 1.12em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.92em;
  --tel-icon-height: 0.92em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-medium, 700);
  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: 30px;
  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
*
------------------------------*/
.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: 75px 1.5em;
  --table-th-y-padding: 1.5625em;
  --table-th-bg-color: transparent;
  --table-th-color: var(--color-text-main);
  --table-th-width: 300px;
  --table-td-x-padding: 0 1.5em;
  --table-td-y-padding: 1.5625em;
  --table-td-bg-color: transparent;
  --table-td-color: var(--color-text-main);
  --table-td-width: calc(100% - var(--table-th-width));
  --table-border-color: var(--color-text-main);
  --table-th-border-color: var(--color-text-main);
  --table-td-border-color: var(--color-text-main);
  --table-width: 100%;
  width: var(--table-width);
  -webkit-border-before: 1px solid var(--table-border-color);
  border-block-start: 1px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
  line-height: 1.875;
}

.main-table tr {
  -webkit-border-after: 1px solid var(--table-border-color);
  border-block-end: 1px solid var(--table-border-color);
  width: 100%;
}

.main-table th,
.main-table td {
  vertical-align: middle;
}

.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.5;
  --sentence-p-margin: 2.5em;
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  line-height: var(--sentence-line-height);
  /* 疑似要素で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: 7px 10px;
  -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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cmn-time__item {
  gap: 2px 0;
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-medium);
  font-size: 12px;
  line-height: 1.5;
}

/* 
* カラムスタイル
* 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 {
  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;
  border-radius: 0;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  background-color: transparent;
  color: var(--color-text-main);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--color-text-main);
}

.cmn-btn--primary:hover {
  background-color: var(--color-text-main);
  color: var(--color-white);
  opacity: 1;
}

.cmn-btn--secondary {
  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;
  border-radius: 0;
  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: var(--color-white);
  color: var(--color-text-main);
  opacity: 1;
}

.cmn-btn--arrow-accent {
  position: relative;
  z-index: 1;
}

.cmn-btn--arrow-accent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0% -50%;
  width: 9px;
  height: 12px;
  background: url("../img/arrow_right.png") no-repeat top center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.cmn-btn--arrow-accent:hover::after {
  translate: 25% -50%;
}

.cmn-btn--icon-window > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 20px;
  width: 100%;
}

.cmn-btn--icon-window > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  translate: 0% -50%;
  width: 11px;
  height: 11px;
  background: url("../img/icon_window.png") no-repeat top center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.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)
*
------------------------------*/
.main-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url("../img/pattern/bray_bg.jpg") repeat center/auto;
}

.main-visual__catch {
  position: absolute;
  bottom: 130px;
  left: max(80px, 50% - 790px);
  z-index: 20;
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-sub);
  color: var(--color-white);
  letter-spacing: 0.3em;
  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;
  text-align: left;
  gap: 10px;
}

.main-visual__catch > span {
  display: inline-block;
  padding: 0 15px;
  line-height: 51px;
  background-color: var(--color-main);
}

/* 
swiper
-------------------------*/
.main-visual__swiper.swiper {
  max-width: min(1780px, 92.7083333333%);
  margin: 0 auto;
  height: clamp(533px, 41.6666666667vw, 800px);
  width: 100%;
}

/* swiper zoom out */
.main-visual__swiper .swiper-wrapper .swiper-slide img {
  transition: transform 7000ms;
  transition-timing-function: linear;
  transform: scale(1.5);
}

.main-visual__swiper .swiper-wrapper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
}

/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0 80px;
  background: url("../img/pattern/bray_bg.jpg") repeat center/auto;
}

.sub-visual__inner {
  height: clamp(360px, 28.125vw, 540px);
  position: relative;
  z-index: 1;
  width: 92.7083333333%;
  max-width: 1780px;
  margin: 0 auto;
}

.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: max(30px, 50% - 640px);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  z-index: 20;
  font-size: var(--font-size-38);
  line-height: 51px;
  color: var(--color-white);
    background-color: var(--color-main);
  font-family: var(--font-sub);
  letter-spacing: 0.1em;
  text-align: center;
  padding-inline: 12px;
  display: inline-block;
  white-space: nowrap;
}

/*------------------------------
*
* 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: 0px;
  --post-item-border-color: var(--color-border);
  --post-item-flex-margin-space: 12px;
  --post-link-padding: 25px 0;
  --post-tags-width: calc(100% - 115px);
  --post-title-font-size: var(--font-size-16);
  --post-date-font-size: 0.875rem;
  width: var(--post-width);
}

.cmn-post-item {
  width: 100%;
  background-color: var(--post-item-bg-color, transparent);
  border-bottom: 1px solid var(--post-item-border-color);
}

.cmn-post-item:first-child .cmn-post__link {
  padding-top: 0;
}

.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);
  letter-spacing: var(--letter-spacing-regular);
}

.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);
  letter-spacing: var(--letter-spacing-regular);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: 12px;
  --tag-height: 1;
  --tag-x-padding: 1em;
  --tag-round: 0px;
  --tag-color: var(--color-sub);
  --tag-bg-color: transparent;
  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-regular);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
  border-left: 1px solid rgb(var(--color-white-rgb) / 0.9);
  min-width: 78px;
  text-align: center;
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tag-link.tag {
  padding: 0;
  --tag-height: 1.5;
  border-left: 1px solid rgb(var(--color-text-main-rgb) / 0.3);
}

.tag-link > a {
  padding: 0 var(--tag-x-padding);
}

.tag-link:hover {
  color: var(--color-white);
  background-color: var(--color-main);
}

.tag-list {
  --tag-space: 8px 0;
  -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: 0;
  --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: 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);
}

.prev-next__link:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  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;
}

.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%);
}

.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: 120px 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
*
* ======================================== */
.top-news {
  background: url("../img/pattern/bray_bg.jpg") repeat center/auto;
  color: var(--color-white);
}

.top-news__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;
}

.top-news .cmn-post {
  width: 640px;
  --post-item-border-color: transparent;
}

.top-news__btn {
  width: 210px;
}

/*------------------------------
*
* top-greeting
*
------------------------------*/
.top-greeting {
  position: relative;
  z-index: 1;
}

.top-greeting::after {
  content: "";
  background: url("../img/pattern/light_gray_bg.jpg") repeat center/auto;
  height: 260px;
  width: calc(50% + 540px);
  position: absolute;
  z-index: -1;
  bottom: 0;
  right: 0;
}

.top-greeting__content {
  width: 560px;
  margin-left: 7.8125%;
}

.top-greeting__img01 {
  position: absolute;
  top: 100px;
  left: calc(50% + 90px);
  width: min(870px, 50% - 90px);
  height: 510px;
  z-index: 1;
}

.top-greeting__imgs {
  margin-top: 120px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-greeting__img02 {
  aspect-ratio: 49/39;
  width: 38.28125%;
}

.top-greeting__img03 {
  aspect-ratio: 72/37;
  width: 56.25%;
  margin-top: 140px;
}

/*------------------------------
*
* top-about
*
------------------------------*/
.top-about {
  background: url("../img/top/about_bg.jpg") no-repeat center/cover;
}

.top-about__box {
  margin: 0 auto;
  width: 890px;
  background-color: var(--color-white);
  -webkit-box-shadow: 0 0 92px rgb(var(--color-black) / 0.92);
  box-shadow: 0 0 92px rgb(var(--color-black) / 0.92);
  padding: 70px;
  position: relative;
  z-index: 1;
}

.top-about__box::after {
  content: "";
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  border: 1px solid var(--color-border);
}

.top-about__box-border {
  height: 236px;
  width: 2px;
  background-color: var(--color-sub);
  display: block;
  position: absolute;
  z-index: 10;
}

.top-about__box-border:nth-of-type(1) {
  left: 12px;
  top: 0;
}

.top-about__box-border:nth-of-type(2) {
  bottom: 0;
  right: 12px;
}

.top-about__sentence {
  text-align: center;
}

.top-about__btn {
  margin-top: 56px;
  width: 360px;
}

/*------------------------------
*
* top-stew
*
------------------------------*/
.top-stew {
  position: relative;
  z-index: 20;
}

.top-stew__img01 {
  height: 610px;
  width: calc(50% - 40px);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.top-stew__img02 {
  position: absolute;
  z-index: 2;
  top: 445px;
  right: calc(50% + 85px);
  width: 681px;
}

.top-stew__content {
  width: 460px;
  margin-left: auto;
}

/*------------------------------
*
* top-review
*
------------------------------*/
.top-review {
  padding-top: 210px;
  background: url("../img/pattern/light_gray_bg.jpg") repeat center/auto;
}

.top-review__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;
}

.top-review__items {
  --col-x-space: 40px;
  --col-y-space: 40px;
  width: 800px;
}

.top-review-item {
  padding: 35px 40px 40px;
  background-color: var(--color-white);
}

.top-review-item__ttl {
  margin-bottom: 30px;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link {
  background: url("../img/pattern/bg.jpg") repeat center/auto;
}

.page-link__container {
  --col-x-space: 40px;
  --col-y-space: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-link-item {
  position: relative;
  z-index: 1;
  height: 230px;
}

.page-link-item::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 92.3076923077%;
  height: 100%;
  background: url("../img/top/link_shadow.png") no-repeat top center/cover;
  top: 0;
  right: 0;
}

.page-link-item__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}

.page-link-item__ttl {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 154px;
  position: absolute;
  z-index: 5;
  top: 0;
  right: 15px;
  gap: 25px;
  padding-right: 40px;
}

.page-link-item__ttl::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: block;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--gradation-main))
  );
  background: linear-gradient(0deg, var(--gradation-main));
}

.page-link-item__ttl__sub {
  display: inline-block;
  font-family: var(--font-en);
  font-size: var(--font-size-32);
  letter-spacing: var(--letter-spacing-medium);
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradation-main))
  );
  background: linear-gradient(90deg, var(--gradation-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-link-item__ttl__main {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-20);
  line-height: 1;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  padding-left: 1.35em;
}

.page-link-item__ttl__main::before {
  content: "";
  width: 0.45em;
  height: 0.6em;
  position: absolute;
  top: 50%;
  left: 0%;
  translate: 0% -50%;
  z-index: 1;
  background: url("../img/arrow_right.png") no-repeat top center/contain;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* concept コンセプト
*
------------------------------*/
.concept-item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.concept-item__img {
  width: 54.2372881356%;
  height: 420px;
}

.concept-item__content {
  width: 440px;
}

.concept-item__head {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.concept-item__num {
  font-family: var(--font-en);
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--letter-spacing-medium);
  line-height: 1;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradation-main))
  );
  background: linear-gradient(90deg, var(--gradation-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--font-size-45);
  margin-right: 27px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.concept-item__ttl {
  padding-left: 30px;
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-regular);
  width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  margin-block: -0.25em;
  position: relative;
  z-index: 1;
}

.concept-item__ttl::before {
  content: "";
  width: 1px;
  height: calc(100% - 0.5em);
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: var(--color-main);
}

.concept-item:nth-child(odd) {
  padding-left: 7.8125%;
}

.concept-item:nth-child(even) {
  padding-right: 7.8125%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.concept-item:not(:last-child) {
  margin-bottom: 120px;
}

/*------------------------------
*
* chef
*
------------------------------*/
.chef {
  background: url("../img/pattern/light_gray_bg.jpg") repeat center/auto;
}
/* 
.chef__container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content:flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-right: 7.8125%;
  gap: 90px;
} */
.chef__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap:0px 70px;
}
.chef__item:not(:last-child) {
  margin-bottom: 130px;
}
.chef__item__content {
  width: 540px;
}
.chef__text {
  margin-top: 40px;
}
.chef__head {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.chef__head::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--gradation-main))
  );
  background: linear-gradient(90deg, var(--gradation-main));
}

.chef__position {
  color: var(--color-main);
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-medium);
  line-height: 1;
  margin-right: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.chef__name {
  font-size: var(--font-size-28);
  letter-spacing: var(--letter-spacing-regular);
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
}

.chef__career {
  line-height: 1.75;
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-base);
}
/* .chef__item:not(:last-child){
margin-bottom: 53px;
} */
.chef__message{
  margin-top: 60px;

}
.chef__message-label {
  margin-bottom: 20px;
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-white);
  padding-inline: 6px;
  letter-spacing: var(--letter-spacing-regular);
}

.chef__message-sentence {
  --sentence-line-height: 2.5;
}

/* .chef__img {
  width: 550px;
  aspect-ratio: 1/1;
  margin-top: 45px;
} */

/*------------------------------
*
* intro
*
------------------------------*/
.intro__container {
  --col-x-space: 45px;
  --col-y-space: 45px;
}

.intro-item__img {
  aspect-ratio: 33/24;
}

/* ===========================================
*
* recommend page style
*
* ======================================== */
/*------------------------------
*
* recommend
*
------------------------------*/
.recommend .cmn-sentence {
  --sentence-line-height: 2.35;
  font-size: var(--font-size-17);
  letter-spacing: var(--letter-spacing-regular);
}

.recommend-item__ttl {
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-30);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-sub);
  margin-bottom: 40px;
}

.recommend-item__flex {
  margin-top: 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;
}

.recommend-item__img {
  width: 500px;
  aspect-ratio: 50/38;
}

.recommend-item__content {
  width: 515px;
}

.recommend-item__data-item dt {
  background-color: var(--color-main);
  color: var(--color-white);
  line-height: 26px;
  padding: 0 0.5em;
  letter-spacing: var(--letter-spacing-medium);
  margin-bottom: 20px;
  display: inline-block;
}

.recommend-item__data-item:not(:last-child) {
  margin-bottom: 40px;
}

.recommend-item__actions {
  margin-top: 50px;
  gap: 40px;
}

.recommend-item__btn {
  width: 220px;
}

.recommend-item:not(:last-child) {
  margin-bottom: 80px;
}

/* ===========================================
*
* about-page
*
* ======================================== */
/*------------------------------
*
* gallery
*
------------------------------*/
.gallery__container {
  --col-x-space: 45px;
  --col-y-space: 52px;
}

.gallery-item__img {
  aspect-ratio: 33/24;
  margin-bottom: 12px;
}

.gallery-item__ttl {
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-regular);
  line-height: 1.75;
}

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

.info__table {
  --table-th-width: 330px;
}

/* ===========================================
*
* 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 rgb(var(--color-text-main-rgb) / 0.4);
  -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 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-main);
  border-color: var(--color-main);
}

.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-main);
}

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

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

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

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

.ec-guide__ttl {
  font-size: var(--font-size-28);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-medium);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--color-text-main);
  margin-bottom: 30px;
}

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

.ec-guide__link {
  gap: 15px;
}

.ec-guide__link__btn {
  width: calc((100% - 30px) / 3);
  position: relative;
  z-index: 1;
}

.ec-guide__link__btn::after {
  content: "";
  width: 9px;
  height: 12px;
  background: url("../img/arrow_right.png") no-repeat top center/contain;
  position: absolute;
  top: 50%;
  z-index: 1;
  right: 23px;
  translate: 0% -50%;
  rotate: 90deg;
}

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

.ec-guide__list__head {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.ec-guide__list__head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("../img/pattern/light_gray_bg.jpg") repeat center/auto;
  opacity: 0.95;
  width: 100%;
  height: 100%;
}

.ec-guide__list__ttl {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-large);
  line-height: 1.6;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  width: 100%;
  padding-inline: 0.7em;
}

.ec-guide__list__num {
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  width: 32px;
  height: 32px;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  color: var(--color-white);
  background-color: var(--color-sub);
  letter-spacing: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.ec-guide__list__content {
  --sentence-line-height: 2.5;
  --sentence-p-margin: 2.5;
}

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

.ec-guide__list ul li {
  padding-left: 1em;
  text-indent: -1em;
}

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

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

.ec-guide__data__ttl {
  margin-bottom: 20px;
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-medium);
  margin-top: -0.25em;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  padding-left: 1.2em;
}

.ec-guide__data__ttl::before {
  content: "";
  width: 0.9em;
  height: 0.9em;
  background-color: var(--color-sub);
  position: absolute;
  top: 0.75em;
  left: 0;
  translate: 0% -50%;
}

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

.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;
}

/*------------------------------
*
* ec 書き換え
*
------------------------------*/
.front_page .ec-layoutRole .ec-layoutRole__contents {
  padding: 0 !important;
}

.front_page .ec-layoutRole .ec-layoutRole__contents,
.product_page .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1080px !important;
}

.ec-layoutRole .ec-layoutRole__contents {
  width: 100% !important;
  justify-content: space-between;
}

/* 
.header .ec-headerSearch .ec-headerSearch__category .ec-select select {
  font-size: 15px;
}

.header .ec-headerNav .ec-headerNav__itemLink {
  font-size: 15px;
} */
/* 
.header__left {
  gap: 24px;
}

.header__right__ec {
  gap: 21px;
  margin-bottom: 12px;
}

.header__right .ec-cartNavi {
  border-radius: none;
} */

.ec-cartNavi {
  background-color: #eee;
}

.ec-headerSearch .ec-headerSearch__keyword {
  border: none;
  /* border-radius:0 50px 50px 0 !important; */
  background-color: #eee;
}

.header__left .ec-headerSearch .ec-headerSearch__keyword input[type="search"] {
  height: 36px;
  border-radius: 0 50px 50px 0 !important;

  border: none;
  background-color: #eee;
}

.sidebar .ec-headerNaviRole,
.sidebar .ec-categoryNaviRole,
.sidebar .orgn-login {
  padding: 0;
}

.sidebar .ec-headerSearch .ec-headerSearch__category .ec-select select {
  font-size: 13px;
  background-color: var(--color-main);
}

.sidebar .ec-headerSearch .ec-headerSearch__keyword input[type="search"] {
  font-size: 13px;
  height: 36px;
  background-color: #fff;
  border-radius: none !important;
  border: 1px solid var(--color-border);
}

.ec-headerSearch .ec-headerSearch__keyword .ec-input input {
  border-radius: none !important;
}

.ec-blockBtn--action {
  background-color: var(--color-sub);
  border-color: var(--color-sub);
  transition: 0.3s;
}

.ec-blockBtn--action:hover {
  border-color: var(--color-accent);

  background: var(--color-accent);
  opacity: 1;
}

.sidebar .orgn-category__ttl {
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-medium);
  padding: 11.5px 0;
  background-color: var(--color-main);
  color: var(--color-white);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.sidebar .ec-cartNavi {
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--color-border);
}

/* .sidebar .orgn-category .sidebar-category > li a {
  background-color: rgb(var(--color-white-rgb) / 0);
} */

.sidebar .orgn-category .sidebar-category li a {
  border-color: #313131;
  font-size: 16px;
  padding: 20px 6px 20px 40px;
  /* text-align: center; */
  /* background-color: rgb(var(--color-white-rgb) / 0);
  bg */
  background: url(../img/pattern/bg.jpg) repeat center / auto;
  font-weight: 400;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.sidebar .orgn-category .sidebar-category li ul li a {
  background: rgb(0 0 0 / 0.92);
  min-width: 150px;
}

.sidebar .orgn-category .sidebar-category li a::before {
  content: "";
  width: 6px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 20px;
  translate: 0 -50%;
  background: url("../img/side_arrow.svg") no-repeat top center / contain;
}

.ec-side-nav {
  margin-top: 50px;
}

.ec-side-nav__link:not(:last-child) {
  margin-bottom: 26px;
}

.ec-side-nav__link a {
  line-height: 1;
  font-size: 14px;
  padding-left: 1.5em;
  position: relative;
  z-index: 1;
}

.ec-side-nav__link a::before {
  content: "";
  height: 1px;
  width: 0.5em;
  background-color: var(--color-sub);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.ec-layoutRole .ec-layoutRole__contents {
  padding: 100px 0 !important;
  width: 1080px !important;
}

.recommend-page .ec-layoutRole .ec-layoutRole__contents,
.about-page .ec-layoutRole .ec-layoutRole__contents,
.info-page .ec-layoutRole .ec-layoutRole__contents,
.gallery-page .ec-layoutRole .ec-layoutRole__contents {
  padding: 100px 0 !important;
  width: 100% !important;
}

.sidebar .ec-headerNav .ec-headerNav__itemIcon {
  margin-left: 0;
}

.sidebar #orgin-cart {
  padding-bottom: 0;
  margin-top: 15px;
  margin-bottom: 20px;
}

.sidebar .ec-headerNav {
  margin-top: 40px;
}

.sidebar .ec-headerNav__item {
  width: 100%;
  font-size: 14px;
  line-height: 1;
}

.sidebar .ec-headerNav__item:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar .ec-headerNav__item a {
  border: 1px solid #000;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 0px;
  padding: 20px;
  line-height: 1;
  text-align: left;
}

.sidebar .ec-headerNav__itemLink {
  width: 100%;
  font-size: 14px;
  flex-shrink: 1;
  font-size: var(--font-size-14);
}

.sidebar .ec-headerNav__itemIcon {
  font-size: 18px;
  margin-right: 20px;
  margin-left: 0;
  flex-shrink: 0;
  /* margin-top: 0.5em; */
}

.sidebar .ec-headerNav__itemLink,
.sidebar .ec-headerNav__itemIcon {
  /* color: var(--c-main-black); */
}

.ec-select select {
  font-size: 16px;
}

.product .ec-shelfRole {
  padding: 0;
  margin-top: 18px;
}

.ec-shelfGrid .ec-shelfGrid__item:nth-child(odd) {
  padding: 0 8px;
}

.ec-shelfGrid .ec-shelfGrid__item:nth-child(even) {
  padding: 0 8px;
}

.ec-shelfGrid {
  margin-left: -8px;
  margin-right: -8px;
}

#page_product_list .ec-shelfGrid .ec-shelfGrid__item-image,
.ec-shelfGrid .ec-shelfGrid__item-image {
  margin-bottom: 14px;
}

#page_product_list .ec-shelfGrid .ec-shelfGrid__item,
.ec-shelfGrid .ec-shelfGrid__item {
  font-size: 15px;
  letter-spacing: 0.16em;
}

#page_product_list .ec-shelfGrid .ec-shelfGrid__item .ec-numberInput > span {
  font-size: var(--font-size-15);
}

#page_product_list .ec-shelfGrid .ec-shelfGrid__item .price02-default {
  margin-top: 14px;
}

#page_product_list .ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-ttl,
.ec-shelfGrid .ec-shelfGrid__item .ec-shelfGrid__item-ttl {
  font-size: 14px;
  margin-bottom: 11px;
}

.ec-shelfGrid__item-ttl__description {
  padding: 10px 0;
  letter-spacing: 0.05em;
  border-block: 1px solid #b5b5b5;
  margin-top: 10px;
  /* font-size: 18px; */
}

.ec-shelfGrid__item-ttl__description p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* .ec-blockBtn--action {
  font-size: 15px;
  background-color: #fff67f;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s, color 0.3s;
}
.ec-blockBtn--action:hover {
  background: var(--color-sub);
  color: #ffffff;
  opacity: 1;    
} */

#page_product_detail .ec-productRole .item_nav {
  gap: 15px;
}

#page_product_detail .ec-productRole .item_nav .slideThumb {
  width: calc((100% - 30px) / 3);
  padding-top: calc((100% - 30px) / 3);
}

.ec-productRole {
  padding: 0;
}

.ec-productRole__description {
  font-size: var(--font-size-base);
  line-height: 2;
}

.ec-sliderItemRole {
  /* padding: 0 40px 0 0; */
  padding-inline: 0 16px;
}

.ec-productRole .ec-productRole__title .ec-headingTitle {
  /* font-size: 36px; */
  font-size: var(--font-size-30);
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-border);
  /* padding-inline: 10px; */
}

.ec-productRole .ec-productRole__tags {
  margin-bottom: 1em;
}

.ec-productRole .ec-productRole__price {
  font-size: var(--font-size-22);
  padding: 0.75em 0px;
  color: #cb0e20;
  /* padding-inline: 10px; */
  border-bottom: 1px solid var(--color-border);
  font-weight: 700;
}

.ec-productRole__actions .ec-numberInput span {
  font-size: var(--font-size-18);
}

.ec-productRole .ec-productRole__code {
  font-size: var(--font-size-18);
  padding: 1em 10px;
  /* color: #cb0e20; */
  border-bottom: 1px solid var(--color-border);
}

.ec-productRole .ec-productRole__category {
}

.ec-productRole .ec-productRole__category {
  font-size: 20px;
  line-height: 2;
  padding: 19px 10px;
  border-bottom: 1px solid var(--color-border);
}

.ec-productRole .ec-productRole__category a {
  font-size: var(--font-size-base);
  display: inline-block;
  line-height: 1.5;
}

#favorite.ec-blockBtn--cancel {
  font-size: 15px;
  background-color: #fff;
  /* font-family: "Noto Sans JP", sans-serif; */
  border: 1px solid var(--color-sub);
  /* color: #333; */
  color: var(--color-main);
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 55px;
}

#favorite.ec-blockBtn--cancel .favorite-icon {
  color: #cb0e20;
  transition: background-color 0.3s, color 0.3s;
}

#favorite.ec-blockBtn--cancel:hover {
  background: var(--color-sub);
  color: #ffffff;
  opacity: 1;
}

#favorite.ec-blockBtn--cancel:hover .favorite-icon {
  color: #fff;
}

.ec-productRole .ec-productRole__btn {
  margin-bottom: 15px;
}

.pagetop {
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background-color: unset !important;
  z-index: 101;
}

.pagetop::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/pagetop.png) no-repeat center / contain;
  display: block;
}
