@charset "UTF-8";
/*------------------------------------------------------------------------------
共通パーツ
--------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc-only {
    display: block;
  }
}

/*------------------------------------------------------------------------------
header
--------------------------------------------------------------------------------*/
.header {
  padding-top: 19px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 28px;
    padding-bottom: 24px;
  }
}

.header__inner {
  padding-left: 17px;
  padding-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-left: 34px;
    padding-right: 3.9583333333vw;
  }
}

.header-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header-logo__link {
    gap: 1.9270833333vw;
  }
}

.header__logo a img {
  width: 50px;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 6.71875vw;
  }
}

.logo__text {
  font-size: 19px;
  font-weight: 700;
  color: #4e4c4c;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .logo__text {
    font-size: 2.6041666667vw;
    white-space: nowrap;
  }
}

.drawer-icon {
  width: 50px;
  height: 40px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  content: "";
  width: 50px;
  height: 6px;
  top: 0;
  left: 0;
  background: #000;
}

.drawer-icon__bar:nth-child(1) {
  top: 0;
}

.drawer-icon__bar:nth-child(2) {
  top: 17px;
}

.drawer-icon__bar:nth-child(3) {
  top: 34px;
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .header-nav__list {
    gap: 3.125vw;
  }
}

.header-nav__item a {
  font-size: 1.5625vw;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer-content {
  display: none; /* 初期状態で非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 高さをビューポートの高さから66px引いたものに調整 */
  padding-top: 66px; /* 上に66pxの余白を追加 */
  background-color: #fff;
  z-index: 1000;
  overflow-y: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.drawer-content.is-open {
  display: block;
  -webkit-transform: translateX(0);
          transform: translateX(0); /* 表示状態では位置をリセット */
}

.drawer-header-logo__link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 19px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer-header-logo__link img {
  width: 67px;
}

.drawer-logo__text {
  color: #4e4c4c;
  font-size: 24px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer-x-button {
  position: absolute;
  right: 33px;
  top: 31px;
  width: 28px;
}

.drawer-content__menu {
  margin-top: 44px;
}

.drawer-nav__item {
  text-align: center;
  border-top: 1px solid #edebeb;
  display: block;
}
.drawer-nav__item:last-child {
  border-bottom: 1px solid #edebeb;
}

.drawer-content__link {
  display: block;
  padding-top: 20px; /* パディングをリンクに移動 */
  padding-bottom: 15.5px; /* パディングをリンクに移動 */
  width: 100%; /* 親要素(li)の幅に合わせる */
  height: 100%; /* 親要素(li)の高さに合わせる */
}

.drawer-contact {
  margin-top: 13px;
  text-align: center;
}
.drawer-contact a img {
  width: 74px;
}

.drawer-tel {
  text-align: center;
  margin-bottom: 20px;
}
.drawer-tel img {
  margin-top: 24px;
  width: 228px;
}

.drawer-footer {
  padding-top: 37px;
  padding-bottom: 13px;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(60%, #3c0303), to(#3c0303));
  background: linear-gradient(to right, #000000 0%, #3c0303 60%, #3c0303 100%);
  opacity: 1;
}

.drawer-footer__text {
  text-align: center;
  font-size: 7px;
  color: #fff;
  line-height: 2;
}

/*------------------------------------------------------------------------------
fv
--------------------------------------------------------------------------------*/
.fv picture img {
  width: 100%;
}

/*------------------------------------------------------------------------------
value
--------------------------------------------------------------------------------*/
.value {
  padding-top: 44px;
}

.section__title {
  text-align: center;
}

.section-main__title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.24;
  color: #4e4c4c;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-main__title {
    font-size: 3.125vw;
  }
}

.section-sub__title {
  margin-top: 7px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.43;
  color: #e3a9a9;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-sub__title {
    letter-spacing: 0.1em;
    font-size: 3.125vw;
  }
}

.value__inner {
  margin-top: 20.8px;
  padding-right: 16px;
  padding-left: 16px;
  padding-bottom: 61px;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(60%, #3c0303), to(#3c0303));
  background: linear-gradient(to right, #000000 0%, #3c0303 60%, #3c0303 100%);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .value__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.value__list {
  padding-top: 90.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 63px;
}
@media screen and (min-width: 768px) {
  .value__list {
    padding-top: 133px;
    gap: 38px;
  }
}

.value__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.value__item.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .value__item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .value__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1520px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .value__img {
    width: 50%;
  }
}
.value__img img {
  width: 100%;
}

.value__contain {
  background: #fff;
  padding: 9px 19px 30px 23px;
}
@media screen and (min-width: 768px) {
  .value__contain {
    width: 50%;
    padding: 20px 43px;
  }
}

.value__number {
  font-size: 9.6vw;
  font-weight: 700;
  color: #4e4c4c;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .value__number {
    font-size: 4.16vw;
  }
}

.value-number-img__container {
  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;
}

.seminar__img {
  width: 136px;
}
@media screen and (min-width: 768px) {
  .seminar__img {
    display: block;
    position: absolute;
    content: "";
    right: 23px;
    top: 3px;
    width: 15.625vw;
  }
}

.value-item__title {
  font-size: 5.6vw;
  font-weight: 700;
  color: #7e3232;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .value-item__title {
    font-size: 2.6041666667vw;
  }
}

.value__text {
  font-size: 3.7333333333vw;
  color: #4e4c4c;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .value__text {
    margin-top: 14px;
    font-size: 1.5625vw;
  }
}

