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

body {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  letter-spacing: 0.005em;
  line-height: 1.7;
  overflow-x: clip;
  font-family: "M PLUS Rounded 1c", serif;
}

p {
  line-height: 2;
}

.all-caps {
  text-transform: uppercase;
}

.yellow {
  color: #ffbf53 !important;
}

@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);
  }
}

.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);
}

@media screen and (min-width: 401px) {
  .mq400 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .mq480 {
    display: block;
  }
}
/*==============================================================================
# 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: "M PLUS Rounded 1c", 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: #C28D32;
}
.page-item .is-active {
  color: #222222;
  background: #fff;
  border: 1px solid #C28D32;
}

.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%);
}

.--yellow {
  color: #ffbf53;
}

/*==============================================================================
# トップページ内共通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;
}

.header-pc {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 100%;
}

.header-top {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 80px;
}
@media (min-width: 768px) {
  .header-top {
    height: 100px;
  }
}

.header-top__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: 80px;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .header-top__content {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .header-top__content {
    gap: 40px;
    height: 100px;
  }
}

.header-top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.7%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40%;
}
@media (min-width: 768px) {
  .header-top__left {
    width: 60%;
  }
}

.header__logo {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .header__logo {
    width: 40.7%;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo img {
  width: 100%;
  height: auto;
  max-width: 240px;
}
@media screen and (max-width: 480px) {
  .header__logo img {
    max-width: 150px;
  }
}
@media (min-width: 768px) {
  .header__logo img {
    max-width: 300px;
    width: 100%;
  }
}

.header-top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top__line-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-top__line-link:hover {
  opacity: 0.7;
}

.header-top__line-img img {
  width: 60px;
  height: auto;
}

.header-bottom {
  height: 64px;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  line-height: 64px;
}

.header__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.header__item {
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.header__item:hover {
  color: #FFBF53;
}
.header__item::after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}
.header__item:first-child::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 1px;
  height: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #000;
}

.header__link {
  max-width: 176px;
  width: 100%;
  display: inline-block;
  font-size: clamp(14px, 1.11111vw, 16px);
}

/*==============================================================================
# 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: #C28D32;
  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) {
  .drawer-content__link:hover {
    color: #FFF1DA;
  }
}

.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: 60px;
  background: #fff1da;
  color: #92661d;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 42px;
  }
}

.footer__content {
  max-width: 780px;
  width: 100%;
  margin-inline: auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-logo {
    margin-bottom: 80px;
  }
}
.footer-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.footer__recruit-link {
  text-align: center;
}
.footer__recruit-link a {
  display: inline-block;
  max-width: 420px;
  background: #ffbf53;
  color: #fff;
  font-weight: 500;
  padding: 18px 32px 18px 20px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  margin-inline: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #ffbf53;
}
@media (any-hover: hover) {
  .footer__recruit-link a:hover {
    background: #fff;
    color: #ffbf53;
  }
  .footer__recruit-link a:hover::after {
    background: #ffbf53;
    color: #ffbf53;
  }
}
.footer__recruit-link a::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 10px;
  height: 14px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer__recruit-link a::after {
    right: 25px;
  }
}

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

@media screen and (max-width: 700px) {
  .footer__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__nav-list {
  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;
  width: 100%;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    max-width: 300px;
    margin-inline: auto;
  }
}

.footer__nav-item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .footer__nav-item:hover {
    color: #ffbf53;
  }
}
.footer__nav-item:not(:first-child) {
  padding-left: 56px;
  position: relative;
}
@media screen and (max-width: 700px) {
  .footer__nav-item:not(:first-child) {
    padding-left: 0;
  }
}
.footer__nav-item:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  background-color: #92661d;
  margin: 0px 4px 4px;
  left: 14px;
  -webkit-transform: rotate(-75deg);
          transform: rotate(-75deg);
  top: 50%;
  -webkit-transform: translateY(-50%), rotate(-75deg);
          transform: translateY(-50%), rotate(-75deg);
}
@media screen and (max-width: 700px) {
  .footer__nav-item:not(:first-child)::before {
    display: none;
  }
}
.footer__nav-item:nth-child(2n) {
  position: relative;
}
.footer__nav-item:nth-child(2n)::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  background-color: #92661d;
  margin: 0px 4px 4px;
  left: 14px;
  -webkit-transform: rotate(-75deg);
          transform: rotate(-75deg);
  top: 50%;
  -webkit-transform: translateY(-50%), rotate(-75deg);
          transform: translateY(-50%), rotate(-75deg);
}
@media screen and (max-width: 700px) {
  .footer__nav-item:nth-child(2n) {
    padding-left: 0;
  }
}

.footer__copyright {
  text-align: center;
  margin-top: 60px;
  display: block;
}
@media (min-width: 768px) {
  .footer__copyright {
    margin-top: 80px;
  }
}

/*==============================================================================
# Object
==============================================================================*/
.section__title {
  position: relative;
  color: #FFBF53;
  line-height: normal;
}

