@charset "UTF-8";
/* 
Theme Name: Heartrise
*/
/* ページ全般の設定 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  background: #C40018;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
    line-height: 180%;
    letter-spacing: 0.08em;
  }
}

main {
  overflow: hidden;
  margin-top: -1px;
}

li {
  list-style: none;
}

a {
  color: #444444;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.grid {
  display: grid;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.content-width {
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.red {
  color: #C40018;
}

.section-title .en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media (max-width: 767px) {
  .section-title .en {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .section-title .dot {
    width: 7px;
  }
}
.section-title .en-red {
  color: #C40018;
  background: -webkit-linear-gradient(90deg, rgb(196, 0, 24) 0%, rgb(249, 136, 88) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .ja {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media (max-width: 767px) {
  .section-title .ja {
    font-size: 2.6rem;
  }
}

.more-btn {
  height: 8.8rem;
  max-width: 34rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: solid 1px #C40018;
  background: #FFFAF2;
  color: #C40018;
  border-radius: 10rem;
  font-size: 1.8rem;
  padding: 1.4rem 1.4rem 1.4rem 4.8rem;
  line-height: 200%;
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .more-btn {
    height: 6.4rem;
    max-width: 28rem;
    font-size: 1.5rem;
    line-height: 200%;
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
  }
}
@media (max-width: 767px) {
  .more-btn .arrow {
    width: 4rem;
  }
}
.more-btn:hover {
  background: #C40018;
  color: #fff;
  border-color: #fff;
}
.more-btn:hover .arrow {
  content: url(./images/btn-arrow-wh.svg);
}

.more-btn-s {
  height: 6rem;
  max-width: 19.6rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: solid 1px #C40018;
  background: #FFFAF2;
  color: #C40018;
  border-radius: 10rem;
  font-size: 1.4rem;
  padding: 1rem 1rem 1rem 2.5rem;
  line-height: 200%;
  letter-spacing: 0.08em;
  position: relative;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .more-btn-s {
    height: 6.4rem;
    max-width: 28rem;
    font-size: 1.5rem;
    margin: 4rem auto 0;
  }
}
.more-btn-s .arrow {
  width: 4rem;
}
.more-btn-s:hover {
  background: #C40018;
  color: #fff;
}
.more-btn-s:hover .arrow {
  content: url(./images/btn-arrow-wh.svg);
}

.border-rl {
  border-right: solid 1.8rem #C40018;
  border-left: solid 1.8rem #C40018;
}
@media (max-width: 767px) {
  .border-rl {
    border-right: solid 1rem #C40018;
    border-left: solid 1rem #C40018;
  }
}

.border-trl {
  border-top: solid 1.8rem #C40018;
  border-right: solid 1.8rem #C40018;
  border-left: solid 1.8rem #C40018;
}
@media (max-width: 767px) {
  .border-trl {
    border-top: solid 1rem #C40018;
    border-right: solid 1rem #C40018;
    border-left: solid 1rem #C40018;
  }
}

.header {
  width: 100%;
  padding: 0 0 0 3.3333333333vw;
  position: relative;
  border-radius: 4.8rem 4.8rem 0 0;
  z-index: 10;
  background: #FFFAF2;
}
@media (min-width:1440px) {
  .header {
    padding: 0 0 0 4.8rem;
  }
}
@media (max-width: 767px) {
  .header {
    border-radius: 1.6rem 1.6rem 0 0;
    height: 4.8rem;
  }
}
.header .header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 auto;
  padding-top: 1.8rem;
  padding-bottom: 1.7rem;
}
@media (max-width: 767px) {
  .header .header__inner {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 4.8rem;
    padding: 0.7rem 0;
  }
}
.header .header__logo {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 19.4444444444vw;
  width: 100%;
}
@media (min-width:1440px) {
  .header .header__logo {
    max-width: 28rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    max-width: 15.3rem;
  }
}
.header .header__right {
  max-width: 81.5277777778vw;
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 4.1666666667vw;
  width: 100%;
}
@media (min-width:1440px) {
  .header .header__right {
    padding-right: 6rem;
  }
}
.header .header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2222222222vw;
}
@media (min-width:1440px) {
  .header .header__menu {
    gap: 3.2rem;
  }
}
@media (max-width: 1024px) {
  .header .header__menu {
    display: none;
  }
}
.header .header__menu li a {
  font-size: 1.6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header__menu li a:hover {
  color: #C40018;
}
@media (max-width:1300px) {
  .header .header__menu li a {
    font-size: 1.4rem;
  }
}
.header .header__recruit {
  position: absolute;
  top: 0;
  right: 0;
  background: #C40018;
  width: 12.6388888889vw;
  height: 8.4722222222vw;
  border-radius: 0 0 0 2.4rem;
  z-index: 10;
}
@media (min-width:1440px) {
  .header .header__recruit {
    width: 18.2rem;
    height: 12.2rem;
  }
}
@media (max-width: 1024px) {
  .header .header__recruit {
    display: none;
  }
}
.header .header__recruit a {
  display: block;
  padding: 1.7361111111vw 0 2.9166666667vw 1.25vw;
  position: relative;
}
@media (min-width:1440px) {
  .header .header__recruit a {
    padding: 2.5rem 0 4.2rem 1.8rem;
  }
}
.header .header__recruit a::before {
  position: absolute;
  content: "";
  background-image: url(./images/hokkaido.svg);
  background-size: contain;
  width: 8.8888888889vw;
  height: 7.5vw;
  top: 0;
  left: 2.5vw;
}
@media (min-width:1440px) {
  .header .header__recruit a::before {
    top: 0;
    left: 3.6rem;
    width: 12.8rem;
    height: 10.8rem;
  }
}
.header .header__recruit .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.header .header__recruit .label span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 10rem;
  background: #FFFAF2;
  color: #C40018;
  font-size: 1.2rem;
  line-height: 100%;
  letter-spacing: 0.02em;
}
.header .header__recruit .link-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.8rem;
  font-size: 1.25vw;
  line-height: 150%;
  letter-spacing: 0.16em;
  color: #FFFAF2;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
@media (min-width:1440px) {
  .header .header__recruit .link-name {
    font-size: 1.8rem;
  }
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 7.2rem;
  height: 7.6rem;
  background: #C40018;
  border: none;
  border-radius: 0 0 0 1.6rem;
  cursor: pointer;
  z-index: 100;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1024px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hamburger.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* SPメニューオーバーレイ */
.sp-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C40018;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sp-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-menu__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 7.2rem;
  height: 7.6rem;
  background: #C40018;
  border: none;
  border-radius: 0 0 0 1.6rem;
  cursor: pointer;
  z-index: 1001;
}

.sp-menu {
  position: relative;
  background: #FFFAF2;
  border-radius: 1.6rem;
  margin: 1rem;
  height: calc(100% - 2rem);
  overflow-y: auto;
  padding: 0;
}

.sp-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 0 0.7rem 2rem;
  height: 4.8rem;
}

