@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-19: 1.1875rem;
  --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: 999px;
  /* logo width */
  --logo-width: 71px;
  /* map height */
  --map-height: 300px;
  /* btn defaults */
  --btn-height: 45px;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-14);
  --btn-font-weight: var(--font-weight-bold);
  --btn-letter-space: var(--letter-spacing-medium);
  --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: 150px;
  /* breadcrumb settings */
  --bread-letter-space: var(--letter-space-base);
  --bread-font-size: 15px;
  --bread-font-weight: var(--font-weight-medium);
  --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-bg-color: var(--color-theme);
  --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: #353535;
  --prev-next-link-bg-color: #d5d5d5;
  --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: #353535;
  --tag-btn-bg-color: #d5d5d5;
  --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-15);
  /* pagenation settings */
  --pagenation-margin-top: 48px;
  --pagenation-item-width: 2.5em;
  --pagenation-item-height: 2.5em;
  --pagenation-item-round: 30px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg-color: #d5d5d5;
  --pagenation-item-color: #353535;
  --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-base);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-main);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.header__inner {
  padding: 0px 0px;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: var(--header-height);
}
.header__logo {
  width: var(--logo-width);
  margin-top: 30px;
  margin-left: 30px;
}
.header__info {
  padding: 10px 20px 10px 30px;
  background-color: var(--color-theme);
  min-height: 97px;
}
.header-nav {
  margin-top: 20px;
  margin-right: 40px;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 30px;
}
.header-nav__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  line-height: 1;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-medium);
}
.header-nav__link:hover {
  color: var(--color-accent);
  opacity: 1;
}
.header-nav__link.current {
  color: var(--color-accent);
}

/* ===========================================
*
* nav menu style
*
* ======================================== */
.nav-menu {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  width: fit-content;
  margin: 0 auto 50px;
  border-block: 2px solid var(--color-text-main);
}

.nav-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-menu__item {
  position: relative;
  z-index: 1;
}

.nav-menu__link {
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 56px;
  padding-inline: 27px;
  display: block;
  width: fit-content;
}

.nav-menu__link:hover {
  color: var(--color-accent);
  opacity: 1;
}

.nav-menu__link.current {
  color: var(--color-accent);
}

.nav-menu__link.current::after {
  width: 2em;
}

/* ドロップダウン矢印 */
.nav-menu__item:has(.nav-menu__link.ec-dropdown-menu)::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: 8px;
  height: 4px;
  background: url(../img/drop_arrow_bottom.png) no-repeat top center/contain;
  bottom: -7px;
  left: 50%;
  translate: -50% 100%;
  pointer-events: none;
}

/* ドロップダウンリスト */
.nav-menu .ec-dropdown-menu__list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  translate: -50% 0%;
  z-index: 10;
  -webkit-transition: visibility 0.3s, opacity 0.3s ease;
  transition: visibility 0.3s, opacity 0.3s ease;
  min-width: 200px;
  background-color: var(--color-white);
  border: 1px solid var(--color-text-main);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin-top: 8px;
}

/* ホバー時の表示 */
.nav-menu__item:hover .ec-dropdown-menu__list {
  visibility: visible;
  opacity: 1;
}

.nav-menu .ec-dropdown-menu__item {
  position: relative;
}

.nav-menu .ec-dropdown-menu__item:not(:last-child) {
  margin-bottom: 2px;
}

/* ドロップダウン内のリンクスタイル */
.nav-menu .ec-dropdown-menu__item .nav-menu__link {
  padding: 8px 16px;
  font-size: var(--font-size-14);
  line-height: 1.4;
  color: var(--color-text-main);
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.nav-menu .ec-dropdown-menu__item .nav-menu__link:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

/* 三角矢印（オプション） */
.nav-menu .ec-dropdown-menu__list::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  translate: -50% 0%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-text-main);
}