.section__title1 {
  line-height: 1;
  font-size: 36px;
  margin-bottom: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .section__title1 {
    font-size: clamp(60px, 6.805556vw, 98px);
    margin-bottom: 60px;
  }
}
.section__title1::after {
  position: absolute;
  width: 6.94444vw;
  height: 2px;
  background-color: #FFBF53;
  content: "";
  bottom: -36%;
  left: 0;
}
@media (min-width: 768px) {
  .section__title1::after {
    height: 4px;
  }
}

.section__title2 {
  font-size: 40px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .section__title2 {
    font-size: 64px;
    margin-bottom: 60px;
    padding-bottom: 80px;
  }
}

.section__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
}
@media (min-width: 768px) {
  .section__subtitle {
    margin-top: 60px;
    font-size: clamp(20px, 1.66667vw, 24px);
  }
}

.title1-bar2 {
  width: 55px;
  height: 2px;
  position: absolute;
  content: "";
  background-color: #FFBF53;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 36%;
}
@media (min-width: 768px) {
  .title1-bar2 {
    height: 4px;
  }
}

.section__sub-title2 {
  display: block;
  font-size: 20px;
  color: #222222;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .section__sub-title2 {
    font-size: 24px;
  }
}

.section__title3 {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 60px;
  font-size: clamp(33px, 5.21512vw, 40px);
}
@media (min-width: 768px) {
  .section__title3 {
    font-size: 64px;
    margin-bottom: 60px;
    padding-bottom: 80px;
  }
}

.title1-bar3 {
  width: 55px;
  height: 2px;
  position: absolute;
  content: "";
  background-color: #FFBF53;
  bottom: 36%;
  left: 0;
}
@media (min-width: 768px) {
  .title1-bar3 {
    height: 4px;
  }
}

.section__sub-title3 {
  display: block;
  font-size: 20px;
  color: #222222;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 768px) {
  .section__sub-title3 {
    font-size: 24px;
  }
}

/*==============================================================================
# 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;
}

.mv__tel {
  padding: 30px 24px;
  border-radius: 10px 0 0 10px;
}

.mv__plane {
  padding: 30px 24px;
  border-radius: 10px 0 0 10px;
}

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

.header__button {
  background: #FFC769;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 62px 16px;
  border-radius: 24px;
  -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;
  font-family: "Noto Serif JP", serif;
  width: 100%;
  height: 60px;
  max-width: 230px;
}
@media screen and (max-width: 480px) {
  .header__button {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .header__button {
    font-size: 28px;
    padding: 15px 62px 16px;
  }
}
.header__button img {
  width: 26px;
  height: auto;
}
.header__button:hover {
  opacity: 0.7;
}

/*==============================================================================
# drawer-contact-button
==============================================================================*/
.drawer-contact-button {
  background: #FFC769;
  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;
}

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

.common-button__link {
  max-width: 260px;
  background: #FFC769;
  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;
}

/*==============================================================================
# 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 {
  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%;
  }
}

/*==============================================================================
# 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;
}

.align-items-b {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

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

.gap-4 {
  gap: 4vw;
}

.gap40 {
  gap: 40px;
}

/*==============================================================================
# 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;
}

/*==============================================================================
# contents
==============================================================================*/
.contents {
  position: relative;
}
.contents::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../assets/img/bg.png) repeat-y center center/contain;
  z-index: -1;
}

/*==============================================================================
# mv
==============================================================================*/
.mv {
  position: relative;
  width: 85.41667vw;
  top: 0;
  margin-top: 30px;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: transparent;
}
@media (min-width: 768px) {
  .mv {
    left: 11.11111vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-top: 60px;
  }
}

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