.sp-menu__logo {
  max-width: 15.3rem;
}
.sp-menu__logo img {
  width: 100%;
}

.sp-menu__nav {
  padding: 2rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-menu__nav ul {
  width: 28rem;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sp-menu__nav li {
  border-bottom: 1px dashed #444;
}
.sp-menu__nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.4rem 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #444;
}
.sp-menu__nav li a .arrow {
  width: 1.2rem;
  height: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-menu__recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28rem;
  height: 7.2rem;
  margin: 4rem auto 0;
  background: linear-gradient(145deg, #F98858 5%, #C40018 76%);
  border-radius: 0.8rem;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #fff;
}
.sp-menu__recruit .arrow {
  width: 1.2rem;
  height: 1.2rem;
}

body.menu-open {
  overflow: hidden;
}

.mv {
  background: #FFFAF2;
  position: relative;
  border-right: solid 1.8rem #C40018;
  border-left: solid 1.8rem #C40018;
}
@media (max-width: 767px) {
  .mv {
    border-right: solid 1rem #C40018;
    border-left: solid 1rem #C40018;
  }
}
.mv .mv__text {
  position: absolute;
  left: 7.0833333333vw;
  bottom: 2.7777777778vw;
  z-index: 2;
}
@media (max-width: 767px) {
  .mv .mv__text {
    left: 11.7021276596vw;
    bottom: inherit;
    top: 31.3829787234vw;
  }
}
.mv .mv__text .mv-title {
  color: #fff;
  font-size: 3.3333333333vw;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.08em;
  position: relative;
}
@media (max-width: 767px) {
  .mv .mv__text .mv-title {
    font-size: 6.3829787234vw;
  }
}
.mv .mv__text .mv-title span {
  position: relative;
  z-index: 1;
}
.mv .mv-text {
  font-size: 1.0416666667vw;
  line-height: 210%;
  letter-spacing: 0.08em;
  margin-top: 1.1111111111vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .mv .mv-text {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .mv .mv-text {
    font-size: 1.4rem;
    line-height: 180%;
    padding: 0 2rem;
    margin-top: 3.7rem;
    width: 87.7659574468vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.mv .mv__news {
  max-width: 40rem;
  width: 100%;
  background: #FFFAF2;
  border-radius: 1.6rem;
  -webkit-box-shadow: 4px 4px 48px rgba(196, 0, 24, 0.08);
          box-shadow: 4px 4px 48px rgba(196, 0, 24, 0.08);
  z-index: 11;
}
@media (min-width: 768px) {
  .mv .mv__news {
    position: absolute;
    right: 7.0833333333vw;
    bottom: -4.5833333333vw;
    border-radius: 1rem;
  }
}
@media (max-width: 767px) {
  .mv .mv__news {
    margin: 2.4rem auto 0;
    width: 84.0425531915vw;
  }
}
.mv .mv__news a {
  padding: 2.3rem 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .mv .mv__news a {
    padding: 1.6rem 2rem;
  }
}
.mv .mv__news .mv__news__text {
  padding-right: 2rem;
  border-right: dashed 1px #C40018;
  max-width: 30.1rem;
}
@media (max-width: 767px) {
  .mv .mv__news .mv__news__text {
    margin-right: 1.6rem;
  }
}
.mv .mv__news .date {
  color: #C40018;
  font-size: 1.4rem;
  line-height: 150%;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .mv .mv__news .date {
    font-size: 1.2rem;
  }
}
.mv .mv__news .news-title {
  margin-top: 0.4rem;
  line-height: 180%;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .mv .mv__news .news-title {
    font-size: 1.4rem;
  }
}
.mv .mv__news .arrow {
  margin-top: -2.1rem;
  pointer-events: none;
}
.mv .mv__slider {
  position: relative;
  width: 90.8333333333vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mv .mv__slider {
    width: 84.0425531915vw;
  }
}
.mv .mv__slider .swiper-img picture {
  border-radius: 6rem;
  display: block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mv .mv__slider .swiper-img picture {
    border-radius: 1.6rem;
  }
}
.mv .mv__slider .swiper-img picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv__slider .swiper-pagination {
  bottom: -4.6rem;
  left: 5.1rem;
  right: auto;
  text-align: left;
}
@media (max-width: 767px) {
  .mv .mv__slider .swiper-pagination {
    left: 0;
    bottom: -2rem;
  }
}
.mv .mv__slider .swiper-pagination .swiper-pagination-bullet {
  width: 4rem;
  height: 3px;
  margin: 0 0.45rem;
  opacity: 1;
  background-color: #D9D9D9;
  border-radius: 0;
}
@media (max-width: 767px) {
  .mv .mv__slider .swiper-pagination .swiper-pagination-bullet {
    width: 3.2rem;
  }
}
.mv .mv__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #C40018;
}

.service {
  padding: 18.2rem 2rem 16rem;
  border-right: solid 1.8rem #C40018;
  border-left: solid 1.8rem #C40018;
  background: #FFFAF2;
  margin-top: -1px;
}
@media (max-width: 767px) {
  .service {
    padding: 8rem 2rem;
    border-right: solid 1rem #C40018;
    border-left: solid 1rem #C40018;
  }
}
.service .section-title {
  padding-bottom: 3.2rem;
  border-bottom: dashed 1px #D05E6A;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .service .section-title {
    padding-bottom: 1.8rem;
    margin-bottom: 4rem;
  }
}
.service .service__list {
  gap: 4.1666666667vw;
}
@media (min-width:1440px) {
  .service .service__list {
    gap: 6rem;
  }
}
@media (max-width: 767px) {
  .service .service__list {
    gap: 4.8rem;
  }
}
.service .service__list li .list-img {
  position: relative;
}
.service .service__list li .list-img img {
  border-radius: 3.2rem;
}
@media (max-width: 767px) {
  .service .service__list li .list-img img {
    border-radius: 1.6rem;
  }
}
.service .service__list li .list-img .list-title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 142%;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0.8rem 3.2rem 2rem 1.6rem;
  background: #FFFAF2;
  border-radius: 0 0 3.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .service .service__list li .list-img .list-title {
    min-width: 16rem;
    font-size: 2rem;
    padding: 0.8rem 3.2rem 1.2rem 1.6rem;
    border-radius: 0 0 1.6rem 0;
  }
}
.service .service__list li .list-img .list-title .icon {
  margin-right: 1.6rem;
  border-radius: 0;
}
@media (max-width: 767px) {
  .service .service__list li .list-img .list-title .icon {
    margin-right: 0.5rem;
    width: 1.8rem;
  }
}
.service .service__list li p {
  font-size: 1.8rem;
  line-height: 200%;
  margin-top: 2.8rem;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .service .service__list li p {
    font-size: 1.5rem;
    line-height: 180%;
    margin-top: 2rem;
  }
}
.service .more-btn {
  margin: 6.4rem auto 0;
}
@media (max-width: 767px) {
  .service .more-btn {
    margin: 4.8rem auto 0;
  }
}

.message {
  background-image: url(./images/service-bg.svg);
  background-position: top center;
  background-size: cover;
  padding: 25rem 0 9.7222222222vw;
  color: #fff;
  position: relative;
  background-color: #FFFAF2;
  margin-top: -2px;
}
@media (max-width: 767px) {
  .message {
    background-image: url(./images/sp_service-bg.svg);
    padding: 8.9rem 0 21.2765957447vw;
  }
}
.message::before {
  position: absolute;
  content: "";
  background: #C40018;
  background-size: contain;
  width: 1.8rem;
  height: 18.75vw;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .message::before {
    width: 1rem;
  }
}
.message::after {
  position: absolute;
  content: "";
  background: #C40018;
  background-size: contain;
  width: 1.8rem;
  height: 13.1944444444vw;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .message::after {
    width: 1rem;
  }
}
.message .message-bg {
  position: relative;
  padding: 0 2rem;
}
.message .message-bg::before {
  position: absolute;
  content: "";
  background-image: url(./images/message-l.png);
  background-size: contain;
  width: 27.5vw;
  height: 41.875vw;
  bottom: 1.25vw;
  left: 0;
  mix-blend-mode: lighten;
}
@media (min-width:1440px) {
  .message .message-bg::before {
    width: 39.6rem;
    height: 60.3rem;
    bottom: 1.8rem;
    left: 0;
  }
}
@media (max-width: 767px) {
  .message .message-bg::before {
    display: none;
  }
}
.message .message-bg::after {
  position: absolute;
  content: "";
  background-image: url(./images/message-r.png);
  background-size: contain;
  width: 19.0277777778vw;
  height: 38.0555555556vw;
  bottom: 13.9583333333vw;
  right: 0;
  mix-blend-mode: lighten;
}
@media (min-width:1440px) {
  .message .message-bg::after {
    width: 27.4rem;
    height: 54.8rem;
    bottom: 20.1rem;
    right: 0;
  }
}
@media (max-width: 767px) {
  .message .message-bg::after {
    display: none;
  }
}
.message .content-width {
  max-width: 96rem;
}
.message .message__head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.2rem;
}
@media (max-width: 767px) {
  .message .message__head {
    gap: 3.2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .message .message__head .logo {
    max-width: 9.9rem;
    margin: 0 auto;
    display: block;
  }
}
.message .message__head .section-title {
  margin-bottom: 8.3rem;
  position: relative;
}
@media (max-width: 767px) {
  .message .message__head .section-title {
    margin-bottom: 4rem;
    text-align: center;
  }
}
.message .message__head .section-title::before {
  position: absolute;
  content: "";
  background-image: url(./images/message-c.png);
  background-size: contain;
  width: 19.9305555556vw;
  height: 19.9305555556vw;
  top: 0;
  left: 0;
  mix-blend-mode: lighten;
}
@media (min-width:1440px) {
  .message .message__head .section-title::before {
    width: 28.7rem;
    height: 28.7rem;
  }
}
@media (max-width: 767px) {
  .message .message__head .section-title::before {
    display: none;
  }
}
.message .message__head .section-title .en {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .message .message__head .section-title .en {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.message .message__head .section-title .ja {
  font-size: 4.8rem;
  margin-top: 1.6rem;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .message .message__head .section-title .ja {
    text-align: center;
    font-size: 2.6rem;
    margin-top: 1rem;
  }
}
.message .section-text {
  font-size: 2rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .message .section-text {
    font-size: 1.5rem;
    line-height: 180%;
  }
}
.message .more-btn {
  margin: 7.2rem auto 0;
}
@media (max-width: 767px) {
  .message .more-btn {
    margin: 4rem auto 0;
  }
}
.message .bottom-text {
  position: absolute;
  bottom: -9.7222222222vw;
  left: 50%;
  right: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 88.8888888889vw;
  height: 7.2916666667vw;
}
@media (max-width: 767px) {
  .message .bottom-text {
    width: 94.6808510638vw;
    height: 7.9787234043vw;
    bottom: -21.2765957447vw;
  }
}
.message .bottom-text img {
  width: 100%;
}

.recruit {
  padding: 12rem 2rem 16.2rem;
  border-radius: 4.8rem 4.8rem 0 0;
  overflow: hidden;
  background: #FFFAF2;
}
@media (max-width: 767px) {
  .recruit {
    padding: 6.4rem 2rem 8rem;
    border-radius: 1.6rem 1.6rem 0 0;
  }
}
.recruit .section-title {
  margin-bottom: 4.8rem;
}
@media (max-width: 767px) {
  .recruit .section-title {
    margin-bottom: 4rem;
  }
}
.recruit .recruit__slider {
  max-width: 34.3055555556vw;
  width: 100%;
  position: relative;
  padding-top: 3rem;
}
@media (min-width:1440px) {
  .recruit .recruit__slider {
    max-width: 49.4rem;
  }
}
@media (max-width: 767px) {
  .recruit .recruit__slider {
    max-width: 100%;
    padding-top: 0;
  }
}
.recruit .recruit__slider::before {
  position: absolute;
  content: "";
  background-image: url(./images/bg-recruit-slider-1.png);
  background-size: contain;
  width: 9.6527777778vw;
  height: 9.6527777778vw;
  top: 6.9444444444vw;
  left: -0.6944444444vw;
  z-index: 2;
}
@media (max-width: 767px) {
  .recruit .recruit__slider::before {
    width: 13.9rem;
    height: 13.9rem;
    left: -1rem;
    top: 3rem;
  }
}
.recruit .recruit__slider::after {
  position: absolute;
  content: "";
  background-image: url(./images/bg-recruit-slider-2.png);
  background-size: contain;
  width: 12.7083333333vw;
  height: 12.7083333333vw;
  bottom: -0.6944444444vw;
  right: 2.7777777778vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit .recruit__slider::after {
    width: 18.3rem;
    height: 18.3rem;
    right: 0;
    bottom: -2rem;
  }
}
.recruit .recruit__slider .swiper {
  position: relative;
}
.recruit .recruit__slider .swiper-img {
  aspect-ratio: 1;
}
.recruit .recruit__slider .swiper-img img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.recruit .recruit__slider .swiper-img img:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.recruit .recruit__slider .swiper-pagination {
  bottom: -5.8rem;
  left: -1.5rem;
  right: auto;
  text-align: left;
}
@media (max-width: 767px) {
  .recruit .recruit__slider .swiper-pagination {
    bottom: -3.5rem;
    left: -0.3rem;
  }
}
.recruit .recruit__slider .swiper-pagination .swiper-pagination-bullet {
  width: 4rem;
  height: 3px;
  margin: 0 0.45;
  opacity: 1;
  background-color: #D9D9D9;
  border-radius: 0;
}
@media (max-width: 767px) {
  .recruit .recruit__slider .swiper-pagination .swiper-pagination-bullet {
    width: 3.2rem;
  }
}
.recruit .recruit__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #C40018;
}
.recruit .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 1.1rem;
  gap: 2rem;
}
@media (max-width: 767px) {
  .recruit .flex {
    gap: 7.1rem;
    padding-left: 0;
  }
}
.recruit .recruit__text {
  max-width: 60rem;
}
.recruit .recruit__text .fukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.1em;
  margin-top: 0;
}
@media (max-width: 767px) {
  .recruit .recruit__text .fukidashi {
    font-size: 1.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.recruit .recruit__text .recruit-title {
  margin-top: 1rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.1em;
  position: relative;
}
.recruit .recruit__text .recruit-title::before {
  position: absolute;
  content: "";
  background-image: url(./images/bg-recruit-title.png);
  background-size: contain;
  width: 23.8888888889vw;
  height: 23.8888888889vw;
  top: -15rem;
  right: -2rem;
}
@media (max-width: 767px) {
  .recruit .recruit__text .recruit-title::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .recruit .recruit__text .recruit-title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.recruit .recruit__text .recruit-title span {
  position: relative;
  z-index: 2;
}
.recruit .recruit__text p {
  margin-top: 3.3rem;
  font-size: 1.8rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .recruit .recruit__text p {
    font-size: 1.5rem;
    margin-top: 2.4rem;
  }
}
.recruit .recruit__text .more-btn {
  margin: 4.3rem auto 0 0;
}
@media (max-width: 767px) {
  .recruit .recruit__text .more-btn {
    margin: 4rem auto 0;
  }
}

.section-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .section-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.section-left {
  max-width: 21.4rem;
  width: 100%;
}
@media (max-width: 767px) {
  .section-left {
    max-width: 100%;
  }
}
.section-left .more-btn-s {
  margin: 4.3rem auto 0 0;
}
@media (max-width: 767px) {
  .section-left .more-btn-s {
    margin: 4rem auto 0;
  }
}

.section-right {
  max-width: 91.2rem;
  width: 100%;
}

.blog {
  padding: 0 2rem 8.7rem;
  background: #FFFAF2;
  margin-top: -2px;
}
@media (max-width: 767px) {
  .blog {
    padding: 0 2rem 4rem;
  }
}
.blog .blog__list {
  gap: 3.2rem;
}
@media (max-width: 767px) {
  .blog .blog__list {
    margin-top: 3.2rem;
  }
}
.blog .blog__list li {
  position: relative;
}
.blog .blog__list li::after {
  position: absolute;
  content: "";
  background-image: url(./images/blog-arrow.svg);
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 1.9rem;
  right: 2rem;
  z-index: 1;
  pointer-events: none;
}
.blog .blog__list li a:hover .list-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog .blog__list li .list-img {
  border-radius: 1.6rem;
  aspect-ratio: 1.77;
  overflow: hidden;
}
.blog .blog__list li .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog .blog__list .blog-title {
  margin-top: 2rem;
  line-height: 180%;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .blog .blog__list .blog-title {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}

.news {
  padding: 0 2rem 12rem;
  background: #FFFAF2;
  border-radius: 0 0 4.8rem 4.8rem;
  margin-top: -2px;
}
@media (max-width: 767px) {
  .news {
    padding: 4rem 2rem 6.4rem;
    border-radius: 0 0 1.6rem 1.6rem;
  }
}
@media (max-width: 767px) {
  .news .news__list {
    margin-top: 4rem;
  }
}
.news .news__list li:first-child a {
  border-top: dashed 1px #C40018;
}
.news .news__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  padding: 2.8rem 0;
  border-bottom: dashed 1px #C40018;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news .news__list li a:hover {
  background: rgba(196, 0, 24, 0.03);
}
@media (max-width: 767px) {
  .news .news__list li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.8rem;
    padding: 2rem 1rem;
  }
}
.news .news__list li a .date {
  color: #C40018;
  line-height: 160%;
  letter-spacing: 0.08em;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .news .news__list li a .date {
    font-size: 1.6rem;
    padding-left: 0;
  }
}
.news .news__list li a .news-title {
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .news .section-flex {
    gap: 0;
  }
}

.h2-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  background: #C40018;
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 2.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media (max-width: 767px) {
  .h2-heading {
    font-size: 2.4rem;
    padding: 1.6rem 2.8rem;
    border-radius: 0.8rem;
  }
}
.h2-heading__icon {
  width: 2.4rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .h2-heading__icon {
    display: none;
  }
}
.h2-heading__icon svg {
  width: 100%;
  height: 100%;
}

.recruit-hero {
  position: relative;
  margin-top: 4rem;
}
.recruit-hero::before {
  content: "";
  position: absolute;
  top: 25%;
  left: -15%;
  background-image: url(./images/recruit-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 24rem;
  height: 24rem;
}
@media (max-width: 767px) {
  .recruit-hero::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .recruit-hero {
    margin-top: 2.8rem;
    margin-bottom: 10rem;
  }
}
.recruit-hero__img-wrap {
  width: calc(100% - 9.6rem);
  margin-left: auto;
}
@media (max-width: 767px) {
  .recruit-hero__img-wrap {
    width: 100%;
  }
}
.recruit-hero__img {
  width: 100%;
  border-radius: 1.6rem;
  display: block;
  aspect-ratio: 800/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .recruit-hero__img {
    border-radius: 0.8rem;
    aspect-ratio: 2/1;
  }
}
.recruit-hero__overlay {
  position: absolute;
  bottom: 4rem;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 767px) {
  .recruit-hero__overlay {
    bottom: -7rem;
    left: 1.2rem;
  }
}
.recruit-hero__text {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  color: #C40018;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.recruit-hero__text span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.8rem 2.4rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .recruit-hero__text {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  .recruit-hero__text span {
    padding: 0.4rem 1.2rem;
    border-radius: 0.4rem;
  }
}

.step-box {
  background: #FFF0D7;
  border-radius: 1.6rem;
  padding: 4.8rem;
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media (max-width: 767px) {
  .step-box {
    margin-top: 4rem;
    padding: 4rem 2.4rem;
    gap: 3.2rem;
  }
}

.step-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.step-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (max-width: 767px) {
  .step-card__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
  }
}
.step-card__circle {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #C40018;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .step-card__circle {
    width: 5.6rem;
    height: 5.6rem;
  }
}
.step-card__step-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .step-card__step-label {
    font-size: 1rem;
  }
}
.step-card__step-num {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .step-card__step-num {
    font-size: 2rem;
  }
}
.step-card__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 767px) {
  .step-card__title-wrap {
    width: 100%;
    gap: 0.6rem;
  }
}
.step-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 180%;
  color: #C40018;
}
@media (max-width: 767px) {
  .step-card__title {
    font-size: 1.8rem;
  }
}
.step-card__subtitle {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 210%;
  color: #444444;
}
@media (max-width: 767px) {
  .step-card__subtitle {
    line-height: 180%;
  }
}
.step-card__list {
  padding-top: 1.6rem;
  border-top: dashed 1px #D05E6A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .step-card__list {
    gap: 2.4rem;
  }
}
.step-card__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .step-card__list-item {
    font-size: 1.5rem;
  }
}
.step-card__list-item::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #C40018;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .step-card__list-item::before {
    width: 0.6rem;
    height: 0.6rem;
    margin-top: 1.2rem;
  }
}