.nav-menu .ec-dropdown-menu__list::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  translate: -50% 0%;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--color-white);
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  z-index: 1;
  background-color: #c08300;
}
.footer::before {
  content: "";
  background-color: var(--color-sub);
  width: 100%;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.footer__inner {
  justify-content: space-between;
  padding-block: 50px;
}
.footer__logo {
  --logo-width: 120px;
  margin-bottom: 50px;
}
.footer-nav {
  width: 100%;
  margin-top: 30px;
}
.footer-nav__list {
  justify-content: center;
}
.footer-nav__list:not(:last-child) {
  margin-bottom: 21px;
}
.footer-nav__item:not(:last-child) {
  position: relative;
  z-index: 1;
}
.footer-nav__item:not(:last-child)::after {
  content: "";
  rotate: 15deg;
  width: 1px;
  height: 1em;
  background-color: var(--color-white);
  position: absolute;
  top: 62.5%;
  right: 0;
  translate: 0% -50%;
}
.footer-nav__link {
  line-height: 1;
  transition: 0.3s;
  padding-inline: 1em;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-base);
  color: var(--color-white);
}
.footer-nav__link:hover,
.footer-nav__link.current {
  color: var(--color-accent);
}
.footer__links {
  margin-top: 34px;
  padding-top: 30px;
  gap: 32px;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 1px solid #ce9b00;
}
.footer__contact-btn {
  width: 185px;
  --btn-height: 55px;
  --btn-font-size: var(--font-size-base);
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
}
.footer__copy {
  font-size: 11px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  margin-top: 30px;
  display: block;
  text-align: center;
  color: var(--color-white);
}

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

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  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 {
  font-size: var(--font-size-38);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 50px;
}
.cmn-ttl__main {
  font-size: var(--font-size-38);
  margin-block: -0.25em;
  display: inline-block;
}
.cmn-ttl__main::first-letter {
  color: var(--color-sub);
}
.cmn-ttl::after {
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 30px;
  height: 1px;
  background-color: var(--color-accent);
}

.cmn-ttl02 {
  font-size: var(--font-size-38);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.cmn-ttl02__main {
  font-size: var(--font-size-38);
  margin-block: -0.25em;
  display: inline-block;
}
.cmn-ttl02__main::first-letter {
  color: var(--color-sub);
}
.cmn-ttl02__sub {
  font-size: var(--font-size-20);
  margin-block: -0.25em;
  display: inline-block;
  color: var(--color-sub);
  margin-bottom: 20px;
}

/* cmn-border-left-ttl
-------------------------*/
.cmn-border-left-ttl {
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-large);
  padding-left: 18px;
  position: relative;
  z-index: 1;
}
.cmn-border-left-ttl::before {
  content: "";
  width: 3px;
  height: calc(100% - 0.5em);
  background-color: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}

/* cmn-border-bottom-ttl
-------------------------*/
.cmn-border-bottom-ttl {
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-large);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-accent);
}

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

.tel {
  /* tel　style */
  font-size: var(--font-size-26);
  font-weight: var(--font-weight-black);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  position: relative;
  display: block;
}
.tel--white {
  color: var(--color-white);
}
.tel--white .tel__label {
  background-color: var(--color-white);
  color: var(--color-sub);
}
.tel__label {
  /* tel txt style */
  font-size: var(--font-size-19);
  line-height: 26px;
  padding-inline: 6px;
  background-color: var(--color-accent);
  display: inline-block;
  margin-right: 6px;
  color: var(--color-main);
  font-weight: var(--font-weight-medium);
}

.tel-store {
  /* tel-store　style */
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1;
  position: relative;
  display: block;
}
.tel-store__label {
  /* tel txt style */
  display: inline-block;
  margin-right: 0.125em;
}

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