/*------------------------------------------------------------------------------
company
--------------------------------------------------------------------------------*/
.company {
  padding-top: 39px;
}

.company__container {
  position: relative;
  margin-top: 40px;
  padding-top: 357px;
  padding-bottom: 303px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/sp/sp_company.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .company__container {
    display: block;
    padding-top: 36px;
    padding-bottom: 500px;
    background: url(../img/company.webp) no-repeat center center/cover;
  }
}

.company-main__text {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.5;
  color: #310902;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .company-main__text {
    font-size: clamp(16px, 1.5625vw, 24px);
    position: absolute;
    left: 43%;
    line-height: 1.67;
    text-align: left;
  }
}

.company__pop {
  position: absolute;
  content: "";
  background: url(../img/pop.png);
  background-size: contain;
  width: 180px;
  height: 180px;
  bottom: 61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .company__pop {
    left: 77%;
    bottom: 40px;
    width: 11vw;
    height: 11vw;
  }
}

.company__inner {
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(60%, #3c0303), to(#3c0303));
  background: linear-gradient(to right, #000000 0%, #3c0303 60%, #3c0303 100%);
  opacity: 1;
  padding-left: 15px;
  padding-right: 15px;
}

.company__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: 30px;
  padding-top: 43px;
  padding-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .company__list {
    gap: 66px;
    padding-top: 215px;
    padding-bottom: 266px;
  }
}

.company__item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .company__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1520px;
    margin: 0 auto;
  }
}
.company__item.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .company__item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .company__img {
    width: 50%;
  }
}
.company__img img {
  width: 100%; /* 幅を親要素にフィットさせる */
  height: 100%; /* 高さを親要素にフィットさせる */
  -o-object-fit: cover;
     object-fit: cover;
}

.company__contain {
  padding: 28px 41px 12px 19px;
}
@media screen and (min-width: 768px) {
  .company__contain {
    width: 50%;
    padding: 50px 60px;
  }
}

.company__title {
  font-size: 16px;
  font-weight: 700;
  color: #8d0a0a;
  line-height: 1.5;
  letter-spacing: 1.8px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .company__title {
    font-size: 1.9vw;
  }
}

.company__text {
  margin-top: 17px;
  font-size: 15px;
  color: #4e4c4c;
  line-height: 2;
  letter-spacing: 1.8px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .company__text.space {
    margin-top: 4.7916666667vw;
  }
}
@media screen and (min-width: 768px) {
  .company__text {
    margin-top: 24px;
    line-height: 1.2;
    font-size: 1.5625vw;
  }
}

.company__text3 {
  margin-top: 10px;
}

.seminar__logo {
  text-align: right;
}
.seminar__logo img {
  width: 136px;
}
@media screen and (min-width: 768px) {
  .seminar__logo img {
    width: 10.625vw;
  }
}

/*------------------------------------------------------------------------------
howto
--------------------------------------------------------------------------------*/
.howto {
  padding-top: 43px;
}

