@charset "UTF-8";
/*==============================================================================
# Foundation
==============================================================================*/
/*==============================================================================
# 設定
==============================================================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-weight: 500;
  color: #323131;
  font-family: "Zen Kaku Gothic Antique", serif;
  letter-spacing: 0.04em;
  overflow-x: clip;
}

p {
  line-height: 1.8;
  margin-top: 2rem;
  font-weight: 500;
}

h2,
h3,
h4,
span {
  font-weight: 500;
}

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

@media (max-width: 767.9px) {
  .is-pc {
    display: none !important;
  }
}

.inner {
  max-width: 1120px;
  margin-inline: auto;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .inner {
    width: calc(100% - 80px);
  }
}

.inner2 {
  max-width: 1200px;
  margin-inline: auto;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .inner2 {
    width: calc(100% - 80px);
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition:
    opacity 1s,
    -webkit-transform 1s;
  transition:
    opacity 1s,
    -webkit-transform 1s;
  transition:
    opacity 1s,
    transform 1s;
  transition:
    opacity 1s,
    transform 1s,
    -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.red {
  color: #d95258;
}

/*==============================================================================
# signage
==============================================================================*/
.signage {
  width: 100%;
  height: 10rem;
  line-height: 10rem;
  background-color: #6f6f6f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .signage {
    height: 17.5rem;
    line-height: 17.5rem;
  }
}

.signage__title {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .signage__title {
    font-size: 40px;
  }
}

#contact-thanks .signage {
  background: url(../../assets/img/feature01.jpg) no-repeat center center/cover;
}

/*==============================================================================
# breadcrumb
==============================================================================*/
.breadcrumb-wrapper {
  margin-top: 70px;
  font-size: 14px;
}

/*==============================================================================
# pagination
==============================================================================*/
.pagination-wrapper {
  margin-top: 40px;
  text-align: center;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-item {
  width: 40px;
  height: 40px;
  background-color: #45a143;
}
.page-item .is-active {
  color: #323131;
  background: #fff;
  border: 1px solid #45a143;
}

.page-link {
  color: #fff;
  font-weight: 500;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*==============================================================================
# マーカー
==============================================================================*/
.marker {
  font-weight: 700;
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffff55));
  background: linear-gradient(transparent 60%, #ffff55 60%);
}

/*==============================================================================
# トップページ内共通css
==============================================================================*/
.top-section {
  padding-top: 80px;
}

/*==============================================================================
# 下層ページ共通css
==============================================================================*/
.lower-page {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .lower-page {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.lower-page__title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .lower-page__title {
    font-size: 28px;
    margin-bottom: 80px;
  }
}

/*==============================================================================
# Layout
==============================================================================*/
/*==============================================================================
# header
==============================================================================*/
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
}
@media (min-width: 768px) {
  .header {
    height: 130px;
  }
}

.header__inner {
  width: 96.66666%;
  margin-inline: auto;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
}
@media (min-width: 768px) {
  .header__content {
    height: 130px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  gap: 3.7%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__left p {
  font-size: clamp(12px, 0.97222vw, 14px);
  width: 55.6%;
}

.header__logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.7;
  }
}
.header__logo img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    max-width: 184px;
  }
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.7%;
}

/*==============================================================================
# header-sp(drawer)
==============================================================================*/
.is-fixed {
  overflow: hidden;
  height: 100vh; /* 高さを固定してスクロールを無効にする */
  position: fixed; /* ページ全体を固定 */
  width: 100%; /* 幅を100%にする */
}