.qualify-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .qualify-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
    margin-top: 6.4rem;
  }
}
.qualify-section__img {
  width: 38rem;
  height: 28rem;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .qualify-section__img {
    width: 100%;
    height: auto;
    aspect-ratio: 316/232;
  }
}
.qualify-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.qualify-section__title {
  background: #C40018;
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 160%;
  display: inline-block;
}
@media (max-width: 767px) {
  .qualify-section__title {
    font-size: 1.4rem;
    text-align: center;
  }
}
.qualify-section__list {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .qualify-section__list {
    margin-top: 1.6rem;
    gap: 0.6rem;
  }
}
.qualify-section__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .qualify-section__list-item {
    font-size: 1.5rem;
  }
}
.qualify-section__list-item::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #C40018;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.section-cta {
  margin-top: 8rem;
  padding-top: 4.8rem;
  border-top: dashed 1px #D05E6A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .section-cta {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}

.recruit-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.recruit-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  background: #C40018;
  border-radius: 40rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .recruit-tag {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
  }
}

.recruit-store-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .recruit-store-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.recruit-store-card__img {
  width: 36rem;
  height: 25.2rem;
  border-radius: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #c4c4c4;
}
@media (max-width: 767px) {
  .recruit-store-card__img {
    width: 100%;
    height: 22rem;
    aspect-ratio: auto;
  }
}
.recruit-store-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.8rem;
}
@media (max-width: 767px) {
  .recruit-store-card__info {
    padding-top: 0;
  }
}
.recruit-store-card__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #444444;
  padding-bottom: 1.4rem;
  border-bottom: dashed 1px #D05E6A;
}
@media (max-width: 767px) {
  .recruit-store-card__name {
    font-size: 1.8rem;
  }
}
.recruit-store-card__roles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .recruit-store-card__roles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.4rem;
  }
}
.recruit-store-card__roles-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #444444;
}
.recruit-store-card__roles-label svg {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-store-card__roles-label {
    font-size: 1.4rem;
    width: auto;
  }
}
.recruit-store-card__roles-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem;
}
@media (max-width: 767px) {
  .recruit-store-card__roles-tags {
    gap: 0.6rem;
  }
}
.recruit-store-card__role-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.2rem;
  background: #FFF0D7;
  border-radius: 10rem;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #444444;
}
.recruit-store-card__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
@media (max-width: 767px) {
  .recruit-store-card__address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.6rem;
  }
}
.recruit-store-card__address-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #444444;
}
.recruit-store-card__address-label svg {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-store-card__address-label {
    font-size: 1.4rem;
    width: auto;
  }
}
.recruit-store-card__address-text {
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #444444;
}
.recruit-store-card__btn-wrap {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .recruit-store-card__btn-wrap {
    margin-top: 2.4rem;
  }
}
@media (max-width: 767px) {
  .recruit-store-card__btn-wrap .more-btn-s {
    margin: 0;
    width: 19.6rem;
  }
}