.mv__lead {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* テキストを縦書きに */
  text-orientation: upright; /* 文字を直立させる */
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  margin-top: 60px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .mv__lead {
    position: static;
    width: 40%;
    left: auto;
    -webkit-transform: none;
            transform: none;
    font-size: 30px;
  }
}
.mv__lead span {
  background: #FFBF53;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 10px;
  letter-spacing: 0.4em;
}

.mv__img {
  width: 100%;
}
@media (min-width: 768px) {
  .mv__img {
    width: 60%;
  }
}
.mv__img img {
  height: 655px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

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

.message__inner {
  position: relative;
  margin-inline: auto;
  width: calc(100% - 40px);
}
@media (min-width: 768px) {
  .message__inner {
    left: 11.11111vw;
    width: 85.41667vw;
    top: 0;
    margin-inline: 0;
  }
}

.message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .message__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.message__texts {
  width: 100%;
}
@media (min-width: 768px) {
  .message__texts {
    width: 44%;
  }
}

.message__text {
  font-size: 18px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .message__text {
    margin-top: 50px;
  }
}

.message__img {
  width: 100%;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .message__img {
    width: 50%;
    margin-top: 0;
  }
}
.message__img img {
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 24px;
}

.message__img--top {
  text-align: end;
}
.message__img--top img {
  width: 100%;
}
@media (min-width: 768px) {
  .message__img--top img {
    width: 39.58333vw;
  }
}

.message__img--bottom {
  margin-top: 3.26389vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.message__img--bottom img {
  -o-object-fit: contain;
     object-fit: contain;
}
.message__img--bottom img:first-child {
  width: 40%;
  -o-object-fit: contain;
     object-fit: contain;
}
.message__img--bottom img:last-child {
  width: 54%;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.--point1 {
  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;
}
@media (min-width: 768px) {
  .--point1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.638889vw;
  }
}

.point1__texts {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .point1__texts {
    width: 48%;
    margin-top: 0;
  }
}

.point1__texts h3,
.point2__texts h3 {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .point1__texts h3,
  .point2__texts h3 {
    font-size: 20px;
    margin-top: 40px;
  }
}
.point1__texts p,
.point2__texts p {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .point1__texts p,
  .point2__texts p {
    margin-top: 40px;
  }
}

.point-text {
  color: #c28d32;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .point-text {
    font-size: 24px;
  }
}

.point1__img {
  position: relative;
  margin-bottom: 35px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .point1__img {
    width: 57%;
  }
}
.point1__img img {
  border-radius: 24px;
}
.point1__img::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background: #ffbf53;
  z-index: -1;
  top: 25px;
  left: 20px;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .point1__img::before {
    top: 35px;
    left: 30px;
  }
}

.--point2 {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .--point2 {
    margin-top: 70px;
  }
}

.point2-business__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  max-width: 1040px;
  width: 100%;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .point2-business__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.point2-business__item {
  background: #fff1da;
  border-radius: 24px;
  padding: 40px clamp(30px, 6.94444vw, 100px) 60px;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}
.point2-business__item img {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .point2-business__item img {
    margin-top: 60px;
  }
}

.point2-business__title {
  color: #d1932b;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  font-size: 24px;
}
.point2-business__title::after {
  position: absolute;
  content: "";
  bottom: 0;
  height: 1px;
  width: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #d1932b;
}

.point2-business__text {
  margin-top: 28px;
}

.point2-bene__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .point2-bene__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: normal;
       -moz-column-gap: normal;
            column-gap: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(30px, 2.77778vw, 38px);
  }
}

.point2-bene__item {
  border-radius: 24px;
  border: 3px solid #ffbf53;
  padding: 40px 30px;
  position: relative;
  margin-top: 80px;
  letter-spacing: normal;
  background: #fff;
  max-width: 500px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .point2-bene__item {
    width: 33.3333%;
    padding: 60px 40px;
    max-width: none;
  }
}
.point2-bene__item span {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background: #ffbf53;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .point2-bene__item span {
    font-size: 36px;
    width: 94px;
    height: 94px;
    line-height: 94px;
  }
}
.point2-bene__item span::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffbf53;
  z-index: 0;
}
.point2-bene__item h4 {
  color: #d1932b;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  padding-bottom: 24px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.point2-bene__item h4::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff1da;
}
.point2-bene__item img {
  width: 100%;
  height: auto;
  margin-top: 33px;
}
.point2-bene__item p {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .point2-bene__item p {
    margin-top: 40px;
  }
}