/*------------------------------
*
* table style
*
------------------------------*/
.main-table {
  --table-letter-spacing: var(--letter-spacing-medium);
  --table-th-text-align: center;
  --table-th-x-padding: 30px;
  --table-th-y-padding: 1em;
  --table-th-bg-color: var(--color-text-main);
  --table-th-color: var(--color-white);
  --table-th-width: 200px;
  --table-td-x-padding: 30px;
  --table-td-y-padding: 1em;
  --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-text-main);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-text-main);
  --table-width: 100%;
  width: var(--table-width);
  border-block: 1px solid var(--table-border-color);
  letter-spacing: var(--table-letter-spacing);
  font-size: var(--font-size-15);
  line-height: 2;
}
.main-table tr {
  width: 100%;
}
.main-table tr:not(:first-child) th {
  border-top: 1px solid var(--table-th-border-color);
}
.main-table tr:not(:first-child) td {
  border-top: 1px solid var(--table-td-border-color);
}
.main-table th,
.main-table td {
  vertical-align: middle;
  font-weight: var(--font-weight-medium);
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-th-bg-color);
  color: var(--table-th-color);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}
.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

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

/* dual-tone-txt　上下2色のテキスト
-------------------------*/
.dual-tone-txt {
  --color-top: var(--color-sub);
  --color-bottom: var(--color-accent);
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--color-top);
}
.dual-tone-txt::after {
  content: attr(data-dual-txt);
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--color-top) 0 60%,
    var(--color-bottom) 40% 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/*------------------------------
*
* business-info
*
------------------------------*/
.cmn-business-info {
  /* 営業時間・定休日をまとめたdl */
  gap: 5px 18px;
  font-size: 13px;
  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 {
  z-index: -1;
}
.cmn-btn--rounded {
  border-radius: var(--round-20);
}
.cmn-btn--rounded-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;
  position: relative;
  z-index: 1;
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  border-right: 3px solid var(--color-main);
  overflow: hidden;
}
.cmn-btn--primary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: 0 -50%;
  background-color: var(--color-accent);
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--primary:hover::before {
  translate: 0 50%;
}
.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;
  padding-block: var(--btn-padding-y);
  padding-inline: var(--btn-padding-x);
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
  background-color: var(--color-medium-yellow);
  color: var(--color-accent);
  border-right: 3px solid var(--color-accent);
  overflow: hidden;
}
.cmn-btn--secondary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: 0 -50%;
  background-color: var(--color-light-yellow);
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--secondary:hover::before {
  translate: 0 50%;
}
.cmn-btn--tertiary {
  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;
  opacity: 1;
  transition: 0.3s;
  border-bottom: 1px solid var(--color-text-main);
  padding-inline: 10px 20px;
}
.cmn-btn--tertiary:hover {
  opacity: 0.7;
}
.cmn-btn--arrow-right-main {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right-main::after {
  content: "";
  width: 5px;
  height: 9px;
  background: url("/simplebook/img/common/arrow_right_main.svg") no-repeat top
    center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--arrow-right-main:hover::after {
  translate: 25% -50%;
}
.cmn-btn--arrow-right-text-main {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right-text-main::after {
  content: "";
  width: 5px;
  height: 9px;
  background: url("/simplebook/img/common/arrow_right_text-main.svg") no-repeat
    top center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--arrow-right-text-main:hover::after {
  translate: 25% -50%;
}
.cmn-btn--arrow-right-white {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right-white::after {
  content: "";
  width: 5px;
  height: 9px;
  background: url("/simplebook/img/common/arrow_right_white.svg") no-repeat top
    center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--arrow-right-white:hover::after {
  translate: 25% -50%;
}
.cmn-btn--arrow-right-accent {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-right-accent::after {
  content: "";
  width: 5px;
  height: 9px;
  background: url("/simplebook/img/common/arrow_right_accent.svg") no-repeat top
    center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--arrow-right-accent:hover::after {
  translate: 25% -50%;
}
.cmn-btn--arrow-down-main {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-down-main::after {
  content: "";
  width: 9px;
  height: 5px;
  background: url("/simplebook/img/common/arrow_down_main.svg") no-repeat top
    center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--arrow-down-main:hover::after {
  translate: 0% 0%;
}
.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;
  padding-bottom: 55px;
}
.mv::after {
  content: "";
  width: 100%;
  height: 125px;
  background-color: var(--color-theme);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.mv__inner {
  display: flex;
  justify-content: center;
  padding: 0 40px;
  margin-inline: auto;
  max-width: 1920px;
}
.mv__catch {
  max-width: 426px;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 6.9791666667%;
  transform: translate(0%, -50%);
  z-index: 20;
}
.mv__imgs {
  max-width: 1220px;
  height: 560px;
  width: 63.5416666667%;
  margin-left: auto;
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  grid-template-areas: "img-tl img-r" "img-bl img-r";
}
.mv__img-tl {
  grid-area: img-tl;
}
.mv__img-bl {
  grid-area: img-bl;
}
.mv__img-r {
  grid-area: img-r;
}

/*------------------------------
*
* main style sv(sub visual)
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 1920px;
  margin-inline: auto;
  padding-inline: 40px;
  padding-bottom: 40px;
}
.sv__catch {
  position: absolute;
  top: 50%;
  left: max(30px, 50% - 640px);
  transform: translate(0%, -50%);
  font-size: var(--font-size-40);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-large);
  z-index: 20;
  padding: 0.0625em 0.75em;
  background-color: var(--color-white);
}
.sv__imgs {
  width: calc(50% + 300px);
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sv__imgs-item {
  height: clamp(360px, 20.8333333333vw, 400px);
}
.sv__img {
  width: calc(50% + 300px);
  height: clamp(360px, 20.8333333333vw, 400px);
  margin-left: auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  margin-top: var(--pagenation-margin-top);
  display: flex;
  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;
  transition: 0.3s;
  letter-spacing: var(--letter-spacing-none);
}
.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: 20px;
  --post-link-padding: 0px 0px 20px;
  --post-title-font-size: var(--font-size-15);
  --post-date-font-size: var(--font-size-14);
  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);
  border-bottom: 1px solid #e7dbcf;
}
.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 {
  flex-wrap: nowrap;
  gap: 6px;
}
.cmn-post__tags {
  width: var(--post-tags-width, auto);
  margin-bottom: 10px;
}
.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-medium);
  letter-spacing: var(--letter-spacing-medium);
  flex-shrink: 0;
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
  width: 100%;
  line-height: 1.2;
  font-size: var(--post-title-font-size, 16px);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-medium);
  padding-right: 30px;
  position: relative;
  z-index: 1;
}
.cmn-post__ttl::after {
  content: "";
  width: 8px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0% -50%;
  background: url("/simplebook/img/common/arrow_right_accent.svg") no-repeat top
    center/contain;
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: var(--font-size-14);
  --tag-height: 25px;
  --tag-x-padding: 8px;
  --tag-round: 0px;
  --tag-color: var(--color-white);
  --tag-bg-color: #bba085;
  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-medium);
  font-weight: var(--font-weight-bold);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

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

.tag-list {
  --tag-space: 8px 8px;
  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;
  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: flex;
  justify-content: 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: flex;
  align-items: center;
  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 {
  justify-content: 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);
  justify-content: center;
  width: var(--prev-next-back-link-width);
}
.prev-next__link.prev,
.prev-next__link.next,
.prev-next__link.back {
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  width: var(--bread-width, 100%);
  background-color: var(--bread-bg-color, transparent);
}
.bread-crumb__list {
  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: flex;
  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;
  transition: all 0.3s;
  line-height: 1.2;
  color: var(--bread-link-color);
}
.bread-crumb__link:hover {
  opacity: 1;
  color: var(--bread-hov-color);
}

/* cmn-info
-------------------------*/
.cmn-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn-info__main-text {
  line-height: 1;
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  padding-inline: 10px;
}
.cmn-info__main-text::before,
.cmn-info__main-text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 10px;
  background-color: var(--color-accent);
}
.cmn-info__main-text::before {
  left: 0;
  transform: rotate(-30deg);
  transform-origin: left bottom;
}
.cmn-info__main-text::after {
  right: 0;
  transform: rotate(30deg);
  transform-origin: right bottom;
}
.cmn-info__main-text--white {
  color: var(--color-white);
}
.cmn-info__main-text--white::after,
.cmn-info__main-text--white::before {
  background-color: var(--color-white);
}
.cmn-info__tel-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cmn-info__contact-btn {
  width: 56px;
  margin-left: 20px;
}

/* floating
-------------------------*/
.floating {
  position: fixed;
  right: 0;
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  translate: 0 -50%;
  gap: 20px;
  z-index: 51;
}
.floating__contact-btn {
  width: 70px;
  display: block;
}
.floating__sns-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.floating__sns-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-content: center;
  background-color: var(--color-white);
  border-radius: 50%;
}
.floating__sns-icon > img {
  width: 32px;
}

/* ----------------------------------------------------
*  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
*
* ======================================== */
/*------------------------------
*
* top-holiday
*
------------------------------*/
.top-holiday {
  background: var(--color-theme);
  padding-block: 8px 55px;
}
.top-holiday__ttl {
  width: 1px;
}
.top-holiday__container {
  padding: 30px;
  background-color: var(--color-white);
}
.top-holiday .cmn-post-item {
  border-bottom: none;
}
.top-holiday .cmn-post__link {
  padding-bottom: 0;
}

/*------------------------------
  *
  * top-event
  *
  ------------------------------*/
.top-event {
  background: var(--color-theme);
}
.top-event__btn {
  width: 240px;
}
.top-event__btn {
  width: 185px;
  margin-top: 50px;
}

/*------------------------------
  *
  * top-picks
  *
  ------------------------------*/
.top-picks {
  padding-top: 0;
}
.top-picks__ttl {
  margin-top: 20px;
  margin-bottom: 40px;
}
.top-picks__container {
  justify-content: space-between;
  align-items: flex-start;
}
.top-picks__btn {
  width: 240px;
}
.top-picks__list.orgn-products__list {
  width: 780px;
  --col-x-space: 30px;
  --col-y-space: 30px;
}

.orgn-products__list {
  --col-x-space: 40px;
  --col-y-space: 40px;
}
.orgn-products__list-item__image {
  aspect-ratio: 6 / 5;
  margin-bottom: 13px;
}
.orgn-products__list-item__ttl {
  line-height: 1.875;
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-16);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.orgn-products__list-item__price {
  line-height: 1;
  margin-top: 13px;
  text-align: right;
}
/*------------------------------
  *
  * new-item
  *
  ------------------------------*/

.new-item__btn {
  width: min(185px, 100%);
  margin-top: 40px;
  margin-inline: auto;
}
/*------------------------------
  *
  * oimo-lab
  *
  ------------------------------*/
.oimo-lab {
  position: relative;
  z-index: 1;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.oimo-lab::before {
  content: "";
  width: 39.0625%;
  height: 1040px;
  background-color: #f0f0f0;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
.oimo-lab__container {
  padding-block: 100px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 24px;
  padding-right: 7.8125%;
  position: relative;
  z-index: 1;
}
.oimo-lab__container::after {
  content: "";
  width: 344px;
  height: 307px;
  background: url("/simplebook/img/top/greeting_illust.png") no-repeat top
    center/contain;
  position: absolute;
  bottom: 50px;
  right: 100px;
}
.oimo-lab__imgs {
  display: grid;
  grid-template-areas: "img-tl text" "img-bl text";
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: 100%;
  flex-shrink: 1;
}
.oimo-lab__img-tl {
  grid-area: img-tl;
}
.oimo-lab__img-bl {
  grid-area: img-bl;
}
.oimo-lab__imgs-text {
  grid-area: text;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.oimo-lab__imgs-text > p {
  writing-mode: vertical-lr;
  font-family: var(--font-sub);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
  flex-shrink: 0;
  color: var(--color-sub);
}
.oimo-lab__imgs-text::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--color-sub);
  flex-shrink: 1;
}
.oimo-lab__content {
  width: 455px;
  flex-shrink: 0;
}
.oimo-lab__ttl {
  /* margin-top: -17.5px;
  font-size: var(--font-size-45);
  letter-spacing: var(--letter-spacing-base);
  font-family: var(--font-sub);
  line-height: 80px; */
  margin-bottom: 60px;
  /* white-space: nowrap; */
}
.oimo-lab__list {
  margin-top: 150px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}

.oimo-lab-item {
  position: relative;
  z-index: 1;
}
.oimo-lab-item__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  z-index: 1;
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-sub);
}
.oimo-lab-item__ttl > span {
  line-height: 1.6;
  padding-inline: 10px;
}
.oimo-lab-item__img {
  width: 470px;
}
.oimo-lab-item:nth-child(4n + 1),
.oimo-lab-item:nth-child(4n + 2) {
  padding-top: 23px;
  padding-left: 26px;
}
.oimo-lab-item:nth-child(4n + 1) .oimo-lab-item__img,
.oimo-lab-item:nth-child(4n + 2) .oimo-lab-item__img {
  margin-left: auto;
}
.oimo-lab-item:nth-child(4n + 1) .oimo-lab-item__ttl,
.oimo-lab-item:nth-child(4n + 2) .oimo-lab-item__ttl {
  top: 0;
  left: 0;
  align-items: flex-start;
}
.oimo-lab-item:nth-child(4n),
.oimo-lab-item:nth-child(4n + 3) {
  padding-bottom: 23px;
  padding-right: 26px;
}
.oimo-lab-item:nth-child(4n) .oimo-lab-item__ttl,
.oimo-lab-item:nth-child(4n + 3) .oimo-lab-item__ttl {
  align-items: flex-end;
  bottom: 0;
  right: 0;
}

/*------------------------------
  *
  * top-news
  *
  ------------------------------*/
.top-news {
  background-color: var(--color-theme);
}
.top-news__container {
  padding: 50px;
  background-color: var(--color-white);
}
.top-news__btn {
  width: 185px;
  margin-inline: auto;
  margin-top: 50px;
}

/* ===========================================
*
* store page
*
* ======================================== */
/*------------------------------
*
* info
*
------------------------------*/
.info {
  background-color: var(--color-theme);
}
.info-access {
  margin-top: 50px;
}
.info-access__ttl {
  margin-bottom: 23px;
}
.info-access__map {
  height: var(--map-height);
}

/*------------------------------
*
* azamino
*
------------------------------*/
.azamino {
  position: relative;
  z-index: 1;
}
.azamino::after {
  content: "";
  height: 400px;
  width: 36.4583333333%;
  background-color: #f0f0f0;
  top: 282px;
  right: 0;
  position: absolute;
  z-index: -1;
}
.azamino__container {
  justify-content: space-between;
  /* align-items: center; */
  align-items: flex-start;
}
.azamino__img {
  margin-right: 30px;
  width: 470px;
}
.azamino__sentence {
  width: 50%;
  margin-top: 50px;
}

/*------------------------------
  *
  * gallery
  *
  ------------------------------*/
.gallery__ttl {
  margin-bottom: 23px;
}
.gallery__container {
  --col-x-space: 45px;
  --col-y-space: 33px;
}
.gallery-item__img {
  aspect-ratio: 33/24;
  margin-bottom: 13px;
}
.gallery-item__ttl {
  line-height: 1.875;
  font-size: var(--font-size-base);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single {
  position: relative;
  z-index: 5;
}
.single__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.single__date {
  order: 1;
  font-size: var(--font-size-15);
  margin-bottom: 12px;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.single__tags {
  order: 2;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.single__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-28);
  border-left: 5px solid var(--color-main);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 56px;
}
.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: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--color-text-main-rgb) / 0.4);
  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;
  transform: translateY(-50%) rotate(45deg);
  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: 12px;
  border-left: 5px solid var(--color-accent);
  padding-left: 0.75em;
}

.privacy-purpose__list {
  margin-top: 16px;
}
.privacy-purpose__list > li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.privacy-box {
  margin-bottom: 40px;
}
.privacy-box p {
  line-height: 2;
}

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

/* ===========================================
*
* deliciousness-page
*
* ======================================== */
/*------------------------------
*
* secrets
*
------------------------------*/
.secrets {
  background-color: var(--color-theme);
}

.secrets-item {
  --col-x-space: 80px;
  --col-y-space: 80px;
  align-items: center;
  justify-content: center;
}
.secrets-item:nth-child(even) {
  flex-direction: row-reverse;
}
.secrets-item:not(:last-child) {
  margin-bottom: 50px;
}
.secrets-item__point {
  margin-bottom: 13px;
  font-size: var(--font-size-22);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-semibold);
  line-height: 40px;
  padding-inline: 10px;
  background-color: var(--color-main);
  color: var(--color-accent);
  width: -moz-fit-content;
  width: fit-content;
}
.secrets-item__point .lg {
  font-size: var(--font-size-30);
  margin-left: 0.125em;
}
.secrets-item__header {
  margin-bottom: 23px;
}
.secrets-item__img {
  aspect-ratio: 50/35;
}

/*------------------------------
*
* sweet-potato
*
------------------------------*/
.sweet-potato__sentence {
  text-align: center;
  margin-bottom: 50px;
}
.sweet-potato__sentence .lg {
  font-size: var(--font-size-18);
}

.sweet-potato-item {
  --col-x-space: 80px;
  --col-y-space: 80px;
  align-items: center;
  justify-content: center;
}
.sweet-potato-item:not(:last-child) {
  margin-bottom: 50px;
}
.sweet-potato-item__label {
  margin-bottom: 13px;
  font-size: var(--font-size-20);
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-large);
  font-weight: var(--font-weight-semibold);
  line-height: 40px;
  padding-inline: 20px;
  background-color: var(--color-accent);
  color: var(--color-main);
  border-radius: 2em;
  width: -moz-fit-content;
  width: fit-content;
}
.sweet-potato-item__ttl {
  font-size: var(--font-size-30);
  font-family: var(--font-sub);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-large);
  color: var(--color-accent);
}
.sweet-potato-item__header {
  margin-bottom: 23px;
}
.sweet-potato-item__img {
  aspect-ratio: 50/35;
}

/* ===========================================
*
* product-introduction-page
*
* ======================================== */
/*------------------------------
*
* product-introduction
*
------------------------------*/
.product-introduction {
  background-color: var(--color-theme);
}

.product-introduction-item {
  --col-x-space: 80px;
  --col-y-space: 80px;
  align-items: center;
  justify-content: center;
}
.product-introduction-item:not(:last-child) {
  margin-bottom: 50px;
}
.product-introduction-item__ttl {
  margin-bottom: 30px;
}
.product-introduction-item__img {
  aspect-ratio: 50/35;
}
.product-introduction-item__btn {
  width: 185px;
  margin-top: 30px;
}

/* ===========================================
*
* process-page
*
* ======================================== */
/*------------------------------
*
* process
*
------------------------------*/
.process {
  background-color: var(--color-theme);
}

.process-item {
  --col-x-space: 80px;
  --col-y-space: 80px;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}
.process-item:not(:last-child) {
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
}
.process-item:not(:last-child)::after {
  content: "";
  left: 50%;
  bottom: -48px;
  translate: -50% 50%;
  position: absolute;
  z-index: 1;
  width: 42px;
  height: 36px;
  background: url("/simplebook/img/process/arrow.svg") no-repeat top
    center/contain;
}
.process-item__ttl {
  font-size: var(--font-size-26);
  margin-bottom: 30px;
}
.process-item__img {
  aspect-ratio: 50/35;
}

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

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

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

.ec-guide__link {
  justify-content: center;
  align-items: center;
  gap: 20px 30px;
}
.ec-guide__link:not(:last-child) {
  margin-bottom: 25px;
}

.ec-guide__link__btn {
  width: calc((100% - 60px) / 3);
}
.ec-guide__link__btn--page-link {
  width: 220px;
}

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

.ec-guide__list__head {
  align-items: center;
  margin-bottom: 20px;
}

.ec-guide__list__ttl {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-large);
  color: var(--color-accent);
  font-family: var(--font-sub);
  line-height: 24px;
  flex-shrink: 1;
  width: 100%;
}

.ec-guide__list__num {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-sub);
  border-radius: 50%;
  letter-spacing: normal;
  width: 20px;
  height: 20px;
  text-align: center;
  display: inline-block;
  line-height: 20px;
  color: var(--color-white);
  background-color: var(--color-accent);
  letter-spacing: 0;
  margin-right: 10px;
  flex-shrink: 0;
}

