@charset "UTF-8";
/* 日本語 */
/*resetCSS*/
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
article {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #2B2828;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

summary {
  marker: none;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  all: unset; /* すべてのプロパティを初期化 */
  display: inline-block; /* インラインブロック要素にする */
  background: none; /* 背景を削除 */
  border: none; /* ボーダーを削除 */
  padding: 0; /* パディングを削除 */
  margin: 0; /* マージンを削除 */
  font: inherit; /* フォントの継承 */
  cursor: pointer; /* カーソルをポインターにする */
  text-align: center; /* テキストの中央揃え */
  line-height: normal; /* 行の高さをデフォルトに設定 */
  /* 必要に応じてその他のプロパティを追加 */
}


/* ブレイクポイント */
/* 
@include mq(sp) {
    display: block;
    } 
*/
/* flex */
/* 
@include flex();
*/
/*
fv
*/
:root {
  --responsive-width: 229px;
}

.element {
  width: var(--responsive-width);
}

/*
fv
*/
/*                 基本レイアウト
======================================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: "weight";
  font-style: normal;
  color: #4e301b;
}

.c-content-wrap {
  background: #faf0f0;
}

a {
  color: #4e301b;
  text-decoration: none;
  font-weight: bold;
}

/*                共通パーツ
======================================================= */
@media screen and (max-width: 767px) {
  iframe {
    width: 100%;
  }
}

/*                nav
======================================================= */
.c-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 33%;
      -ms-flex: 1 33%;
          flex: 1 33%;
}

.c-li {
  font-size: 1rem;
}

/*                nav-end
======================================================= */
/*                h2
======================================================= */
.c-ttl {
  text-align: center;
  font-size: clamp(1rem, 0.624rem + 1.72vw, 2rem);
  font-weight: 700;
}

/*                h2-end
======================================================= */
/*                logo
======================================================= */
.main-logo {
  text-align: center;
}

/*                logo-end
======================================================= */
/*               c-article
======================================================= */
.c-article {
  border-top: 1px solid #c6c6c6;
  padding: 22px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .c-article {
    gap: 30px;
  }
}
.c-article:last-of-type {
  border-bottom: 1px solid #c6c6c6;
}

/*               c-article
======================================================= */
/*               middle-img
======================================================= */
:root {
  --scale-factor: 0.9; /* 倍率を0.6に設定 */
}