.point2-bene__num {
  text-align: center;
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .point2-bene__num {
    top: -80px;
  }
}

/*==============================================================================
# introduction
==============================================================================*/
.introduction__desc {
  color: #d1932b;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  width: 80%;
  margin-inline: auto;
}

.introduction__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .introduction__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: normal;
    gap: clamp(30px, 2.77778vw, 38px);
    margin-top: 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.introduction__item {
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .introduction__item {
    width: 30%;
    margin-inline: 0;
  }
}

.introduction__item-title {
  color: #d1932b;
  font-size: 20px;
  font-weight: 500;
  margin-top: 18px;
}

.introduction__item-text {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .introduction__item-text {
    margin-top: 30px;
  }
}

.introduction__item-img img {
  border-radius: 24px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==============================================================================
# job-openings
==============================================================================*/
.job-openings {
  padding-top: 100px;
  position: relative;
}
@media (min-width: 768px) {
  .job-openings {
    padding-top: 140px;
  }
}

.job-openings__about {
  font-size: 28px;
  margin-top: 60px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .job-openings__about {
    font-size: 36px;
    margin-top: 80px;
  }
}
.job-openings__about::after {
  position: absolute;
  content: "";
  width: 55px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #c28d32;
}

.job-openings__box {
  margin-top: 60px;
  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: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .job-openings__box {
    margin-top: 80px;
    gap: clamp(60px, 6.94444vw, 100px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .job-openings__texts {
    width: 48%;
  }
}

.job-openings__box-title {
  margin-top: 38px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
}

.job-openings__text {
  margin-top: 30px;
}

.job-openings__list {
  color: #bb7500;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

.job-openings__img {
  position: relative;
  margin-left: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .job-openings__img {
    width: 52%;
    margin-left: 30px;
    margin-bottom: 50px;
  }
}
.job-openings__img img {
  border-radius: 24px;
}
.job-openings__img::before {
  position: absolute;
  content: "";
  top: 30px;
  left: -20px;
  background: #ffbf53;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .job-openings__img::before {
    top: 50px;
    left: -30px;
  }
}

.job-openings__flow {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .job-openings__flow {
    margin-top: 130px;
  }
}

.job-openings__flow-title {
  font-size: 40px;
  color: #ffbf53;
  margin-left: 24px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 768px) {
  .job-openings__flow-title {
    margin-left: 33px;
  }
}

.job-openings__flow-list {
  margin-top: 40px;
  margin-left: 24px;
  padding-left: 40px;
  border-left: 4px solid #ffbf53;
}
@media (min-width: 768px) {
  .job-openings__flow-list {
    margin-top: 50px;
    margin-left: 33px;
    padding-left: 60px;
    border-left: 6px solid #ffbf53;
  }
}

.job-openings__flow-item {
  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;
  row-gap: 30px;
}
@media (min-width: 768px) {
  .job-openings__flow-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(70px, 6.94444vw, 100px);
  }
}
.job-openings__flow-item:not(:first-child) {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .job-openings__flow-item:not(:first-child) {
    margin-top: 70px;
  }
}

@media (min-width: 768px) {
  .job-openings__flow-item-texts {
    width: 70%;
  }
}

.job-openings__flow-item-title {
  font-size: 20px;
  font-weight: 500;
  color: #bb7500;
}
.job-openings__flow-item-title span {
  margin-right: 10px;
}

.job-openings__flow-item-text {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .job-openings__flow-item-img {
    width: 30%;
  }
}
.job-openings__flow-item-img img {
  border-radius: 24px;
}

.job-openings__sub-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 4.86111vw, 70px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  margin-inline: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .job-openings__sub-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.job-openings__sub-box:not(:first-child) {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .job-openings__sub-box:not(:first-child) {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .job-openings__sub-box:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 768px) {
  .job-openings__sub-box:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.job-openings__sub-box:nth-last-of-type(odd) .job-openings__sub-box-img {
  margin-left: 25px;
}
.job-openings__sub-box:nth-last-of-type(odd) .job-openings__sub-box-img::before {
  left: -25px;
}
.job-openings__sub-box:nth-last-of-type(even) .job-openings__sub-box-img {
  margin-right: 25px;
}
.job-openings__sub-box:nth-last-of-type(even) .job-openings__sub-box-img::before {
  right: -25px;
}

@media (min-width: 768px) {
  .job-openings__sub-box-texts {
    width: 60%;
  }
}

.job-openings__sub-box-img {
  position: relative;
  margin-bottom: 25px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.job-openings__sub-box-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: -25px;
  background: #ffbf53;
  z-index: -1;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .job-openings__sub-box-img {
    width: 30%;
  }
}
.job-openings__sub-box-img img {
  border-radius: 24px;
}

/*==============================================================================
# training
==============================================================================*/
.training {
  padding-top: 80px;
  position: relative;
}
@media (min-width: 768px) {
  .training {
    padding-top: 230px;
  }
}

.training__inner {
  position: relative;
}

@media (min-width: 768px) {
  .training__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: clamp(60px, 5.55556vw, 80px);
  }
}

.training__item {
  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;
  gap: 30px;
}
@media (min-width: 768px) {
  .training__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(40px, 4.86111vw, 70px);
  }
  .training__item:first-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.training__item:not(:first-child) {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .training__item-texts {
    width: 65%;
  }
}

.training__item-title {
  font-size: 20px;
  font-weight: 600;
}
.training__item-title span {
  color: #c28d32;
  margin-bottom: 7px;
  display: block;
}

.training__item-text {
  margin-top: 28px;
}

@media (min-width: 768px) {
  .training__item-img {
    width: 35%;
  }
}

.side-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .side-img {
    top: -160px;
    right: -40px;
    -webkit-transform: none;
            transform: none;
    left: auto;
  }
}

.side-img__inner {
  position: relative;
}
.side-img__inner img {
  max-width: 320px;
  width: 100%;
}
.side-img__inner::before {
  position: absolute;
  content: "";
  bottom: -30px;
  left: -20px;
  background: #ffbf53;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.point-deco {
  width: 6px;
  height: 6px;
  border-radius: 100vmax;
  background: #ffbf53;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.training__flow {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .training__flow {
    margin-top: 130px;
  }
}

.training__flow-title {
  font-size: 20px;
  margin-left: 24px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (min-width: 768px) {
  .training__flow-title {
    margin-left: 33px;
  }
}

.training__flow-list {
  margin-top: 40px;
  margin-left: 24px;
  padding-left: 40px;
  border-left: 4px solid #ffbf53;
}
@media (min-width: 768px) {
  .training__flow-list {
    margin-top: 50px;
    margin-left: 33px;
    padding-left: 60px;
    border-left: 6px solid #ffbf53;
  }
}

.training__flow-list-title {
  font-size: 20px;
  color: #ffbf53;
  font-weight: 500;
}

.training__flow-item:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .training__flow-item:not(:first-child) {
    margin-top: 50px;
  }
}

.training__flow-item-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffbf53;
}
.training__flow-item-title span {
  margin-right: 10px;
}