.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 {
  font-size: var(--font-size-22);
  padding-bottom: 15px;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.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 書き換え
*
------------------------------*/
.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;
}
.ec-searchnavRole {
  padding-inline: 0px;
}
.ec-shelfRole {
  color: var(--color-text-main);

  padding-inline: 0px;
}
.ec-searchnavRole .ec-searchnavRole__infos {
  color: var(--color-text-main);
}
.ec-topicpath .ec-topicpath__item a {
  color: var(--color-text-main);
}
.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;
  font-family: var(--font-main);
  height: 34px;
}
.ec-headerSearch .ec-headerSearch__keyword input[type="search"] {
  height: 36px;
}

.ec-blockBtn--action {
  background-color: var(--color-text-main);
  border-color: var(--color-text-main);
  transition: 0.3s;
  border-radius: 3em;
  position: relative;
  z-index: 1;
}

.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(/simplebook/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: rgba(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("/simplebook/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;
}

#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: 16px;
  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;
}

#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 {
  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;
}

.ec-blockBtn--cancel {
  border-radius: 3em;
}

#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(/simplebook/img/pagetop.png) no-repeat center/contain;
  display: block;
} /*# sourceMappingURL=style.css.map */

/*------------------------------
*
* 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;
}

.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(/simplebook/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("/simplebook/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%;
}

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

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

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

#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-sub);
  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;
  display: none !important;
}

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

.ec-products__header {
  justify-content: space-between;
  align-items: center;

  margin-bottom: 60px;
}

.ec-products__header-right {
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.ec-headerRole__cart {
  width: 140px;
}

.ec-products__header
  .ec-headerSearch
  .ec-headerSearch__category
  .ec-select.ec-select_search {
  background-color: var(--color-accent);
  font-family: var(--font-main);
}

#page_help_about .ec-layoutRole__contents {
  background-color: var(--color-theme);
}

#page_help_guide .ec-layoutRole .ec-layoutRole__contents {
  padding: 0 !important;
}

#page_help_guide .ec-guide-wrapper {
  padding-bottom: 100px;
}

#page_help_guide .ec-guide {
  padding-inline: calc(50% - 540px);
}

#page_help_guide .ec-guide:has(.ec-guide__link) {
  padding-block: 100px;
  background-color: var(--color-theme);
  margin-bottom: 100px;
}

#page_help_about .ec-layoutRole .ec-layoutRole__contents {
  padding: 100px calc(50% - 540px) !important;
  width: 100% !important;
}

#page_help_tradelaw .ec-layoutRole__contents {
  background-color: var(--color-theme);
}
