@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

:root {
    --line-cr: #07b53b;
}

body {
  color: #3F3636;
}

/* -------------------------------------------- */
/* ------------- Zen Old Mincho --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ----------- Zen Kaku Gothic New ------------ */
/* -------------------------------------------- */
body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (min-width: 780px) {
  .body-wrapper {
    display: flex;
  }
}

@media screen and (min-width: 780px) {
  .main {
    width: calc(100% - 18.75rem);
    margin-left: 18.75rem;
  }
}
@media screen and (min-width: 1500px) {
  .main {
    width: calc(100% - 25rem);
    margin-left: 25rem;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.7777777778vw;
  }
}
@media (min-width: 900px) {
  html {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-inline: auto;
  max-width: 37.5rem;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 950px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (min-width: 1920px) {
  .inner {
    max-width: 1250px;
  }
}

.footer {
  background-color: #453732;
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .footer {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer {
    padding-block: 6rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 780px) {
  .footer__inner {
    flex-direction: row;
    gap: 5.625rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer__inner {
    gap: 7.5rem;
  }
}

.footer__brand {
  min-width: 15.375rem;
}
@media screen and (min-width: 1500px) {
  .footer__brand {
    min-width: 20.5rem;
  }
}

.footer__logo {
  max-width: 6rem;
}
@media screen and (min-width: 1500px) {
  .footer__logo {
    max-width: 8rem;
  }
}

.footer__address {
  margin-top: 1.5rem;
  color: #FFFFFF;
  font-size: 0.703125rem;
  line-height: 200%;
  font-style: normal;
}
@media screen and (min-width: 780px) {
  .footer__address {
    margin-top: 1.3125rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer__address {
    font-size: 0.9375rem;
    margin-top: 1.75rem;
  }
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.125rem;
}
@media screen and (min-width: 1500px) {
  .footer__list {
    gap: 1.5rem;
  }
}

.footer__item {
  position: relative;
  padding-left: 1.125rem;
}
@media screen and (min-width: 1500px) {
  .footer__item {
    padding-left: 1.5rem;
  }
}

.footer__item::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/nav-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.5625rem;
  height: 0.5625rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1500px) {
  .footer__item::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.footer__item-link {
  color: #FFFFFF;
  font-size: 0.95rem;
  line-height: 100%;
  letter-spacing: 0.09em;
}
@media screen and (min-width: 1500px) {
  .footer__item-link {
    font-size: 1.1rem;
  }
}

.footer__copy {
  margin-top: 2.15625rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 0.65625rem;
  line-height: 200%;
}
@media screen and (min-width: 1500px) {
  .footer__copy {
    margin-top: 2.875rem;
    font-size: 0.875rem;
  }
}

.footer__sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #A63A4F;
  z-index: 1000;
}
.footer__sticky .main {
  display: flex;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 780px) {
  .footer__sticky .main {
    padding: 1.25rem;
    justify-content: space-between;
  }
}
.footer__sticky .contact-cta__tel {
  margin-top: 0;
  display: none;
}
@media screen and (min-width: 780px) {
  .footer__sticky .contact-cta__tel {
    display: flex;
    font-size: 1.5rem;
  }
}
.footer__sticky .contact-cta__tel a {
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  font-weight: 600;
  align-items: center;
}
@media screen and (min-width: 780px) {
  .footer__sticky .contact-cta__tel a {
    font-size: clamp(20px, 2.4vw, 60px);
  }
}
.footer__sticky .contact-cta__tel a span {
  display: none;
}
@media screen and (min-width: 1500px) {
  .footer__sticky .contact-cta__tel a span {
    display: block;
  }
}
.footer__sticky .contact-cta__tel-icon {
  width: 1.5rem;
  margin-right: 0.625rem;
}
@media screen and (min-width: 780px) {
  .footer__sticky .contact-cta__tel-icon {
    width: 2.875rem;
  }
}
.footer__sticky .contact-cta__hours {
  color: #FFFFFF;
  display: none;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 780px) {
  .footer__sticky .contact-cta__hours {
    display: block;
    font-size: 0.875rem;
  }
}
.footer__sticky .contact-cta__hours .yellow {
  color: #FDF0D7;
}
.footer__sticky .cta__link {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 780px) {
  .footer__sticky .cta__link {
    font-size: 1.40625rem;
  }
}
@media screen and (min-width: 1500px) {
  .footer__sticky .cta__link {
    font-size: 1.875rem;
  }
}
.footer__sticky .cta__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 780px) {
  .footer__sticky .cta__link a {
    min-width: 12.5rem;
  }
}
.footer__sticky .cta__link__wrap {
  display: flex;
  gap: 1.25rem;
}
.footer__sticky .cta-first__link a {
  color: #A63A4F;
  background: #FFFFFF;
  padding: 0.3125rem 1.875rem 0.3125rem 0.3125rem;
  position: relative;
}
@media screen and (min-width: 1500px) {
  .footer__sticky .cta-first__link a {
    padding: 1.5625rem 2.5rem 1.5625rem 1.25rem;
  }
}
.footer__sticky .cta-first__link a::before {
  content: "";
  width: 0.875rem;
  height: 0.9375rem;
  background-image: url(../image/icon/arrow-red.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.footer__sticky .cta-second__link a {
  background: var(--line-cr);
  color: #FFFFFF;
  position: relative;
  border: 2px solid #FFFFFF;
  padding: 0.3125rem;
}
@media screen and (min-width: 1500px) {
  .footer__sticky .cta-second__link a {
    padding: 0.625rem 0.375rem;
    border: 5px solid #FFFFFF;
  }
}
.footer__sticky .cta-second__link a span {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #FFFFFF;
  font-weight: 600;
  border-radius: 30px;
  color: #A63A4F;
  font-size: 0.625rem;
  width: 95%;
  padding: 0 0.1875rem;
}
@media screen and (min-width: 780px) {
  .footer__sticky .cta-second__link a span {
    font-size: 1.125rem;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  padding-top: 0.625rem;
  overflow-x: clip;
  background-color: #F9F0EB;
  box-shadow: inset 0px 0px 2.5rem 0px rgb(247, 233, 231), 0 0 1.25rem rgba(46, 11, 11, 0.15);
}
@media screen and (min-width: 780px) {
  .header {
    width: 18.75rem;
    height: 100dvh;
    padding-top: initial;
  }
}
@media screen and (min-width: 1500px) {
  .header {
    width: 25rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px 10px 16px;
}
@media screen and (min-width: 780px) {
  .header__inner {
    margin-top: 3rem;
    display: block;
    padding: 0 15px 0 16px;
  }
}
@media screen and (min-width: 1500px) {
  .header__inner {
    margin-top: 4rem;
  }
}

.header__logo {
  max-width: 11.25rem;
  z-index: 9997;
}
@media screen and (min-width: 780px) {
  .header__logo {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1500px) {
  .header__logo {
    max-width: 15rem;
  }
}

.header__nav {
  padding-left: 2.578125rem;
}
@media screen and (min-width: 1500px) {
  .header__nav {
    padding-left: 3.4375rem;
  }
}

.header__nav-items {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.40625rem;
}
@media screen and (min-width: 1500px) {
  .header__nav-items {
    margin-top: 3rem;
    gap: 1.875rem;
  }
}

.header__nav-item {
  position: relative;
  font-size: 0.9375rem;
  line-height: 100%;
  letter-spacing: 0.09em;
  padding-left: 1.3125rem;
}
@media screen and (min-width: 1500px) {
  .header__nav-item {
    font-size: 1.25rem;
    padding-left: 1.75rem;
  }
}

.header__nav-item::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/nav-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 1.125rem;
  top: 0;
  left: 0;
}
@media screen and (min-width: 1500px) {
  .header__nav-item::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.header__nav-link {
  color: #3F3636;
}

.header__lang-switch {
  margin-top: 2.25rem;
}
@media screen and (min-width: 1500px) {
  .header__lang-switch {
    margin-top: 3rem;
  }
}

.header__contact-button.button {
  padding-block: 0.75rem;
  width: 11.25rem;
  margin-top: 2.25rem;
}
@media screen and (min-width: 1500px) {
  .header__contact-button.button {
    padding-block: 1rem;
    width: 15rem;
    margin-top: 2.625rem;
  }
}

.header__contact-button.button a {
  font-size: 0.9375rem;
}
@media screen and (min-width: 1500px) {
  .header__contact-button.button a {
    font-size: 1.25rem;
  }
}

.open-btn {
  width: 2.5rem;
  z-index: 9999;
  padding: 0;
  height: 1.625rem;
  padding-block: 0.375rem;
}

.open-btn span {
  display: block;
  position: relative;
  background-color: #3F3636;
  height: 0.125rem;
  width: 100%;
  transition: rotate 0.3s 0s ease;
}

.open-btn span:nth-child(2) {
  margin-top: 0.75rem;
  width: 1.5rem;
  margin-left: auto;
}

.open-btn.is-open span:nth-child(1) {
  top: 0.4375rem;
  rotate: 19.29deg;
}

.open-btn.is-open span:nth-child(2) {
  top: -0.4375rem;
  rotate: -19.29deg;
  width: 100%;
}

.sp-nav {
  background-color: #F9F0EB;
  width: 100%;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9996;
  translate: 100% 0;
  transition: translate 0.3s;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 4rem;
}

.sp-nav.is-open {
  translate: 0;
}

.sp-nav__items {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

.sp-nav__item {
  text-align: center;
  font-size: 1.25rem;
  line-height: 150%;
}

.sp-nav__link {
  position: relative;
  color: #3F3636;
}

.sp-nav__link::before {
  content: "";
  position: absolute;
  background-image: url(../image/icon/nav-icon.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 1.125rem;
  top: 50%;
  left: -1.75rem;
  transform: translateY(-50%);
}

.sp-nav__lang-switch {
  margin-top: 1.875rem;
}

.section__title-main {
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 120%;
  display: block;
}
@media screen and (min-width: 780px) {
  .section__title-main {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .section__title-main {
    font-size: 3rem;
  }
}

.section__title-sub {
  margin-top: 1.125rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
  color: #923737;
  display: block;
}
@media screen and (min-width: 780px) {
  .section__title-sub {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .section__title-sub {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
}

.section__title-desc {
  margin-top: 1.21875rem;
  font-size: 0.9375rem;
  line-height: 200%;
  display: block;
}
@media screen and (min-width: 1500px) {
  .section__title-desc {
    margin-top: 1.625rem;
    font-size: 1.25rem;
  }
}

.section__title-news {
  color: #FFFFFF;
}

.section__page-title {
  font-weight: 600;
  font-size: 2rem;
  line-height: 120%;
  color: #A63A4F;
}
@media screen and (min-width: 780px) {
  .section__page-title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .section__page-title {
    font-size: 3rem;
  }
}

.section__page-lead {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 200%;
  margin-top: 1.734375rem;
}
@media screen and (min-width: 1500px) {
  .section__page-lead {
    font-size: 1.25rem;
    margin-top: 2.3125rem;
  }
}

.fv {
  background-image: url(../image/fv/fv-sp.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4rem 2.5rem;
  padding-left: 1.25rem;
  margin-top: 3.4375rem;
  aspect-ratio: 700/1000;
}
@media screen and (min-width: 780px) {
  .fv {
    background-image: url(../image/fv/fv.jpg);
    aspect-ratio: initial;
    padding-block: 14.484375rem 7.875rem;
    padding-left: 8.25rem;
    height: 100dvh;
    margin-top: initial;
  }
}
@media screen and (min-width: 1500px) {
  .fv {
    padding-block: 19.3125rem 10.5rem;
    padding-left: 11rem;
  }
}

@supports (background-image: url(../image/fv/fv-sp.webp)) {
  .fv {
    background-image: url(../image/fv/fv-sp.webp);
  }
}
@supports (background-image: url(../image/fv/fv.webp)) {
  @media screen and (min-width: 780px) {
    .fv {
      background-image: url(../image/fv/fv.webp);
    }
  }
}
.fv__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 780px) {
  .fv__title {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 1500px) {
  .fv__title {
    font-size: 5rem;
  }
}

.fv__title-highlight {
  color: #A63A4F;
  font-size: 1.875rem;
}
@media screen and (min-width: 780px) {
  .fv__title-highlight {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .fv__title-highlight {
    font-size: 6rem;
  }
}

.fv__lead {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: #923737;
}
@media screen and (min-width: 780px) {
  .fv__lead {
    margin-top: 1.59375rem;
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .fv__lead {
    margin-top: 2.125rem;
    font-size: 2.25rem;
  }
}

.fv__desc {
  margin-top: 3rem;
  font-weight: 600;
  font-size: 3.7vw;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .fv__desc {
    margin-top: 2.109375rem;
    font-size: 1.03125rem;
  }
}
@media screen and (min-width: 1500px) {
  .fv__desc {
    margin-top: 2.8125rem;
    font-size: 1.375rem;
  }
}

.button {
  position: relative;
  background-color: #A63A4F;
  padding-block: 1.125rem;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 1500px) {
  .button {
    padding-block: 1.5rem;
  }
}

.button a {
  display: inline-block;
  position: relative;
  color: #FFFFFF;
  font-size: 1.125rem;
}
@media screen and (min-width: 1500px) {
  .button a {
    font-size: 1.5rem;
  }
}

.button a::after {
  content: "";
  position: absolute;
  background-image: url(../image/icon/arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.21875rem;
  height: 1.21875rem;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 1500px) {
  .button a::after {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.reason {
  padding-block: 3.75rem;
  background-image: url(../image/img/section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .reason {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .reason {
    padding-block: 6rem;
  }
}

.reason__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.40625rem;
}
@media screen and (min-width: 780px) {
  .reason__list {
    margin-top: 2.53125rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .reason__list {
    gap: 1.875rem;
    margin-top: 3.375rem;
  }
}

.reason__item {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 10rem;
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
}
@media screen and (min-width: 780px) {
  .reason__item {
    min-height: 13.171875rem;
  }
}
@media screen and (min-width: 1500px) {
  .reason__item {
    min-height: 17.5625rem;
  }
}

.reason__item::before {
  content: "";
  position: absolute;
  background-image: url(../image/img/reason-icon.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 3.75rem;
  height: 3.75rem;
  top: -1.40625rem;
  left: -1.03125rem;
}
@media screen and (min-width: 780px) {
  .reason__item::before {
    width: 4.875rem;
    height: 4.875rem;
  }
}
@media screen and (min-width: 1500px) {
  .reason__item::before {
    width: 6.5rem;
    height: 6.5rem;
    top: -1.875rem;
    left: -1.375rem;
  }
}

.reason__heading {
  font-weight: 600;
  font-size: 1.5rem;
}
@media screen and (min-width: 780px) {
  .reason__heading {
    font-size: 1.78125rem;
  }
}
@media screen and (min-width: 1500px) {
  .reason__heading {
    font-size: 2.375rem;
  }
}

.reason__text {
  font-size: 0.84375rem;
  line-height: 160%;
  color: #796464;
}
@media screen and (min-width: 1500px) {
  .reason__text {
    font-size: 1.125rem;
  }
}

.reason__item--pink {
  background-image: url(../image/img/reason-pink.jpg);
}

@supports (background-image: url(../image/img/reason-pink.webp)) {
  .reason__item--pink {
    background-image: url(../image/img/reason-pink.webp);
  }
}
.reason__item--blue {
  background-image: url(../image/img/reason-blue.jpg);
}

@supports (background-image: url(../image/img/reason-blue.webp)) {
  .reason__item--blue {
    background-image: url(../image/img/reason-blue.webp);
  }
}
.reason__item--yellow {
  background-image: url(../image/img/reason-yellow.jpg);
}

@supports (background-image: url(../image/img/reason-yellow.webp)) {
  .reason__item--yellow {
    background-image: url(../image/img/reason-yellow.webp);
  }
}
.reason__item--purple {
  background-image: url(../image/img/reason-purple.jpg);
}

@supports (background-image: url(../image/img/reason-purple.webp)) {
  .reason__item--purple {
    background-image: url(../image/img/reason-purple.webp);
  }
}
.reason__item--green {
  background-image: url(../image/img/reason-green.jpg);
}

@supports (background-image: url(../image/img/reason-green.webp)) {
  .reason__item--green {
    background-image: url(../image/img/reason-green.webp);
  }
}
.reason__item--orange {
  background-image: url(../image/img/reason-orange.jpg);
}

@supports (background-image: url(../image/img/reason-orange.webp)) {
  .reason__item--orange {
    background-image: url(../image/img/reason-orange.webp);
  }
}
.vision {
  background-image: url(../image/img/vision-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .vision {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .vision {
    padding-block: 6rem;
  }
}

.vision__button {
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .vision__button {
    width: 21.5625rem;
    margin-top: 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .vision__button {
    width: 28.75rem;
    margin-top: 3.125rem;
  }
}

.purchase {
  background-image: url(../image/img/section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 780px) {
  .purchase {
    padding-block: 4.5rem 5.625rem;
  }
}
@media screen and (min-width: 1500px) {
  .purchase {
    padding-block: 6rem 7.5rem;
  }
}

.purchase__list {
  margin-top: 2.8125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.25rem;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
}
@media screen and (min-width: 780px) {
  .purchase__list {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 3rem;
    row-gap: 2.625rem;
    -moz-column-gap: 7.3125rem;
         column-gap: 7.3125rem;
  }
}
@media screen and (min-width: 1500px) {
  .purchase__list {
    margin-top: 4rem;
    row-gap: 3.5rem;
    -moz-column-gap: 9.75rem;
         column-gap: 9.75rem;
  }
}

.purchase__figure {
  display: block;
}

.purchase__figure img {
  border-radius: 50%;
}

.purchase__name {
  margin-top: 0.75rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375rem;
  line-height: 200%;
  background-color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 1500px) {
  .purchase__name {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}

.brands {
  background: rgba(242, 238, 217, 0.4);
  position: relative;
  overflow-x: clip;
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .brands {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .brands {
    padding-block: 6rem;
  }
}

.top-item__list {
  position: relative;
}
.top-item__list .archive-item__list {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 780px) {
  .top-item__list .archive-item__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .top-item__list .archive-item__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.top-item__list::after {
  content: "";
  position: absolute;
  background-image: url(../image/img/brands-icon.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 9.375rem;
  height: 9.375rem;
  transform: rotate(55deg);
  top: -4.375rem;
  right: 0.375rem;
}
@media screen and (min-width: 780px) {
  .top-item__list::after {
    width: 14.203125rem;
    height: 13.640625rem;
    top: -7.875rem;
    right: 2.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .top-item__list::after {
    width: 18.9375rem;
    height: 18.1875rem;
  }
}

.brands__name {
  margin-top: 0.609375rem;
  font-size: 0.875rem;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .brands__name {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .brands__name {
    margin-top: 0.8125rem;
    font-size: 1.5rem;
  }
}

.news {
  background-image: url(../image/img/news-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .news {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .news {
    padding-block: 6rem;
  }
}

.news__list {
  margin-top: 1.875rem;
  background-color: #FCF6F5;
  padding: 2.625rem;
}
@media screen and (min-width: 1500px) {
  .news__list {
    margin-top: 2.5rem;
    padding: 3.5rem;
  }
}

.news__item {
  padding-block: 1.125rem;
}
@media screen and (min-width: 1500px) {
  .news__item {
    padding-block: 1.5rem;
  }
}

.news__item:first-child {
  padding-top: initial;
}

.news__item:last-child {
  padding-bottom: initial;
}

.news__item:not(:last-child) {
  border-bottom: 1px solid #A58787;
}

.news__link {
  font-size: 0.84375rem;
  line-height: 200%;
}
@media screen and (min-width: 1500px) {
  .news__link {
    font-size: 1.125rem;
  }
}

.news__date {
  color: #A63A4F;
}

.news__title {
  color: #3F3636;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1500px) {
  .news__title {
    padding-left: 2rem;
  }
}

.news__button {
  margin-top: 3rem;
  width: 21.5625rem;
  background-color: #3F3636;
}
@media screen and (min-width: 1500px) {
  .news__button {
    margin-top: 4rem;
    width: 28.75rem;
  }
}

.contact-cta {
  background-image: url(../image/img/contact-cta-bg-sp.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 13.375rem 12.875rem;
}
@media screen and (min-width: 780px) {
  .contact-cta {
    background-image: url(../image/img/contact-cta-bg.jpg);
    padding-block: 4.5rem;
    background-size: cover;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta {
    padding-block: 6rem;
  }
}

.contact-cta__content {
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .contact-cta__content {
    max-width: 25.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__content {
    max-width: 34.25rem;
  }
}

.contact-cta__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 120%;
}
@media screen and (min-width: 780px) {
  .contact-cta__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__title {
    font-size: 3rem;
  }
}

.contact-cta__tel {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 120%;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 780px) {
  .contact-cta__tel {
    margin-top: 0.609375rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__tel {
    margin-top: 0.8125rem;
    font-size: 4rem;
  }
}

.contact-cta__tel-icon {
  width: 2.25rem;
}
@media screen and (min-width: 780px) {
  .contact-cta__tel-icon {
    width: 2.71875rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__tel-icon {
    width: 3.625rem;
  }
}

.contact-cta__tel a {
  color: #3F3636;
}

.contact-cta__hours {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .contact-cta__hours {
    margin-top: 0.84375rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__hours {
    font-size: 1.25rem;
    margin-top: 1.125rem;
  }
}

.contact-cta__button {
  margin-top: 1.5rem;
  width: 80%;
  padding-block: 0.875rem;
  font-size: 1.125rem;
}
@media screen and (min-width: 780px) {
  .contact-cta__button {
    margin-top: 3rem;
    width: 28.125rem;
    padding-block: 1.5rem;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__button {
    margin-top: 4rem;
    width: 37.5rem;
    padding-block: 2rem;
    font-size: 2rem;
  }
}

.contact-cta__button.button a {
  font-size: 1rem;
}
@media screen and (min-width: 780px) {
  .contact-cta__button.button a {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .contact-cta__button.button a {
    font-size: 2rem;
  }
}

.gtranslate_wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 780px) {
  .gtranslate_wrapper {
    padding-left: 2.203125rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1500px) {
  .gtranslate_wrapper {
    padding-left: 3.4375rem;
    gap: 0.375rem;
  }
}

a.glink {
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 0.09em;
  color: #A58787;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 1500px) {
  a.glink {
    font-size: 1rem;
    text-align: left;
  }
}

a.glink:nth-child(1) {
  order: 5;
}

a.glink:nth-child(2) {
  order: 3;
}

a.glink:nth-child(3) {
  order: 2;
}

a.glink:nth-child(4) {
  order: 1;
}

a.glink:nth-child(5) {
  order: 4;
}

a.glink.gt-current-lang {
  color: #FFFFFF;
  background-color: #A58787;
}

.pagination {
  margin-top: 4.078125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.65625rem;
}
@media screen and (min-width: 1500px) {
  .pagination {
    margin-top: 5.4375rem;
    gap: 0.875rem;
  }
}

.pagination__item {
  font-size: 0.9375rem;
  line-height: 200%;
}
@media screen and (min-width: 1500px) {
  .pagination__item {
    font-size: 1.25rem;
  }
}

.page-numbers {
  color: #3F3636;
}

.voice {
  background-image: url(../image/img/section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem;
}

@media screen and (min-width: 780px) {
  .voice {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .voice {
    padding-block: 6rem;
  }
}
.voice__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.40625rem;
}

@media screen and (min-width: 780px) {
  .voice__list {
    margin-top: 2.53125rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .voice__list {
    gap: 1.875rem;
    margin-top: 3.375rem;
  }
}
.voice__figure {
  display: block;
}

@media screen and (min-width: 1500px) {
  .voice__heading {
    margin-top: 1rem;
    font-size: 1.25rem;
  }
}
.voice__img {
  margin: 0.75rem 0;
  border-radius: 11px;
}

.voice__num {
  background: #A63A4F;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px 20px 0 0;
}

.voice__box {
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.3);
  border-radius: 0 10px 10px 10px;
}

.voice__heading {
  font-size: 0.9375rem;
  line-height: 200%;
  background-color: #FFFFFF;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.voice__author {
  text-align: right;
  margin-bottom: 1rem;
}

.voice__body {
  line-height: 200%;
  display: block;
}

.faq-top {
  background-image: url(../image/img/vision-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .faq-top {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top {
    padding-block: 6rem;
  }
}

.faq-top__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 780px) {
  .faq-top__list {
    margin-top: 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__list {
    margin-top: 3.125rem;
  }
}

/* 各FAQカード */
.faq-top__item {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 780px) {
  .faq-top__item {
    margin-bottom: 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__item {
    margin-bottom: 3.125rem;
  }
}

/* 質問・回答共通 --------------------- */
.faq-top__question,
.faq-top__answer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2.5rem 2.5rem 2.5rem 7.5rem;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.12);
}
@media screen and (min-width: 780px) {
  .faq-top__question,
  .faq-top__answer {
    padding: 1.875rem 1.875rem 1.875rem 5.625rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__question,
  .faq-top__answer {
    padding: 2.5rem 2.5rem 2.5rem 7.5rem;
  }
}

/* Q / A 丸アイコン */
.faq-top__question::before,
.faq-top__answer::before {
  content: "Q";
  position: absolute;
  left: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 780px) {
  .faq-top__question::before,
  .faq-top__answer::before {
    font-size: 1.6875rem;
    left: 1.40625rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__question::before,
  .faq-top__answer::before {
    left: 2.1875rem;
    font-size: 2.5rem;
  }
}

/* Q の色 */
.faq-top__question::before {
  background: #A63A4F;
}

/* A の色＆文字 */
.faq-top__answer::before {
  content: "A";
  background: #A58787;
}

/* 質問行（ボタン全体がクリック領域） */
.faq-top__question {
  cursor: pointer;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: #fff;
  text-align: left;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.faq-top__question:focus-visible {
  outline: 2px solid #A63A4F;
  outline-offset: 2px;
}

/* 質問テキスト */
.faq-top__question-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .faq-top__question-text {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__question-text {
    font-size: 1.25rem;
  }
}

/* 回答部分（下の帯） */
.faq-top__answer {
  background: #fff;
}

/* 回答テキスト */
.faq-top__answer-text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (min-width: 780px) {
  .faq-top__answer-text {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq-top__answer-text {
    font-size: 1rem;
  }
}

/* 右端の▼ボタン --------------------- */
.faq-top__question-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.faq-top__question-icon::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 2px solid #993042;
  border-bottom: 2px solid #993042;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* アコーディオン開閉 ------------------ */
/* 初期状態：回答を非表示 */
.faq-top__answer {
  display: none;
}

/* JSで .is-open を .faq-top__item につける想定 */
.faq-top__item.is-open .faq-top__answer {
  display: block;
  margin-top: 0.3125rem;
}

/* 開いているときは矢印を反転 */
.faq-top__item.is-open .faq-top__question-icon::before {
  transform: rotate(-135deg);
}

.about {
  background: url(../image/img/company-bg.jpg) repeat top center/100%;
}

.about__inner {
  max-width: 41.53125rem;
}
@media screen and (min-width: 1500px) {
  .about__inner {
    max-width: 55.375rem;
  }
}

.about__list {
  padding-block: 2.6875rem 2.5rem;
}
@media screen and (min-width: 780px) {
  .about__list {
    padding-block: 5.34375rem 5.015625rem;
  }
}
@media screen and (min-width: 1500px) {
  .about__list {
    padding-block: 7.125rem 6.6875rem;
  }
}

.about__row {
  display: flex;
  align-items: center;
  padding-block: 0.84375rem;
  padding-inline: 1.125rem 0.5625rem;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 1500px) {
  .about__row {
    padding-block: 1.125rem;
    padding-inline: 1.5rem 0.5625rem;
  }
}

.about__term {
  min-width: 6.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  color: #000000;
}
@media screen and (min-width: 780px) {
  .about__term {
    min-width: 11.9375rem;
  }
}
@media screen and (min-width: 1500px) {
  .about__term {
    font-size: 1.25rem;
  }
}

.about__desc {
  font-weight: 600;
  font-size: 0.84375rem;
  line-height: 1.2;
  color: #000000;
}
@media screen and (min-width: 1500px) {
  .about__desc {
    font-size: 1.125rem;
  }
}

.about__desc-link {
  color: #000000;
  text-decoration: none;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 57%;
  /* = height ÷ width × 100 */
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.greeting {
  padding-block: 3.75rem;
  background-image: url(../image/img/section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 780px) {
  .greeting {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .greeting {
    padding-block: 6rem;
  }
}

.greeting__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 780px) {
  .greeting__inner {
    flex-direction: row;
    gap: 2.859375rem;
  }
}
@media screen and (min-width: 1500px) {
  .greeting__inner {
    gap: 3.8125rem;
  }
}

.greeting__catch {
  font-family: "Yuji Syuku", serif;
  font-size: 5.5vw;
  font-weight: 600;
  margin-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .greeting__catch {
    margin-block: 3.984375rem;
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .greeting__catch {
    margin-block: 5.3125rem;
    font-size: 2.5rem;
  }
}

.greeting__desc {
  font-size: 0.875rem;
  line-height: 200%;
  text-indent: 1em;
}
.greeting__desc.greeting__desc__last {
  text-indent: 0;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 780px) {
  .greeting__desc {
    font-size: 0.9375rem;
  }
  .greeting__desc.greeting__desc__last {
    font-size: 1.3rem;
    text-align: left;
  }
}
@media screen and (min-width: 1500px) {
  .greeting__desc {
    font-size: 1.25rem;
  }
  .greeting__desc.greeting__desc__last {
    font-size: 1.5rem;
  }
}

.greeting__img {
  margin-block: 1.25rem 1.25rem;
  margin-top: 50px;
}
@media screen and (min-width: 780px) {
  .greeting__img {
    margin-block: 2.484375rem 2.34375rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1500px) {
  .greeting__img {
    margin-block: 3.3125rem 3.125rem;
  }
}

.greeting__img p {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 200%;
  text-align: right;
}
@media screen and (min-width: 780px) {
  .greeting__img p {
    margin-top: 2.34375rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .greeting__img p {
    font-size: 1.5rem;
    margin-top: 3.125rem;
  }
}

.page {
  background-image: url(../image/img/section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 4.125rem;
}
@media screen and (min-width: 780px) {
  .page {
    margin-top: initial;
  }
}

.page__title {
  background-image: url(../image/img/page-title-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 1.25rem 1.5rem;
  text-align: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 120%;
}
@media screen and (min-width: 780px) {
  .page__title {
    padding-block: 2.25rem;
    padding-left: 6.84375rem;
    font-size: 2.25rem;
    text-align: left;
  }
}
@media screen and (min-width: 1500px) {
  .page__title {
    padding-block: 2.25rem;
    padding-left: 9.125rem;
    font-size: 3rem;
  }
}

.job-description {
  margin-block: 3.125rem 4.4375rem;
}
@media screen and (min-width: 780px) {
  .job-description {
    margin-block: 3.515625rem 6.65625rem;
  }
}
@media screen and (min-width: 1500px) {
  .job-description {
    margin-block: 4.6875rem 8.875rem;
  }
}

.job-description__body {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.734375rem;
}
@media screen and (min-width: 780px) {
  .job-description__body {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 1.921875rem;
  }
}
@media screen and (min-width: 1500px) {
  .job-description__body {
    gap: 2.3125rem;
    margin-top: 2.5625rem;
  }
}

.job-description__row {
  display: flex;
  align-items: center;
  border: 1px solid #000000;
}

.job-description__term {
  min-width: 6.875rem;
  padding: 1.03125rem;
  padding-left: 0.9375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 120%;
  color: #000000;
}
@media screen and (min-width: 780px) {
  .job-description__term {
    min-width: 8.625rem;
  }
}
@media screen and (min-width: 1500px) {
  .job-description__term {
    min-width: 11.5rem;
    padding-block: 1.375rem;
    padding-left: 1.25rem;
    font-size: 1.25rem;
  }
}

.job-description__desc {
  border-left: 1px solid #000000;
  padding: 1.03125rem;
  padding-left: 1.265625rem;
  font-weight: 600;
  font-size: 0.84375rem;
  line-height: 120%;
  color: #000000;
  flex: 1; /* 残りの幅を全部使う */
}
@media screen and (min-width: 1500px) {
  .job-description__desc {
    padding-block: 1.375rem;
    padding-left: 1.6875rem;
    font-size: 1.125rem;
  }
}

.job-description__image {
  max-width: 22.921875rem;
  width: 100%;
  aspect-ratio: 489/454;
}
@media screen and (min-width: 1500px) {
  .job-description__image {
    max-width: 30.5625rem;
  }
}

.job-description__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.recruit {
  margin-block: 4.4375rem 3.75rem;
}
@media screen and (min-width: 780px) {
  .recruit {
    margin-block: 4.359375rem 5.671875rem;
  }
}
@media screen and (min-width: 1500px) {
  .recruit {
    margin-block: 5.8125rem 7.5625rem;
  }
}

.recruit__catch {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (min-width: 780px) {
  .recruit__catch {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .recruit__catch {
    font-size: 3rem;
  }
}

.recruit__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .recruit__text {
    margin-top: 1.03125rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1500px) {
  .recruit__text {
    margin-top: 1.375rem;
    font-size: 1.25rem;
  }
}

.faq {
  background-image: url(../image/img/faq-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-block: 3.4375rem 3.125rem;
}
@media screen and (min-width: 780px) {
  .faq {
    margin-block: 5.15625rem 4.734375rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq {
    margin-block: 6.875rem 6.3125rem;
  }
}

.faq__list {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.171875rem;
}
@media screen and (min-width: 780px) {
  .faq__list {
    margin-top: 2.578125rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq__list {
    margin-top: 3.4375rem;
    gap: 1.5625rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.js-faq__answer {
  animation: fadeIn 0.5s ease infinite;
}

.faq__question {
  padding-block: 0.9375rem;
  background-color: #A63A4F;
  padding-inline: 1.3125rem 1.078125rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 780px) {
  .faq__question {
    padding-block: 0.796875rem 1.171875rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq__question {
    padding-block: 1.0625rem 1.5625rem;
    padding-inline: 1.75rem 1.4375rem;
  }
}

.faq__question-text {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 780px) {
  .faq__question-text {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq__question-text {
    font-size: 1.75rem;
  }
}

.faq__answer {
  border: 2px solid #A63A4F;
  padding: 1.125rem;
}
@media screen and (min-width: 780px) {
  .faq__answer {
    padding: 1.40625rem 1.3125rem;
  }
}
@media screen and (min-width: 1500px) {
  .faq__answer {
    padding: 1.875rem 1.75rem;
  }
}

.faq__answer-text {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 100%;
  color: #000000;
}
@media screen and (min-width: 1500px) {
  .faq__answer-text {
    font-size: 1rem;
  }
}

.faq__icon {
  position: relative;
  width: 1.40625rem;
  height: 1.40625rem;
}
@media screen and (min-width: 1500px) {
  .faq__icon {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  display: block;
  height: 3px;
  width: 1.40625rem;
  top: 0.75rem;
}

.faq__icon::before {
  left: 0;
  transform: translateY(-50%);
}

.faq__icon::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: transform 0.5s;
}

/* アコーディオンが開いた時のスタイル */
.faq__item[open]:not([data-accordion-before-close]) .faq__icon::after {
  transform: translateY(-50%);
}

summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.form__container {
  background-image: url(../image/img/vision-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 3.6875rem;
}
@media screen and (min-width: 780px) {
  .form__container {
    padding-block: 5.53125rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__container {
    padding-block: 7.375rem;
  }
}

.form__grid {
  margin-top: 2.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.40625rem;
}
@media screen and (min-width: 780px) {
  .form__grid {
    margin-top: 3.1875rem;
    flex-direction: row;
  }
}
@media screen and (min-width: 1500px) {
  .form__grid {
    margin-top: 4.25rem;
    gap: 1.875rem;
  }
}

.form__card {
  background-color: #A63A4F;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  clip-path: polygon(4% 0, 96% 0, 100% 20%, 100% 80%, 96% 100%, 4% 100%, 0% 80%, 0% 20%);
}
@media screen and (min-width: 780px) {
  .form__card {
    width: 50%;
  }
}

.form__card--mail {
  padding-block: 1.25rem;
}
@media screen and (min-width: 780px) {
  .form__card--mail {
    padding-block: 0.84375rem 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__card--mail {
    padding-block: 1.125rem 3.125rem;
  }
}

.form__caption {
  font-size: 1.125rem;
  display: block;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (min-width: 780px) {
  .form__caption {
    font-size: 1.3125rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__caption {
    font-size: 1.75rem;
  }
}

.form__value {
  display: block;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.4583333333;
}
@media screen and (min-width: 780px) {
  .form__value {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__value {
    font-size: 3rem;
  }
}

.form__card--tel {
  padding-block: 0.84375rem 1.265625rem;
}
@media screen and (min-width: 1500px) {
  .form__card--tel {
    padding-block: 1.125rem 1.6875rem;
  }
}

.form__note {
  display: block;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.4375;
}
@media screen and (min-width: 1500px) {
  .form__note {
    font-size: 1rem;
  }
}

.form__block {
  margin-block: 5.75rem 3.75rem;
}
@media screen and (min-width: 780px) {
  .form__block {
    margin-block: 8.625rem 5.671875rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__block {
    margin-block: 11.5rem 7.5625rem;
  }
}

.form__block-inner {
  max-width: 53.671875rem;
}
@media screen and (min-width: 1500px) {
  .form__block-inner {
    max-width: 71.5625rem;
  }
}

.form__wrapper {
  background-color: #FFFFFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.9375rem;
  padding-inline: 1.75rem;
  padding-block: 2.75rem;
}
@media screen and (min-width: 780px) {
  .form__wrapper {
    padding-inline: 2.296875rem 2.109375rem;
    padding-block: 3.1875rem 4.078125rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__wrapper {
    padding-inline: 3.0625rem 2.8125rem;
    padding-block: 4.25rem 5.4375rem;
  }
}

.wpcf7-form {
  display: grid;
  gap: 2.1875rem;
}

.form__label {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (min-width: 1500px) {
  .form__label {
    font-size: 1.5rem;
  }
}

.form__require {
  margin-left: 0.5625rem;
  background-color: #A63A4F;
  padding: 0.421875rem 0.75rem;
  color: #FFFFFF;
  font-size: 0.75rem;
}
@media screen and (min-width: 1500px) {
  .form__require {
    padding: 0.5625rem 1rem;
    font-size: 1rem;
  }
}

.form__input {
  display: block;
  border: 2px solid #A63A4F;
  border-radius: 0.3125rem;
  background-color: #FFFFFF;
  width: 100%;
  margin-top: 0.65625rem;
  padding: 0.5rem 1.125rem;
}
@media screen and (min-width: 780px) {
  .form__input {
    padding: 1rem 1.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .form__input {
    margin-top: 0.875rem;
  }
}

.form__textarea {
  display: block;
  border: 2px solid #A63A4F;
  border-radius: 0.3125rem;
  background-color: #FFFFFF;
  width: 100%;
  margin-top: 0.65625rem;
  padding: 1rem 1.6875rem;
  max-height: 6.5625rem;
}
@media screen and (min-width: 1500px) {
  .form__textarea {
    margin-top: 0.875rem;
    max-height: 8.75rem;
  }
}

.form__row--agree {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (min-width: 1500px) {
  .form__row--agree {
    font-size: 1.25rem;
  }
}

.form__privacy-link {
  color: #3F3636;
}

.form__row--agree input {
  width: 0.984375rem;
  height: 0.984375rem;
}

.form__actions {
  width: 100%;
  margin-inline: auto;
  background-color: #A63A4F;
  border-radius: 2rem;
  padding: 0.125rem;
  box-shadow: 4px 4px 8px 0 rgba(119, 119, 119, 0.45);
  text-align: center;
  position: relative;
}
@media screen and (min-width: 780px) {
  .form__actions {
    width: 23.4375rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .form__actions {
    width: 31.25rem;
  }
}

.form__actions::after {
  content: "";
  position: absolute;
  background-image: url(../image/icon/arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.125rem;
  height: 1.125rem;
  top: 50%;
  right: 1.21875rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 1500px) {
  .form__actions::after {
    right: 1.625rem;
  }
}

.form__actions input {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 3;
}

.wpcf7-spinner {
  display: none;
}

.philosophy {
  margin-block: 4.4375rem 3.75rem;
}
@media screen and (min-width: 780px) {
  .philosophy {
    margin-block: 3.609375rem 5.671875rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy {
    margin-block: 4.8125rem 7.5625rem;
  }
}

.philosophy__catch {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 120%;
}
@media screen and (min-width: 780px) {
  .philosophy__catch {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy__catch {
    font-size: 3rem;
  }
}

.philosophy__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .philosophy__text {
    margin-top: 1.21875rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy__text {
    margin-top: 1.625rem;
    font-size: 1.25rem;
  }
}

.philosophy-blocks {
  margin-block: 3.75rem 3.5rem;
}
@media screen and (min-width: 780px) {
  .philosophy-blocks {
    margin-block: 5.578125rem 5.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks {
    margin-block: 7.4375rem 7rem;
  }
}

.philosophy-blocks__inner {
  gap: 3.9375rem;
  max-width: 60.46875rem;
  display: grid;
}
@media screen and (min-width: 780px) {
  .philosophy-blocks__inner {
    gap: 5.953125rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__inner {
    max-width: 80.625rem;
    gap: 7.9375rem;
  }
}

.philosophy-blocks__block {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 780px) {
  .philosophy-blocks__block {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.859375rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__block {
    gap: 3.8125rem;
  }
}

@media screen and (min-width: 780px) {
  .philosophy-blocks__block:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.philosophy-blocks__content {
  margin-top: 1.875rem;
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__content {
    margin-top: 2.5rem;
  }
}

.philosophy-blocks__title {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 120%;
  color: #A63A4F;
}
@media screen and (min-width: 780px) {
  .philosophy-blocks__title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__title {
    font-size: 3rem;
  }
}

.philosophy-blocks__text {
  margin-top: 1.5625rem;
  font-size: 0.9375rem;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .philosophy-blocks__text {
    margin-top: 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__text {
    margin-top: 3.125rem;
    font-size: 1.25rem;
  }
}

.philosophy-blocks__image {
  max-width: 22.921875rem;
  width: 100%;
}
@media screen and (min-width: 1500px) {
  .philosophy-blocks__image {
    max-width: 30.5625rem;
  }
}

.philosophy-blocks__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.values__container {
  background-image: url(../image/img/vision-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 2.75rem 2.3125rem;
}
@media screen and (min-width: 780px) {
  .values__container {
    padding-block: 4.171875rem 4.6875rem;
  }
}
@media screen and (min-width: 1500px) {
  .values__container {
    padding-block: 5.5625rem 4.6875rem;
  }
}

.values__inner {
  max-width: 60.46875rem;
}
@media screen and (min-width: 1500px) {
  .values__inner {
    max-width: 80.625rem;
  }
}

.values__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.265625rem;
}
@media screen and (min-width: 780px) {
  .values__list {
    margin-top: 3.046875rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .values__list {
    margin-top: 4.0625rem;
    gap: 1.6875rem;
  }
}

.values__item {
  background-color: #A63A4F;
  color: #FFFFFF;
  text-align: center;
  padding-block: 1.25rem 1.1875rem;
  clip-path: polygon(4% 0, 96% 0, 100% 13%, 100% 87%, 96% 100%, 4% 100%, 0 87%, 0 13%);
}
@media screen and (min-width: 780px) {
  .values__item {
    padding-block: 1.828125rem 1.78125rem;
  }
}
@media screen and (min-width: 1500px) {
  .values__item {
    padding-block: 2.4375rem 2.375rem;
  }
}

.values__heading {
  font-weight: 600;
  font-size: 1.3125rem;
  line-height: 1.4642857143;
}
@media screen and (min-width: 1500px) {
  .values__heading {
    font-size: 1.75rem;
  }
}

.values__text {
  margin-top: 0.703125rem;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.4375;
}
@media screen and (min-width: 1500px) {
  .values__text {
    margin-top: 0.9375rem;
    font-size: 1rem;
  }
}

.feature {
  margin-block: 5.25rem;
}
@media screen and (min-width: 1500px) {
  .feature {
    margin-block: 7rem;
  }
}

.feature__inner {
  max-width: 60.46875rem;
}
@media screen and (min-width: 1500px) {
  .feature__inner {
    max-width: 80.625rem;
  }
}

.feature__list {
  margin-top: 2.0625rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.265625rem;
}
@media screen and (min-width: 780px) {
  .feature__list {
    margin-top: 3.5625rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1500px) {
  .feature__list {
    margin-top: 4.75rem;
    gap: 1.6875rem;
  }
}

.feature__item {
  background-color: #A63A4F;
  text-align: center;
  padding-block: 1.5rem;
  margin-inline: initial;
}
@media screen and (min-width: 1500px) {
  .feature__item {
    padding-block: 2rem;
  }
}

.feature__link {
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.4583333333;
  color: #FFFFFF;
}
@media screen and (min-width: 1500px) {
  .feature__link {
    font-size: 1.5rem;
  }
}

.news-list {
  margin-block: 4.921875rem;
}
@media screen and (min-width: 1500px) {
  .news-list {
    margin-block: 6.5625rem;
  }
}

.news-list__inner {
  max-width: 59.53125rem;
}
@media screen and (min-width: 1500px) {
  .news-list__inner {
    max-width: 79.375rem;
  }
}

.news-list__item {
  padding-block: 2.0625rem 0.75rem;
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 1500px) {
  .news-list__item {
    padding-block: 2.75rem 1rem;
  }
}

.news-list__item:first-child {
  padding-top: initial;
}

.news-list__link {
  font-size: 0.9375rem;
  line-height: 200%;
}
@media screen and (min-width: 1500px) {
  .news-list__link {
    font-size: 1.25rem;
  }
}

.news-list__date {
  color: #FFFFFF;
  background-color: #A58787;
  padding: 0.515625rem 1.03125rem;
}
@media screen and (min-width: 1500px) {
  .news-list__date {
    padding: 0.6875rem 1.375rem;
  }
}

.news-list__title {
  color: #3F3636;
  margin-left: 1.734375rem;
}
@media screen and (min-width: 1500px) {
  .news-list__title {
    margin-left: 2.3125rem;
  }
}

.post {
  margin-block: 4.359375rem 4.734375rem;
}
@media screen and (min-width: 1500px) {
  .post {
    margin-block: 5.8125rem 6.3125rem;
  }
}

.post__inner {
  max-width: 61.59375rem;
}
@media screen and (min-width: 1500px) {
  .post__inner {
    max-width: 82.125rem;
  }
}

.post__title {
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 120%;
}
@media screen and (min-width: 1500px) {
  .post__title {
    font-size: 3rem;
  }
}

.post .wp-block-heading {
  margin-top: 2.578125rem;
  font-size: 1.5rem;
  line-height: 200%;
}
@media screen and (min-width: 1500px) {
  .post .wp-block-heading {
    margin-top: 3.4375rem;
    font-size: 2rem;
  }
}

.post__button {
  margin-top: 3.9375rem;
  width: 13.640625rem;
}
@media screen and (min-width: 1500px) {
  .post__button {
    margin-top: 5.25rem;
    width: 18.1875rem;
  }
}

.page__line-fv {
  margin-top: 0;
}

.line-fv {
  background: url(../image/img/company-bg.jpg) repeat top center/100%;
}

.line-fv__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 780px) {
  .line-fv__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.line-fv__text {
  padding-block: 5rem 2.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 780px) {
  .line-fv__text {
    padding-block: 6.890625rem 4.03125rem;
    padding-inline: 4.6875rem 0;
  }
}
@media screen and (min-width: 1500px) {
  .line-fv__text {
    padding-block: 9.1875rem 5.375rem;
    padding-inline: 6.25rem 0;
  }
}

.line-fv__title {
  color: #A63A4F;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
}
.cr_line {
  color: var(--line-cr);
}
@media screen and (min-width: 780px) {
  .line-fv__title {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-fv__title {
    font-size: 5rem;
  }
}

.line-fv__title-highlight {
  font-size: 2.5rem;
}
@media screen and (min-width: 780px) {
  .line-fv__title-highlight {
    font-size: 3.28125rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-fv__title-highlight {
    font-size: 4.375rem;
  }
}

.line-fv__flow {
  margin-block: 1.875rem 1.25rem;
}
@media screen and (min-width: 780px) {
  .line-fv__flow {
    max-width: 80%;
    margin-block: 2.8125rem 2.109375rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-fv__flow {
    margin-block: 3.75rem 2.8125rem;
  }
}

.line-fv__lead {
  color: #A63A4F;
  font-size: 1.375rem;
}
@media screen and (min-width: 780px) {
  .line-fv__lead {
    font-size: 1.40625rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-fv__lead {
    font-size: 1.875rem;
  }
}

.line-fv__img {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .line-fv__img {
    max-width: 47.5625rem;
    width: 50%;
  }
}

.line-guide {
  padding-block: 3.75rem;
}
@media screen and (min-width: 780px) {
  .line-guide {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-guide {
    padding-block: 6rem;
  }
}

@media screen and (min-width: 1500px) {
  .line-guide .inner {
    max-width: 1250px;
  }
}

.line-guide .section__page-title {
  text-align: center;
}

.line-guide__desc {
  font-size: 3.2vw;
  line-height: 200%;
  text-indent: 1em;
  text-align: center;
  margin-block: 1.25rem 1.875rem;
}
@media screen and (min-width: 780px) {
  .line-guide__desc {
    font-size: 0.9375rem;
    margin-block: 1.875rem 3.28125rem;
  }
}
@media screen and (min-width: 1500px) {
  .line-guide__desc {
    font-size: 1.25rem;
    margin-block: 2.5rem 4.375rem;
  }
}

.guide-box__list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (min-width: 780px) {
  .guide-box__list {
    flex-direction: row;
    gap: 2.8125rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1500px) {
  .guide-box__list {
    gap: 3.75rem;
  }
}

.guide__box {
  background: rgba(166, 58, 79, 0.25);
  position: relative;
  padding: 1.875rem 1.25rem 1.875rem 1.875rem;
}
@media screen and (min-width: 780px) {
  .guide__box {
    padding: 2.34375rem 2.34375rem 2.34375rem;
  }
}
@media screen and (min-width: 1500px) {
  .guide__box {
    padding: 3.125rem 3.125rem 3.75rem;
  }
}

.guide__box .guide__first {
  margin-bottom: 3.125rem;
  width: 100%;
}
@media screen and (min-width: 780px) {
  .guide__box .guide__first {
    margin-bottom: 4.21875rem;
  }
}
@media screen and (min-width: 1500px) {
  .guide__box .guide__first {
    margin-bottom: 5.625rem;
  }
}

.guide__box.guide__second,
.guide__box.guide__third {
  width: 100%;
}
@media screen and (min-width: 780px) {
  .guide__box.guide__second,
  .guide__box.guide__third {
    width: calc(50% - 3.75rem);
  }
}

.guide__box.guide__first::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: rgba(166, 58, 79, 0.25) transparent transparent transparent;
  border-width: 40px 40px 0 40px;
}
@media screen and (min-width: 780px) {
  .guide__box.guide__first::before {
    left: 20%;
    transform: inherit;
  }
}

.guide__box.guide__second::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: rgba(166, 58, 79, 0.25) transparent transparent transparent;
  border-width: 40px 40px 40px 40px;
}
@media screen and (min-width: 780px) {
  .guide__box.guide__second::before {
    transform: rotateZ(-90deg);
    bottom: 40%;
    right: -80px;
    left: auto;
  }
}

.guide__title {
  background: #fff;
  position: relative;
  color: #A63A4F;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  padding: 0.625rem 0.625rem 0.625rem 1.875rem;
}
@media screen and (min-width: 780px) {
  .guide__title {
    font-size: 1.6875rem;
    margin-bottom: 1.875rem;
    padding: 0.9375rem 1.40625rem 0.9375rem 3.515625rem;
  }
}
@media screen and (min-width: 1500px) {
  .guide__title {
    font-size: 2.25rem;
    padding: 1.25rem 1.875rem 1.25rem 3.125rem;
    margin-bottom: 2.5rem;
  }
}

.guide__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -54px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background: url(../image/img/guide__num01.png) repeat center center/contain;
}
@media screen and (min-width: 780px) {
  .guide__title::before {
    width: 6.5rem;
    height: 6.4375rem;
  }
}

.guide__second .guide__title::before {
  background: url(../image/img/guide__num02.png) repeat center center/contain;
}

.guide__third .guide__title::before {
  background: url(../image/img/guide__num03.png) repeat center center/contain;
}

.guide__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 780px) {
  .guide__img {
    flex-direction: row;
    gap: 2.8125rem;
  }
}
@media screen and (min-width: 1500px) {
  .guide__img {
    gap: 3.75rem;
  }
}

.guide__first .guide__img {
  max-width: 66.25rem;
  margin: 0 auto;
}

.guide__img img {
  display: block;
}

.guide__img-qr img {
  max-width: 17.9375rem;
  max-height: 17.9375rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 1500px) {
  .guide__img-qr img {
    margin-bottom: 0;
  }
}

.guide__img-search img {
  max-width: 43.75rem;
  max-height: 6.9375rem;
}

.archive-item {
  padding-block: 3.75rem;
  background: url(../image/img/item-archive__bg.png) repeat top center/100%;
  overflow: hidden;
}
@media screen and (min-width: 780px) {
  .archive-item {
    padding-block: 4.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .archive-item {
    padding-block: 6rem;
  }
}

.archive-item .section__page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem; /* タイトルと線の間の余白 */
  color: #A63A4F; /* 写真に合わせた色（必要なら変更） */
}
@media screen and (min-width: 1500px) {
  .archive-item .section__page-title {
    gap: 5.625rem;
  }
}

.archive-item .section__page-title::before,
.archive-item .section__page-title::after {
  content: "";
  flex: 1; /* 可変で伸びる */
  height: 2px; /* 線の太さ */
  background-color: #A63A4F; /* 線の色 */
}

.archive-item__list {
  display: grid;
  gap: 1.875rem 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4.078125rem;
}
@media screen and (min-width: 780px) {
  .archive-item__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .archive-item__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 1.5rem;
    margin-top: 5.4375rem;
  }
}

.archive-item__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.archive-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.archive-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  line-height: 1.2;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 780px) {
  .archive-item__title {
    font-size: 0.9375rem;
    margin-bottom: 1.171875rem;
  }
}
@media screen and (min-width: 1500px) {
  .archive-item__title {
    font-size: 1.25rem;
    margin-bottom: 1.5625rem;
  }
}

.archive-item__title::before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #A63A4F;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.archive-item__body {
  padding-bottom: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.archive-item__date {
  margin-top: auto;
  font-size: 0.875rem;
  color: #888;
  text-align: right;
}

.archive-item__meta-item {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.archive-item__empty {
  text-align: center;
  padding: 2.5rem;
}

.archive-item__link {
  display: block;
  text-align: right;
  color: #3F3636;
  font-size: 0.875rem;
}

.item__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 780px) {
  .item__info {
    flex-direction: row;
    gap: 2.859375rem;
  }
}
@media screen and (min-width: 1500px) {
  .item__info {
    gap: 3.8125rem;
  }
}

@media screen and (min-width: 780px) {
  .item__img {
    /*width: 100%;*/
	width: 70%;
	margin: 0 auto; 
  }
}
@media screen and (min-width: 1500px) {
  .item__img {
    gap: 3.125rem;
  }
}

.item__body {
  padding-top: 3.125rem;
  width: 100%;
}
@media screen and (min-width: 1500px) {
  .item__body {
    width: calc(32% - 2.859375rem);
  }
}

.item__meta-item {
  width: 100%;
  border-bottom: 1px dotted #000;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  font-weight: 600;
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 780px) {
  .item__meta-item {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1500px) {
  .item__meta-item {
    font-size: 1.25rem;
  }
}

.item__meta {
  width: 100%;
}

.item__meta-item dt {
  min-width: 5rem;
}

.item__meta-item dd {
  color: #A63A4F;
}

.item-detail .section__page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: #A63A4F;
  margin-block: 4.078125rem;
}
@media screen and (min-width: 1500px) {
  .item-detail .section__page-title {
    gap: 5.625rem;
    margin-block: 5.4375rem;
  }
}

.item-detail .section__page-title::before,
.item-detail .section__page-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #A63A4F;
}

.item__desc {
  font-size: 0.875rem;
  line-height: 200%;
}
@media screen and (min-width: 780px) {
  .item__desc {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1500px) {
  .item__desc {
    font-size: 1.25rem;
  }
}

.item__button {
  width: 16.5rem;
}
@media screen and (min-width: 1500px) {
  .item__button {
    width: 22rem;
  }
}

.item-sub__button {
  text-align: center;
  margin-top: 3.125rem;
}

.item-sub__button a {
  color: #3F3636;
  position: relative;
  font-size: 0.875rem;
}
@media screen and (min-width: 1500px) {
  .item-sub__button a {
    font-size: 1.25rem;
  }
}

.item-sub__button a::after {
  content: "";
  position: absolute;
  background-image: url(../image/icon/arrow-red.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.65625rem;
  height: 0.84375rem;
  top: 50%;
  right: -1.25rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 1500px) {
  .item-sub__button a::after {
    width: 0.875rem;
    height: 1.125rem;
  }
}/*# sourceMappingURL=styles.css.map */