.howto__main {
  margin-top: 42px;
  padding-top: 79px;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(60%, #3c0303), to(#3c0303));
  background: linear-gradient(to right, #000000 0%, #3c0303 60%, #3c0303 100%);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .howto__main {
    padding-top: 86px;
  }
}

.howto__title-container {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .howto__title-container {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.howto__title {
  border-radius: 65px;
  padding-right: 45px;
  padding-left: 45px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 16px;
  display: inline-block;
  font-size: 25px;
  background: #8d0a0a;
  font-weight: 700;
  color: #fff;
  line-height: 1.44;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .howto__title {
    font-size: 3.125vw;
    width: 100%;
    max-width: 1520px;
  }
}
.howto__title::before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 69px;
  height: 84px;
  top: -37px;
  left: -12.4px;
  background: url(../img/pop1.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .howto__title::before {
    width: 150px;
    height: 150px;
    top: -75px;
    left: 7%;
    background: url(../img/howto-pc_pop.png) no-repeat center center/contain;
  }
}

.howto__list {
  margin-top: 104px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 104px;
  padding-bottom: 58px;
}
@media screen and (min-width: 768px) {
  .howto__list {
    gap: 163px;
    padding-right: 30px;
    padding-left: 30px;
    margin-top: 193px;
  }
}

.howto__item {
  padding-top: 54px;
  padding-bottom: 30px;
  background: #fff;
  border-radius: 28px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .howto__item {
    max-width: 1520px;
    margin: 0 auto;
    border-radius: 44px;
    padding-top: 175px;
    padding-bottom: 83px;
  }
}

.howto-item__title {
  padding: 15px 20px 17px 33px;
  border-radius: 51px;
  font-size: 25px;
  font-weight: 700;
  background: #8d0a0a;
  color: #fff;
  display: inline-block;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .howto-item__title {
    padding-inline: 9%;
    font-size: 60px;
    top: -60px;
  }
}
.howto-item__title::before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 69px;
  height: 84px;
  top: -51px;
  left: -12.4px;
  background: url(../img/pop2.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .howto-item__title::before {
    width: 200px;
    height: 200px;
    top: -99px;
    left: -49.4px;
    background: url(../img/howto-pc_pop.png) no-repeat center center/contain;
  }
}

.howto-item__inner {
  padding-right: 17px;
  padding-left: 17px;
}

.howto__imges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
}
@media screen and (min-width: 768px) {
  .howto__imges {
    gap: 52px;
  }
}

@media screen and (min-width: 768px) {
  .howto__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 100px;
  }
}
.howto__img:not(:first-child) .howto-item__pop {
  margin-top: 24px;
}

.howto-item__pop {
  text-align: center;
}
.howto-item__pop:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .howto-item__pop:not(:first-child) {
    margin-top: 0;
  }
}
.howto-item__pop img {
  width: 128px;
}

.howto-item__img {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .howto-item__img {
    width: 47.7%;
    margin-top: 0;
  }
}
/*------------------------------------------------------------------------------
work
--------------------------------------------------------------------------------*/
.work {
  padding-top: 46px;
}

.work-header__img {
  margin-top: 31px;
}
.work-strong__text {
  margin-top: 47px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #8d0a0a;
  letter-spacing: 0.15em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .work-strong__text {
    margin-top: 71px;
    font-size: 2.1354166667vw;
  }
}

.work__inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .work__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}

.work-talk__list {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .work-talk__list {
    margin-top: 102px;
  }
}

.work-talk__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.customer__talk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .customer__talk {
    gap: 61px;
  }
}

.customer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.customer__img {
  margin-left: 3px;
}
.customer__img img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .customer__img img {
    width: 20.7291666667vw;
  }
}

.customer__name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .customer__name {
    font-size: 2.2395833333vw;
  }
}

.customer__speechbubble {
  position: relative;
  background: #fdebd1;
  padding: 17px;
  color: #4e4c4c;
  border-radius: 10px;
  font-size: 18px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .customer__speechbubble {
    font-size: 2.2395833333vw;
    padding: 2.5vw;
    border-radius: 30px;
  }
}
.customer__speechbubble::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(253, 235, 209, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -10px;
  border-right-color: #fdebd1;
  right: 100%;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .customer__speechbubble::after {
    border-bottom-width: 20px;
    border-left-width: 20px;
    border-right-width: 30px;
  }
}

.shop__talk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .shop__talk {
    gap: 27px;
  }
}

.shop__speechbubble {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  position: relative;
  background: #eaffd4;
  padding: 17px;
  color: #4e4c4c;
  font-size: 18px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .shop__speechbubble {
    padding: 2.8645833333vw;
    border-radius: 30px;
  }
}
.shop__speechbubble::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(234, 255, 212, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -10px;
  border-left-color: #eaffd4;
  left: 100%;
  top: 33%;
}
@media screen and (min-width: 768px) {
  .shop__speechbubble::after {
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 25px;
    border-right-width: 20px;
  }
}

.shop-talk__img img {
  width: 52px;
}
@media screen and (min-width: 768px) {
  .shop-talk__img img {
    width: 11.0416666667vw;
  }
}
.shop-talk__img.two-line {
  width: 113px;
  display: grid;
  grid-template-columns: repeat(2, auto); /* 2列 */
  grid-template-rows: repeat(2, auto); /* 2行 */
  gap: 6.9px 8.8px; /* 空間をなくす */
}
@media screen and (min-width: 768px) {
  .shop-talk__img.two-line {
    width: 23.041667vw;
  }
}
.shop-talk__img.two-line img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 52px; /* 各セルの幅全体を占める */
  height: auto; /* 高さは自動調整 */
  margin: 0; /* 余計な余白を排除 */
  padding: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .shop-talk__img.two-line img {
    width: 11.0416666667vw;
  }
}

.shop-talk__text {
  font-size: 18px;
  color: #4e4c4c;
}
@media screen and (min-width: 768px) {
  .shop-talk__text {
    font-size: 2.2395833333vw;
  }
}