.recruit-store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.6rem;
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .recruit-store-list {
    gap: 5.6rem;
    margin-top: 6.4rem;
  }
}

.side-nav__item--apply {
  background: linear-gradient(135deg, #C40018 0%, rgb(249, 136, 88) 100%) !important;
  border: none !important;
  color: #fff !important;
}
@media (max-width: 767px) {
  .side-nav__item--apply {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.4rem;
    padding: 2rem 2.4rem;
  }
}
@media (max-width: 767px) {
  .side-nav__item--apply .side-nav__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1.4rem;
    height: 1.4rem;
  }
}
.side-nav__item--apply .side-nav__icon svg path {
  fill: #fff;
}
.side-nav__item--apply:hover {
  opacity: 0.85;
  background: linear-gradient(135deg, #C40018 0%, rgb(249, 136, 88) 100%);
  color: #fff;
}

.store-section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #444444;
  padding-bottom: 2.4rem;
  border-bottom: dashed 1px #D05E6A;
}
@media (max-width: 767px) {
  .store-section-title {
    font-size: 1.8rem;
  }
}

.store-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .store-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.store-images__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e5e5e5;
  width: calc(50% - 1.6rem);
}
@media (max-width: 767px) {
  .store-images__item {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
  }
}

.message-box {
  background: #FFF0D7;
  border-radius: 1.6rem;
  padding: 4rem 4.8rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .message-box {
    padding: 2.4rem;
  }
}
.message-box__label {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
  background: linear-gradient(-5.46deg, #C40018 24.27%, rgb(249, 136, 88) 94.97%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.message-box__text {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .message-box__text {
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.req-heading {
  background: #C40018;
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 2.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media (max-width: 767px) {
  .req-heading {
    font-size: 2.2rem;
    padding: 1.4rem 2rem;
  }
}

.req-table {
  margin-top: 4rem;
  width: 100%;
}

.req-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #D9D9D9;
  border-left: solid 1px #D9D9D9;
  border-right: solid 1px #D9D9D9;
}
.req-row:first-child {
  border-top: solid 1px #D9D9D9;
}
@media (max-width: 767px) {
  .req-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.req-label {
  width: 15rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FFF0D7;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 150%;
  color: #444444;
  border-right: solid 1px #D9D9D9;
  vertical-align: middle;
  text-align: left;
}
@media (max-width: 767px) {
  .req-label {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #D9D9D9;
  }
}

.req-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  vertical-align: middle;
}

.apply-btn-area {
  margin-top: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .apply-btn-area {
    margin-top: 4rem;
  }
}

.subpage {
  background: #FFFAF2;
  border-right: solid 1.8rem #C40018;
  border-left: solid 1.8rem #C40018;
  border-bottom: solid 1.8rem #C40018;
  margin-bottom: -1.8rem;
  padding: 4rem 2rem 12rem;
  border-radius: 0 0 5.6rem 5.6rem;
}
@media (max-width: 767px) {
  .subpage {
    padding: 2rem 2rem 8rem;
    border-right: solid 1rem #C40018;
    border-left: solid 1rem #C40018;
    border-bottom: solid 1rem #C40018;
    margin-bottom: -1rem;
    border-radius: 0 0 3rem 3rem;
  }
}
.subpage .subpage__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
.breadcrumb__item a {
  color: #C40018;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 150%;
}
.breadcrumb__icon {
  width: 1.4rem;
  height: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.breadcrumb__icon svg {
  width: 100%;
  height: 100%;
}
.breadcrumb__separator {
  width: 1rem;
  height: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.breadcrumb__separator svg {
  width: 100%;
  height: 100%;
}
.breadcrumb__current {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #444444;
}

.page-title {
  margin-top: 2.4rem;
}
.page-title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
  background: linear-gradient(-54deg, #C40018 24%, rgb(249, 136, 88) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .page-title__en {
    font-size: 1.2rem;
  }
}
.page-title__en .dot {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767px) {
  .page-title__en .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.page-title__ja {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
  color: #444444;
}
@media (max-width: 767px) {
  .page-title__ja {
    font-size: 2.8rem;
  }
}

.side-nav {
  position: sticky;
  top: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.8rem;
  min-width: 22.4rem;
}
@media (max-width: 767px) {
  .side-nav {
    position: static;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-width: auto;
    gap: 1.6rem;
  }
}
.side-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2.4rem;
  border: solid 1px #C40018;
  background: #FFFAF2;
  border-radius: 0.8rem;
  width: 22.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 142%;
  color: #C40018;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  gap: 0.8rem;
}
@media (max-width: 767px) {
  .side-nav__item {
    width: calc(50% - 0.8rem);
    padding: 1.6rem;
    font-size: 1.5rem;
  }
}
.side-nav__item:hover, .side-nav__item.is-active {
  background: #C40018;
  color: #fff;
}
.side-nav__item--apply {
  gap: 0.8rem;
  background: linear-gradient(-14.16deg, #C40018 24.27%, rgb(249, 136, 88) 94.97%);
  color: #fff;
  border: none;
}
@media (max-width: 767px) {
  .side-nav__item--apply {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.side-nav__item--apply:hover {
  opacity: 0.85;
}
.side-nav__send-icon {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8rem;
  margin: 10rem auto 0;
}
.page-content--single {
  max-width: 96rem;
}
.page-content--blog {
  margin-top: 7rem;
}
@media (max-width: 767px) {
  .page-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8rem;
    margin-top: 4.8rem;
  }
}
.page-content__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
@media (max-width: 767px) {
  .page-content__main {
    gap: 6rem;
  }
}
.page-content__main:has(.pagination) {
  gap: 4.8rem;
}
@media (max-width: 767px) {
  .page-content__main:has(.pagination) {
    gap: 4rem;
  }
}

.section-hero {
  position: relative;
  display: inline-block;
  width: 100%;
}
.section-hero__img {
  width: 100%;
  border-radius: 2.4rem;
  display: block;
  aspect-ratio: 896/400;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .section-hero__img {
    border-radius: 1.2rem;
    aspect-ratio: 343/200;
  }
}
.section-hero__title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 142%;
  letter-spacing: 0.1em;
  padding: 0.8rem 3.2rem 2.4rem 1.6rem;
  background: #FFFAF2;
  border-radius: 0 0 2rem 0;
}
@media (max-width: 767px) {
  .section-hero__title {
    font-size: 2rem;
    padding: 0.6rem 2rem 1.2rem 1rem;
    border-radius: 0 0 1.2rem 0;
  }
}

.section-desc {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .section-desc {
    font-size: 1.5rem;
    line-height: 180%;
  }
}

.h3-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.8rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .h3-heading {
    gap: 1.8rem;
    margin-top: 4rem;
  }
}
.h3-heading__bar {
  width: 0.5rem;
  background: #C40018;
  border-radius: 0.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: auto;
}
.h3-heading__text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 142%;
  letter-spacing: 0.1em;
  color: #444444;
}
@media (max-width: 767px) {
  .h3-heading__text {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
}

.store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.6rem;
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .store-list {
    gap: 4rem;
    margin-top: 3.2rem;
  }
}

.store-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media (max-width: 767px) {
  .store-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.store-card__img {
  width: 36rem;
  border-radius: 1.2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #c4c4c4;
  aspect-ratio: 1.42;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .store-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 360/252;
  }
}
.store-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 0.8rem;
}
.store-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding-bottom: 1.4rem;
  border-bottom: dashed 1px #D05E6A;
}
.store-card__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .store-card__name {
    font-size: 1.8rem;
  }
}
.store-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: solid 1px #C40018;
  border-radius: 50%;
  background: #FFFAF2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.store-card__link:hover {
  background: #C40018;
}
.store-card__link:hover svg path,
.store-card__link:hover svg polyline,
.store-card__link:hover svg line {
  stroke: #fff;
}
.store-card__link svg {
  width: 1.4rem;
  height: 1.4rem;
}
.store-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.store-card__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767px) {
  .store-card__detail-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.2rem;
  }
}
.store-card__detail-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #444444;
}
.store-card__detail-label svg {
  width: 1.6rem;
  height: 1.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .store-card__detail-label {
    width: auto;
    font-size: 1.4rem;
    font-weight: 700;
  }
}
.store-card__detail-value {
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .store-card__detail-value {
    font-size: 1.5rem;
  }
}

