@charset "UTF-8";
/* (!)style.css修正の場合/scss/内.scssを更新する */
/* ------------------------------
　　common
------------------------------ */
:root {
  --color-text-base: #000;
  --color-base-gray: #CCC;
  --color-base-brown: #443322;
  --color-base-white: #FFF;
  --color-brand-red: #E7233C;
  --color-brand-orange: #ED0125;
  --color-brand-yellow: #F7B009;
  --main-lh: 1.8;
  --header-height: 80px;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: var(--color-text-base);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #FFF;
  margin: 0;
  line-height: var(--main-lh);
  overflow-x: hidden;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(238, 241, 247, 0.4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  position: absolute;
  z-index: 1;
}
body.is-locked {
  background: transparent;
}
body.is-locked::before {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

main {
  margin-top: var(--header-height);
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

strong, .strong {
  font-weight: bold;
}

hr {
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  margin: 0;
}

.hide-sp {
  display: block;
}

.hide-pc {
  display: none;
}

/* リンク
--------------------------*/
a {
  color: var(--color-text-base);
  text-decoration: none;
  border: none;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

a:visited {
  color: var(--color-text-base);
  text-decoration: none;
}

a:active {
  color: var(--color-text-base);
  text-decoration: none;
}

a:hover {
  color: var(--color-base-brown);
  text-decoration: none;
}

/* レスポンシブ表示
--------------------------*/
.br-sp {
  display: none;
}

.br-pc {
  display: inline-block;
}

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

/* テキストレイアウト
--------------------------*/
.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.f-ZenMaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.f-notoSans {
  font-family: "Noto Sans JP", sans-serif;
}

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

.text-left {
  text-align: left;
}

.word-break {
  display: inline-block;
}

/* コンテナ
--------------------------*/
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
}

.container--large {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}

.container--small {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}

/* セクション
--------------------------*/
.section {
  margin: 100px 0;
}

/* タイトル
--------------------------*/
.title__page--wrap {
  padding: 50px 0 57px;
  border-bottom: 5px solid #FFA600;
  position: relative;
}
.title__page--wrap::after {
  content: "";
  width: 100%;
  height: 5px;
  background: #B6D302;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.title__page {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto;
}
.title__page .title__ja {
  color: var(--color-base-brown);
  font-size: clamp(30px, 2.571vw, 36px);
}
.title__page .title__en {
  color: var(--color-brand-red);
  text-transform: uppercase;
  font-size: clamp(18px, 1.429vw, 20px);
  display: block;
}

.title--caption {
  text-align: center;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 2.286vw, 32px);
  color: var(--color-base-brown);
  margin: 0 auto 30px;
}
.title--caption .title__ja {
  background: #FFF;
  padding: 6px 5px;
  line-height: 1.5;
}
.title--caption .title__en {
  display: block;
  color: var(--color-brand-red);
  font-size: clamp(18px, 1.429vw, 20px);
  margin-top: 10px;
}

.title--labeled {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 30px;
}
.title--labeled .title__label {
  display: inline-block;
  color: var(--color-brand-red);
  font-size: clamp(20px, 1.714vw, 24px);
  margin-bottom: 8px;
  padding: 0 10px 8px 10px;
  border-bottom: 2px solid var(--color-brand-orange);
}
.title--labeled .title__text {
  display: block;
  font-size: clamp(28px, 2.285vw, 32px);
  color: var(--color-base-brown);
}

.title--underbar {
  color: var(--color-brand-orange);
  font-size: clamp(26px, 2.286vw, 32px);
  display: inline-block;
  padding: 0 10px 10px 10px;
  margin: 60px auto 36px;
  border-bottom: 3px solid #FFA600;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
.title--underbar.title--center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.title--sidebar {
  color: var(--color-base-brown);
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--color-brand-orange);
}

.title--bold {
  color: var(--color-base-brown);
  font-family: "Zen Maru Gothic";
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 auto 10px;
}
.title--bold.title--center {
  text-align: center;
}

/* ボタン
--------------------------*/
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 46px;
  width: 300px;
  height: 60px;
  max-width: 100%;
  border-radius: 9999px;
  background: var(--color-brand-yellow);
  color: var(--color-base-brown);
  line-height: 1.3;
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  position: relative;
}
.btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/arrow_circle-wh.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .btn:hover {
    background: var(--color-base-gray);
  }
}
.btn:visited {
  color: var(--color-base-brown);
}
.btn.btn--center {
  margin: 0 auto;
}
.btn:has(.btn__icon) {
  padding-left: 52px;
}
.btn .btn__icon {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .btn--large {
    width: 500px;
    height: 80px;
    font-size: 20px;
    padding: 23px 45px 23px 25px;
  }
  .btn--large::after {
    width: 20px;
    height: 20px;
    right: 40px;
  }
}

.btn--small {
  width: 182px;
  height: 50px;
  padding: 0 43px 0 20px;
}
.btn--small::after {
  width: 15px;
  height: 15px;
  right: 18px;
}