.header-sp {
  height: 64px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
@media screen and (min-width: 799px) {
  .header-sp {
    display: none;
  }
}

.header-sp__logo {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 101;
  width: 100%;
  height: 64px;
  line-height: 64px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-sp__logo img {
  width: clamp(160px, 56.41026vw, 220px);
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: none;
}

.drawer-icon {
  width: 36px;
  height: 21px;
  left: 20px;
  position: fixed;
  top: 22px;
  z-index: 999;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

@media screen and (min-width: 800px) {
  .header-open {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  border-radius: 6px;
  background-color: #333;
  -webkit-transition:
    top 0.3s linear,
    -webkit-transform 0.3s linear;
  transition:
    top 0.3s linear,
    -webkit-transform 0.3s linear;
  transition:
    transform 0.3s linear,
    top 0.3s linear;
  transition:
    transform 0.3s linear,
    top 0.3s linear,
    -webkit-transform 0.3s linear;
  z-index: 401;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
  width: 32px;
}
.drawer-icon__bar:nth-of-type(3).is-checked {
  width: 40px;
}

.drawer-content {
  width: 320px;
  background: #45a143;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 104;
  padding: 86px 40px 40px;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition:
    transform 0.3s linear,
    -webkit-transform 0.3s linear;
  color: #fff;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.drawer-content__link::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) and (any-hover: hover) {
  .drawer-content__link:hover {
    color: #d2e3bf;
  }
}

.drawer-content__button {
  margin-top: 14px;
  text-align: right;
}

/*          mask
---------------------------*/
#mask {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
#mask.is-checked {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 103;
  opacity: 0.6;
}

/*==============================================================================
# Foundation
==============================================================================*/
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.footer__inner {
  max-width: 1392px;
  margin-inline: auto;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer__content .item1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .footer__content .item1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.footer__content .item2 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
@media (min-width: 768px) {
  .footer__content .item2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__content .item3 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) {
  .footer__content .item3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.footer__left {
  position: relative;
}
@media (min-width: 768px) {
  .footer__left {
    width: 26%;
  }
}

.footer__logo {
  max-width: 184px;
  width: 100%;
}

.footer__left-bg {
  background: #fff1f2;
  height: 360px;
  margin-top: 250px;
  width: 25vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  max-width: 350px;
}

.footer__center {
  max-width: none;
  margin-top: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__center {
    margin-top: 0;
    max-width: 330px;
    width: 30%;
  }
}
.footer__center small {
  font-size: 12px;
  font-weight: 500;
  margin-top: 45px;
  display: block;
  padding-left: 20px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-inline: auto;
  max-width: 500px;
  gap: 4%;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__nav-list {
    display: block;
  }
}

.footer__nav-item {
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px dashed #d95258;
  width: 48%;
}
@media screen and (max-width: 480px) {
  .footer__nav-item {
    padding: 20px 11px;
    font-size: clamp(11px, 3.75vw, 18px);
  }
}
@media (min-width: 768px) {
  .footer__nav-item {
    width: 100%;
  }
}
.footer__nav-item a {
  font-weight: 500;
}
@media (any-hover: hover) {
  .footer__nav-item:hover {
    opacity: 0.7;
  }
}

.footer__right {
  position: relative;
}
@media (min-width: 768px) {
  .footer__right {
    width: 40%;
  }
}

.footer__right-bg {
  background: #fff1f2;
  height: 300px;
  width: 36vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  max-width: 550px;
}

.footer__to-form-button {
  color: #d95258;
  padding: 24px 32px;
  border-radius: 37px;
  border: 1px solid #d95258;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(16px, 5.1282vw, 20px);
  margin-top: 60px;
  background: #fff;
  text-align: center;
  display: inline-block;
}
@media (min-width: 768px) {
  .footer__to-form-button {
    font-size: clamp(20px, 1.94444vw, 28px);
    padding: 36px 50px;
    margin-top: 140px;
    bottom: 40px;
    position: absolute;
  }
}
@media (any-hover: hover) {
  .footer__to-form-button:hover {
    background: #d95258;
    color: #fff;
  }
}

/*==============================================================================
# Object
==============================================================================*/
.section__title {
  font-weight: 500;
  font-size: clamp(34px, 5.21512vw, 40px);
  position: relative;
  color: #d95258;
  text-transform: uppercase;
  line-height: 1;
}
.section__title span {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 86px;
  }
}

.section__title2 {
  color: #d95258;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 2.77778vw, 40px);
}
.section__title2 span {
  display: block;
  font-size: 18px;
  margin-top: 20px;
}

/*==============================================================================
# fixed-side-buttons
==============================================================================*/
.fixed-side-buttons {
  position: fixed;
  z-index: 10;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px; /* ボタン間のスペース */
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; /* 右から左に縦書き */
  text-orientation: upright; /* 文字を回転せず、縦方向に */
}

.fixed-side-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 10px; /* リンクボタン間のスペース */
  line-height: 1;
}
.fixed-side-button a {
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row; /* アイコンとテキストを縦に配置 */
  color: white;
  text-decoration: none;
  width: 72px; /* 幅を固定 */
  height: 205px; /* 高さを固定 */
  font-size: 20px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* パディングを含めたサイズ調整 */
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fixed-side-button a:hover {
  opacity: 0.7;
}
.fixed-side-button a img {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*==============================================================================
# to-contact__button
==============================================================================*/
.to-contact__button {
  text-align: center;
}
.to-contact__button a {
  padding: 21px 84px 20px 84px;
  border: 1px solid #b11b21;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  color: #ff1f55;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .to-contact__button a:hover {
    background: #b11b21;
    color: #fff;
  }
}

.header__button {
  background: #b11b21;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 23px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #b11b21;
}
@media (min-width: 768px) {
  .header__button {
    padding: 30px 42px;
  }
}
.header__button img {
  width: 26px;
  height: auto;
}
.header__button span {
  margin-left: 10px;
}
@media (any-hover: hover) {
  .header__button:hover {
    color: #b11b21;
    background: #fff;
  }
}

/*==============================================================================
# drawer-contact-button
==============================================================================*/
.drawer-contact-button {
  background: #b11b21;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 28px 48px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
}
.drawer-contact-button img {
  width: 20px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 8px;
}

/*==============================================================================
# catalog__button
==============================================================================*/
.catalog__button {
  margin-top: 68px;
  text-align: center;
  position: relative;
}
.catalog__button a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  background: #e3787a;
  border-radius: 100px;
  padding: 16px 80px 16px 60px;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  min-width: 240px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 380px) {
  .catalog__button a {
    padding: 16px 50px 16px 30px;
    min-width: 200px;
  }
}
@media (min-width: 768px) {
  .catalog__button a:hover {
    background: #d2e3bf;
  }
}
.catalog__button a:hover .catalog-button__arrow {
  right: 30px;
}
@media screen and (max-width: 380px) {
  .catalog__button a:hover .catalog-button__arrow {
    right: 15px;
  }
}
.catalog__button .catalog-button__arrow {
  position: absolute;
  content: "";
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 380px) {
  .catalog__button .catalog-button__arrow {
    right: 30px;
  }
}

/*==============================================================================
# submit・return home
==============================================================================*/
.common-button {
  margin-top: 70px;
  text-align: center;
}

.common-button__link {
  max-width: 260px;
  background: #b11b21;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  height: 50px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.common-button__link:hover {
  background: #d2e3bf;
}

/*==============================================================================
# top buttons
==============================================================================*/
.buttons {
  margin-top: 40px;
}

.buttons__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: 8px;
  text-align: center;
}
@media (min-width: 768px) {
  .buttons__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.buttons__item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .buttons__item {
    max-width: 350px;
    width: 100%;
  }
}
.buttons__item::after {
  position: absolute;
  content: "";
  background: url(../../../../assets/img/arrow.png) no-repeat center center/contain;
  width: 5px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.buttons__item:hover {
  opacity: 0.7;
}

.buttons__link {
  width: 100%;
  max-width: 340px;
  height: 56px;
  line-height: 56px;
  background-color: #ddd;
  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;
  border-radius: 4px;
  color: #fff;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .buttons__link {
    max-width: 350px;
  }
}
.buttons__link img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 8px;
}

.--contact {
  background-color: #2b7d25;
}

.--to-patient,
.--inspection {
  background-color: #45a143;
}

/*==============================================================================
# c-button
==============================================================================*/
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-button {
    display: block;
  }
}