#estate {
  margin-top: 8rem;
}
@media (max-width: 767px) {
  #estate {
    margin-top: 4rem;
  }
}
#estate .section-hero__img {
  border-radius: 3.2rem;
}
@media (max-width: 767px) {
  #estate .section-hero__img {
    border-radius: 1.6rem;
  }
}
#estate .section-hero__title {
  border-radius: 0 0 2.4rem 0;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  #estate .section-hero__title {
    border-radius: 0 0 1.2rem 0;
  }
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  padding: 2.8rem 2rem;
  border-top: dashed 1px rgba(188, 28, 47, 0.7);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.news-list__item:last-child {
  border-bottom: dashed 1px rgba(188, 28, 47, 0.7);
}
.news-list__item:hover {
  background: rgba(196, 0, 24, 0.03);
}
@media (max-width: 767px) {
  .news-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem;
    padding: 2rem 1.2rem;
  }
}

.news-list__date {
  font-size: 1.6rem;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #C40018;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 1.4rem;
  }
}

.news-list__title {
  font-size: 1.6rem;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #444444;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 1.5rem;
    line-height: 180%;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .pagination {
    gap: 0.8rem;
  }
}

.pagination__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: solid 1px #C40018;
  background: #FFFAF2;
  font-size: 1.4rem;
  font-weight: 700;
  color: #C40018;
  line-height: 150%;
  text-align: center;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.pagination__btn:hover {
  background: #C40018;
  color: #fff;
}
.pagination__btn:hover svg {
  fill: #fff;
}
.pagination__btn.is-active {
  background: #C40018;
  color: #fff;
}
@media (max-width: 767px) {
  .pagination__btn {
    width: 4rem;
    height: 4rem;
    font-size: 1.2rem;
  }
}