.btn--xs {
  width: 104px;
  height: 32px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn--xs::after {
  width: 5px;
  height: 8px;
  background: url(../img/common/arrow_wh.svg) no-repeat center/cover;
  margin-left: 9px;
  position: initial;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.btn--back::after {
  right: auto;
  left: 30px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}

.btn--red {
  background: var(--color-brand-red);
  color: var(--color-base-white);
}
.btn--red:visited {
  color: var(--color-base-white);
}
@media (any-hover: hover) {
  .btn--red:hover {
    background: var(--color-base-brown);
    color: var(--color-base-white);
  }
}

.btn--brown {
  background: var(--color-base-brown);
  color: var(--color-base-white);
}
.btn--brown:visited {
  color: var(--color-base-white);
}
@media (any-hover: hover) {
  .btn--brown:hover {
    background: var(--color-brand-red);
    color: var(--color-base-white);
  }
}

.btn--gray {
  background: var(--color-base-gray);
}
@media (any-hover: hover) {
  .btn--gray:hover {
    background: var(--color-brand-yellow);
  }
}

.btn--navi {
  width: auto;
  height: 39px;
  background: #FFF;
  border: 1px solid var(--color-base-gray);
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 15px 0 30px;
}
.btn--navi::after {
  width: 8px;
  height: 5px;
  background: url(../img/common/arrow_re.svg) no-repeat center/cover;
  right: auto;
  left: 12px;
}
@media (any-hover: hover) {
  .btn--navi:hover {
    border-color: var(--color-brand-orange);
    background: var(--color-brand-orange);
    color: #FFF;
  }
  .btn--navi:hover::after {
    width: 5px;
    height: 8px;
    background: url(../img/common/arrow_wh.svg) no-repeat center/cover;
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
  }
}

/* 動画
--------------------------*/
.video__wrap:has(.btn--mute) {
  position: relative;
}
.video__wrap video {
  width: 100%;
  display: block;
}

.btn--mute {
  border: none;
  background: color-mix(var(--color-base-brown), transparent 20%);
  width: 50px;
  height: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
@media (any-hover: hover) {
  .btn--mute:hover {
    opacity: 0.65;
  }
}

/* テーブル
--------------------------*/
.table--info {
  width: 100%;
  border-top: 1px solid var(--color-base-gray);
  border-left: 1px solid var(--color-base-gray);
}
.table--info tr {
  border-bottom: 1px solid var(--color-base-gray);
}
.table--info th, .table--info td {
  padding: 1.25em;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
  border-right: 1px solid var(--color-base-gray);
}
.table--info th {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  background: #FEF8F0;
}
.table--info td {
  font-size: 16px;
}

/* 背景
--------------------------*/
.stripe--orange {
  background: #FFC971 url(../img/common/stripe_or.png) 0% 0%/25px 25px repeat;
}

.stripe--yellow {
  background: #FFF0B0 url(../img/common/stripe_ye.png) 0% 0%/25px 25px repeat;
}

.stripe--green {
  background: #F9FCC8 url(../img/common/stripe_gr.png) 0% 0%/25px 25px repeat;
}

/* リスト
--------------------------*/
.list {
  list-style: disc;
  margin-left: 1.3em;
}

/* 通常のテキストリンク */
p a:not([class]) {
  color: var(--color-brand-orange);
  text-decoration: underline;
}
p a:not([class]) .icon_external {
  vertical-align: sub;
  margin-left: 5px;
}
@media (any-hover: hover) {
  p a:not([class]):hover {
    opacity: 0.7;
  }
}

/* トピックパス
--------------------------*/
.breadcrumb {
  padding: 16px 0 11px;
  border-bottom: 1px solid var(--color-base-gray);
}

.breadcrumb__inner {
  width: 100%;
  padding: 0 30px;
}

.breadcrumb__list {
  font-size: 12px;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -12px;
}
.breadcrumb__list li {
  padding: 0 12px;
}
.breadcrumb__list li + li {
  margin-left: 7px;
  position: relative;
}
.breadcrumb__list li + li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/common/arrow_ye.svg) no-repeat center/cover;
  position: absolute;
  top: calc(50% + 1px);
  left: -6px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.breadcrumb__list li + li > a {
  color: var --color-brand-orange;
}
@media (any-hover: hover) {
  .breadcrumb__list li + li > a:hover {
    opacity: 0.75;
  }
}

.breadcrumb__item--home a {
  color: var(--color-brand-orange);
}

/* アニメーション
--------------------------*/
.scrollUp {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.scrollUp.__02 {
  -webkit-transition: 0.8s ease-in-out 0.6s;
  transition: 0.8s ease-in-out 0.6s;
}
.scrollUp.__03 {
  -webkit-transition: 0.8s ease-in-out 1s;
  transition: 0.8s ease-in-out 1s;
}
.scrollUp.__04 {
  -webkit-transition: 0.8s ease-in-out 1.4s;
  transition: 0.8s ease-in-out 1.4s;
}
.scrollUp.__05 {
  -webkit-transition: 0.8s ease-in-out 1.8s;
  transition: 0.8s ease-in-out 1.8s;
}
.scrollUp.__06 {
  -webkit-transition: 0.8s ease-in-out 2.2s;
  transition: 0.8s ease-in-out 2.2s;
}
.scrollUp.animated {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.fadeIn {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.fadeIn.animated {
  opacity: 1;
}

/* WP style add
--------------------------*/
h2[class^=wp-block-], h3[class^=wp-block-], h4[class^=wp-block-], h5[class^=wp-block-] {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

h2[class^=wp-block-] {
  color: var(--color-brand-orange);
  font-size: clamp(26px, 2.286vw, 32px);
  display: inline-block;
  padding: 0 10px 10px 10px;
  margin: 60px auto 50px;
  border-bottom: 3px solid #FFA600;
}
h2[class^=wp-block-].has-text-align-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

h3[class^=wp-block-] {
  color: var(--color-base-brown);
  font-size: clamp(20px, 1.714vw, 24px);
  margin: 30px auto 20px;
}

h4[class^=wp-block-] {
  color: var(--color-base-brown);
  font-size: 18px;
  margin: 30px auto 20px;
  padding-left: 16px;
  border-left: 4px solid var(--color-brand-orange);
}

hr[class^=wp-block-] {
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  margin: 30px 0;
}

blockquote[class^=wp-block-] {
  background: #FEF8F0;
  display: inline-block;
  padding: 20px;
}
blockquote[class^=wp-block-] > p {
  margin: 0;
}
blockquote[class^=wp-block-] > p strong {
  color: var(--color-base-brown);
}

ul[class^=wp-block-] li {
  padding-left: 1rem;
  position: relative;
}
ul[class^=wp-block-] li::before {
  content: "・";
  font-weight: 700;
  color: var(--color-base-brown);
  position: absolute;
  left: 0;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .hide-sp {
    display: none;
  }
  .hide-pc {
    display: block;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline-block;
  }
  .container,
  .container--small,
  .container--large {
    padding: 0 5.13vw;
  }
  /* 動画 */
  .btn--mute {
    width: 40px;
    height: 40px;
  }
  /* テーブル */
  .table--info th, .table--info td {
    padding: clamp(10px, 5.13vw, 20px);
  }
  /* タイトル */
  .title__page--wrap {
    padding: 35px 0 40px;
  }
  .title__page .title__ja {
    font-size: clamp(26px, 8.21vw, 32px);
  }
  .title__page .title__en {
    font-size: clamp(18px, 5.13vw, 20px);
  }
  .title--caption {
    font-size: clamp(24px, 7.179vw, 28px);
  }
  .title--caption .title__ja {
    padding: 8px 5px;
  }
  .title--caption .title__en {
    font-size: clamp(18px, 5.13vw, 20px);
  }
  .title--labeled .title__label {
    font-size: clamp(18px, 5.13vw, 20px);
    margin-bottom: clamp(15px, 5.13vw, 20px);
  }
  .title--labeled .title__text {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  .title--underbar {
    font-size: clamp(24px, 7.179vw, 28px);
    margin: clamp(40px, 15.38vw, 60px) auto clamp(20px, 10.256vw, 40px);
  }
  .title--sidebar {
    font-size: clamp(16px, 4.615vw, 18px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  .title--bold {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  /* トピックパス */
  .breadcrumb__inner {
    padding: 0 5.13vw;
  }
  h2[class^=wp-block-] {
    font-size: clamp(24px, 7.179vw, 28px);
    margin: clamp(40px, 15.38vw, 60px) auto clamp(20px, 10.256vw, 40px);
  }
  h3[class^=wp-block-] {
    font-size: clamp(20px, 6.154vw, 24px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  h4[class^=wp-block-] {
    font-size: clamp(16px, 4.615vw, 18px);
    margin: clamp(20px, 7.69vw, 30px) auto clamp(15px, 5.13vw, 20px);
  }
  blockquote[class^=wp-block-] {
    padding: clamp(15px, 5.13vw, 20px);
  }
}
/* ------------------------------
　　header
------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-base-white);
  border-bottom: 1px solid #E5E5E5;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.header__inner {
  width: 100%;
  padding: 0 30px;
  border-bottom: 1px solid #E5E5E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__fix-menu {
  max-width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}

.header__logo {
  margin: 0;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo a {
  display: block;
  text-decoration: none !important;
}
.header__logo img {
  display: block;
  width: 214px;
  height: auto;
}

.header__logo-sub {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-base-brown);
  margin-top: 5px;
  padding-left: 26.17%;
}

.header__drop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header-height);
}

.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  margin-right: 8px;
}
@media screen and (min-width: 1001px) {
  .header__nav .menu-item.current-menu-item a {
    color: var(--color-brand-red);
  }
}
.header__nav .menu-item.current-menu-item a span::after, .header__nav .menu-item.current-page-ancestor a span::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__nav .menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header-height);
  padding: 0 12px;
  font-size: 15px;
  font-weight: 700;
}
.header__nav .menu-item a span {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
}
.header__nav .menu-item a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-brand-red);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav .menu-item a:hover {
    color: var(--color-brand-red);
  }
  .header__nav .menu-item a:hover span::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    background: var(--color-brand-yellow);
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-list .hide--large {
  display: none;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__btn {
  width: 210px;
  height: 50px;
  gap: 0 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 50px 0 30px;
}
.header__btn::after {
  right: 18px;
}

.header__btn--menu {
  width: 200px;
}

.header__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-base-gray);
  cursor: pointer;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-base-brown);
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

/* ハンバーガーメニュー切り替え
--------------------------*/
@media screen and (max-width: 1000px) {
  .header {
    border-bottom: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header.is-open .header__drop-menu.is-open {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header.is-open .header__fix-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header.is-open .header__toggle-bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .header.is-open .header__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header__toggle-bar:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .header__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    border-bottom: none;
  }
  .header__fix-menu {
    width: 100%;
    height: var(--header-height);
    padding: 0 0 0 clamp(10px, 5.13vw, 20px);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-bottom: 1px solid #E5E5E5;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
  }
  .header__drop-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0 0 80px;
    overflow-y: auto;
    background: #fff;
    display: none;
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 101;
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo img {
    width: clamp(180px, 57vw, 214px);
  }
  .header__nav {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    display: block;
    margin: 0;
  }
  .header__nav .menu-item {
    border-bottom: 1px solid var(--color-base-gray);
  }
  .header__nav .menu-item a {
    height: auto;
    padding: 15px 5.13vw;
    color: var(--color-base-brown);
    font-size: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__nav .menu-item a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow_circle-br.svg) no-repeat center/contain;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header__nav .menu-item a span::after {
    display: none;
  }
  .header__nav-list {
    display: block;
    border-top: 1px solid var(--color-base-gray);
  }
  .header__nav-list .hide--large {
    display: block;
  }
  .header__nav-list .hide--small {
    display: none;
  }
  .header__actions {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    padding: 40px 5.13vw;
  }
  .header__btn {
    width: 170px;
    height: 120px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 36px 15px 15px;
    border-radius: 12px;
    gap: 10px;
    font-size: 15px;
  }
  .header__btn::after {
    display: none;
  }
  .header__btn img {
    width: 30px;
    height: 30px;
  }
  .header__btn span::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/common/arrow_circle-wh.svg) no-repeat center/contain;
    display: inline-block;
    vertical-align: -2px;
    margin-left: 5px;
  }
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
    height: var(--header-height);
  }
}
/* ------------------------------
　　footer
------------------------------ */
.footer {
  background: var(--color-base-brown);
  color: var(--color-base-white);
  padding: 50px 0;
}

.footer__logo {
  text-align: center;
}
.footer__logo a {
  text-decoration: none !important;
}

.footer__logo-sub {
  display: block;
  font-weight: 700;
  color: var(--color-base-white);
}

.footer__nav {
  margin: 19px 0 22px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__nav-list .menu-item a {
  color: var(--color-base-white);
  font-weight: 700;
  padding: 0 8px;
  height: calc(1rem + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav-list .menu-item a span {
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
}
.footer__nav-list .menu-item a span:after {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-base-white);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-list .menu-item a:hover span::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.copyright {
  display: block;
  font-size: 12px;
  text-align: center;
}

.page-top-btn {
  width: 64px;
  aspect-ratio: 1/1;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .page-top-btn:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0 16px;
  }
  .footer__logo img {
    width: 222px;
  }
  .footer__logo-sub {
    margin-top: 0.4rem;
  }
  .footer__nav {
    width: 100vw;
    margin: 30px calc(50% - 50vw) 37px;
  }
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid var(--color-base-gray);
  }
  .footer__nav-list .menu-item {
    border-bottom: 1px solid var(--color-base-gray);
  }
  .footer__nav-list .menu-item a {
    height: auto;
    min-height: clamp(40px, 15.38vw, 60px);
    padding: 0 calc(10.6vw + 20px) 0 5.3vw;
    position: relative;
  }
  .footer__nav-list .menu-item a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/common/arrow_circle-wh.svg) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 5.3vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page-top-btn {
    display: none !important;
  }
}
/* ------------------------------
　　top
------------------------------ */
.mv {
  padding: 30px 0 20px;
}
@media (any-hover: hover) {
  .mv .splide__slide > a:hover {
    opacity: 0.8;
  }
}
.mv .splide__arrows .button {
  background-color: var(--color-base-brown);
  border: none;
  width: 40px;
  height: 40px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  top: calc(50% - 20px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (any-hover: hover) {
  .mv .splide__arrows .button:hover {
    background-color: var(--color-brand-red);
  }
}
.mv .splide__arrows .button::before {
  content: "";
  width: 14px;
  height: 23px;
  background: url(../img/common/arrow_wh.svg) no-repeat center/cover;
  display: inline-block;
}
.mv .splide__arrows .button.prev {
  left: 0;
}
.mv .splide__arrows .button.next {
  right: 0;
}
.mv .splide__arrows .button.next::before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.mv .splide__pagination {
  margin: 20px 0 0;
}
.mv .splide__pagination li {
  margin: 0 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mv .splide__pagination button {
  border: 1px solid var(--color-brand-red);
  background: #FFF;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
}
.mv .splide__pagination button.is-active {
  background: var(--color-brand-red);
}

@media screen and (max-width: 767px) {
  .mv {
    padding-top: 20px;
  }
  .mv .splide__pagination {
    margin-top: 15px;
  }
  .mv .splide__arrows .button {
    background-color: color-mix(in srgb, var(--color-base-brown), transparent 20%);
  }
}
.top__commitment {
  padding: 46px 0;
}

.top__commitment--inner {
  max-width: 1216px;
  padding: 0 30px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__commitment--text {
  width: 37.716%;
}

.top__commitment--media {
  width: 58.823%;
}

@media screen and (max-width: 767px) {
  .top__commitment {
    padding: 40px 0 50px;
  }
  .top__commitment--inner {
    padding: 0 5.13vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top__commitment--text {
    width: 94.286%;
    margin-bottom: 20px;
  }
  .top__commitment--media {
    width: 100%;
  }
}
.top__menu {
  padding: 60px 0 80px;
  position: relative;
}
.top__menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../img/common/stripe_or.png) 0% 0%/25px 25px repeat;
  z-index: -1;
}

.top__menu--title {
  margin-bottom: 27px;
}

.top__menu--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr 2% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 1.93vw, 22px) 2%;
  margin: 50px auto;
}

.top__menu--link {
  display: block;
  border-radius: 16px;
  border: 1px solid var(--color-base-gray);
  background: #FEF8F0;
  padding: 30px clamp(20px, 2.857vw, 40px);
}
.top__menu--link * {
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
@media (any-hover: hover) {
  .top__menu--link:hover .top__menu--img {
    opacity: 0.5;
  }
  .top__menu--link:hover .top__menu--name {
    color: var(--color-brand-red);
  }
  .top__menu--link:hover .top__menu--name::after {
    background: url(../img/common/arrow_circle-re.svg) no-repeat center/cover;
  }
}

.top__menu--name {
  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;
  margin: 20px auto 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2.105vw, 24px);
  color: var(--color-base-brown);
  line-height: 1.5;
  position: relative;
}
.top__menu--name::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow_circle-or.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: clamp(10px, 1.4vw, 16px);
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

@media screen and (max-width: 767px) {
  .top__menu {
    padding: 50px 0;
  }
  .top__menu--title {
    margin-bottom: 20px;
  }
  .top__menu--list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(20px, 7.692vw, 30px);
    margin: clamp(30px, 10.256vw, 40px) auto;
    padding: 0 2.857%;
  }
  .top__menu--link {
    padding: clamp(20px, 7.692vw, 30px) 10%;
  }
  .top__menu--name {
    margin: clamp(15px, 5.13vw, 20px) auto 0;
    font-size: clamp(16px, 5.13vw, 20px);
    padding: 0 24px 0 0;
  }
  .top__menu--name::after {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.top__store {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 37.143% 1fr;
  grid-template-columns: 1fr 37.143% 1fr;
  border-bottom: 1px solid var(--color-base-gray);
  position: relative;
}
.top__store::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-base-gray);
  position: absolute;
  top: -50px;
}

.top__store--img {
  overflow: hidden;
}
.top__store--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top__store--body {
  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;
  padding: 48px 8%;
  text-align: center;
}
.top__store--body .title--caption {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .top__store--body .btn {
    width: 400px;
    height: 80px;
    font-size: 20px;
  }
  .top__store--body .btn::after {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 839px) {
  .top__store {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .top__store > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .top__store > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .top__store > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .top__store > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .top__store--img--left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .top__store--img--right {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .top__store--body {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    grid-row: 1;
    padding: 30px 5.13vw;
  }
}
@media screen and (max-width: 767px) {
  .top__store {
    margin-top: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .top__store::before {
    top: 0;
  }
  .top__store .title--caption {
    font-size: clamp(28px, 8.2vw, 32px);
    margin-bottom: clamp(20px, 7.692vw, 30px);
  }
  .top__store > *:nth-child(1) {
    display: none;
  }
  .top__store--body {
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .top__store--img {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.top__sns {
  background: #FEF8F0;
  padding: 60px 0 40px;
}

.top__sns--inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.top__sns--list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 59.167% 2.5% 1fr;
  grid-template-columns: 59.167% 1fr;
  gap: 30px 2.5%;
}

.top__sns--item {
  border-radius: 16px;
  border: 1px solid var(--color-base-gray);
  background: #FFF;
  padding: 30px;
}
@media (any-hover: hover) {
  .top__sns--item a:not(.sbi_photo):hover {
    opacity: 0.65;
  }
}

.top__sns--label {
  display: block;
  color: var(--color-base-brown);
  font-size: clamp(20px, 1.714vw, 24px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 auto 20px;
}

.top__sns--feed #sb_instagram {
  padding: 0 !important;
}
.top__sns--feed #sb_instagram #sbi_images {
  padding: 0;
}

.top__sns--img {
  margin-top: calc(clamp(30px, 3.785vw, 53px) * -1);
}

@media screen and (max-width: 939px) {
  .top__sns--img {
    margin-top: calc(clamp(20px, 2.6vw, 53px) * -1);
  }
}
@media screen and (max-width: 767px) {
  .top__sns {
    padding: 60px 0;
  }
  .top__sns--inner {
    padding: 0 5.13vw;
  }
  .top__sns--list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top__sns--item {
    padding: clamp(20px, 7.692vw, 30px);
  }
  .top__sns--label {
    font-size: clamp(20px, 6.154vw, 24px);
    margin: 0 auto clamp(15px, 5.13vw, 20px);
  }
}
.banner--contact {
  padding: 50px 0;
  background: url(../img/top/contact_bg_pc.webp) no-repeat center/cover;
}
.banner--contact .banner__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 30px;
}
.banner--contact .banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  position: relative;
}
.banner--contact .banner__link::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow_circle-re.svg) no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner--contact .banner__link > * {
  width: 50%;
}
@media (any-hover: hover) {
  .banner--contact .banner__link:hover {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  }
}
.banner--contact .banner__head {
  background: var(--color-brand-orange);
  color: #FFF;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.286vw, 32px);
  line-height: 1.5;
  padding: clamp(30px, 3.286vw, 46px) clamp(25px, 2.5vw, 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
.banner--contact .banner__body {
  background: #FFF;
  color: #000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 3.712% clamp(20px, 2.786vw, 39px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(14px, 1.143vw, 16px);
  border-radius: 0 8px 8px 0;
  border: 2px solid var(--color-brand-orange);
}

@media screen and (max-width: 767px) {
  .banner--contact {
    background: url(../img/top/contact_bg_sp.webp) no-repeat center/cover;
  }
  .banner--contact .banner__inner {
    padding: 0 5.13vw;
  }
  .banner--contact .banner__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #FFF;
    border: 3px solid var(--color-brand-orange);
    border-radius: 8px;
    padding: 24px 8.57%;
  }
  .banner--contact .banner__link::after {
    right: 17px;
  }
  .banner--contact .banner__link > * {
    width: 100%;
  }
  .banner--contact .banner__head {
    background: transparent;
    color: var(--color-brand-orange);
    font-size: clamp(20px, 6.154vw, 24px);
    border-radius: 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 0;
    margin-bottom: 6px;
  }
  .banner--contact .banner__body {
    border: none;
    background: none;
    border-radius: 0;
    padding: 0;
  }
}
.banner--recruit {
  padding: 60px 0 80px;
}
.banner--recruit .banner__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
}
.banner--recruit .banner__link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .banner--recruit .banner__link:hover .banner__img img {
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    opacity: 0.85;
  }
}
.banner--recruit .banner__img {
  overflow: hidden;
}
.banner--recruit .banner__img img {
  display: block;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

@media screen and (max-width: 767px) {
  .banner--recruit {
    padding: 40px 0;
  }
  .banner--recruit .banner__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ------------------------------
　　about
------------------------------ */
.about__navi {
  padding: 20px 0;
}

.about__navi--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .about__navi--inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
.about__company {
  padding: 70px 0;
}

.about__company--title {
  margin: 0 auto 50px;
}

.about__company--info {
  margin-top: 50px;
  table-layout: fixed;
}
.about__company--info th {
  width: 24.8%;
}
.about__company--info p {
  margin: 0;
}
.about__company--info p + p {
  margin-top: 1em;
}
.about__company--info p + p.note {
  margin-top: 0.7em;
}
.about__company--info p.note {
  font-size: 12px;
}
.about__company--info .about__business--title {
  font-weight: 700;
  color: var(--color-base-brown);
}
.about__company--info .about__stores {
  margin-top: 1em;
}
.about__company--info .about__stores dt {
  font-weight: 700;
}
.about__company--info .about__stores dd + dt {
  margin-top: 1em;
}
.about__company--info .about__banner {
  margin-top: 20px;
}

.about__company--img {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .about__company {
    padding: 60px 0 50PX;
  }
  .about__company--title {
    margin: 0 auto clamp(20px, 10.256vw, 40px);
  }
  .about__company--img {
    margin-bottom: 30px;
  }
  .about__company--info {
    margin-top: 30px;
  }
  .about__company--info th {
    width: 34.286%;
  }
}
.about__message {
  padding: 70px 0;
}

.about__message--card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  background: var(--color-base-white);
  border: 3px solid var(--color-brand-orange);
  border-radius: 16px;
  padding: 40px 4.63%;
}

.about__message--body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__message--right {
  width: 27.55%;
}

.about__message--title {
  margin: 0 0 20px;
}

.about__message--name {
  font-size: 16px;
  font-weight: 700;
  margin-top: 30px;
  text-align: right;
}
.about__message--name span {
  font-size: 150%;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-base-brown);
  background: #FEF8F0;
  margin-left: 10px;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .about__message {
    padding: 50px 0;
  }
  .about__message--card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 30px 5.81%;
  }
  .about__message--body {
    display: contents;
  }
  .about__message--body > p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    font-size: 16px;
  }
  .about__message--body > p.about__message--name {
    margin: 20px 0 0;
    text-align: left;
  }
  .about__message--title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .about__message--right {
    width: 87%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about__philosophy {
  padding: 70px 0 80px;
  background: #FEF8F0;
}

.about__philosophy--title {
  margin: 0 auto 40px;
}

.about__philosophy--lead {
  text-align: center;
  margin: 0 auto 50px;
}

.about__philosophy--visual {
  margin-bottom: 40px;
}

.about__philosophy--photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
}

@media screen and (max-width: 767px) {
  .about__philosophy {
    padding: 60px 0;
  }
  .about__philosophy--lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .about__philosophy--photos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.about__recruitment {
  padding: 60px 0;
}

.about__recruitment--card {
  background: var(--color-base-white);
  border-radius: 16px;
  border: 3px solid var(--color-base-brown);
  border-top: none;
  word-break: auto-phrase;
}
.about__recruitment--card + .about__recruitment--card {
  margin-top: 20px;
}

.about__recruitment--head {
  background: var(--color-base-brown);
  color: #FFF;
  text-align: center;
  padding: 20px;
  font-size: clamp(24px, 2.22vw, 32px);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 13px 13px 0 0;
  line-height: 1.5;
}
.about__recruitment--head .area {
  font-size: 75%;
  line-height: 1.48;
  display: block;
}

.about__recruitment--body {
  padding: 50px 3.724%;
}
.about__recruitment--body > .about__recruitment--text {
  text-align: center;
  margin: 0;
}

.about__recruitment--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(30px, 4.86vw, 70px);
  padding: 25px 0;
}
.about__recruitment--row + .about__recruitment--row {
  border-top: 1px solid var(--color-base-gray);
}
.about__recruitment--row:first-child {
  padding-top: 0;
}
.about__recruitment--row:last-child {
  padding-bottom: 0;
}
.about__recruitment--row dt {
  margin: 0;
}
.about__recruitment--row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
.about__recruitment--row dd p {
  margin: 0;
}
.about__recruitment--row dd p + p {
  margin-top: 1em;
}
.about__recruitment--row dd p + p.note {
  margin-top: 0.7em;
}
.about__recruitment--row dd p.note {
  font-size: 12px;
}
.about__recruitment--row dd .list + .about__recruitment--subtitle {
  margin-top: 1.5em;
}

.about__recruitment--subtitle {
  font-weight: 700;
  margin: 1.5em 0 0.5em;
}
.about__recruitment--subtitle:first-child {
  margin-top: 0;
}

.about__recruitment--btn {
  margin-top: 30px !important;
}

@media screen and (max-width: 767px) {
  .about__recruitment {
    padding: 50px 0;
  }
  .about__recruitment--body {
    padding: 30px 5.81%;
  }
  .about__recruitment--body > .about__recruitment--text {
    text-align: left;
  }
  .about__recruitment--head {
    font-size: clamp(22px, 7.18vw, 28px);
  }
  .about__recruitment--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
/* ------------------------------
　　stores
------------------------------ */
.archive__stores {
  padding: 70px 0;
}

.archive__stores--title {
  margin-top: 0;
  margin-bottom: 50px;
}

.store__pref + .store__pref {
  margin-top: 40px;
}

.store__pref--head {
  width: 100%;
  background: var(--color-base-brown);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 23px 20px;
  position: relative;
  border: none;
  cursor: pointer;
}
.store__pref--head::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow_toggle-br.svg) no-repeat center/contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: absolute;
  top: 50%;
  right: 23px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.store__pref--head[aria-expanded=true]::after {
  -webkit-transform: translate(0, -50%) rotate(-180deg);
          transform: translate(0, -50%) rotate(-180deg);
}

.store__pref--body {
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
.store__pref--body[hidden] {
  display: none;
}
.store__pref--body .store__list {
  padding-top: 20px;
}

.store__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
}

.store__card {
  background: #fff;
  border: 1px solid var(--color-base-gray);
  border-radius: 6px;
  padding: 20px 3.773%;
  position: relative;
}

.store__name {
  margin: 0 0 20px;
}

.store__address {
  font-size: 16px;
  margin: 0 0 10px;
}

.store__tel {
  width: calc(100% - 124px);
  margin: 0;
  font-size: 16px;
}
.store__tel a {
  color: var(--color-base-brown) !important;
  text-decoration: none !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.store__tel a::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_tel-br.svg) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.store__btn {
  position: absolute;
  right: 3.773%;
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .archive__stores {
    padding: 80px 0;
  }
  .archive__stores--title {
    margin-bottom: 40px;
  }
  .store__pref + .store__pref {
    margin-top: 20px;
  }
  .store__pref--head {
    font-size: 20px;
    padding: clamp(15px, 5.64vw, 22px) clamp(15px, 5.13vw, 20px);
  }
  .store__pref--head::after {
    width: clamp(18px, 6.15vw, 24px);
    height: clamp(18px, 6.15vw, 24px);
    right: clamp(15px, 5.13vw, 20px);
  }
  .store__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .store__name {
    font-size: 16px;
  }
}
.single__stores--section {
  padding: 80px 0;
}

.store__single {
  border-radius: 16px;
  border: 1px solid var(--color-base-gray);
  background: #FFF;
  padding: 50px 3.7%;
}

.store__single--name {
  font-size: clamp(26px, 2.22vw, 32px);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  margin: 0 0 30px;
}

.store__single--map {
  position: relative;
  width: 100%;
  padding-top: 48%;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}
.store__single--map iframe {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
}

.store__single--info th {
  width: 20.8%;
}

.store__single--back {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .store__single {
    padding: 40px 5.714%;
  }
  .store__single--name {
    font-size: clamp(20px, 7.18vw, 28px);
  }
  .store__single--map iframe {
    top: -50px;
    height: calc(100% + 100px);
  }
  .store__single--info th {
    width: 32.26%;
  }
}
/* ------------------------------
　　menu
------------------------------ */
.menu__tab {
  padding: 40px 0;
  margin-bottom: 70px;
  position: relative;
}
.menu__tab::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-base-gray);
  position: absolute;
  bottom: -70px;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.menu__tab--inner {
  max-width: 1150px;
}

.tab__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7px 1fr 7px 1fr 7px 1fr 7px 1fr 7px 1fr 7px 1fr;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.12));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.12));
}

.tab__btn {
  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;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-bottom: 16px solid var(--color-brand-orange);
  border-radius: 8px;
  position: relative;
}
.tab__btn::after {
  content: "";
  width: 5px;
  height: 8px;
  background: url(../img/common/arrow_wh.svg) no-repeat center/contain;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translate(-50%, 0) rotate(-90deg);
          transform: translate(-50%, 0) rotate(-90deg);
}
.tab__btn::before {
  content: "";
  position: absolute;
  inset: 0 0 -16px 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .tab__btn:hover {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
  }
  .tab__btn:hover::before {
    opacity: 1;
  }
}

.tab__img {
  width: 100%;
  aspect-ratio: 150/113;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.tab__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tab__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: calc(clamp(14px, 1.468vw, 16px) * 1.5 * 2 + 12px);
  background: #FEF8F0;
  color: var(--color-base-brown);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(14px, 1.468vw, 16px);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  padding: 0 5px;
}

@media screen and (max-width: 967px) {
  .tab__list {
    max-width: 621px;
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .menu__tab {
    padding: 30px 0;
    margin: 50px auto;
  }
  .menu__tab::after {
    bottom: -50px;
  }
  .menu__tab--inner {
    padding: 0 10.256vw;
  }
  .tab__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tab__label {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.limited__head {
  padding: 60px 0 40px;
  background: #FEF8F0;
}
.limited__head .container {
  max-width: 860px;
}

.limited__title {
  margin-top: 0;
}

.limited__note {
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.limited__video {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 40px auto 25px;
  display: block;
}
.limited__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.limited__video.is-playing::after {
  display: none;
}
.limited__video.is-playing .limited__play {
  display: none;
}

.limited__player {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.limited__youtube {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 40px auto 25px;
}

.limited__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.limited__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--color-brand-red);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.limited__play::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url(../img/common/icon_play.svg) no-repeat center/contain;
}
@media (any-hover: hover) {
  .limited__play:hover {
    opacity: 0.8;
  }
}

.limited__period {
  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;
  gap: 10px;
}

.limited__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-brand-orange);
  color: #fff;
  font-size: 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  line-height: 33px;
  padding: 0 10px;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.limited__date {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-base-brown);
  margin: 0;
}

.limited__body {
  padding: 40px 0 50px;
}

.card__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}
.card__list.limited__list:has(> :last-child:nth-child(-n+3)) {
  grid-template-columns: repeat(auto-fit, minmax(0, calc(25% - 15px)));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card {
  background: #fff;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card__badge {
  width: 21.96%;
  position: absolute;
  top: 0;
  left: 10px;
}

.card__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__body {
  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-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
}

.card__tag {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-brand-orange);
  margin: 0 0 5px;
}

.card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-base-brown);
  margin: 0;
}

.card__price {
  font-size: 16px;
  margin: 0;
}
.card__price .card__price--num {
  font-size: 24px;
}

.card__price--num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.card__notice {
  font-size: 12px;
  margin: 0;
}

.card__sub {
  font-size: 16px;
  margin: 0;
}
.card__sub small {
  font-size: 87.5%;
}

.card__btn {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #fff;
  border: 1px solid var(--color-base-gray);
  border-radius: 20px;
  color: var(--color-base-brown);
  font-size: 16px;
  text-align: left;
  line-height: 37px;
  padding: 0 42px 0 16px;
  cursor: pointer;
  margin: 16px auto 0;
  position: relative;
}
.card__btn::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_plus.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.menu__section {
  padding: 60px 0 80px;
}

.menu__section--title {
  margin: 0 auto 50px;
}

.menu__section--desc {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-base-brown);
  text-align: center;
  margin: 0 auto;
}
.menu__section--desc strong {
  color: var(--color-brand-orange);
}

.menu__section--note {
  font-size: 12px;
  text-align: center;
  margin: 0 auto;
}
.card__list + .menu__section--note {
  margin-top: 40px;
}
.menu__section--desc + .menu__section--note {
  margin-top: 10px;
}
.menu__section--note + .card__list {
  margin-top: 40px;
}

/* アレルギーモーダル */
.allergy__info {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.allergy__info[hidden] {
  display: none;
}
.allergy__info.is-open {
  opacity: 1;
  visibility: visible;
}

.allergy__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.allergy__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px clamp(30px, 6.07%, 85px) 30px;
  z-index: 1;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.allergy__info.is-open .allergy__box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.allergy__close {
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_close.svg) no-repeat center/contain;
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  cursor: pointer;
}
@media (any-hover: hover) {
  .allergy__close:hover {
    color: #000;
  }
}

.allergy__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
  color: var(--color-base-brown);
  line-height: 1.5;
  margin: 0 auto 30px;
}
.allergy__title .allergy__product {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-base-brown);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--color-brand-yellow);
}
.allergy__title .allergy__product + span {
  margin-top: 10px;
  display: block;
}