.c-button__link {
  background-color: #2b7d25;
  max-width: 300px;
  width: 100%;
  height: 56px;
  line-height: 56px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  padding: 14px 30px;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: clamp(12px, 1.041667vw, 18px);
}
.c-button__link:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  .director__img {
    width: 47%;
  }
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-radius: 20px;
  width: 100%;
  border: 1px solid #d95258;
  padding: 12px 24px;
  background: #fff1f2;
  font-size: 16px;
  line-height: normal;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #5a5a5a;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #5a5a5a;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #5a5a5a;
}
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #5a5a5a;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #5a5a5a;
}
input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
input[type="tel"]:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none; /* デフォルトのフォーカススタイルを削除 */
  -webkit-box-shadow: 0 0 4px 2px rgba(217, 82, 88, 0.7);
  box-shadow: 0 0 4px 2px rgba(217, 82, 88, 0.7);
}

.--any input[type="text"],
.--any input[type="email"],
.--any input[type="tel"],
.--any select,
.--any textarea {
  border-radius: 20px;
  width: 100%;
  border: 1px solid #5a5a5a;
  padding: 12px 24px;
  background: #f7f7f7;
  font-size: 16px;
  line-height: normal;
}
.--any input[type="text"]::-webkit-input-placeholder,
.--any input[type="email"]::-webkit-input-placeholder,
.--any input[type="tel"]::-webkit-input-placeholder,
.--any select::-webkit-input-placeholder,
.--any textarea::-webkit-input-placeholder {
  color: #5a5a5a;
}
.--any input[type="text"]::-moz-placeholder,
.--any input[type="email"]::-moz-placeholder,
.--any input[type="tel"]::-moz-placeholder,
.--any select::-moz-placeholder,
.--any textarea::-moz-placeholder {
  color: #5a5a5a;
}
.--any input[type="text"]:-ms-input-placeholder,
.--any input[type="email"]:-ms-input-placeholder,
.--any input[type="tel"]:-ms-input-placeholder,
.--any select:-ms-input-placeholder,
.--any textarea:-ms-input-placeholder {
  color: #5a5a5a;
}
.--any input[type="text"]::-ms-input-placeholder,
.--any input[type="email"]::-ms-input-placeholder,
.--any input[type="tel"]::-ms-input-placeholder,
.--any select::-ms-input-placeholder,
.--any textarea::-ms-input-placeholder {
  color: #5a5a5a;
}
.--any input[type="text"]::placeholder,
.--any input[type="email"]::placeholder,
.--any input[type="tel"]::placeholder,
.--any select::placeholder,
.--any textarea::placeholder {
  color: #5a5a5a;
}
.--any input[type="text"]:focus-visible,
.--any input[type="email"]:focus-visible,
.--any input[type="tel"]:focus-visible,
.--any select:focus-visible,
.--any textarea:focus-visible {
  outline: none; /* デフォルトのフォーカススタイルを削除 */
  -webkit-box-shadow: 0 0 4px 2px rgba(68, 68, 68, 0.7);
  box-shadow: 0 0 4px 2px rgba(68, 68, 68, 0.7);
}

textarea {
  height: 243px;
  resize: vertical;
}

.contact {
  padding-top: 94px;
}