.pagination__btn--arrow {
  background: #FFFAF2;
  color: #C40018;
}
.pagination__btn--arrow svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #C40018;
}
.pagination__btn--arrow:hover svg {
  fill: #fff;
}

.pagination__dots {
  font-size: 1.4rem;
  color: #444444;
  letter-spacing: 0.1em;
  line-height: 1;
}

.news-article {
  background: #FFF0D7;
  border-radius: 1.6rem;
  padding: 8rem 10rem;
  max-width: 96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .news-article {
    padding: 4rem 2.4rem;
  }
}

.news-article__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-bottom: 2.4rem;
  border-bottom: solid 1px #D05E6A;
}

.news-article__date {
  font-size: 1.4rem;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #C40018;
}

.news-article__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  color: #444444;
}
@media (max-width: 767px) {
  .news-article__title {
    font-size: 2rem;
  }
}

.news-article__body {
  width: 100%;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
}

.news-back-btn {
  margin-top: 5.6rem;
}
@media (max-width: 767px) {
  .news-back-btn {
    margin-top: 4rem;
  }
}

.company-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.company-message::before {
  content: "";
  background-image: url(./images/company-deco.png);
  background-size: contain;
  width: 110%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .company-message::before {
    display: none;
  }
}

.company-message__logo {
  width: 24rem;
  height: 24rem;
}
@media (max-width: 767px) {
  .company-message__logo {
    width: 16rem;
    height: 16rem;
  }
}