.allergy__section + .allergy__section {
  margin-top: 30px;
}

.allergy__label {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.allergy__table {
  width: 100%;
  border-collapse: collapse;
}
.allergy__table td {
  border: 1px solid var(--color-base-brown);
  text-align: center;
  padding: 3px;
  font-size: 14px;
  width: 25%;
}
.allergy__table td.is-active {
  background: #FFDEA0;
}

@media screen and (max-width: 767px) {
  .limited__head {
    padding: 50px 0 40px;
  }
  .limited__video {
    margin: 30px auto 20px;
  }
  .limited__youtube {
    margin: 30px auto 20px;
  }
  .limited__period {
    -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;
  }
  .limited__badge {
    font-size: 16px;
    line-height: 31px;
    padding: 0 8px;
  }
  .limited__date {
    font-size: 16px;
  }
  .card__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(5px, 2.857vw, 10px) 10px;
  }
  .card__list.limited__list:has(> :last-child:nth-child(-n+3)) {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(5px, 2.857vw, 10px) 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .card__badge {
    width: 32.94%;
  }
  .card__tag {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .card__name {
    font-size: clamp(15px, 4.615vw, 18px);
  }
  .card__price {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .card__price .card__price--num {
    font-size: clamp(20px, 6.154vw, 24px);
  }
  .card__sub {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .card__btn {
    width: 100%;
    font-size: clamp(11px, 3.59vw, 14px);
    padding: 0 calc(8px + clamp(15px, 5.13vw, 20px)) 0 clamp(8px, 3.59vw, 14px);
  }
  .card__btn::after {
    width: clamp(15px, 5.13vw, 20px);
    height: clamp(15px, 5.13vw, 20px);
    right: 8px;
  }
  .allergy__box {
    padding: 35px 5.71% 30px;
  }
  .allergy__table td {
    font-size: clamp(12px, 3.59vw, 14px);
  }
}
.menu__order {
  padding: 40px 0;
}
.menu__order > .container {
  max-width: 900px;
}

.menu__order--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border: 3px solid var(--color-brand-orange);
  border-radius: 16px;
  padding: 30px 4.952%;
  background: #fff;
}

.menu__order--body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.menu__order--title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 1.389vw, 20px);
  font-weight: 700;
  color: var(--color-base-brown);
  margin: 0 0 20px;
}

.menu__order--text {
  margin: 0 0 20px;
  font-size: 16px;
}
.menu__order--text strong {
  color: var(--color-brand-orange);
  font-weight: 700;
}

.menu__order--img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35.92%;
}
.menu__order--img img {
  width: 100%;
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

@media screen and (max-width: 767px) {
  .menu__order {
    padding: 23px 0 30px;
  }
  .menu__order--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    gap: 20px;
    padding: 30px 5.714%;
  }
  .menu__order--body {
    display: contents;
  }
  .menu__order--title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    font-size: clamp(18px, 5.13vw, 20px);
    margin: 0;
  }
  .menu__order--text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0;
  }
  .menu__order--img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
    width: 88.064%;
  }
  .menu__order--btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.menu__allergy {
  padding: 40px 0;
  background: #FEF8F0;
}

