@charset "UTF-8";
body {
  font-family: "maru-maru-gothic-blr-stdn";
  color: #6a6a6a;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
}

html.is-drawer-open {
  overflow: hidden;
}

body.is-drawer-open {
  overflow: hidden;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.btn-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 300px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 9999px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  color: #6a6a6a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.btn-more__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-more__icon {
  width: 36px;
  height: 36px;
}

.btn-more__text {
  letter-spacing: 0.8px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 821px) {
  .br-none {
    display: none;
  }
}

body.page-id-10 .header,
body.page-id-32 .header,
body.page-id-35 .header {
  top: 0;
  position: static;
}

/*
 * お問い合わせ関連ページで、読み込み時のちらつきを防止するため、
 * 初期状態ではページ本体を非表示（透明）にしておく。
 */
body.page-id-10,
body.page-id-32,
body.page-id-35 {
  /* 重要：JavaScriptが動くまでコンテンツを透明にする */
  opacity: 0;
}

/* ========================================
   Header & Drawer
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  top: -95px;
  z-index: 100;
  transition: top 0.6s ease-in-out;
}

.header.is-visible {
  top: 0;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.header__logo {
  position: relative;
  z-index: 100;
}

/* --- Mobile Icons (Default) --- */
.header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 100;
}

.cart-btn {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.cart-btn img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.drawer__icon {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.3s linear;
  z-index: 101;
  cursor: pointer;
}
.drawer__icon .drawer__icon-bar {
  position: absolute;
  width: 30px;
  height: 1.5px;
  left: 0;
  background-color: #a3a3a3;
  transition: all 0.3s ease-in-out;
}
.drawer__icon .drawer__icon-bar:nth-child(1) {
  top: 6px;
}
.drawer__icon .drawer__icon-bar:nth-child(2) {
  top: 15px;
}
.drawer__icon .drawer__icon-bar:nth-child(3) {
  top: 23px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(1) {
  transform: rotate(45deg);
  top: 14px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(2) {
  opacity: 0;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 14px;
}

/* --- Navigation Drawer (Mobile) --- */
.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 780px;
  background: #fff;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header__nav.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 300px;
}

.header__item {
  width: 100%;
  text-align: center;
  padding: 0;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, filter 0.4s ease-out;
}
.header__item a {
  display: block;
  padding: 36px 0;
  color: #6a6a6a;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s;
}
.header__item a:hover {
  opacity: 0.5;
}

.header__nav.is-checked .header__item {
  /* 表示状態: 不透明で、定位置に戻り、ブラーが解除される */
  opacity: 1;
  filter: blur(0);
}

.header__item:first-child {
  border-top: 1px solid #e0e0e0;
}

/* --- PC Button (Hidden on Mobile) --- */
.header__btn-wrapper--pc {
  display: none;
}

/* ========================================
     PC Styles (821px and up)
       ======================================== */
@media screen and (min-width: 821px) {
  .header__inner {
    padding: 0 40px;
    justify-content: space-between;
  }
  .header__logo {
    flex-shrink: 0;
  }
  .header__icons {
    display: none;
  }
  .header__nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    flex-direction: row;
    align-items: center;
    flex-grow: 1;
  }
  .header__list {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    max-width: none;
    width: 100%;
  }
  .header__item {
    width: auto;
    border: none;
    opacity: 1;
    filter: none;
  }
  .header__item a {
    padding: 0;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #6a6a6a;
  }
  .header__item:first-child {
    border-top: none;
  }
  .header__btn-wrapper--pc {
    display: block;
  }
  .btn-more--header {
    width: 240px;
    height: 60px;
    padding: 0 24px;
    flex-shrink: 0;
  }
  .btn-more--header .btn-more__content {
    gap: 10px;
  }
  .btn-more--header .btn-more__icon {
    width: 20px;
    height: 20px;
  }
  .btn-more--header .btn-more__text {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .btn-more--header .news-card__arrow {
    width: 30px;
  }
}
/* ======================================
FV
======================================
 */
.sub-fv__inner {
  margin: 20px 15px 0 15px;
}

.sub-fv__image__container {
  background-image: url(image/s_pc_image_aboutfv.png);
  width: 100%;
  height: 200px; /* SPでの高さを指定 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  border-radius: 20px;
}
@media screen and (min-width: 821px) {
  .sub-fv__image__container {
    height: 500px;
    margin-bottom: 120px;
  }
}

.sub-fv__label {
  font-weight: 400;
  font-size: 16px;
}
@media screen and (min-width: 821px) {
  .sub-fv__label {
    font-size: 20px;
  }
}

.sub-fv__title {
  font-size: 25px;
}
@media screen and (min-width: 821px) {
  .sub-fv__title {
    font-size: 40px;
  }
}

/* --- about --- */
.sub-about__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 35px 83px;
}

.sub-about__heading {
  text-align: center;
  font-size: 30px;
  padding-bottom: 50px;
}
@media screen and (min-width: 821px) {
  .sub-about__heading {
    font-size: 40px;
  }
}

.sub-about__sub__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 15px;
}

.sub-about__sub__description {
  line-height: 2.1;
  letter-spacing: 0.9px;
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .sub-about__sub__description {
    text-align: center;
  }
}

/* --- About Card --- */
.sub-about__card__content:first-of-type {
  border-top: 1px solid #a3a3a3;
}

.sub-about__card__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0px;
  border-bottom: 1px solid #a3a3a3;
}
@media screen and (min-width: 821px) {
  .sub-about__card__wrapper {
    padding: 50px 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}

.sub-about__card__image {
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-about__card__image {
    padding-bottom: 0;
  }
}

.sub-about__card_title {
  font-size: 20px;
  padding-bottom: 20px;
}

.sub-about__card_description {
  line-height: 2.1;
  letter-spacing: 0.9px;
}

.sub-about__card_company {
  padding-bottom: 16px;
}

.sub-about__salutation {
  background: #f7f7f7;
  padding: 50px 0;
}
@media screen and (min-width: 821px) {
  .sub-about__salutation {
    padding: 125px 0;
  }
}

.sub-about__salutation__inner {
  max-width: 1200px;
  background: #fff;
  margin: auto 15px;
  padding: 50px 30px 90px;
  border-radius: 20px;
}
@media screen and (min-width: 821px) {
  .sub-about__salutation__inner {
    margin: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-about__salutation__inner {
    padding: 155px 0 143px;
    margin: 0 auto;
    border-radius: 50px;
  }
}

.sub-about__salutation__title {
  font-size: 30px;
  text-align: center;
  padding-bottom: 50px;
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .sub-about__salutation__title {
    font-size: 40px;
  }
}

.sub-about__salutation__description {
  line-height: 2.1;
  letter-spacing: 0.9px;
  font-size: 20px;
  padding-bottom: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.sub-about__card_company {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.sub-about__card_ceo {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.sub-philosophy__inner {
  max-width: 1000px;
  padding: 0 35px;
  margin: 0 auto;
}
.sub-philosophy__mission {
  padding: 70px 0;
}
@media screen and (min-width: 821px) {
  .sub-philosophy__mission {
    padding: 170px 0 140px;
  }
}

.sub-philosophy__mission__title {
  font-size: 30px;
}
@media screen and (min-width: 821px) {
  .sub-philosophy__mission__title {
    font-size: 40px;
    padding-bottom: 70px;
  }
}

.sub-philosophy__mission__container {
  padding: 50px 0;
  border-bottom: 1px solid #a3a3a3;
}

.sub-philosophy__content__title {
  font-size: 20px;
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-philosophy__content__title {
    font-size: 25px;
  }
}

.sub-philosophy__content__description {
  line-height: 2.1;
  letter-spacing: 0.9px;
}

.sub-company__overview__inner {
  padding-top: 120px;
}

.sub-company__overview__title {
  padding-bottom: 50px;
  font-size: 30px;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__title {
    font-size: 40px;
  }
}

.sub-company__overview__block {
  padding: 30px 0;
  border-bottom: 1px solid #a3a3a3;
}
.sub-company__overview__block:first-of-type {
  border-top: 1px solid #a3a3a3;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__block {
    display: flex;
    align-items: center;
  }
}

.sub-company__overview__label {
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__label {
    padding-bottom: 0;
    flex-shrink: 0;
    min-width: 180px;
    text-align: left;
  }
}

.sub-company__overview__text {
  line-height: 2.1;
  letter-spacing: 0.9px;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__text {
    flex-shrink: 1;
    flex-grow: 1;
  }
}

/* ========================================
コンタクト
   ======================================== */
.sub-fv__image__container__contact {
  background-image: url(image/s_pc_image_contactfv.png);
  width: 100%;
  height: 200px; /* SPでの高さを指定 */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  border-radius: 20px;
}
@media screen and (min-width: 821px) {
  .sub-fv__image__container__contact {
    height: 500px;
    margin-bottom: 80px;
  }
}

.sub-contact {
  background: none;
}

.sub-contact__inner {
  padding: 50px 15px 0px;
}
@media screen and (min-width: 821px) {
  .sub-contact__inner {
    padding: 50px 15px 0px;
  }
}

.sub-contact__description {
  max-width: 1000px;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.9px;
  font-size: 16px;
  padding-bottom: 50px;
  margin: 0 auto;
  padding: 0 20px 50px;
  color: #6a6a6a;
}
@media screen and (min-width: 821px) {
  .sub-contact__description {
    padding-bottom: 80px;
  }
}

.contact__form__group__wrapper {
  padding: 55px 30px;
  border-radius: 20px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  color: #6a6a6a;
  margin-bottom: 50px;
}
@media screen and (min-width: 821px) {
  .contact__form__group__wrapper {
    padding: 85px 100px;
  }
}

.contact__form__area,
.contact__form__area-message {
  background: #f7f7f7;
  color: #333;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.contact__form__group-radio {
  margin-bottom: 30px;
  display: flex;
}

.contact__form__group-radio p {
  display: flex;
  align-items: flex-start;
  gap: 0px;
}

.contact__form__group p {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .contact__form__group p {
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }
}

.contact__form__label {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  margin-right: 28px;
}
@media screen and (min-width: 821px) {
  .contact__form__label {
    min-width: 230px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 821px) {
  .contact__form__area,
  .contact__form__area-message {
    flex: 1;
    width: 100%;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 821px) {
  .contact__form__group:last-child p {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    flex: 1;
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 821px) {
  .contact__form__group:last-child p .contact__form__area-message {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    display: block;
  }
}

/* ラジオボタン群のコンテナを縦並びに設定 */
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

/* 各ラジオボタンとそのラベルを横並びに */
.wpcf7-list-item {
  margin: 0;
  padding: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #888888;
  font-weight: 500;
}

.wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  border: 2px solid #cbcbcb;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  vertical-align: middle;
}

.wpcf7-list-item input[type=radio]:checked {
  border-color: #cbcbcb;
  background-color: #fff;
}

.wpcf7-list-item input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #cbcbcb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* チェックボックスをカスタムデザインに */
.contact__form__policy p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contact__form__policy > p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.contact__form__policy__check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #a3a3a3;
  border-radius: 2px;
  background: #fff;
  margin-right: 10px;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
  display: inline-block;
}

/* チェックマークをinput自身の中に中央表示 */
.contact__form__policy__check:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 8px;
  border-left: 2px solid #a3a3a3;
  border-bottom: 2px solid #a3a3a3;
  transform: translate(-50%, -65%) rotate(-50deg);
  border-radius: 0;
  pointer-events: none;
}

.contact__form__policy__check:checked {
  border-color: #a3a3a3;
  background-color: #fff;
}

/* ラベルの配置と下線 */
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 28px;
  color: #a3a3a3;
  cursor: pointer;
}

.wpcf7-list-item-label {
  font-size: 14px;
  color: #6a6a6a !important;
  padding-bottom: 2px;
  display: inline-block;
}

.wpcf7-list-item-label a {
  color: #6a6a6a;
  text-decoration: none;
  border-bottom: 1px solid #6a6a6a;
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.wpcf7-list-item-label a:hover {
  color: var(--accent-color, #a3a3a3);
  border-bottom: 3px solid var(--accent-color, #a3a3a3);
}

.wpcf7-submit {
  margin: 0 auto;
  margin-bottom: 80px;
  margin-top: 33px;
}

.contact-bth-more__text {
  margin-left: 42px;
}

/* ========================================
   プライバシーポリシー
   ======================================== */
.privacy__inner {
  padding: 40px 35px 0px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .privacy__inner {
    padding: 280px 35px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .privacy__inner {
    padding: 280px 0 0;
  }
}

.privacy__sub__title {
  text-align: center;
  padding-bottom: 15px;
}
@media screen and (min-width: 821px) {
  .privacy__sub__title {
    padding-bottom: 35px;
    font-size: 20px;
  }
}

.privacy__title {
  text-align: center;
  font-size: 25px;
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .privacy__title {
    font-size: 40px;
    padding-bottom: 140px;
  }
}

.privacy__description {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 2.1;
  letter-spacing: 0.9px;
  padding-bottom: 50px;
}

@media screen and (min-width: 821px) {
  .privacy__container {
    padding-bottom: 70px;
  }
}

.privacy__content {
  line-height: 2.1;
  padding-bottom: 50px;
}

.privacy__content__title {
  font-size: 16px;
  padding-bottom: 10px;
}

.privacy__content__text {
  line-height: 2.1;
  letter-spacing: 0.9px;
}

.custom-margin {
  margin-bottom: 10px;
  line-height: 2.1;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-top: 5.2px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  margin-right: 16px;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  transform: rotate(-35deg);
  transform-origin: 0.5px 50%;
}

.privacy__btn {
  margin: 0 auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .privacy__btn {
    margin-bottom: 180px;
  }
}

/* ========================================
   送信確認
   ======================================== */
.contact-btn__wrapper p {
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (min-width: 821px) {
  .contact-btn__wrapper p {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
}

.confirm-btn2 {
  margin: 0 auto;
  margin-bottom: 50px;
}

.sub-contact_send__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 15px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.sub-contact_send__title {
  padding-bottom: 30px;
}

.sub-contact_send__description {
  padding-bottom: 120px;
}

/* ========================================
   single
   ======================================== */
.sub-news-detail-fv__inner {
  padding: 100px 35px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .sub-news-detail-fv__inner {
    padding: 180px 0px 80px;
  }
}

.sub-news-detail-fv__image__container {
  text-align: center;
}

.sub-news-detail-fv__label {
  padding-bottom: 10px;
}

.sub-news-detail-fv__title {
  font-size: 30px;
  padding-bottom: 80px;
}

.sub-news-detail__date {
  padding-bottom: 20px;
}

.sub-news-detail__title {
  padding-bottom: 30px;
}

.sub-news-detail__content {
  padding-bottom: 100px;
}

/* ========================================
  アーカイブ
   ======================================== */
.sub-archive-fv__inner {
  padding: 100px 35px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .sub-archive-fv__inner {
    padding: 180px 0px 80px;
  }
}

.sub-archive-fv__title {
  font-size: 30px;
  padding-bottom: 50px;
}

.sub-news-archive {
  text-align: left;
}

.sub-news-item__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 50px;
}
@media screen and (min-width: 821px) {
  .sub-news-item__content {
    flex-direction: row;
    gap: 50px;
    align-items: center;
    padding-bottom: 15px;
  }
}

.sub-news-item:last-child .sub-news-item__content {
  margin-bottom: 100px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background-color: #f7f7f7;
  color: #6a6a6a;
  font-size: 14px;
  letter-spacing: 0.8px;
  border-radius: 30px 30px 0 0;
  margin: 20px 15px 0 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 821px) {
  .footer {
    background-color: #f7f7f7;
    margin: 0;
    border-radius: 30px 30px 0 0;
    margin: 50px 50px 0 50px;
  }
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0 40px 0;
}
@media screen and (min-width: 821px) {
  .footer__inner {
    padding: 108px 30px 40px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__inner {
    padding: 108px 0 40px 0;
  }
}

/* --- SP Styles (Default) --- */
.footer__top,
.footer__divider {
  display: none;
}

.footer__logo--sp {
  margin-bottom: 40px;
  text-align: center;
}
.footer__logo--sp img {
  width: 120px;
}

.footer__bottom .btn-wrapper {
  margin-bottom: 30px;
}

.footer__shop-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  text-align: center;
}
.footer__shop-links a {
  display: inline-block;
  color: #6a6a6a;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  transition: opacity 0.3s;
}
.footer__shop-links a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 821px) {
  .footer__shop-links a {
    padding-bottom: 3px;
  }
}

.footer__social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #a3a3a3;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.footer__icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.footer__icon img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__icon.footer__icon--ramu span {
  font-size: 12px;
  margin-top: 4px;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 1px;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  color: #a3a3a3;
  font-family: "Urbanist", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 40px;
}

/* --- Tablet & PC Styles --- */
@media screen and (min-width: 821px) {
  .footer__logo--sp {
    display: none;
  }
  /* 上段レイアウト */
  .footer__top {
    display: grid;
    grid-template-columns: auto 89px 1fr 1fr 1.5fr;
    gap: 30px;
    text-align: left;
  }
  .footer__logo img {
    width: 170px;
    height: 193px;
  }
  .footer__logo .footer__brand-name {
    display: block;
    font-size: 24px;
    letter-spacing: 0.2em;
    font-weight: 300;
    margin: 8px 0 5px;
    color: #666;
  }
  .footer__logo .footer__brand-subtitle {
    display: block;
    font-size: 9px;
    letter-spacing: 0.1em;
    margin: 0;
  }
  .footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer__nav a {
    color: #6a6a6a;
    font-size: 20px;
    text-transform: uppercase;
  }
  .footer__nav a:hover {
    opacity: 0.7;
  }
  .footer__logo {
    grid-column: 1/2;
  }
  .footer__nav--1 {
    grid-column: 3/4;
  }
  .footer__nav--2 {
    grid-column: 4/5;
  }
  .footer__nav--3 {
    grid-column: 5/6;
  }
  .footer__sub-item a {
    text-transform: none;
    font-size: 13px;
  }
}
@media screen and (min-width: 821px) {
  .footer__divider {
    display: block;
    border: none;
    border-top: 1px solid #a3a3a3;
    max-width: 1000px;
    margin: 40px auto;
    margin-bottom: 75px;
    width: calc(100% - 60px);
  }
}

/* 下段レイアウト */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 821px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__bottom {
    padding: 0;
  }
}

@media screen and (min-width: 821px) {
  .footer__left-group {
    display: flex;
    align-items: center;
  }
  .footer__left-group .btn-wrapper {
    margin-right: 50px;
    margin-bottom: 0;
    width: auto;
  }
  .footer__left-group .footer__shop-links {
    margin: 0;
  }
}
.footer__bottom .btn-wrapper {
  margin: 0;
  width: auto;
}
@media screen and (min-width: 821px) {
  .footer__bottom .btn-wrapper {
    margin-right: 0;
    margin-bottom: 0;
    width: auto;
  }
}

.footer__shop-links {
  margin-top: 25px;
}
@media screen and (min-width: 821px) {
  .footer__shop-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__shop-links a {
  border-bottom: 1px solid #ccc;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__shop-links a {
  border-bottom: 1px solid #ccc;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 821px) {
  .footer__left-group .footer__shop-links {
    margin: 0 0 0 20px;
  }
}
@media screen and (min-width: 1080px) {
  .footer__left-group .footer__shop-links {
    margin-left: 73px;
  }
}

.footer__social-icons {
  margin: 0;
  gap: 15px;
}

.footer__copyright {
  margin-top: 50px;
  text-align: center;
}

.news-card__arrow {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 1px;
  margin-top: 5.2px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  margin-bottom: 5px;
}

.news-card__arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #a3a3a3;
  transform: rotate(35deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

@media screen and (min-width: 821px) {
  .footer__nav--3 ul {
    gap: 20px;
  }
}
#contact-form-container {
  transition: opacity 0.3s ease-in-out;
}/*# sourceMappingURL=sub.css.map */