@media only screen and (max-width: 1023px) {
  .middle-img img {
    width: calc(235px * var(--scale-factor));
    height: calc(157px * var(--scale-factor));
  }
}
@media screen and (max-width: 767px) {
  .middle-img img {
    width: 147px;
    height: 98px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*               middle-img
======================================================= */
/*               .c-inquiry__required
======================================================= */
.c-inquiry__required {
  display: inline-block;
  width: 50px;
  height: 30px;
  background-color: #FF5757;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  margin-left: 29px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-inquiry__required {
    width: 35px;
    height: 20px;
    line-height: 18px;
    font-size: 11px;
    margin-left: 15px;
  }
}

/*               .c-inquiry__required
======================================================= */
/*               c-submit__btn
======================================================= */
.c-submit__btn {
  width: 243px;
  height: 46px;
  background-color: #FF5757;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px auto 0 auto;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: "weight";
  font-style: normal;
  color: #fff;
}

/*               c-submit__btn
======================================================= */
/*               l-sp-menu-btn
======================================================= */
@media screen and (min-width: 768px) {
  .l-sp-menu-btn {
    display: none;
  }
}

/*               l-sp-menu-btn
======================================================= */
.ttl__logo {
  border-radius: 25px;
}

.hd-container__pc {
  width: 100%;
  position: relative;
  max-width: 1280px;
  margin-inline: auto;
  height: 196px;
}

.hd-logo {
  position: absolute;
  top: -74px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #faf0f0;
  border-radius: 50%;
  width: 154px;
  height: 154px;
  padding: 29px;
}
@media only screen and (max-width: 1066px) {
  .hd-logo {
    width: 130px;
    height: 130px;
    padding: 17px;
  }
}
@media only screen and (max-width: 1066px) {
  .hd-logo .logo__itigo {
    width: 60px;
    height: 60px;
  }
}

.hd-nav {
  padding-top: 80px;
}
@media only screen and (max-width: 1066px) {
  .hd-nav {
    width: 95%;
    margin-inline: auto;
    padding-top: 62px;
  }
}
@media only screen and (max-width: 1066px) {
  .hd-nav .ttl__logo {
    width: 100%;
  }
}

.hd-nav__link {
  display: block;
}
@media only screen and (max-width: 1066px) {
  .hd-nav__link {
    font-size: 14px;
    line-height: 1.2;
    word-break: keep-all;
    text-align: center;
  }
}

.hd-ul__left {
  gap: 39px;
}
@media only screen and (max-width: 1066px) {
  .hd-ul__left {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hd-ul__left {
    display: none;
  }
}

.hd-ttl {
  margin-left: 40.3px;
  margin-right: 39px;
}
@media screen and (max-width: 767px) {
  .hd-ttl {
    margin: 0 auto;
  }
}

.hd-ul__right {
  gap: 39px;
}
@media screen and (max-width: 767px) {
  .hd-ul__right {
    display: none;
  }
}

/*               ハンバーガーメニュー
======================================================= */
@media screen and (min-width: 768px) {
  .header-hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header-hamburger-menu {
    display: none;
  }
}

.header-hamburger-menu.is-active {
  position: relative;
  display: block;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8980392157);
  width: 100%;
  height: 100%;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 100;
}
.header-hamburger-menu.is-active .sp-logo {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-hamburger-menu.is-active .sp-logo .ttl__logo {
  margin-top: 61px;
}
.header-hamburger-menu.is-active .sp-logo .logo__itigo {
  margin-top: 30px;
}
.header-hamburger-menu.is-active .sp-logo img {
  display: block;
  margin: 0 auto;
}
.header-hamburger-menu.is-active .sp-nav {
  margin-top: 36px;
}
.header-hamburger-menu.is-active .sp-ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-hamburger-menu.is-active .sp-li {
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  margin-bottom: 32px;
  letter-spacing: 1.5;
}

.hamburger-btn {
  width: 48px;
  height: 48px;
  background-color: #FF5757; /* 背景色 */
  border-radius: 50%; /* 円形にする */
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1607843137);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 101;
}

.hamburger-line {
  position: absolute;
  display: block;
  width: 18px; /* 線の長さ */
  height: 2px; /* 線の太さ */
  background-color: #fff; /* 線の色 */
  -webkit-transition: all 0.5s;
  transition: all 0.5s; /* 変形のトランジション */
}
.hamburger-line.--01 {
  top: 18px;
}
.hamburger-line.--02 {
  top: 25px;
}
.hamburger-line.--03 {
  top: 32px;
}

.is-active .hamburger-line.--02 {
  opacity: 0;
}
.is-active .hamburger-line.--01 {
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.is-active .hamburger-line.--03 {
  -webkit-transform: translateY(-8px) rotate(-135deg);
          transform: translateY(-8px) rotate(-135deg);
}

.footer {
  width: 100%;
}
.footer-container {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 97px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .footer-container {
    padding-bottom: 146px;
  }
}
@media screen and (max-width: 767px) {
  .footer-container {
    padding-bottom: 130px;
  }
}
.footer-container .ft-logo {
  margin-top: 50px;
  display: block;
}
.footer-container .ft-nav {
  margin-top: 40px;
}
.footer-container .ft-ul {
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer-container .ft-ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.footer-container .ft-li {
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  font-weight: bold;
}
.footer-container .middle-img__left {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 10;
}
.footer-container .middle-img__right {
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 10;
}
.footer .copyright {
  width: 100%;
  height: 60px;
  background-color: #efeae6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 10px;
    height: 40px;
  }
}

.swiper {
  height: 425px;
  margin: 0 auto;
  /* 全スライド共通スタイル */
}
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  width: 100%;
  height: 331px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.swiper-slide {
  color: #ffffff;
  width: 264px;
}
.swiper .swiper-slide {
  width: 264px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  text-align: left;
  position: relative;
}
.swiper .menu-card {
  display: block;
}
.swiper .card_img {
  width: 264px;
}
.swiper .card_img img {
  width: 100%;
  height: 166px;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide .menu-box {
  width: 100%;
  background-color: #fff;
}

.menu-text {
  height: 165px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu-text .menu-caption {
  font-weight: bold;
  line-height: 1.5;
  margin: 16px;
}
.menu-text .menu-rate {
  font-weight: 400;
  margin: auto auto 16px 16px;
}

.animated {
  opacity: 0;
}

.visible {
  opacity: 1;
}

/*                main-container
======================================================= */
.main-container {
  max-width: 1280px;
  text-align: center;
  position: relative;
  height: 938px;
  margin-inline: auto;
}
@media only screen and (max-width: 1023px) {
  .main-container {
    height: auto;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .main-container {
    width: 100%;
    height: auto;
  }
}

/*==================
#loading
==================*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.8980392157);
  text-align: center;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loading .kvArea {
  width: 100%;
}

#loading .kvArea .img_box {
  text-align: center;
}

#loading .kvArea .img_box img {
  max-width: 100%;
  height: auto;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; /* アニメーションの開始を遅延 */
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/*                fv
======================================================= */
.fv-container {
  width: 100%;
  height: 854px;
  background-image: url(../images/itigo-top.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .fv-container {
    height: 80vh;
  }
}

.fv-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 21px;
  position: absolute;
  top: 112px;
  right: 146px;
}
@media only screen and (max-width: 1023px) {
  .fv-wrapper {
    right: 8%;
  }
}
@media screen and (max-width: 767px) {
  .fv-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 31%;
    left: 11.1%; /* 40pxをパーセンテージに換算 */
    top: auto; /* スマホではtopをリセット */
    right: auto; /* スマホではrightをリセット */
    gap: 7px; /* スマホのテキスト間の間隔 */
  }
}

.fv-item.__large {
  width: 62px;
  height: 432px;
  background-color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .fv-item.__large {
    width: 58px;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .fv-item.__large {
    width: 230px; /* スマホの幅 */
    height: 38px; /* スマホの高さ */
  }
}
.fv-item.__small {
  width: 62px;
  height: 144px;
  background-color: #ffffff;
}
@media only screen and (max-width: 1023px) {
  .fv-item.__small {
    width: 58px;
    height: 128px;
  }
}
@media screen and (max-width: 767px) {
  .fv-item.__small {
    width: 86px; /* スマホの幅 */
    height: 38px; /* スマホの高さ */
  }
}

.fv-text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: clamp(1rem, 0.624rem + 1.72vw, 2rem);
  font-weight: bold;
  padding: 15px 0 0 15px;
}
@media screen and (max-width: 767px) {
  .fv-text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb; /* スマホでは横書き */
    padding: 7px; /* 左から40pxのパディングを追加 */
    font-size: 24px;
    line-height: 1;
  }
}
.fv-text.__01, .fv-text.__02 {
  letter-spacing: 0.89rem;
}
@media screen and (max-width: 767px) {
  .fv-text.__01, .fv-text.__02 {
    letter-spacing: normal; /* スマホでは標準の文字間隔 */
  }
}
.fv-text.__03 {
  letter-spacing: 0.6rem;
}
@media screen and (max-width: 767px) {
  .fv-text.__03 {
    letter-spacing: normal; /* スマホでは標準の文字間隔 */
  }
}
@media screen and (max-width: 767px) {
  .fv-text.__02 {
    padding: 7px 6px 7px 7px; /* スマホでは標準の文字間隔 */
  }
}

/*                about
======================================================= */
.about {
  max-width: 1280px;
  width: 100%;
}
.about-ttl {
  width: 740px;
  height: 76px;
  background-color: rgba(255, 255, 255, 0.8980392157);
  color: #FF5757;
  font-size: clamp(1rem, 0.435rem + 2.58vw, 2.5rem);
  font-weight: bold;
  padding: 9px 10px;
  line-height: 1.5;
  position: absolute;
  top: 56px;
  left: 178px;
  z-index: 5;
}
@media only screen and (max-width: 1023px) {
  .about-ttl {
    position: static;
    width: 90%;
    margin-inline: auto;
    height: auto;
    word-break: keep-all;
  }
}
@media screen and (max-width: 767px) {
  .about-ttl {
    position: static;
    width: 90%;
    margin-inline: auto;
    height: auto;
    word-break: keep-all;
  }
}
.about__text-wrapper {
  width: 588px;
  height: 620px;
  background-color: rgba(255, 255, 255, 0.8980392157);
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  line-height: 2.5;
  padding: 15px;
  position: absolute;
  top: 160px;
  left: 193px;
  z-index: 5;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .about__text-wrapper {
    position: static;
    width: 90%;
    height: auto;
    margin: 20px auto;
    line-height: 2;
    padding: 5%;
    font-size: 1.1rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .about__text-wrapper {
    position: static;
    width: 90%;
    height: auto;
    margin: 20px auto;
    line-height: 2;
    padding: 5%;
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  .about__text-wrapper .pc-br {
    display: none;
  }
}
.about-img__large {
  position: absolute;
  top: 0px;
  right: 43px;
}
@media only screen and (max-width: 1023px) {
  .about-img__large {
    position: static;
    top: auto;
    right: auto;
    width: 90%;
    margin: 20px auto;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .about-img__large {
    position: static;
    top: auto;
    right: auto;
    width: 90%;
    margin: 20px auto;
    overflow: hidden;
  }
}
.about-img__large img {
  width: 100%;
  border-radius: 50px;
}
@media only screen and (max-width: 1023px) {
  .about-img__large img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about-img__large img {
    width: 100%;
  }
}
.about-img__small {
  position: absolute;
  top: 560px;
  right: 43px;
}
.about-img__small img {
  width: 100%;
  border-radius: 50px;
}
@media only screen and (max-width: 1023px) {
  .about-img__small {
    position: static;
    top: auto;
    right: auto;
    width: 75%;
    margin: 20px auto;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .about-img__small {
    position: static;
    top: auto;
    right: auto;
    width: 90%;
    margin: 20px auto;
    overflow: hidden;
  }
}
.about__txt {
  font-weight: bold;
  color: #857868;
}

/*               menu
======================================================= */
.menu-container {
  padding-bottom: 94px;
}
@media screen and (max-width: 767px) {
  .menu-container {
    margin-top: 100px;
    padding-bottom: 20px;
  }
}
.menu-container .menu-ttl {
  margin-bottom: 91px;
}

/*               menu
======================================================= */
/*               news
======================================================= */
.news-container {
  width: 100%;
  margin: 91px auto;
  position: relative;
}
.news-container .middle-img__right {
  position: absolute;
  right: 0;
  bottom: -169px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .news-container .middle-img__right {
    bottom: -130px;
  }
}

.news-ttl {
  margin-bottom: 90px;
}

.news-article {
  width: 934px;
  margin-inline: auto;
}
@media only screen and (max-width: 1023px) {
  .news-article {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .news-article {
    width: calc(100% - 50px);
    font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  }
}
.news-article time {
  font-size: 13px;
}

/*               faq
======================================================= */
.faq {
  width: 100%;
  padding: 91px 0;
}
.faq-ttl {
  margin-bottom: 73px;
}
.faq__list {
  width: 740px;
  margin: 0 auto 31px;
}
@media screen and (max-width: 767px) {
  .faq__list {
    width: calc(100% - 50px);
  }
}
.faq__question {
  height: 50px;
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
  font-weight: bold;
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 39px;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .faq__question {
    word-break: keep-all;
    line-height: 1.5;
    font-size: 0.8rem;
    padding: 0 30px 0 40px;
  }
}
.faq__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 35%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #c6c6c6;
  border-right: 3px solid #c6c6c6;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media only screen and (max-width: 500px) {
  .faq__question::after {
    width: 6px;
    height: 6px;
  }
}
.faq__question.rotate--315::after {
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.faq__question::before {
  content: "Q";
  display: block;
  position: absolute;
  font-weight: bold;
  font-size: clamp(1.25rem, 1.167rem + 0.42vw, 1.5rem);
  top: 12px;
  left: 14px;
}
.faq__answer {
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  margin-top: 24px;
  line-height: 1.5;
}

/*               faq
======================================================= */
/*              shop
======================================================= */
.shop-container {
  width: 100%;
  margin: 91px auto;
  position: relative;
}
.shop-container .middle-img__left {
  position: absolute;
  left: 0;
  top: -169px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .shop-container .middle-img__left {
    top: -130px;
  }
}
.shop-container .middle-img__right {
  position: absolute;
  right: 0;
  bottom: -169px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .shop-container .middle-img__right {
    bottom: -130px;
  }
}

.shop-ttl {
  margin-bottom: 91px;
}

.shop-wrapper {
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media only screen and (max-width: 1023px) {
  .shop-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.shop-caregory {
  width: 459px;
}
@media screen and (max-width: 767px) {
  .shop-caregory {
    width: calc(100% - 50px);
    font-size: 0.7rem;
  }
}

@media screen and (max-width: 767px) {
  .shop-article__ttl {
    width: 25%;
  }
}
.shop-article__ttl, .shop-article__txt {
  font-weight: bold;
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
}

/*              shop
======================================================= */
/*              inquiry
======================================================= */
.inquiry-container {
  max-width: 1280px;
  width: 100%;
  padding-top: 104px;
  padding-bottom: 30px;
  margin: 0 auto;
}
.inquiry-container__ttl {
  margin-bottom: 67px;
}

.inquiry-title {
  text-align: center;
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 93px;
}
@media screen and (max-width: 767px) {
  .inquiry-title {
    word-break: keep-all;
    line-height: 1.5;
    margin-bottom: 50px;
  }
}

.inquiry-form__item {
  width: 100%;
  margin-inline: auto;
}

.inquiry {
  width: 740px;
  height: 769px;
  background-color: #ffffff;
  padding: 37px 0 43px 0;
  margin-inline: auto;
  border-radius: 20px;
  /* チェックされた時のスタイルを設定 */
}
@media screen and (max-width: 767px) {
  .inquiry {
    width: calc(100% - 50px);
    height: auto;
    font-size: 0.7rem;
  }
}
.inquiry__title {
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 44px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .inquiry__title {
    word-break: keep-all;
  }
}
.inquiry__fieldset {
  width: 100%;
  margin-inline: auto;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .inquiry__fieldset {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 5%;
  }
}
.inquiry-kind__ttl {
  width: 48%;
  padding-left: 76px;
}
@media screen and (max-width: 767px) {
  .inquiry-kind__ttl {
    width: 90%;
    padding-left: 0;
  }
}
.inquiry-kind__choose {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .inquiry-kind__choose {
    width: 80%;
  }
}
.inquiry__legend {
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  font-weight: bold;
  height: 30px;
  line-height: 30px;
}
.inquiry__field {
  width: 100%;
  display: inline-block;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .inquiry__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.inquiry__field:last-of-type {
  margin-bottom: 0;
}
.inquiry__label {
  font-size: clamp(0.7rem, 0.667rem + 0.42vw, 1rem);
  font-weight: bold;
  width: 38%;
  padding-left: 76px;
}
@media screen and (max-width: 767px) {
  .inquiry__label {
    width: 90%;
    padding-left: 0;
  }
}
.inquiry__input {
  width: 324px;
  height: 40px;
  background-color: #efeae6;
  border-radius: 5px;
  border: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .inquiry__input {
    width: 90%;
    padding-left: 0;
  }
}
.inquiry__input.__post {
  width: 147px;
}
@media screen and (max-width: 767px) {
  .inquiry__input.__post {
    width: 90%;
  }
}
.inquiry__textarea {
  width: 314px;
  height: 170px;
  background-color: #efeae6;
  border-radius: 5px;
  border: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .inquiry__textarea {
    width: 90%;
  }
}
.inquiry__radio-btn {
  /* デフォルトのラジオボタンを初期化 */
  position: absolute;
  opacity: 0;
  z-index: -1000;
}
.inquiry__radio__label {
  /* 新しいラジオボタンの位置を設定 */
  position: relative;
  display: inline-block;
  padding-left: 23px;
  margin-bottom: 10px;
  cursor: pointer;
  /* 新しいラジオボタン（チェック前）のスタイルを設定 */
}
@media screen and (max-width: 767px) {
  .inquiry__radio__label {
    font-size: 0.8rem;
  }
}
.inquiry__radio__label--custom::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #4E301B;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.inquiry__radio-btn:checked + .inquiry__radio__label--custom::before {
  content: "";
  background: #4E301B;
}
.inquiry__radio-btn:checked + .inquiry__radio__label--custom::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
}

/* Focus State */
.inquiry__radio-btn:focus + .inquiry__radio__label--custom::before {
  outline: 2px solid #3498db; /* Outline color when focused */
}

.inquiry {
  height: auto;
}
.inquiry .end-message {
  display: none;
  text-align: center;
  color: #FF5757;
}
.inquiry .false-message {
  display: none;
  text-align: center;
  color: crimson;
}

input[type=text],
input[type=tel],
input[type=email] {
  padding-left: 10px;
}

/*              inquiry
======================================================= *//*# sourceMappingURL=style.css.map */