.menu__allergy--title {
  margin-bottom: 20px;
}

.menu__allergy--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
}

.menu__allergy--item {
  font-size: 16px;
  padding-left: 1.5em;
  position: relative;
}
.menu__allergy--item::before {
  content: "・";
  position: absolute;
  left: 0.2em;
  top: 0;
  color: var(--color-base-brown);
  font-weight: 700;
}

.menu__allergy--caution {
  color: var(--color-brand-red);
  font-weight: 700;
}

.menu__allergy--note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.menu__allergy--note li {
  font-size: 16px;
  padding-left: 1.5em;
  text-indent: -1.2em;
}

@media screen and (max-width: 767px) {
  .menu__allergy {
    padding: 40px 0;
  }
  .menu__allergy--inner {
    padding: 0 7.692vw;
  }
  .menu__allergy--title {
    font-size: clamp(17px, 5.13vw, 20px);
    margin: 0 auto 27px;
    text-align: center;
  }
  .menu__section {
    padding: 50px 0;
  }
  .menu__section--title {
    margin-bottom: 40px;
  }
  .menu__section--note + .card__list {
    margin-top: 30px;
  }
  .card__list + .menu__section--note {
    margin-top: 30px;
  }
}
/* ------------------------------
　　contact
------------------------------ */
.contact__lead {
  padding: 0 0 80px;
}