.training__flow-item-text {
  margin-top: 16px;
}

/*==============================================================================
# interview
==============================================================================*/
.interview {
  padding-top: 100px;
  position: relative;
}
@media (min-width: 768px) {
  .interview {
    padding-top: 120px;
  }
}

.interview__inner {
  max-width: 1220px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .interview__inner {
    max-width: 1260px;
  }
}

.interview__content {
  position: relative;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .interview__content {
    padding-bottom: 80px;
  }
}
.interview__content::before {
  width: calc(100% + 40px);
  height: 86%;
  position: absolute;
  content: "";
  background: #fff1da;
  bottom: 0;
  left: -20px;
  border-radius: 24px;
  z-index: -1;
}
@media (min-width: 768px) {
  .interview__content::before {
    width: 100%;
    left: 0;
    height: 75%;
  }
}

.interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media (min-width: 768px) {
  .interview__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7.95455%;
    width: 74.5762%;
  }
}

.interview__item {
  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;
  width: 100%;
  -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) {
  .interview__item {
    max-width: 260px;
  }
}

.interview__item-message {
  color: #8b5700;
  font-weight: 600;
  font-size: 20px;
  margin-top: 16px;
  line-height: normal;
}

.interview__item-name {
  margin-top: 30px;
}
.interview__item-name span {
  display: block;
  font-weight: 500;
}
@media (min-width: 768px) {
  .interview__item-name {
    margin-top: 40px;
  }
}