.shop__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.shop__img img {
  width: 78px;
}
@media screen and (min-width: 768px) {
  .shop__img img {
    width: 15.625vw;
  }
}

.shop__name {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .shop__name {
    text-align: center;
    font-size: 2.2395833333vw;
  }
}

.work__img2 {
  text-align: center;
  margin-top: 18px;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .work__img2 {
    margin-top: 165px;
    padding-right: 0;
    padding-left: 0;
  }
}
/*------------------------------------------------------------------------------
question
--------------------------------------------------------------------------------*/
.question {
  padding-top: 25px;
  padding-bottom: 39px;
}
@media screen and (min-width: 768px) {
  .question {
    padding-top: 47px;
    padding-bottom: 72px;
  }
}

.question__img {
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .question__img {
    margin-top: 96px;
  }
}
.question__inner {
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .question__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}

.qa__list {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}

.question__item {
  font-size: 23px;
  color: #7e3232;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .question__item {
    font-size: 2.003333vw;
  }
}

.answer__item {
  margin-top: 50px;
  font-size: 15px;
  color: #4e4c4c;
  line-height: 2.46;
}
@media screen and (min-width: 768px) {
  .answer__item {
    font-size: 1.4825vw;
  }
}

/*------------------------------------------------------------------------------
contact
--------------------------------------------------------------------------------*/
.contact {
  padding-right: 14px;
  padding-left: 14px;
  padding-top: 44.2px;
  background: -webkit-gradient(linear, left top, right top, from(#000000), color-stop(60%, #3c0303), to(#3c0303));
  background: linear-gradient(to right, #000000 0%, #3c0303 60%, #3c0303 100%);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 155px;
  }
}

.contact__container {
  padding-top: 54px;
  padding-bottom: 20px;
  background: #eae6e7;
}
@media screen and (min-width: 768px) {
  .contact__container {
    padding-top: 81px;
    padding-bottom: 50px;
    max-width: 1140px;
    margin: 0 auto;
  }
}

.contact__inner {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    padding-right: 143px;
    padding-left: 170px;
  }
}

.contact__title {
  text-align: center;
}

.contact-main__title {
  padding-bottom: 19px;
  font-size: 17px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact-main__title {
    font-size: 40px;
  }
}
.contact-main__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 212px;
  height: 3px;
  background: #000;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.contact-sub__title {
  font-size: 26px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #e6202d;
}
@media screen and (min-width: 768px) {
  .contact-sub__title {
    font-size: 30px;
  }
}

form {
  margin-top: 28px;
}

@media screen and (min-width: 768px) {
  .form-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5vw;
  }
}

.contact__item:not(:first-of-type) {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact__item:not(:first-of-type) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .contact__item.is-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.contact-dt {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-dt:not(:first-of-type) {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  .contact-dt {
    font-size: clamp(15px, 1.25vw, 24px);
    width: 31.25vw;
  }
}

@media screen and (min-width: 768px) {
  .contact__dd {
    width: 100%; /* ddの幅を親要素に対して100%に設定 */
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* ddが残りの幅を全て使用するように設定 */
  }
}

.req {
  border-radius: 4px;
  margin-left: 10px;
  background: #ff0000;
  color: #fff;
  padding: 5px 7px 3px 8px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .req {
    margin-left: 1.0416666667vw;
    font-size: 15px;
    padding: 5px 8px 3px;
    font-size: 0.78125vw;
  }
}

input[type=text],
textarea {
  background: #fff !important;
  border: 1px solid #b9b9b9;
  border-radius: 0;
  margin-top: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* paddingやborderを含めて幅を計算 */
}
@media screen and (min-width: 768px) {
  input[type=text],
  textarea {
    margin-top: 0;
    height: 46px;
  }
}

@media screen and (min-width: 768px) {
  textarea {
    height: 200px;
  }
}

.contact-result {
  margin-top: 20px;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}

/* 成功時のスタイル */
.contact-result.success {
  background-color: #4caf50; /* 成功時の緑色 */
  color: white;
}

/* 失敗時のスタイル */
.contact-result.error {
  background-color: #f44336; /* 失敗時の赤色 */
  color: white;
}

input[type=submit] {
  margin-top: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* paddingやborderを含めて幅を計算 */
}

input[type=image] {
  width: 305px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  input[type=image] {
    margin-top: 30px;
    width: 26.0416666667vw;
  }
}

/*------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------*/
.footer__text {
  padding-top: 32px;
  padding-bottom: 18px;
  font-size: 7px;
  color: #fff;
  padding-top: 32px;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .footer__text {
    padding-top: 73px;
    font-size: 1.4583333333vw;
    padding-bottom: 95px;
  }
}

/*------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/