.contact__lead--text {
  font-size: 16px;
  text-align: center;
  margin: 30px auto 0;
}
.contact__lead--text + .btn--large {
  margin-top: 40px;
}

.contact__tel--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  position: relative;
}
.contact__tel--head::before {
  content: "";
  width: 64px;
  height: 64px;
  background: url(../img/common/icon_tel-or.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 5px;
}
.contact__tel--head span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--color-base-brown);
  font-size: clamp(18px, 1.429vw, 20px);
  line-height: 1.5;
}

.contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 46px;
}

.contact__tel--body {
  padding-left: 20px;
  position: relative;
}
.contact__tel--body::before {
  content: "";
  width: 2px;
  height: 58px;
  background: var(--color-brand-yellow);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.contact__tel--num {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 2.286vw, 32px);
  color: var(--color-base-brown);
  line-height: 1.5;
  margin-top: -10px;
}

.contact__tel--hours {
  font-size: 12px;
  color: var(--color-base-brown);
  margin: 0;
}

.contact__notice {
  border: 3px solid var(--color-brand-orange);
  border-radius: 16px;
  padding: 30px 4.44%;
  text-align: center;
  margin-top: 40px;
}
.contact__notice strong {
  color: var(--color-brand-orange);
}
.contact__notice .btn {
  margin-top: 20px;
}

