@charset "UTF-8";
:root {
  --font-size-base: 16px;
  --font-weight-base: 400;
  --line-height-base: 1.2;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-color-black: #000;
  --font-color-l-black: #2e3641;
  --font-color-white: #fff;
  --font-color-red: #ff0606;
  --font-color-d-gray: #8f9198;
  --bg-color-black: #000;
  --bg-color-l-black: #2e3641;
  --bg-color-white: #fff;
  --bg-color-pink: #eabcaa;
  --bg-color-gray: #d4d4d4;
  --bg-color-l-gray: #f2f4f5;
  --bg-color-d-gray: #8f9198;
  --bg-color-beige: #f2eee9;
  --bg-color-d-beige: #c5b9ac;
  --bg-color-red: #ff0606;
  --bg-color-blue: #166ab4;
  --bg-color-d-blue: #115a96;
  --bg-color-fv: #ececec;
  --inner-width: 20px;
}

/* ===========================================
共通設定
=========================================== */
html,
body {
  overflow-x: hidden;
}

body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color-black);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  position: relative;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}

.heading {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.07em;
}
@media not screen and (min-width: 768px) {
  .heading {
    font-size: 28px;
  }
}

.button {
  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;
  min-width: 174px;
  padding: 0.4em;
  border-radius: 32px;
  border: 2px solid var(--font-color-l-black);
  background: var(--font-color-l-black);
  color: var(--font-color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .button {
    min-width: 110px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    color: var(--font-color-l-black);
    background: var(--bg-color-white);
  }
}
.button.button--bg-blue {
  background: var(--bg-color-blue);
  border-color: var(--bg-color-blue);
}
@media (hover: hover) and (pointer: fine) {
  .button.button--bg-blue:hover {
    color: var(--font-color-white);
    background: var(--bg-color-d-blue);
  }
}

/* ===========================================
トップに戻るボタン
=========================================== */
.top-button-wrapper {
  position: fixed;
  z-index: 1000;
  right: 1.3888888889%;
  bottom: 1.3888888889%;
  width: 144px;
  height: 144px;
  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;
  border-radius: 50%;
  border: 2px solid var(--bg-color-beige);
  background: var(--bg-color-white);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media not screen and (min-width: 768px) {
  .top-button-wrapper {
    width: 60px;
    height: 60px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-button-wrapper:has(.top-button:hover) {
    border-color: var(--bg-color-d-beige);
  }
}

/* ===========================================
ヘッダー
=========================================== */
.header {
  background: var(--bg-color-pink);
  height: 124px;
}
@media not screen and (min-width: 768px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  height: 100%;
  padding-inline: var(--inner-width);
  max-width: calc(1170px + var(--inner-width) * 2);
  margin-inline: auto;
}

.header__content {
  height: 100%;
}

.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 156px;
}
@media not screen and (min-width: 768px) {
  .header__nav {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    gap: 60px;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 94px;
}
@media not screen and (min-width: 768px) {
  .header__nav-list {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav-list {
    gap: 40px;
  }
}

.header__nav-link {
  position: relative;
  color: var(--font-color-l-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.44; /* 34.717px */
  letter-spacing: 0.07em;
}
@media not screen and (min-width: 768px) {
  .header__nav-link {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-link:hover::after {
    width: 100%;
  }
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--bg-color-black);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

/* ===========================================
FV
=========================================== */
.fv {
  background: var(--bg-color-fv);
}

.fv__inner {
  position: relative;
  padding-inline: 0;
  max-width: 1440px;
  margin-inline: auto;
}

.fv__company-name {
  position: absolute;
  top: 38px;
  right: 39px;
}
@media not screen and (min-width: 768px) {
  .fv__company-name {
    top: 20px;
    right: 20px;
  }
}

.fv__logo {
  max-width: 287px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .fv__logo {
    max-width: 120px;
  }
}

.fv__image {
  width: 100%;
}

/* ===========================================
SHOP紹介
=========================================== */
.shop {
  padding-top: 32px;
  padding-bottom: 45px;
}

.shop__inner {
  padding-inline: var(--inner-width);
  max-width: calc(750px + var(--inner-width) * 2);
  margin-inline: auto;
}

.shop__content {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .shop__content {
    padding-top: 40px;
    gap: 40px;
  }
}

.shop__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop__item {
  text-align: center;
}

.shop__link {
  position: relative;
  display: inline-block;
  min-width: 171px;
  padding: 12px;
  border: 1px solid var(--bg-color-l-black);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.07em;
}
@media not screen and (min-width: 768px) {
  .shop__link {
    font-size: 20px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .shop__link:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
}
.shop__link.shop__link--with-image {
  margin-top: 200px;
}
@media not screen and (min-width: 768px) {
  .shop__link.shop__link--with-image {
    margin-top: 180px;
  }
}
.shop__link.shop__link--with-image::before {
  content: "";
  position: absolute;
  top: -202px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: url(../img/shop-link-image.webp) no-repeat center center/contain;
}
@media not screen and (min-width: 768px) {
  .shop__link.shop__link--with-image::before {
    top: -182px;
    width: 180px;
    height: 180px;
  }
}

.shop__link-image {
  max-width: 200px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .shop__link-image {
    max-width: 180px;
  }
}

.shop__link-text {
  font-weight: inherit;
  font-size: 20px;
}

.shop__sns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .shop__sns-link:hover {
    opacity: 0.6;
  }
}

.shop__sns-icon {
  max-width: 79px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .shop__sns-icon {
    max-width: 40px;
  }
}

.shop__sns-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.07em;
}
@media not screen and (min-width: 768px) {
  .shop__sns-text {
    font-size: 16px;
  }
}

/* ===========================================
事業紹介
=========================================== */
.business {
  padding-top: 60px;
  padding-bottom: 10px;
}
@media not screen and (min-width: 768px) {
  .business {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.business__inner {
  padding-inline: var(--inner-width);
  max-width: calc(1000px + var(--inner-width) * 2);
  margin-inline: auto;
}

.business__content {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .business__content {
    gap: 40px;
  }
}

.business__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .business__cards {
    -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;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .business__cards {
    gap: 40px;
  }
}

.business-card {
  padding-top: 32px;
  padding-bottom: 30px;
  padding-left: 33px;
  padding-right: 33px;
  width: 338px;
  border-radius: 25px;
  border: 1px solid var(--bg-color-gray);
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .business-card {
    max-width: 338px;
    width: 90.1333333333%;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.business-card__image {
  max-width: 150px;
  width: 100%;
}

.business-card__title {
  margin-top: 23px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.07em;
}
@media not screen and (min-width: 768px) {
  .business-card__title {
    font-size: 24px;
  }
}

.business-card__text {
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0.07em;
}

.history__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.history__item {
  display: grid;
  grid-template-columns: 207px 1fr;
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-bottom: 1px solid var(--bg-color-black);
}
@media not screen and (min-width: 768px) {
  .history__item {
    grid-template-columns: 100px 1fr;
  }
}

.history__head {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 33px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.07em;
  background: var(--bg-color-beige);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .history__head {
    font-size: 14px;
    padding-left: 10px;
  }
}

.history__body {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 22px;
  font-size: 20px;
  letter-spacing: 0.07em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .history__body {
    padding-left: 10px;
    font-size: 14px;
  }
}

/* ===========================================
会社概要
=========================================== */
.company {
  padding-top: 56px;
  padding-bottom: 126px;
}
@media not screen and (min-width: 768px) {
  .company {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.company__inner {
  padding-inline: var(--inner-width);
  max-width: calc(1000px + var(--inner-width) * 2);
  margin-inline: auto;
}

.company__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 468px 1fr;
  gap: 41px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .company__content {
    margin-top: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 300px;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__content {
    margin-top: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 300px;
    gap: 40px;
  }
}

.company__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.company__item {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-bottom: 1px solid var(--bg-color-black);
}
@media not screen and (min-width: 768px) {
  .company__item {
    grid-template-columns: 100px 1fr;
  }
}

.company__item-head {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.07em;
  background: var(--bg-color-beige);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .company__item-head {
    padding-left: 10px;
    font-size: 14px;
  }
}

.company__item-body {
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 14px;
  font-size: 16px;
  letter-spacing: 0.07em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .company__item-body {
    padding-left: 10px;
    font-size: 14px;
  }
}
.company__item-body.is-small {
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .company__item-body.is-small {
    font-size: 16px;
  }
}

.company__map iframe {
  width: 100%;
  height: 100%;
}

/* ===========================================
お問い合わせ
=========================================== */
.contact {
  padding-top: 29px;
  padding-bottom: 136px;
  background: var(--bg-color-beige);
}
@media not screen and (min-width: 768px) {
  .contact {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

.contact__inner {
  padding-inline: var(--inner-width);
  max-width: calc(725px + var(--inner-width) * 2);
  margin-inline: auto;
}

.contact__text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
}
@media not screen and (min-width: 768px) {
  .contact__text {
    font-size: 16px;
  }
}

.contact__heading {
  margin-top: 15px;
  text-align: center;
}

.contact__heading-box {
  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;
  min-width: 174px;
  padding: 0.4em;
  border-radius: 32px;
  border: 2px solid var(--font-color-l-black);
  background: var(--font-color-l-black);
  color: var(--font-color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
@media not screen and (min-width: 768px) {
  .contact__heading-box {
    min-width: 110px;
    font-size: 14px;
  }
}

.contact__content {
  margin-top: 38px;
}

.wpcf7 {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 48px;
  padding-right: 74px;
  background: var(--bg-color-white);
  border-radius: 2px;
}
@media not screen and (min-width: 768px) {
  .wpcf7 {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.wpcf7-spinner {
  display: none;
}

.form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.form-field {
  display: grid;
  grid-template-columns: 204px 1fr;
  gap: 16px;
}
@media not screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 8px;
  }
}

.form-field__head {
  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;
  gap: 4px;
}

.form-field__label {
  color: var(--font-color-l-black);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
  cursor: pointer;
}
@media not screen and (min-width: 768px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  font-size: 12px;
  color: var(--font-color-red);
  font-weight: 700;
}

.form-field__item {
  width: 100%;
}

.form-text {
  width: 100%;
  border: 1px solid var(--bg-color-l-gray);
  background: var(--bg-color-l-gray);
  padding: 12px 20px;
  font-size: 12px;
  line-height: 1;
}
.form-text::-webkit-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-text::-moz-placeholder {
  color: var(--font-color-d-gray);
}
.form-text:-ms-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-text::-ms-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-text::placeholder {
  color: var(--font-color-d-gray);
}
.form-text:focus, .form-text:focus-visible {
  outline: none;
  border-color: var(--bg-color-pink);
}
.form-text:invalid {
  outline: none;
  border-color: var(--bg-color-red);
}

.form-textarea {
  width: 100%;
  height: 200px;
  border: 1px solid var(--bg-color-l-gray);
  background: var(--bg-color-l-gray);
  padding: 12px 20px;
  font-size: 12px;
}
.form-textarea::-webkit-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-textarea::-moz-placeholder {
  color: var(--font-color-d-gray);
}
.form-textarea:-ms-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-textarea::-ms-input-placeholder {
  color: var(--font-color-d-gray);
}
.form-textarea::placeholder {
  color: var(--font-color-d-gray);
}
.form-textarea:focus, .form-textarea:focus-visible {
  outline: none;
  border-color: var(--bg-color-pink);
}
.form-textarea:invalid {
  outline: none;
  border-color: var(--bg-color-red);
}

.form__buttons {
  margin-top: 51px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .form__buttons {
    margin-top: 40px;
  }
}

.form__button:invalid {
  outline: none;
  background: var(--bg-color-d-gray);
}
.form__button:focus, .form__button:focus-visible {
  outline: none;
  border-color: var(--bg-color-pink);
}

/* ===========================================
フッター
=========================================== */
.footer {
  padding-top: 61px;
  padding-bottom: 120px;
  background: var(--bg-color-beige);
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-top: 36px;
    padding-bottom: 72px;
  }
}

.footer__inner {
  padding-inline: var(--inner-width);
  max-width: calc(725px + var(--inner-width) * 2);
  margin-inline: auto;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer__heading {
  text-align: center;
}

.footer__link {
  display: inline-block;
  border-radius: 13px;
  background: var(--bg-color-white);
  border: 2px solid var(--bg-color-white);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    border-color: var(--bg-color-d-beige);
  }
}

.footer__logo {
  max-width: 169px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .footer__logo {
    max-width: 144px;
  }
}

.footer__copyright {
  text-align: center;
}

.footer__copyright-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44;
}
@media not screen and (min-width: 768px) {
  .footer__copyright-text {
    font-size: 14px;
  }
}