.contact__inner {
  width: min(1120px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.contact__head {
  position: relative;
  margin-top: -110px;
  font-size: 18px;
  line-height: normal;
  margin-top: 0;
  position: relative;
}
@media (min-width: 768px) {
  .contact__head {
    font-size: 20px;
  }
}
.contact__head span.--must,
.contact__head span.--any {
  display: inline-block;
  font-weight: 700;
}
.contact__head span.--must::after,
.contact__head span.--any::after {
  position: absolute;
  top: calc(50% + 1px);
  translate: 0 -50%;
  font-size: 18px;
  line-height: normal;
  display: inline-block;
  padding: 7px 16px 8px;
  background: #fff1f2;
  white-space: nowrap;
  color: #d95258;
  font-weight: 700;
  left: 160px;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .contact__head span.--must::after,
  .contact__head span.--any::after {
    right: 40px;
    left: auto;
    font-size: 20px;
  }
}
.contact__head span.--must::after {
  content: "必須";
}
.contact__head span.--any::after {
  content: "任意";
  background: #e8e8e7;
  color: #646464;
}

.contact__image {
  width: 76.38889%;
  margin-left: auto;
}
.contact__image img {
  border-radius: 0 0 0 60px;
  height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact__title {
  position: absolute;
  content: "";
  left: 18.05556vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #d95258;
  font-size: clamp(30px, 8.33333vw, 120px);
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Noto Serif JP", serif;
}
.contact__title span {
  display: block;
  font-size: clamp(16px, 2.77778vw, 40px);
  margin-top: 16px;
  font-family: "Zen Kaku Gothic Antique", serif;
}

.contact-flow {
  margin-bottom: 70px;
}

.contact-flow__content {
  text-align: center;
  font-size: clamp(17px, 4.61538vw, 24px);
  font-weight: 700;
  color: #d95258;
  line-height: 2;
}
@media (min-width: 768px) {
  .contact-flow__content {
    font-size: 28px;
  }
}

.contact-flow__symbol {
  margin-inline: 10px;
}
@media (min-width: 768px) {
  .contact-flow__symbol {
    margin-inline: 20px;
  }
}

.contact-flow__text {
  background: #fff1f2;
  border-radius: 8px;
  padding: 5px 12px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .contact-flow__text {
    padding: 8px 40px;
    border-radius: 14px;
  }
}

.contact__desc {
  margin-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__desc {
    margin-bottom: 80px;
  }
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 30px;
  border-top: 1px solid #d95258;
}

.contact__row {
  padding-block: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 16px;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  align-items: normal;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .contact__row {
    display: grid;
    grid-template-columns: 266px 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contact__row.--aifs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact__confirmation {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.contact__data {
  width: 100%;
}
.contact__data span {
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact__data span {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .contact__data {
    width: auto;
  }
}

.contact__data-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

input[type="radio"] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* Label positioning context */
.radio-label {
  position: relative;
  display: inline-block;
  padding-left: 30px; /* Space for the custom radio button */
  margin-bottom: 5px;
  cursor: pointer;
}

/* Custom Radio Button Design */
.radio-label-span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #d95258; /* Border color */
  border-radius: 50%; /* Rounded corners for radio button */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Custom Radio Button Checked State */
.radio-test:checked + .radio-label-span::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #d95258; /* Fill color when checked */
  border-radius: 50%; /* Rounded corners for checked state */
  position: absolute;
  top: 50%;
  left: 5px; /* Centering the filled circle */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Focus State */
.radio-test:focus + .radio-label-span::before {
  outline: none; /* デフォルトのフォーカススタイルを削除 */
  -webkit-box-shadow: 0 0 4px 2px rgba(217, 82, 88, 0.7);
  box-shadow: 0 0 4px 2px rgba(217, 82, 88, 0.7);
}

.contact__data-radio:not(:first-child) {
  margin-top: 16px;
}

@media (min-width: 820px) {
  .contact__data-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5.35714%;
  }
}
input[type="submit"],
input[type="button"] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact__submit {
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact__submit input[type="submit"] {
  display: inline-block;
  background: #fff1f2;
  font-size: 22px;
  line-height: normal;
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 300px;
  width: 100%;
  font-weight: 600;
  border-radius: 20px;
  color: #d95258;
}
@media (min-width: 768px) {
  .contact__submit input[type="submit"] {
    font-size: 28px;
  }
}

.contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}

.submit-wrapper {
  position: relative;
  display: inline-block;
  max-width: 280px;
  width: 100%;
}
@media (any-hover: hover) {
  .submit-wrapper:hover .kunoji-arrow {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  .submit-wrapper:hover input[type="submit"] {
    background: #d95258;
    color: #fff;
  }
}

.submit-wrapper .kunoji-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #d95258;
  border-right: 2px solid #d95258;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .submit-wrapper .kunoji-arrow:hover {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 120px;
}
@media (min-width: 768px) {
  select {
    width: clamp(84px, 8.33333vw, 120px);
  }
}

.contact__select-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .contact__select-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact__select-wrap svg {
  position: absolute;
  top: calc(50% + 2px);
  translate: 0 -50%;
  right: 10.69px;
  width: 18px;
  height: auto;
  pointer-events: none;
}

.select-date {
  margin-inline: 8px;
}

#select .contact__data {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  #select .contact__data {
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
}

.contact-body.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.western-calendar {
  margin-right: 8px;
}

.contact-thanks__inner {
  width: 75%;
  margin-inline: auto;
}

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

.contact-thanks__title {
  font-weight: 700;
  font-size: 18px;
}
@media (min-width: 768px) {
  .contact-thanks__title {
    font-size: 28px;
  }
}

.contact-thanks__text {
  font-size: 14px;
}

.contact-thanks__main-text {
  font-weight: 500;
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
}
@media (min-width: 768px) {
  .contact-thanks__main-text {
    font-size: 16px;
  }
}

/*==============================================================================
# flex-box
==============================================================================*/
.flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  max-width: 1080px;
  margin-inline: auto;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*==============================================================================
# gap
==============================================================================*/
.gap-8 {
  gap: 8vw;
}

.gap-4 {
  gap: 4vw;
}

/*==============================================================================
# margin
==============================================================================*/
.m0 {
  margin: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.m25 {
  margin: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.m30 {
  margin: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.m35 {
  margin: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.m40 {
  margin: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.m45 {
  margin: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.m50 {
  margin: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.m55 {
  margin: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.m60 {
  margin: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.m65 {
  margin: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.m70 {
  margin: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.m75 {
  margin: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.m80 {
  margin: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.m100 {
  margin: 100px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

/*==============================================================================
# font-size
==============================================================================*/
/*==============================================================================
# mv
==============================================================================*/
.mv {
  position: relative;
  margin-top: -130px;
  height: clamp(500px, 59.86111vw, 862px);
}
.mv__content {
  position: absolute;
  color: #fff;
  left: 7vw;
  bottom: 8.33333vw;
}
@media (min-width: 768px) {
  .mv__content {
    left: 10.41667vw;
  }
}

.mv__lead {
  font-size: clamp(36px, 9.38722vw, 72px);
}
@media (min-width: 768px) {
  .mv__lead {
    font-size: clamp(72px, 7.91667vw, 114px);
  }
}

.mv__text {
  font-size: 16px;
  word-break: break-all; /* 英単語全体でも改行可能 */
  overflow-wrap: break-word;
}
@media (min-width: 768px) {
  .mv__text {
    font-size: 28px;
  }
}
.mv__text span {
  color: #b11b21;
}

.mv__img {
  height: clamp(500px, 59.86111vw, 862px);
}
.mv__img img {
  width: 100%;
  height: clamp(500px, 59.86111vw, 862px);
  -o-object-fit: cover;
  object-fit: cover;
}

/*==============================================================================
# business
==============================================================================*/
.business {
  padding-block: 60px 100px;
}
@media (min-width: 768px) {
  .business {
    padding-block: 100px 140px;
  }
}

.business__title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: #d95258;
  text-align: center;
}
@media (min-width: 768px) {
  .business__title {
    font-size: 24px;
  }
}

.business__subtitle {
  text-align: center;
  color: #d95258;
  font-weight: 700;
  font-size: clamp(32px, 5.47589vw, 42px);
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .business__subtitle {
    font-size: clamp(42px, 4.44444vw, 64px);
    display: block;
    padding-top: 120px;
  }
}
.business__subtitle span {
  font-weight: 700;
}

.business__subtitle--word::before {
  font-family: "Allison", serif;
  position: absolute;
  color: #ffe1e2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -34px;
  z-index: -1;
  width: 100%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .business__subtitle--word::before {
    top: -80px;
  }
}

.business__subtitle--word1 {
  position: relative;
}
.business__subtitle--word1::before {
  content: "Light cargo";
}

.business__subtitle--word2 {
  position: relative;
}
.business__subtitle--word2::before {
  content: "Self-Employment";
}

.business__text {
  margin-top: 60px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media (min-width: 768px) {
  .business__text {
    margin-top: 80px;
  }
}

.times {
  margin-block: 0 30px;
}
@media (min-width: 768px) {
  .times {
    margin: 0;
  }
}

/*==============================================================================
# mission
==============================================================================*/
.mission__inner {
  background-color: #fff1f2;
  padding-inline: 40px;
  padding-block: 40px 60px;
}
@media (min-width: 768px) {
  .mission__inner {
    padding-inline: clamp(60px, 8.33333vw, 120px);
    padding-block: 60px 100px;
  }
}

.mission__title span {
  font-weight: 500;
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 1000px) {
  .mission__title span {
    margin-left: 70px;
    display: inline-block;
    margin-top: 0;
  }
}

.mission__list {
  font-weight: 500;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .mission__list {
    margin-top: 40px;
  }
}
.mission__list .mission__item:nth-child(1),
.mission__list .mission__item:nth-child(2) {
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
@media (min-width: 768px) {
  .mission__list .mission__item:nth-child(1),
  .mission__list .mission__item:nth-child(2) {
    padding-bottom: 40px;
  }
}
.mission__list .mission__item:nth-child(2) {
  margin-left: 10px;
}
@media (min-width: 768px) {
  .mission__list .mission__item:nth-child(2) {
    margin-left: clamp(40px, 4.86111vw, 70px);
  }
}
.mission__list .mission__item:nth-child(3) {
  margin-left: 20px;
}
@media (min-width: 768px) {
  .mission__list .mission__item:nth-child(3) {
    margin-left: clamp(80px, 9.72222vw, 140px);
  }
}

.mission__item {
  font-size: clamp(18px, 2.22222vw, 32px);
  font-weight: 500;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .mission__item {
    font-size: clamp(24px, 2.22222vw, 32px);
    padding-top: 40px;
  }
}

.mission__item-text {
  font-weight: 500;
  margin-top: 0;
}

.mission__num {
  color: #d95258;
  font-weight: 500;
  margin-right: 24px;
}
@media (min-width: 768px) {
  .mission__num {
    margin-right: clamp(30px, 3.47222vw, 50px);
  }
}

.initials {
  font-weight: 500;
}

/*==============================================================================
# message
==============================================================================*/
.message {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .message {
    padding-top: 140px;
    padding-bottom: 160px;
  }
}

.message__content {
  position: relative;
  top: 0;
}

.message__title {
  margin-bottom: 0;
}
.message__title span {
  display: block;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
}

.message__img {
  text-align: right;
  position: relative;
  margin-top: -20px;
  z-index: -1;
}
@media (min-width: 768px) {
  .message__img {
    margin-top: -40px;
  }
}
.message__img img {
  border-radius: 8px;
  width: 89.28571%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .message__img img {
    height: 540px;
  }
}

.message__card {
  position: absolute;
  left: 0;
  background: #d95258;
  color: #fff;
  max-width: 240px;
  width: 100%;
  border-radius: 8px;
  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;
  bottom: -30px;
  padding: 30px;
  min-height: 160px;
}
@media (min-width: 768px) {
  .message__card {
    bottom: 70px;
    min-height: 180px;
    max-width: 360px;
  }
}
.message__card:not(:first-child) p {
  margin-top: 0 !important;
}
.message__card span {
  margin-top: 24px;
  font-size: 14px;
}

.message__texts {
  margin-top: 60px;
  max-width: 960px;
  margin-inline: auto;
}
.message__texts p {
  font-family: "Noto Serif JP", serif;
  text-transform: uppercase;
}

.message__texts-mini-title {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}

.message__texts-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  padding-inline: 30px;
  border-inline: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .message__texts-title {
    font-size: 24px;
    padding-inline: 60px;
  }
}

.message__texts-text {
  margin-top: 50px;
}
.message__texts-text span {
  font-weight: 700;
}

/*==============================================================================
# passion
==============================================================================*/
.passion {
  position: relative;
  padding-block: 80px;
}
@media (min-width: 768px) {
  .passion {
    padding-block: 100px;
  }
}
.passion:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  z-index: -2;
  height: 100%;
  background: url(../../assets/img/passion-bg.jpg) no-repeat center center/cover;
}
.passion:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  background: #d95258;
  opacity: 0.8;
}

.passion__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-top: 40px;
  gap: 8%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .passion__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-top: 80px;
  }
}

.passion__title {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.passion__subtitle {
  color: #fff;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.5;
  font-size: clamp(20px, 1.94444vw, 28px);
}
@media (min-width: 768px) {
  .passion__subtitle {
    font-size: 56px;
    margin-top: 40px;
    font-size: clamp(36px, 2.77778vw, 40px);
  }
}

.passion__text {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 768px) {
  .passion__text {
    width: 46%;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .passion__img {
    width: 46%;
  }
}

/*==============================================================================
# our-missions
==============================================================================*/
.our-missions {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .our-missions {
    margin-top: 100px;
  }
}

.our-missions__title-en {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .our-missions__title-en {
    margin-bottom: 30px;
  }
}

.our-missions__title {
  font-size: clamp(36px, 3.33333vw, 48px);
}
.our-missions__title span {
  font-weight: 500;
}

.our-missions__desc {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 1020px) and (min-width: 768px) {
  .our-missions__desc {
    margin-left: clamp(40px, 4.86111vw, 70px);
    display: inline-block;
    margin-top: 0;
  }
}

.our-missions__list {
  display: block;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  .our-missions__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
  }
}

.our-missions__item {
  position: relative;
  z-index: 0;
  font-size: clamp(20px, 1.66667vw, 24px);
  font-weight: 500;
  color: #fff;
  height: clamp(140px, 13.8889vw, 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-missions__item::before {
  position: absolute;
  content: "";
  left: 10px;
  top: -8px;
  background: url(../../assets/img/our-missions-deco01.png) no-repeat center center/contain;
  width: clamp(60px, 6.94444vw, 100px);
  height: clamp(60px, 6.94444vw, 100px);
}
.our-missions__item::after {
  position: absolute;
  content: "";
  right: 10px;
  bottom: -8px;
  background: url(../../assets/img/our-missions-deco02.png) no-repeat center center/contain;
  width: clamp(60px, 6.94444vw, 100px);
  height: clamp(60px, 6.94444vw, 100px);
}
@media (min-width: 768px) {
  .our-missions__item {
    font-size: 20px, 2.22222vw, 32px;
  }
}

.our-missions__item-overlay {
  position: absolute;
  background: rgba(225, 117, 121, 0.9);
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: -1;
}

#our-missions-item1 {
  background: url(../../assets/img/our-missions01.jpg) no-repeat center center/cover;
}

#our-missions-item2 {
  background: url(../../assets/img/our-missions02.png) no-repeat center center/cover;
}

#our-missions-item3 {
  background: url(../../assets/img/our-missions03.png) no-repeat center center/cover;
}

#our-missions-item4 {
  background: url(../../assets/img/our-missions04.png) no-repeat center center/cover;
}

/*==============================================================================
# delivery-driver
==============================================================================*/
.delivery-driver {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .delivery-driver {
    padding-top: 100px;
  }
}

.delivery-driver__title {
  padding-bottom: 100px;
  position: relative;
  font-size: clamp(48px, 5.97222vw, 86px);
}
.delivery-driver__title::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 89.2858%;
  height: 70%;
  background: url(../../assets/img/delivery-driver-bg.png) no-repeat center center/cover;
  z-index: -1;
}
.delivery-driver__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 89.2858%;
  height: 70%;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.delivery-driver__title-ja {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .delivery-driver__title-ja {
    margin-bottom: 30px;
  }
}

span.delivery-driver__title-desc {
  font-size: clamp(20px, 3.12907vw, 24px);
  display: block;
  margin-top: 20px;
}
@media (min-width: 768px) {
  span.delivery-driver__title-desc {
    font-size: clamp(24px, 2.5vw, 36px);
  }
}

.delivery-driver__sub-title {
  font-size: 20px;
  font-weight: 500;
  color: #d95258;
  position: relative;
}
@media (min-width: 768px) {
  .delivery-driver__sub-title {
    font-size: clamp(20px, 1.66667vw, 24px);
  }
}
.delivery-driver__sub-title::before {
  position: absolute;
  left: -80px;
  width: 40px;
  height: 20px;
  background: #d95258;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.delivery-driver__texts {
  padding-block: 100px 90px;
  padding-left: 80px;
  width: 92%;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.delivery-driver__list {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .delivery-driver__list .delivery-driver__item:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.delivery-driver__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
  padding-bottom: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .delivery-driver__item {
    padding-bottom: 100px;
  }
}
.delivery-driver__item:not(:first-child) {
  border-top: 1px solid #d95258;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .delivery-driver__item:not(:first-child) {
    padding-top: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.delivery-driver__item-texts {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .delivery-driver__item-texts {
    width: 47%;
    margin-top: 0;
  }
}

.delivery-driver__item-title {
  font-size: 20px;
  color: #d95258;
  font-weight: 700;
}
.delivery-driver__item-title span {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.delivery-driver__img {
  position: relative;
}
@media (min-width: 768px) {
  .delivery-driver__img {
    width: 47%;
  }
}

.delivery-driver__img-num {
  position: absolute;
  z-index: 2;
  content: "";
  left: 30px;
  font-size: 48px;
  font-weight: 500;
  color: #d95258;
  top: -30px;
  line-height: 1;
}
@media (min-width: 768px) {
  .delivery-driver__img-num {
    top: -14%;
    left: 60px;
    font-size: clamp(56px, 5.97222vw, 86px);
  }
}

/*==============================================================================
# movie
==============================================================================*/
.movie__inner {
  padding: 70px 20px;
  text-align: center;
  background: #e17579;
}
.movie__inner iframe {
  width: 100%;
  aspect-ratio: 3/2;
  height: auto;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

/*==============================================================================
# features
==============================================================================*/
.features {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .features {
    padding-top: 100px;
  }
}

.features__title {
  font-size: 20px;
  font-weight: 700;
  color: #d95258;
  text-align: center;
  text-transform: uppercase;
}
.features__title span {
  display: block;
  font-weight: 700;
  margin-bottom: 16px;
}

.features__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 768px) {
  .features__lists {
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.features__items:first-child .features__list .features__item:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .features__items:not(:first-child) {
    border-left: 1px dashed #d95258;
  }
}

.features__item {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;*/
  -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;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  margin-top: 50px;
  min-height: 312px;
}
@media (min-width: 768px) {
  .features__item {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .features__item:not(:first-child) {
    margin-top: 80px;
  }
}

.features__item-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
  .features__item-img img {
    max-width: 260px;
  }
}

.features__item-texts {
  width: 70%;
  margin-top: 20px;
}

.features__item-title {
  font-weight: 500;
  font-size: 20px;
  color: #d95258;
  text-align: center;
}

.features__item-text {
  margin-top: 20px;
}

/*==============================================================================
# work-flow
==============================================================================*/
.work-flow {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .work-flow {
    padding-top: 100px;
  }
}

.work-flow__inner {
  background: #fff1f2;
  padding: 40px;
}
@media (min-width: 768px) {
  .work-flow__inner {
    padding: 60px 100px 80px 100px;
  }
}

.work-flow__title {
  font-size: clamp(26px, 3.33333vw, 48px);
  color: #d95258;
  font-weight: 500;
}
.work-flow__title span {
  font-size: 18px;
  font-weight: 500;
  display: block;
}

.work-flow__title-en {
  text-transform: uppercase;
}

.work-flow__caution {
  margin-top: 20px;
  display: block;
}

.work-flow__content {
  padding-left: clamp(40px, 7.8227vw, 60px);
  width: 100%;
  max-width: 1000px;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .work-flow__content {
    padding-left: 100px;
  }
}

.work-flow__list {
  position: relative;
  margin-top: 60px;
}
.work-flow__list .work-flow__item:nth-child(odd) .work-flow__item-time .time_square {
  background: #d9a9ab;
}

.work-flow__item {
  padding-bottom: 80px;
  position: relative;
}
.work-flow__item:not(:first-child) {
  border-top: 1px dashed #707070;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .work-flow__item:not(:last-child)::before {
    left: -136px;
    bottom: 30px;
    width: 66px;
    height: 66px;
    position: absolute;
    content: "";
    background: url(../../assets/img/arrow-deco.png) no-repeat center center/contain;
  }
}

.work-flow__item-time {
  font-weight: 700;
  color: #e17579;
  font-size: 24px;
  position: relative;
  line-height: 0;
}

.work-flow__item-title {
  font-weight: 700;
  color: #e17579;
  font-size: 18px;
  margin-top: 10px;
}

.work-flow__item-text {
  font-weight: normal;
  margin-top: 20px;
}

.time_line {
  width: 1px;
  height: 94.7%;
  position: absolute;
  top: 0;
  left: -40px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-top: 60px;
}
@media (min-width: 768px) {
  .time_line {
    left: -70px;
  }
}

.time_line span {
  display: block;
  width: 100%;
  height: 94%;
  background: #707070;
}

.time_square {
  position: absolute;
  background: #e17579;
  width: 40px;
  height: 20px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: -40px;
  z-index: 1;
}
@media (min-width: 768px) {
  .time_square {
    width: 60px;
    left: -70px;
  }
}

/*==============================================================================
# people
==============================================================================*/
.people {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .people {
    padding-top: 100px;
  }
}

@media (min-width: 768px) {
  .people__texts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13.88889vw;
    margin-top: 0;
  }
}

.people__title {
  position: relative;
  padding-top: 40px;
  font-size: clamp(48px, 5.97222vw, 86px);
}
.people__title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 20px;
  background: #d95258;
  left: 0;
  top: 0;
}
.people__title span {
  display: block;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .people__title span {
    margin-top: 30px;
  }
}

.people__text {
  color: #d95258;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .people__text {
    margin-top: 0;
  }
}

.people__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 50px;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  column-gap: 3%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .people__list {
    gap: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 90px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.people__item {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 500px) {
  .people__item {
    width: 48%;
  }
}
@media (min-width: 768px) {
  .people__item {
    width: 24%;
  }
}
@media (min-width: 768px) {
  .people__item:nth-child(1) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .people__item:nth-child(2) {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .people__item:nth-child(3) {
    margin-top: 60px;
  }
}

.people__card {
  background: #d9d9d9;
  width: 100%;
  padding: 20px;
  height: 380px;
  /*color: #d95258;*/
  color: #fff;
  position: relative;
}
.people__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 黒の透過度50% */
  z-index: 0;
}
.people__card.--interview01 {
  background: url(../../assets/img/message.png) no-repeat center center / cover;
}
.people__card.--interview02 {
  background: url(../../assets/img/interview-top02.jpg) no-repeat center center / cover;
}
.people__card.--interview03 {
  background: url(../../assets/img/interview-top00_no-image.svg) no-repeat center center / cover;
}
.people__card span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; /* 縦書きに変更 */
  left: 0;
  top: 0;
  padding: 12px 4px;
  background: #d95258;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
}

.people__card-texts {
  position: absolute;
  bottom: 20px;
}

.people__card-title {
  font-size: 20px;
  line-height: 2;
  padding: 0 20px
}

.people__card-initial {
  font-size: 28px;
  text-align: right;
  margin-top: 16px;
  line-height: 1;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .people__card-initial {
    font-size: 40px;
  }
}

.people__card-button {
  background: #d95258;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 34px 8px 13px;
  margin-top: 16px;
  position: relative;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.people__card-button::after {
  position: absolute;
  content: "";
  background: #ffffff;
  height: 10.3923048454px;
  width: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
}

.people__more-item {
  background: #fff1f2;
  padding: 30px;
  margin-top: 70px;
}
@media (min-width: 768px) {
  .people__more-item {
    margin-top: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6%;
    padding: 60px;
  }
  .people__more-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .people__more-item-imgs {
    width: 37%;
  }
}

.people__more-item-img {
  position: relative;
}
.people__more-item-img span {
  position: absolute;
  bottom: 50px;
  left: -20px;
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  background: #d95258;
  display: inline-block;
  padding: 2px 20px 3px;
}
@media (min-width: 768px) {
  .people__more-item-img span {
    font-size: 24px, 2.08333vw, 30px;
  }
}
.people__more-item-img img {
  max-height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 768px) {
  .people__more-item-img img {
    max-height: 600px;
  }
}

.people__more-item-prof {
  color: #d95258;
  background: #fff;
  padding: 20px 20px 30px;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .people__more-item-prof {
    padding: 20px 40px 50px;
  }
}

.people__more-item-prof-title {
  border-radius: 100vmax;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  background: #d95258;
  padding: 2px 20px 3px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.people__more-item-prof-initial {
  font-size: clamp(24px, 2.77778vw, 40px);
  text-align: center;
}

.people__more-item-prof-driver-experience {
  text-align: center;
}
@media (min-width: 768px) {
  .people__more-item-prof-driver-experience {
    text-align: left;
  }
}

.people__more-item-prof-like {
  margin-top: 0px;
  text-align: center;
}
@media (min-width: 768px) {
  .people__more-item-prof-like {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .people__more-item-texts {
    width: 57%;
  }
}

.people__more-item-texts-title {
  color: #d95258;
  font-size: clamp(24px, 2.22222vw, 32px);
  margin-top: 40px;
  line-height: 2;
  position: relative;
  z-index: 2;
}
.people__more-item-texts-title::before {
  position: absolute;
  content: "Interview";
  font-family: "Allison", serif;
  color: #fff;
  font-size: clamp(100px, 15.97222vw, 230px);
  z-index: -1;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
  top: 0;
  left: 0;
  line-height: 1;
  font-size: clamp(80px, 6.94444vw, 100px);
}
@media (min-width: 768px) {
  .people__more-item-texts-title::before {
    font-size: clamp(100px, 15.97222vw, 230px);
    top: -100px;
  }
}

.people__more-item-texts-list {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .people__more-item-texts-list {
    margin-top: 50px;
  }
}

.people__more-item-texts-item:not(:first-child) {
  margin-top: 40px;
}
.people__more-item-texts-item p {
  margin-top: 24px;
}
.people__more-item-texts-item h4 {
  color: #d95258;
  padding-left: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .people__more-item-texts-item h4 {
    padding-left: 30px;
  }
}
.people__more-item-texts-item h4::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 100%;
  background: #d95258;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*==============================================================================
# welfare
==============================================================================*/
.welfare {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .welfare {
    margin-top: 140px;
  }
}

.welfare__signage {
  background: url(../../assets/img/welfare-signage-img.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
  padding-block: 80px;
}
.welfare__signage::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(217, 82, 88, 0.7);
  left: 0;
  top: 0;
  z-index: -1;
}

.welfare__signage-title {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  font-family: "Zen Kaku Gothic Antique", serif;
}
.welfare__signage-title span {
  font-size: clamp(52px, 11.11111vw, 160px);
  display: block;
  opacity: 0.4;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 768px) {
  .welfare__signage-title span {
    font-size: clamp(100px, 11.11111vw, 160px);
  }
}

.welfare__subtitle {
  color: #d95258;
  text-align: center;
  font-weight: 500;
  font-size: clamp(24px, 2.22222vw, 32px);
  margin-top: 50px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .welfare__subtitle {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}
.welfare__subtitle span {
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  font-size: clamp(16px, 1.38889vw, 18px);
  font-family: "Noto Serif JP", serif;
}

.welfare__text {
  margin-top: 40px;
  text-align: center;
}

.welfare__content {
  background: #ffe1e2;
  padding-bottom: 90px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .welfare__content {
    margin-top: 80px;
  }
}

.welfare__content-title {
  font-size: clamp(24px, 2.22222vw, 32px);
  color: #d95258;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-block: 80px;
}
@media (min-width: 768px) {
  .welfare__content-title {
    padding-block: 140px;
  }
}
.welfare__content-title span {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(80px, 15.97222vw, 230px);
  font-family: "Allison", serif;
  z-index: -1;
  font-weight: normal;
}

@media (min-width: 768px) {
  .welfare__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4.16667vw;
    -moz-column-gap: 4.16667vw;
    column-gap: 4.16667vw;
    row-gap: 2.5vw;
  }
}

.welfare__item {
  background: #fff;
  padding: 40px;
}
.welfare__item h4 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #d95258;
  margin-top: 20px;
}
.welfare__item:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .welfare__item:not(:first-child) {
    margin-top: 0;
  }
}
.welfare__item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.welfare__item-icon {
  text-align: center;
}
.welfare__item-icon img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

/*==============================================================================
# company
==============================================================================*/
.company {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .company {
    padding-top: 140px;
  }
}

.company__title {
  position: relative;
  padding-top: 40px;
}
.company__title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 20px;
  background: #d95258;
  left: 0;
  top: 0;
}
.company__title span {
  font-family: "Zen Kaku Gothic Antique", serif;
}

.company__content {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .company__content {
    margin-top: 80px;
  }
}
.company__content table tbody tr:nth-child(odd) th,
.company__content table tbody tr:nth-child(odd) td {
  background-color: #fff1f2;
}
.company__content table {
  border-collapse: collapse;
  width: 100%;
}
.company__content th,
.company__content td {
  padding: 20px;
}
@media (min-width: 768px) {
  .company__content th,
  .company__content td {
    padding: 30px 40px;
  }
}
.company__content th {
  text-align: start;
  color: #d95258;
  font-size: 18px;
  font-weight: 500;
}
.company__content td {
  font-weight: 500;
  word-break: break-all; /* 英単語全体でも改行可能 */
  overflow-wrap: break-word;
}
.company__content td img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
}

.selection-flow {
  margin-top: 90px;
  position: relative;
  margin-bottom: 70px;
}
.selection-flow h2 {
  font-size: clamp(20px, 1.66667vw, 24px);
  color: #d95258;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .selection-flow h2 {
    font-size: clamp(24px, 2.22222vw, 32px);
    margin-left: 45px;
  }
}
.selection-flow h2 .selection-flow__title-text {
  font-weight: 500;
}
@media (min-width: 768px) {
  .selection-flow h2 .selection-flow__title-text {
    font-size: 32px;
  }
}
.selection-flow h2 .selection-flow__title-dashed-line {
  width: calc(100% - 120px);
  position: absolute;
  content: "";
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  background-image: repeating-linear-gradient(90deg, #d95258, #d95258 4px, transparent 4px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
@media (min-width: 768px) {
  .selection-flow h2 .selection-flow__title-dashed-line {
    width: calc(100% - 200px);
  }
}

.selection-flow__list {
  display: grid;
  gap: 4%;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  position: relative;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .selection-flow__list {
    display: grid;
    gap: 4%;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
  }
}

.selection-flow__item {
  border: 2px solid #d95258;
  border-radius: 24px;
  padding: 20px 30px;
  color: #d95258;
  font-weight: 500;
  min-height: 140px;
}
.selection-flow__item span {
  font-size: 28px;
  font-weight: 500;
}
.selection-flow__item p {
  margin-top: 0;
  text-align: center;
}

.under-line {
  border-bottom: 1px solid #3b3b3b;
}

/*==============================================================================
# recruitment
==============================================================================*/
.recruitment {
  padding-top: 140px;
}
@media (min-width: 768px) {
  .recruitment {
    padding-top: 140px;
  }
}

.recruitment__title {
  position: relative;
  text-transform: uppercase;
}
.recruitment__title::before {
  position: absolute;
  content: "";
  top: -40px;
  left: 0;
  width: 40px;
  height: 20px;
  background: #d95258;
}
.recruitment__title span {
  font-family: "Zen Kaku Gothic Antique", serif;
}

.recruitment__content {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .recruitment__content {
    margin-top: 80px;
  }
}

@media (min-width: 768px) {
  .recruitment__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; /* 横幅に応じて折り返し */
    gap: 20px; /* 各テーブル間の隙間 */
  }
}

@media (min-width: 768px) {
  .recruitment__item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 20px);
    flex: 1 1 calc(50% - 20px); /* 横幅を2列に調整 */
    max-width: calc(50% - 20px); /* 最大幅を指定 */
  }
}

.recruitment__table {
  border-collapse: collapse;
  width: 100%; /* テーブルをコンテナいっぱいに広げる */
}

.recruitment__header,
.recruitment__data {
  padding: 20px;
  text-align: left;
  font-weight: 500;
}

.recruitment__header {
  font-weight: bold;
  position: relative;
  color: #d95258;
}

.recruitment__header-line {
  width: calc(100% - 150px);
  position: absolute;
  content: "";
  height: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  background-image: repeating-linear-gradient(90deg, #d95258, #d95258 4px, transparent 4px, transparent 6px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}
@media (min-width: 768px) {
  .recruitment__header-line {
    width: calc(100% - 150px);
  }
}

.recruitment__data {
  margin-left: 150px;
  display: block;
}
.recruitment__data p:first-child {
  margin-top: 0;
}