.contact__notice--title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.429vw, 20px);
  color: var(--color-base-brown);
  margin: 0 0 20px;
}

.contact__notice--text {
  font-size: 15px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .contact__lead {
    padding: 30px 0 50px;
  }
  .contact__lead--text {
    text-align: left;
    padding: 0 10px;
  }
  .contact__lead--text + .btn--large {
    margin-top: clamp(20px, 7.692vw, 30px);
  }
  .contact__tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 10px;
  }
  .contact__tel--body::before {
    content: none;
  }
  .contact__tel--num {
    display: none;
  }
  .contact__tel--head {
    width: 270px;
    max-width: 100%;
    height: 68px;
    padding-right: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 48px;
    background: #FFA600;
  }
  .contact__tel--head::before {
    width: 40px;
    height: 40px;
    background: url(../img/common/icon_tel-wh.svg) no-repeat center/contain;
    display: inline-block;
    margin-right: 10px;
  }
  .contact__tel--head a {
    color: #FFF;
  }
  .contact__tel--head span {
    color: #FFF;
  }
  .contact__tel--body {
    padding-left: 0;
    margin-top: 10px;
  }
  .contact__notice {
    padding: clamp(20px, 7.692vw, 30px) clamp(10px, 5.13vw, 20px);
  }
  .contact__notice--title {
    font-size: clamp(18px, 5.13vw, 20px);
  }
  .contact__notice--text {
    text-align: left;
  }
}
.contact__form--main {
  padding: 80px 0;
}