.interview__item-img img {
  border-radius: 24px;
}

.interview__content2 {
  margin-top: 100px;
}
@media (min-width: 768px) {
  .interview__content2 {
    margin-top: 140px;
  }
}

.interview__voice-item {
  border: 16px solid #ffbf53;
  border-radius: 24px;
  position: relative;
  padding: 30px;
  background: #fff;
}
@media (min-width: 768px) {
  .interview__voice-item {
    padding: 70px 80px;
  }
}
.interview__voice-item:not(:first-child) {
  margin-top: 90px;
}
@media (min-width: 768px) {
  .interview__voice-item:not(:first-child) {
    margin-top: 120px;
  }
}
.interview__voice-item:nth-child(2n) .interview__voice-item-num {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .interview__voice-item:nth-child(2n) .interview__voice-item-num {
    right: 50px;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
}
.interview__voice-item:nth-child(2n) .experience {
  right: -20px !important;
  left: auto;
}
@media (min-width: 768px) {
  .interview__voice-item:nth-child(odd) .interview__voice-item-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.interview__voice-item-num {
  position: absolute;
  color: #ffbf53;
  font-size: 48px;
  line-height: 1;
  top: -58px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .interview__voice-item-num {
    font-size: 64px;
    top: -70px;
    left: 50px;
    -webkit-transform: none;
            transform: none;
  }
}

.interview__voice-item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .interview__voice-item-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 55px;
  }
}

.interview__voice-item-flex-texts {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .interview__voice-item-flex-texts {
    width: 64%;
    margin-top: 40px;
  }
}
.interview__voice-item-flex-texts h3 {
  color: #c28d32;
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .interview__voice-item-flex-texts h3 {
    font-size: 24px;
    margin-top: 50px;
  }
}
.interview__voice-item-flex-texts p {
  margin-top: 20px;
}

.interview__voice-item-flex-name {
  color: #c28d32;
  font-size: 18px;
  font-weight: 600;
}
.interview__voice-item-flex-name span {
  display: block;
}

.interview__voice-item-flex-img {
  position: relative;
}
@media (min-width: 768px) {
  .interview__voice-item-flex-img {
    width: 30%;
  }
}
.interview__voice-item-flex-img img {
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .interview__voice-item-flex-img img {
    height: 400px;
  }
}

.experience {
  background: #ffbf53;
  padding: 12px 36px;
  border-radius: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  line-height: normal;
  position: absolute;
  bottom: -30px;
  left: -14px;
}
@media (min-width: 768px) {
  .experience {
    bottom: -55px;
    left: -20px;
    font-size: 20px;
  }
}

.experience-num {
  font-size: 28px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .experience-num {
    font-size: 40px;
  }
}

.experience-years {
  font-weight: 600;
  font-size: 14px;
}

.interview__voice-text-list {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .interview__voice-text-list {
    margin-top: 40px;
  }
}

.interview__voice-text-item:not(:first-child) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .interview__voice-text-item:not(:first-child) {
    margin-top: 60px;
  }
}
.interview__voice-text-item p {
  margin-left: 43px;
  margin-top: 20px;
}

.interview__voice-text-question {
  position: relative;
  margin-left: 43px;
  font-size: 18px;
  color: #c28d32;
  font-weight: 600;
}
.interview__voice-text-question::before {
  position: absolute;
  content: "Q";
  width: 32px;
  height: 32px;
  background: #c28d32;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  border-radius: 100vmax;
  left: -43px;
  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;
}

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

.welfare__list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.welfare__item {
  background: #ffbf53;
  border-radius: 24px;
  position: relative;
  min-height: 300px;
  margin-top: 50px;
  padding: 0px 30px 30px;
  width: 100%;
  max-width: 348px;
}
@media (min-width: 768px) {
  .welfare__item {
    min-width: 300px;
    width: 30%;
    max-width: none;
  }
}

.welfare__item-texts {
  padding-top: 130px;
}

.welfare__item-title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.welfare__item-text {
  margin-top: 30px;
}