.company-message__slogan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-top: 3.2rem;
}
@media (max-width: 767px) {
  .company-message__slogan {
    margin-top: 2.4rem;
  }
}

.company-message__slogan-text {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #C40018;
}
@media (max-width: 767px) {
  .company-message__slogan-text {
    font-size: 1.8rem;
  }
}

.company-message__slogan-x {
  font-size: 1.6rem;
  color: #C40018;
  line-height: 1;
}

.company-message__title {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 200%;
  text-align: center;
  margin-top: 0.8rem;
  background: linear-gradient(-14.16deg, #C40018 24.27%, rgb(249, 136, 88) 94.97%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .company-message__title {
    font-size: 2.8rem;
  }
}

.company-message__body {
  margin-top: 3.2rem;
  font-size: 2rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #444444;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .company-message__body {
    font-size: 1.6rem;
    text-align: left;
  }
}

.company-message__author {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  text-align: center;
}
@media (max-width: 767px) {
  .company-message__author {
    margin-top: 2.4rem;
    font-size: 1.5rem;
    text-align: left;
  }
}

.company-info-section .company-heading {
  margin-top: 0;
}

.company-heading {
  background: #C40018;
  color: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 2.8rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 150%;
}
@media (max-width: 767px) {
  .company-heading {
    font-size: 2.2rem;
    padding: 1.4rem 2rem;
  }
}

.company-info {
  margin-top: 5.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .company-info {
    margin-top: 3.2rem;
  }
}

.company-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.4rem;
  padding: 0 3.2rem;
  padding-bottom: 2.4rem;
  border-bottom: dashed 1px #D05E6A;
  margin-bottom: 2.4rem;
}
@media (max-width: 767px) {
  .company-info__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
    padding: 0 1.6rem;
  }
}

.company-info__label {
  width: 10rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
}
@media (max-width: 767px) {
  .company-info__label {
    width: auto;
    font-size: 1.6rem;
  }
}

.company-info__value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.8rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  margin: 0;
}
@media (max-width: 767px) {
  .company-info__value {
    font-size: 1.5rem;
  }
}

.blog-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 3.8rem;
  margin-top: 6rem;
  -webkit-column-gap: 1.3333333333%;
     -moz-column-gap: 1.3333333333%;
          column-gap: 1.3333333333%;
}
@media (max-width: 767px) {
  .blog-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
    margin-top: 4rem;
  }
}

.blog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 32%;
}
.blog-card:hover .blog-card__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 767px) {
  .blog-card {
    width: 100%;
  }
}

.blog-card__thumb {
  position: relative;
  width: 100%;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1.77;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-card__thumb {
    height: auto;
    aspect-ratio: 380/214;
  }
}

.blog-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 1.77;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-card__arrow {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  width: 3.4rem;
  height: 3.4rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.blog-card:hover .blog-card__arrow {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-card__title {
  font-size: 1.6rem;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: #444444;
}

.blog-article {
  background: #FFF0D7;
  border-radius: 1.6rem;
  padding: 8rem 10rem;
  max-width: 96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .blog-article {
    padding: 4rem 2.4rem;
  }
}

.blog-article__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.blog-article__date {
  font-size: 1.4rem;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #C40018;
}

.blog-article__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  color: #444444;
}
@media (max-width: 767px) {
  .blog-article__title {
    font-size: 2rem;
  }
}

.blog-article__eyecatch {
  width: 100%;
  margin-top: 4rem;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #d7d7d7;
  aspect-ratio: 760/428;
}
@media (max-width: 767px) {
  .blog-article__eyecatch {
    margin-top: 2.4rem;
    border-radius: 0.8rem;
  }
}

.blog-article__body {
  width: 100%;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
}
.blog-article__body p + p {
  margin-top: 2.4rem;
}
@media (max-width: 767px) {
  .blog-article__body {
    margin-top: 2.4rem;
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.blog-back-btn {
  margin-top: 5.6rem;
}
@media (max-width: 767px) {
  .blog-back-btn {
    margin-top: 4rem;
  }
}

.contact-card {
  background: #FFF0D7;
  border-radius: 2.4rem;
  padding: 8rem 10rem;
  max-width: 96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .contact-card {
    padding: 4rem 1.6rem;
    border-radius: 1.6rem;
  }
}

.contact-card__intro {
  width: 100%;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #222;
}
@media (max-width: 767px) {
  .contact-card__intro {
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.contact-form {
  width: 100%;
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}
@media (max-width: 767px) {
  .contact-form {
    margin-top: 3.2rem;
    gap: 2.4rem;
  }
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}

.form-group__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}

.form-group__label-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222;
}
@media (max-width: 767px) {
  .form-group__label-text {
    font-size: 1.6rem;
  }
}

.form-group__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.2rem 1rem;
  background: #C40018;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #fff;
}

.form-group__input {
  width: 100%;
  height: 6.4rem;
  padding: 0 2.4rem;
  background: #fff;
  border: solid 1px #D9D9D9;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222;
  font-family: "Zen Maru Gothic", serif;
}
.form-group__input::-webkit-input-placeholder {
  color: #9c9c9c;
}
.form-group__input::-moz-placeholder {
  color: #9c9c9c;
}
.form-group__input:-ms-input-placeholder {
  color: #9c9c9c;
}
.form-group__input::-ms-input-placeholder {
  color: #9c9c9c;
}
.form-group__input::placeholder {
  color: #9c9c9c;
}
@media (max-width: 767px) {
  .form-group__input {
    height: 5.6rem;
    padding: 0 1.6rem;
    font-size: 16px;
  }
}

.form-group__textarea {
  width: 100%;
  height: 16rem;
  padding: 2rem 2.4rem;
  background: #fff;
  border: solid 1px #D9D9D9;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222;
  font-family: "Zen Maru Gothic", serif;
  resize: vertical;
}
.form-group__textarea::-webkit-input-placeholder {
  color: #9c9c9c;
}
.form-group__textarea::-moz-placeholder {
  color: #9c9c9c;
}
.form-group__textarea:-ms-input-placeholder {
  color: #9c9c9c;
}
.form-group__textarea::-ms-input-placeholder {
  color: #9c9c9c;
}
.form-group__textarea::placeholder {
  color: #9c9c9c;
}
@media (max-width: 767px) {
  .form-group__textarea {
    padding: 1.6rem;
  }
}

.form-group__radio-group {
  margin-top: 0.4rem;
}
.form-group__radio-group .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.2rem;
}

.form-group__radio-group label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222;
}