.contact__form--inner {
  padding: 60px 4%;
  border-radius: 16px;
  background: #FFF;
}

.contact__form--text {
  font-size: 16px;
  text-align: center;
  color: var(--color-brand-orange);
  font-weight: 700;
  margin: 0 0 30px;
}
.contact__form--text + p {
  text-align: center;
  margin: 0 auto;
}

.contact__label {
  font-size: 18px;
  font-weight: 700;
}

.contact__form--note {
  margin: 10px 0 0 !important;
  font-size: 90%;
}

.contact__form--table {
  width: 100%;
}
.contact__form--table p {
  margin: 0;
}
.contact__form--table tr {
  border-bottom: 1px solid var(--color-base-gray);
}
.contact__form--table tr:first-child th {
  padding-top: 0;
}
.contact__form--table tr:last-child {
  border-bottom: none;
}
.contact__form--table tr:last-child td {
  padding-bottom: 0;
}
.contact__form--table th, .contact__form--table td {
  display: block;
  text-align: left;
}
.contact__form--table th {
  padding: 30px 5% 8px;
}
.contact__form--table th .contact__label--required {
  width: 40px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 8px;
  color: #fff;
  background: var(--color-brand-red);
  vertical-align: top;
  margin-top: 6px;
}
.contact__form--table td {
  padding: 0 5% 30px;
}
.contact__form--table input[type=text], .contact__form--table input[type=email], .contact__form--table input[type=tel] {
  min-height: 43px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 16px;
  background: #FFF;
  border: 1px solid var(--color-base-gray);
  border-radius: 3px;
  font-size: 16px;
}
.contact__form--table input[type=text]::-webkit-input-placeholder, .contact__form--table input[type=email]::-webkit-input-placeholder, .contact__form--table input[type=tel]::-webkit-input-placeholder {
  color: #999999;
}
.contact__form--table input[type=text]::-moz-placeholder, .contact__form--table input[type=email]::-moz-placeholder, .contact__form--table input[type=tel]::-moz-placeholder {
  color: #999999;
}
.contact__form--table input[type=text]:-ms-input-placeholder, .contact__form--table input[type=email]:-ms-input-placeholder, .contact__form--table input[type=tel]:-ms-input-placeholder {
  color: #999999;
}
.contact__form--table input[type=text]::-ms-input-placeholder, .contact__form--table input[type=email]::-ms-input-placeholder, .contact__form--table input[type=tel]::-ms-input-placeholder {
  color: #999999;
}
.contact__form--table input[type=text]::placeholder, .contact__form--table input[type=email]::placeholder, .contact__form--table input[type=tel]::placeholder {
  color: #999999;
}
.contact__form--table select {
  min-height: 43px;
  width: 100%;
  max-width: 448px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 30px 0 16px;
  background: #FFF url(../img/common/arrow_select.svg) no-repeat right 16px top 18px;
  border: 1px solid var(--color-base-gray);
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
}
.contact__form--table select::-ms-expand {
  display: none;
}
.contact__form--table textarea {
  width: 100%;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 17px 16px;
  background: #FFF;
  border: 1px solid var(--color-base-gray);
  line-height: 1.7;
  border-radius: 3px;
}
.contact__form--table textarea::-webkit-input-placeholder {
  color: #999999;
}
.contact__form--table textarea::-moz-placeholder {
  color: #999999;
}
.contact__form--table textarea:-ms-input-placeholder {
  color: #999999;
}
.contact__form--table textarea::-ms-input-placeholder {
  color: #999999;
}
.contact__form--table textarea::placeholder {
  color: #999999;
}
.contact__form--table .col-6 {
  max-width: 448px;
}
.contact__form--table .col-10 {
  max-width: 700px;
}
.contact__form--table .wpcf7-list-item {
  display: block;
  margin: 0 0 10px 0;
}

.wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  opacity: 0;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label {
  position: relative;
}
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: -1.8em;
  width: 1.125em;
  height: 1.125em;
  background: #FFA600 url(../img/contact/your-check.svg) no-repeat center/100%;
  border: 2px solid #FFA600;
  border-radius: 4px;
}
.wpcf7-list-item label {
  position: relative;
  padding-left: 1.8em;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wpcf7-list-item label::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: 0;
  width: 1.125em;
  height: 1.125em;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.wpcf7-radio .wpcf7-list-item label::before {
  border-radius: 50%;
}
.wpcf7-radio .wpcf7-list-item input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  opacity: 0;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  position: relative;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0.33em;
  left: -1.8em;
  width: 1.125em;
  height: 1.125em;
  background: radial-gradient(circle, #FFA600 50%, #fff 50%);
  border: 2px solid #FFA600;
  border-radius: 50%;
}

.wpcf7-not-valid-tip {
  color: var(--color-brand-orange);
  margin-top: 10px;
}

.contact__form--bottom {
  padding: 50px 0 60px;
  text-align: center;
}
.contact__form--bottom p {
  margin: 0 0 30px;
}
.contact__form--bottom .wpcf7-list-item {
  margin: 0;
}
.contact__form--bottom .wpcf7-list-item a::after {
  content: "";
  width: 8px;
  height: 8px;
  background: url(../img/common/icon_external.svg) no-repeat center/contain;
  display: inline-block;
  margin: 5px 3px;
}
.contact__form--bottom .wpcf7-spinner {
  display: none;
}

.contact__btn--wrap {
  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;
}
.contact__btn--wrap > .btn {
  padding: 0;
  border: none;
}
.contact__form--confirm .contact__btn--wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
}

.btn--contact {
  border: none;
  cursor: pointer;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.wpcf7-form .wpcf7-response-output {
  text-align: center;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.grecaptcha-badge {
  bottom: 120px !important;
  overflow: hidden !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
@media (hover: hover) and (pointer: fine) {
  .grecaptcha-badge:hover {
    width: 256px !important;
    right: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .contact__form {
    padding-bottom: 80px;
  }
  .contact__form--main {
    padding: 40px 0;
  }
  .contact__form--inner {
    padding: 30px 2.857%;
  }
  .contact__form--table th {
    padding: 20px 3% 8px;
  }
  .contact__form--table td {
    padding: 0 3% 20px;
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .contact__form--table textarea {
    min-height: 240px;
  }
  .contact__form--text {
    margin-bottom: 20px;
  }
  .contact__label {
    font-size: clamp(16px, 4.615vw, 18px);
  }
  .contact__form--bottom {
    padding: 34px 0 0;
  }
  .contact__form--bottom p {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-bottom: 20px;
  }
  .contact__form--bottom p + p {
    margin: 25px auto 40px;
  }
  .contact__form--bottom .wpcf7-list-item {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .contact__form--confirm .contact__btn--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .grecaptcha-badge {
    bottom: calc(10.26vw + clamp(30px, 11.538vw, 50px)) !important;
  }
}
/* ------------------------------
　　privacy
------------------------------ */
.privacy__policy {
  padding: 10px 0 40px;
}
.privacy__policy .container {
  max-width: 960px;
}
.privacy__policy h2 + p {
  margin-left: 0;
  margin-right: 0;
}
.privacy__policy h3, .privacy__policy h4, .privacy__policy ul, .privacy__policy blockquote, .privacy__policy p {
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .privacy__policy {
    padding: 35px 0 20px;
  }
  .privacy__policy .container {
    padding: 0 10.256vw;
  }
  .privacy__policy h3, .privacy__policy h4, .privacy__policy ul, .privacy__policy blockquote, .privacy__policy p {
    margin-left: 5px;
    margin-right: 5px;
  }
}
/*# sourceMappingURL=style.css.map */