.welfare__item-img {
  background: #fff;
  border-radius: 100vmax;
  width: 160px;
  height: 160px;
  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;
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.welfare__item-img img {
  width: 120px;
  height: auto;
}

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

.recruitment-tag {
  background: #fff1da;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 1%, 78% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 1%, 78% 100%, 0% 100%);
  width: 260px;
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  padding-left: 46px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px 12px 12px 12px;
}
@media (min-width: 768px) {
  .recruitment-tag {
    width: 300px;
  }
}
.recruitment-tag h3 {
  font-weight: 600;
  font-size: 20px;
}
@media (min-width: 768px) {
  .recruitment-tag h3 {
    font-size: 24px;
  }
}

.recruitment__table {
  margin-top: 70px;
  border-collapse: collapse;
  border-top: 1px solid #ababab;
}
@media (min-width: 768px) {
  .recruitment__table {
    margin-left: 100px;
  }
}
.recruitment__table th {
  background: #fff1da;
  border-bottom: 1px solid #ababab;
  padding: 30px 40px;
  font-weight: 600;
  width: 36%;
}
.recruitment__table th:first-child {
  border-top: 1px solid #ababab;
}
@media (min-width: 768px) {
  .recruitment__table th {
    font-size: clamp(20px, 1.66667vw, 24px);
    padding: 50px 42px;
  }
}
.recruitment__table td {
  background: #fff;
  border-bottom: 1px solid #ababab;
  padding: 30px 20px;
  width: 64%;
}
.recruitment__table td:first-child {
  border-top: 1px solid #ababab;
}
.recruitment__table td span {
  font-weight: 700;
  display: block;
}
@media (min-width: 768px) {
  .recruitment__table td {
    padding: 50px 30px;
  }
}

.qualification__list {
  margin-top: 20px;
}
.qualification__list li:not(:first-child) {
  margin-top: 10px;
}

.salary__item:not(:first-child) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .salary__item:not(:first-child) {
    margin-top: 60px;
  }
}

.salary__item-title {
  font-weight: 700;
  display: block;
}

.salary__item-text {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .salary__item-text {
    margin-top: 20px;
  }
}

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

.contact-table {
  border: 8px solid #ffbf53;
  border-radius: 24px;
  background: #fff;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .contact-table {
    padding-block: 90px 40px;
    padding-inline: 0;
  }
}

@media (min-width: 768px) {
  .contact-table-content {
    width: 80%;
    margin-inline: auto;
  }
}

.contact-item {
  color: #ffbf53;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 768px) {
  .contact-item {
    font-size: 20px;
    width: 30%;
  }
}

.contact-body {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-body {
    width: 70%;
  }
}
.contact-body.select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .contact-body.select {
    width: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.contact-body-wrapper {
  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;
}
@media (min-width: 768px) {
  .contact-body-wrapper {
    width: 70%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.form-text {
  width: 100%;
}

.contact-flex {
  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) {
  .contact-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-flex:not(:first-child) {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .contact-flex:not(:first-child) {
    margin-top: 40px;
  }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
  background: #fffbf3;
  border: 2px solid #ffd793;
  border-radius: 20px;
  padding: 6px 12px;
}
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(255, 191, 83, 0.7);
          box-shadow: 0 0 4px 2px rgba(255, 191, 83, 0.7);
}

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: auto;
  }
}
.contact__select-wrap svg {
  position: absolute;
  top: calc(50% + 2px);
  translate: 0 -50%;
  right: 10.69px;
  width: 17.313px;
  height: auto;
  pointer-events: none;
}

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

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

input[type=radio]:checked + span {
  opacity: 1;
}

.contact-body .western-calendar {
  padding: 12px 4px 12px 0;
}
.contact-body span {
  display: block;
  font-size: 16px;
  line-height: normal;
  padding: 12px 8px;
}
.contact-body label:not(:last-of-type) span {
  border-right: none;
}

.contact-radio-text {
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  margin-left: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* ラジオボタン */
.contact-radio-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 2px solid #ffd793;
  border-radius: 50%;
}

.contact-radio-text::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffbf53;
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

/* チェックされた時 */
input[type=radio]:checked + .contact-radio-text::after {
  opacity: 1;
}

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;
}
@media (any-hover: hover) {
  .contact__submit:hover {
    opacity: 0.7;
  }
}
.contact__submit input[type=submit] {
  display: inline-block;
  background: #ffbf53;
  font-size: 18px;
  line-height: normal;
  padding: 13px;
  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;
}

.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%;
}

.submit-wrapper input[type=submit] {
  padding: 16px 50px 16px 20px;
  background-color: #ffbf53;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}

.submit-wrapper .kunoji-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}