.form-group__radio-group input[type=radio], .form-group__radio-group input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  border: solid 1px #D9D9D9;
  border-radius: 50%;
  background: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form-group__radio-group input[type=radio]:checked, .form-group__radio-group input[type=checkbox]:checked {
  border-color: #C40018;
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 0.4rem #C40018;
          box-shadow: inset 0 0 0 0.4rem #C40018;
}

.form-group__label-desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #222;
}

.contact-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  margin-top: 3.6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-agree {
    margin-top: 2rem;
    gap: 2.4rem;
  }
}

.contact-agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}

.contact-agree input[type=checkbox] {
  width: 2.5rem;
  height: 2.5rem;
  border: solid 1px #D9D9D9;
  border-radius: 0.4rem;
  background: #fff;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-agree input[type=checkbox]:checked {
  background: #C40018;
  border-color: #C40018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-agree span {
  font-size: 1.6rem;
  line-height: 190%;
  letter-spacing: 0.04em;
  color: #222;
}
.contact-agree span a {
  color: #C40018;
  text-decoration: underline;
}

.contact-submit {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 8.8rem;
  width: 34rem;
  padding: 1.4rem 1.4rem 1.4rem 4.8rem;
  border: solid 1px #C40018;
  border-radius: 10rem;
  background: #FFFAF2;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 767px) {
  .contact-submit {
    height: 6.4rem;
    width: 100%;
    max-width: 28rem;
    font-size: 1.5rem;
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
  }
}
.contact-submit span {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  line-height: 200%;
  color: #C40018;
  font-family: "Zen Maru Gothic", serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-submit input[type=submit] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.contact-submit:hover {
  background: #C40018;
}
.contact-submit:hover span {
  color: #fff;
}
.contact-submit:hover .contact-submit__arrow {
  content: url(./images/btn-arrow-wh.svg);
}

.contact-submit__arrow {
  height: 100%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .contact-submit__arrow {
    width: 4rem;
  }
}

.thanks-card {
  background: #FFF0D7;
  border-radius: 2.4rem;
  padding: 8rem 10rem;
  margin-top: 6rem;
  max-width: 96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .thanks-card {
    padding: 4rem 2.4rem;
    margin-top: 4rem;
    border-radius: 1.6rem;
  }
}

.thanks-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.1em;
  color: #444444;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks-card__title {
    font-size: 2rem;
  }
}

.thanks-card__body {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  width: 100%;
}
@media (max-width: 767px) {
  .thanks-card__body {
    font-size: 1.5rem;
    line-height: 200%;
  }
}

.thanks-card__btn {
  margin-top: 4.8rem;
}
@media (max-width: 767px) {
  .thanks-card__btn {
    margin-top: 3.2rem;
  }
}

.wpcf7 {
  width: 100%;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-list-item {
  margin-left: 0;
}

.notfound-card {
  background: #FFF0D7;
  border-radius: 2.4rem;
  padding: 8rem 10rem;
  margin-top: 6rem;
  max-width: 96rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .notfound-card {
    padding: 4rem 2.4rem;
    margin-top: 4rem;
    border-radius: 1.6rem;
  }
}

.notfound-card__title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #444444;
  text-align: center;
}
@media (max-width: 767px) {
  .notfound-card__title {
    font-size: 2.2rem;
  }
}

.notfound-card__body {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 210%;
  letter-spacing: 0.04em;
  color: #444444;
  text-align: center;
}
@media (max-width: 767px) {
  .notfound-card__body {
    text-align: left;
    font-size: 1.5rem;
    line-height: 200%;
    margin-top: 2.4rem;
  }
}

.notfound-back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  margin-top: 5.6rem;
  padding: 1.4rem 2rem 1.4rem 2.4rem;
  border: solid 1px #C40018;
  border-radius: 10rem;
  background: #FFFAF2;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 200%;
  color: #C40018;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.notfound-back-btn:hover {
  background: #C40018;
  color: #fff;
}
.notfound-back-btn:hover .notfound-back-btn__arrow {
  background: #fff;
}
.notfound-back-btn:hover .notfound-back-btn__arrow svg {
  stroke: #C40018;
}

.notfound-back-btn__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: #C40018;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.notfound-back-btn__arrow svg {
  width: 1rem;
  height: 1rem;
  stroke: #fff;
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}

.footer {
  background: #C40018;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer .footer__inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 8rem 2rem 6.4rem;
}
@media (max-width: 767px) {
  .footer .footer__inner {
    padding: 6.4rem 3rem 4.8rem;
  }
}
.footer .footer__logo {
  max-width: 28.6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .footer .footer__logo {
    max-width: 20rem;
  }
}
.footer .address {
  font-size: 1.8rem;
  font-style: normal;
  line-height: 160%;
  margin-top: 2.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .footer .address {
    margin-top: 2.8rem;
    text-align: left;
    font-size: 1.6rem;
  }
}
.footer .tel {
  margin-top: 2.5rem;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .footer .tel {
    margin-top: 1.8rem;
  }
}
.footer .tel .label {
  background: #fff;
  color: #C40018;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 3px 7px 4px;
  margin-right: 0.8rem;
  display: inline-block;
  line-height: 100%;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .footer .tel .label {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .footer .footer__left {
    width: 100%;
  }
}
.footer .footer__menu {
  -webkit-column-gap: 6.4rem;
     -moz-column-gap: 6.4rem;
          column-gap: 6.4rem;
  row-gap: 2.4rem;
  max-width: 57.2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .footer .footer__menu {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2.8rem;
       -moz-column-gap: 2.8rem;
            column-gap: 2.8rem;
    row-gap: 2.4rem;
    margin-top: 4rem;
    max-width: 100%;
  }
}
.footer .footer__menu li a {
  font-size: 1.5rem;
  line-height: 150%;
  padding-bottom: 1rem;
  border-bottom: dashed 1px #FFFAF2;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .footer .footer__menu li a {
    font-size: 1.5rem;
    padding-bottom: 1.2rem;
  }
}
.footer .footer__menu li a::after {
  position: absolute;
  content: "";
  background-image: url(./images/arrow-cr.svg);
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  top: 0.5rem;
  right: 0;
}
.footer .copyright {
  background: #960F20;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  line-height: 160%;
  letter-spacing: 0.1em;
}