@charset "UTF-8";

/*
Theme Name: child
Theme URI:
Description:
Template: twentytwentyone
Author: makesview
Author URI: https://makes-view.co.jp/
Version: 1.0.0
*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
デフォルト設定
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- デフォルトcss ------------------------- */

:root {
  --main-color: #000;
  --sub-color: #fff;
}

/* フォント */
@font-face {
  font-family: "Baskerville";
  src: url("./font/Baskerville-01.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Baskerville";
  src: url("./font/Baskerville-Italic-03.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Baskerville";
  src: url("./font/Baskerville-SemiBold-05.ttf") format("truetype");
  font-weight: 600;
}

html,
button,
input,
select,
textarea {
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
}

body {
  min-width: 1440px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0em;
  font-family: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "MS PMincho", serif;
  color: #333;
  background: #fff;
  margin: 0;
}

/* 背景黒 */
body.bg-change {
  color: #fff;
  background-image: url("./image/section-bg.svg");
}

body.bg-change .common_fv .body {
  color: #fff;
  background-image: url("./image/section-bg.svg");
}

body.bg-change .breadcrumb {
  color: #fff;
}

body.bg-change .breadcrumb a {
  color: #fff;
}

body.bg-change .breadcrumb span::before {
  background: #fff;
}

.wrap {
  width: 1140px;
  margin: 0 auto;
}

.wrap.mid {
  width: 1240px;
}

.wrap.lr {
  width: 1340px;
}

/* PC固定ページ 共通設定 */
.common_page_main {
  background: #F5F5F5;
  padding-block: 140px;
  margin-block: 0 1em;
}

.common_page_main .title_box {
  text-align: center;
}

.common_page_main .title_box .title {
  font-size: 40px;
  letter-spacing: .08em;
  font-weight: 700;
  line-height: 1.5;
}

.common_page_wrap {
  padding: 80px 0 150px;
}

.not_found .text {
  text-align: center;
}

.reserve_text {
  text-align: center;
  font-size: 30px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- サイト共通パーツ ------------------------- */
/* パンくず */
.breadcrumb {
  position: relative;
  right: -7px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.01em;
  color: #333;
}

.breadcrumb .box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.breadcrumb a {
  color: #333;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  position: relative;
  padding-inline: 3px;
}

.breadcrumb span::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 1px;
  top: 10px;
  right: -2px;
  background: #333;
}

.breadcrumb span:last-of-type::before {
  display: none;
}

/* ボタン */
.c_btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 260px;
  margin-inline: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 11px;
}

.c_btn a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: -webkit-repeating-linear-gradient(left, #000000 0, #000000 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(to right, #000000 0, #000000 2px, transparent 2px, transparent 4px);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.c_btn a:hover::before {
  -webkit-animation: btnLineHover 0.5s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
  animation: btnLineHover 0.5s cubic-bezier(0.22, 0.6, 0.36, 1) forwards;
}

@-webkit-keyframes btnLineHover {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }

  49% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }

  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes btnLineHover {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }

  49% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }

  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }

  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.c_btn .btn_text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #000;
}

.c_btn .btn_icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.c_btn a:hover .btn_icon {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

.c_btn .btn_icon img {
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}

.c_btn--white a::before {
  background: -webkit-repeating-linear-gradient(left, #FFFFFF 0, #FFFFFF 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(to right, #FFFFFF 0, #FFFFFF 2px, transparent 2px, transparent 4px);
}

.c_btn--white .btn_text {
  color: #fff;
}

.c_btn--white .btn_icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.c_btn--tab .btn_icon img {
  width: 14px;
  height: 14px;
}

.c_btn--tab a:hover .btn_icon {
  -webkit-transform: none;
  transform: none;
}

/* 画像＋テキスト */
.c_media {
  margin-top: 85px;
}

.c_media .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px;
  padding-left: max(100px, (100vw - 1240px) / 2);
}

.c_media .item:not(:first-of-type) {
  margin-top: 110px;
}

.c_media .contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 610px;
  flex: 0 0 610px;
  position: relative;
  top: -12px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}

.c_media .en {
  font-family: "Baskerville", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.c_media .texts {
  margin-top: 28px;
}

.c_media .title {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}

.c_media .title::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
}

.c_media .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.08em;
  margin-top: 25px;
}

.c_media .lists {
  margin-top: 28px;
}

.c_media .list {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.38;
  letter-spacing: 0.08em;
  padding-left: 18px;
}

.c_media .list::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 18px;
  left: 5px;
  background: #fff;
  border-radius: 50%;
}

.c_media .image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c_media .image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 640/400;
}

.c_media .item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: max(100px, (100vw - 1240px) / 2);
}

.c_media .item:nth-of-type(even) .contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  top: -2px;
}

.c_media .item:nth-of-type(even) .texts {
  margin-top: 5px;
}

.c_media .item:nth-of-type(even) .list {
  line-height: 1.88;
}

/* セクションタイトル */
.c_title .c_title_row {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  color: #000;
  padding-top: 22px;
}

.c_title .c_title_row::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 0;
  left: 0;
  background: #000;
}

.c_title .c_title_en {
  font-family: "Baskerville", serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0em;
}

.c_title .c_title_ja {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c_title--white .c_title_row {
  color: #fff;
}

.c_title--white .c_title_row::before {
  background: #fff;
}

/* ----------------------- サイト共通セクション ------------------------- */
/* 下層FV */
.common_fv .image img {
  width: 100%;
  height: 22.5vw;
  min-height: 325px;
  aspect-ratio: 1440/380;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.common_fv .body {
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background: #fff;
  padding: 45px 100px;
  margin-top: -45px;
}

.common_fv .en {
  font-family: "Baskerville", serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0em;
}

.common_fv .ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PCヘッダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pc_header {
  position: absolute;
  width: 100%;
  min-width: 1440px;
  top: 0;
  left: 0;
  padding: 40px 0 25px;
  z-index: 100;
}

.pc_header.is-scrolled {
  position: fixed;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.42) 85%,
      rgba(0, 0, 0, 0) 100%);
  padding: 25px 0;
}

.pc_header .body {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header .logo {
  width: 100%;
  max-width: 200px;
}

.pc_header .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_header .logo a:hover {
  opacity: 0.8;
}

.pc_header .logo img {
  display: block;
  width: 100%;
}

.pc_header .nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 41px;
}

.pc_header .menus {
  gap: 39px;
}

.pc_header .menu a {
  position: relative;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_header .menu a:hover {
  opacity: 0.8;
}

.pc_header .menu a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -8px;
  left: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.22, 0.6, 0.36, 1);
  transition: -webkit-transform 400ms cubic-bezier(0.22, 0.6, 0.36, 1);
  transition: transform 400ms cubic-bezier(0.22, 0.6, 0.36, 1);
  transition: transform 400ms cubic-bezier(0.22, 0.6, 0.36, 1), -webkit-transform 400ms cubic-bezier(0.22, 0.6, 0.36, 1);
}

.pc_header .menu a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.pc_header .menu.menu--tab a {
  position: relative;
  padding-right: 18px;
}

.pc_header .menu.menu--tab a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("./image/icon-separate-tab-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.pc_header .btn a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 21px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_header .btn a:hover {
  color: #333;
  background: #fff;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOPページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* FV */
#top_fv {
  position: relative;
  height: 100vh;
  color: #fff;
}

#top_fv .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

#top_fv .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#top_fv .wrap {
  height: 100%;
}

#top_fv .row {
  position: relative;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 545px 0 66px 50px;
}

#top_fv .title {
  padding-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 2s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 2s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 2s ease-in-out, transform 1s ease-in-out;
  transition: opacity 2s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

#top_fv .title.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#top_fv .ja {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

#top_fv .en {
  font-family: "Baskerville", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: 0em;
  margin-top: 9px;
}

#top_fv .scroll {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#top_fv .scroll a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

#top_fv .scroll_text {
  font-family: "Baskerville", serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0em;
  color: #fff;
}

#top_fv .scroll_btn {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 44px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  overflow: hidden;
  transform: translateZ(0);
}

#top_fv .scroll_arrow {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-animation: scrollDown 2.5s ease-in-out infinite;
  animation: scrollDown 2.5s ease-in-out infinite;
}

#top_fv .scroll_arrow img {
  display: block;
  width: 14px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  49% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 1;
  }

  50% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  51% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  52% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes scrollDown {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  49% {
    transform: translate3d(0, 100%, 0);
    opacity: 1;
  }

  50% {
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }

  51% {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }

  52% {
    transform: translate3d(0, -100%, 0);
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* スクロールオフセット（固定ヘッダー分） */
[id] {
  scroll-margin-top: var(--header-scroll-margin, 0px);
}

/* about */
#top_about {
  position: relative;
  background-image: url("./image/section-bg.svg");
  padding: 188px 0 144px;
}

#top_about .wrap {
  position: relative;
  z-index: 1;
}

#top_about .catch {
  position: absolute;
  top: 8px;
  right: -54px;
  color: #363633;
  z-index: -1;
}

#top_about .catch_text {
  width: 100%;
  font-size: 140px;
  font-weight: 500;
  line-height: 1.21;
  letter-spacing: 0.04em;
}

#top_about .catch_text--vertical {
  font-size: 140px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#top_about .title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.56;
  letter-spacing: 0.1em;
  color: #C8C6BF;
  padding-left: 50px;
}

#top_about .media {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 60px;
  padding-right: 50px;
  margin-top: 36px;
}

#top_about .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 580px;
  flex: 0 0 580px;
  margin-top: 44px;
}

#top_about .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 580/360;
}

#top_about .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.13;
  letter-spacing: 0.1em;
  color: #fff;
}

/* reason */
#top_reason {
  padding: 170px 0 157px;
}

#top_reason .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 105px;
  margin-top: 27px;
}

#top_reason .item {
  position: relative;
}

#top_reason .item::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 300px;
  top: -50px;
  left: -50px;
  background: #F4F4F2;
  z-index: -1;
}

#top_reason .item_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 310/200;
}

#top_reason .item_texts {
  margin-top: 40px;
}

#top_reason .item_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #000;
}

#top_reason .item_text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 24px;
}

#top_reason .btn {
  margin-top: 55px;
  text-align: center;
}

/* business */
#top_business {
  color: #fff;
  background-image: url("./image/section-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0 122px;
  overflow: hidden;
}

#top_business .c_title {
  padding-left: 50px;
}

#top_business .items {
  margin-top: 58px;
}

#top_business .item {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 29px;
  padding-left: max(100px, (100vw - 1240px) / 2);
}

#top_business .item:not(:first-of-type) {
  margin-top: 60px;
}

#top_business .item a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: block;
  padding: 105px 141px 130px;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top_business .item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% + 1px);
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(0, 0, 0, 0.5)), to(transparent));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 60%, transparent);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 60%, transparent);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

#top_business .item a:hover::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.3)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.3) 100%);
}

#top_business .item a::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  top: 132px;
  left: 0;
  background: #fff;
  z-index: 1;
}

#top_business .item_en {
  font-family: "Baskerville", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: 0em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

#top_business .item_image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

#top_business .item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1290/400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#top_business .item a:hover .item_image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#top_business .item_contents {
  position: relative;
  color: #fff;
  z-index: 1;
}

#top_business .item_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.79;
  letter-spacing: 0.1em;
}

#top_business .item_catch {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: 0.08em;
  margin-top: 50px;
}

#top_business .item_text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-top: 18px;
}

#top_business .item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: max(100px, (100vw - 1240px) / 2);
}

#top_business .item:nth-child(even) a {
  padding: 111px 150px 131px;
}

#top_business .btn {
  margin-top: 65px;
  text-align: center;
}

/* recruit */
#top_recruit {
  padding: 200px 0 240px;
}

#top_recruit .row {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-left: max(50px, (100vw - 1340px) / 2);
}

#top_recruit .swiper-container {
  width: 48.2%;
}

#top_recruit .contents {
  position: relative;
  width: 51.8%;
  background-image: url("./image/top-recruit-contents-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 52px 100px 61px 90px;
}

#top_recruit .c_title_en {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0em;
}

#top_recruit .c_title_ja {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

#top_recruit .en {
  position: absolute;
  bottom: -60px;
  right: 22px;
  z-index: 2;
}

#top_recruit .en img {
  width: 398px;
  height: 182px;
  -o-object-fit: contain;
  object-fit: contain;
}

#top_recruit .catch {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.47;
  letter-spacing: 0.1em;
  color: #343432;
  margin-top: 35px;
}

#top_recruit .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.47;
  letter-spacing: 0.1em;
  margin-top: 16px;
}

#top_recruit .btn {
  text-align: left;
  margin-top: 25px;
}

#top_recruit .swiper-container {
  position: relative;
}

#top_recruit .swiper {
  height: 100%;
}

#top_recruit .swiper-wrapper {
  height: 100%;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#top_recruit .swiper-slide {
  height: 100%;
}

#top_recruit .slide_image {
  height: 100%;
}

#top_recruit .slide_image img {
  width: 100%;
  height: auto;
  aspect-ratio: 620/540;
  -o-object-fit: cover;
  object-fit: cover;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* PC固定ページ 事業紹介 */
#business_contents {
  padding: 40px 0 180px;
}

#business_contents .catch {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.79;
  letter-spacing: 0.1em;
  text-align: center;
}

#business_contents .catch .adjustment {
  letter-spacing: 0;
}

#business_contents .catch .border {
  position: relative;
  padding-bottom: 6px;
}

#business_contents .catch .border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: -webkit-repeating-linear-gradient(left, #fff 0, #fff 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(to right, #fff 0, #fff 2px, transparent 2px, transparent 4px);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

/* PC固定ページ 選ばれる理由 */
#reason_contents {
  padding: 40px 0 180px;
}

#reason_contents .catch {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.79;
  letter-spacing: 0.1em;
  text-align: center;
}

#reason_contents .catch .adjustment {
  letter-spacing: 0;
}

#reason_contents .catch .border {
  position: relative;
  padding-bottom: 6px;
}

#reason_contents .catch .border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: -webkit-repeating-linear-gradient(left, #fff 0, #fff 2px, transparent 2px, transparent 4px);
  background: repeating-linear-gradient(to right, #fff 0, #fff 2px, transparent 2px, transparent 4px);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

#reason_contents .catch .border--width::before {
  width: calc(100% - 25px);
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
  color: #333;
  letter-spacing: .08em;
  font-weight: 400;
  text-align: center;
  margin-block: 0 3.8em;
}

.contact_form_disc .text {
  font-size: 16px;
  margin-block: 0 1em;
}

.contact_form_disc .caution {
  font-size: 14px;
}

.common_contact_form .form_box {
  margin-block: 0 50px;
}

.common_contact_form .form_box dl {
  display: grid;
  grid-template-columns: 26.5% 1fr;
  align-items: center;
  gap: 80px;
}

.common_contact_form .form_box dl.start {
  align-items: flex-start;
}

.common_contact_form .form_box dl+dl {
  margin-block: 1.6em 0;
}

.common_contact_form .form_box dl dt {
  display: flex;
  align-items: center;
  gap: 1.3em;
  font-size: 16px;
  letter-spacing: .08em;
  font-weight: 700;
  padding-inline: 0 0.5em;
  position: relative;
}

.common_contact_form .form_box dl dt .label {
  flex-shrink: 0;
  color: #3E3E3E;
  font-size: 12px;
  letter-spacing: .2em;
  font-weight: 700;
  border-radius: 100vmax;
  padding: 0.2em 0.9em;
}

.common_contact_form .form_box dl dt .label.hissu {
  background: #C70000;
  color: #fff;
}

.common_contact_form .form_box dl dt .label.ninni {
  background: #E0E0E0;
}

.common_contact_form .form_box dl dt::after {
  content: "";
  width: 1px;
  height: 30px;
  background: #AAA;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.common_contact_form input[type="text"],
.common_contact_form input[type="email"],
.common_contact_form #zip {
  width: 100%;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 400;
  padding: 0.8em 1em;
}

.common_contact_form textarea {
  width: 100%;
  height: 180px;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  padding: 1em;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 400;
}

.common_contact_form input::placeholder,
.common_contact_form textarea::placeholder {
  color: #C7C4C4;
}

.common_contact_form select {
  width: 47.5%;
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 1.1em 1em;
}

.common_contact_form select.empty {
  color: #C7C4C4;
}

.page_contact #btn_wrap {
  justify-content: center;
  text-align: right;
  width: 74%;
  margin: auto;
}

.page_contact #btn_wrap button {
  background-color: var(--main-color);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #fff;
  display: block;
  width: 310px;
  line-height: 60px;
  font-size: 18px;
  font-weight: 900;
  transition: .3s;
  text-align: center;
  letter-spacing: .08em;
  margin: auto;
}

.page_contact #btn_wrap button[name="submitBack"] {
  background: #333;
  margin-top: 20px;
}

.page_contact #btn_wrap button:hover {
  opacity: .8;
}

.privacy_term_outer .privacy_term_inner {
  height: 138px;
  margin: auto;
  overflow: auto;
}

.privacy_term_outer .privacy_term_inner .privacy_index {
  font-size: 14px;
}

.privacy_term_outer .privacy_term_inner .main_text {
  font-size: 13px;
  margin-bottom: 25px;
}

.privacy_term_outer .privacy_term_inner dl dt {
  font-size: 13px;
  border-left: solid 3px #ccc;
  padding-left: 1em;
  margin-bottom: 5px;
}

.privacy_term_outer .privacy_term_inner dl dd {
  font-size: 13px;
}

.privacy_term_outer .privacy_term_inner dl+dl {
  margin-top: 30px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar {
  width: 8px;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-track {
  background: transparent;
}

.privacy_term_outer .privacy_term_inner::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
}

.privacy_term_outer {
  border-top: solid 1px #e3e3e3;
  padding: 30px 0;
  border-bottom: solid 1px #e3e3e3;
  width: 60%;
  margin: 0 auto 50px;
}

.privacy_check_list .check_items {
  margin-bottom: 50px;
}

.privacy_check_list .check_item {
  margin-bottom: 50px;
}

.privacy_check_list .check_item:last-child {
  margin-bottom: 0;
}

.privacy_check_list .check_item .question {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 8px;
}

.privacy_check_list .check_item .question .required {
  font-size: 14px;
  font-weight: 700;
  color: #C70000;
  margin-left: 4px;
}

.privacy_check_list .mwform-checkbox-field-text {
  padding-right: 0;
}

.privacy_check_list .error {
  font-size: 12px;
}

.privacy_term_detail {
  text-align: center;
  font-size: 13px;
  margin: 20px 0;
  position: relative;
  font-weight: 600;
}

.privacy_term_detail::after {
  content: "";
  margin: 5px auto 0;
  border: solid #333;
  border-width: 2px 2px 0 0;
  width: 10px;
  aspect-ratio: 1 / 1;
  min-width: 0;
  rotate: 135deg;
  display: block;
}

.mw_wp_form_confirm .privacy_check_list,
.mw_wp_form_confirm .privacy_term_detail {
  display: none;
}

/* ラジオボタン デザイン */
.radio_btns,
.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.5em;
  padding: .5em 0;
}

/* ラジオボタンを隠す */
.radio_btns input[type=radio].radio_btns__item {
  display: none;
}

.radio_btns label {
  display: inline-block;
  cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
.radio_btns .radio_btns__item+span {
  color: #333;
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 600;
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.radio_btns .radio_btns__item+span::before,
.radio_btns .radio_btns__item+span::after {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #E6E6E6;
  background: #F8F8F8;
  border-radius: 50%;
  width: 20px;
  aspect-ratio: 1;
  min-width: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

/* after上書き */
.radio_btns .radio_btns__item+span::after {
  width: 10px;
  aspect-ratio: 1;
  min-width: 0;
  top: 0px;
  left: 5px;
  border: none;
  background: #333;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all .3s;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.radio_btns .radio_btns__item:checked+span::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* チェックボックス デザイン */
.page_contact input[type="checkbox"] {
  /* デフォルトcheckボックス非表示*/
  display: none;
}

.mwform-checkbox-field label {
  cursor: pointer;
}

.mwform-checkbox-field-text {
  color: #333;
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
}

.mwform-checkbox-field-text::before,
.mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  display: block;
}

.mwform-checkbox-field-text::before {
  background: #F8F8F8;
  border: 1px solid #E6E6E6;
  border-radius: 2px;
  width: 20px;
  aspect-ratio: 1 / 1;
  min-width: 0;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mwform-checkbox-field-text::after {
  border-width: 3px;
  border-color: transparent transparent #333 #333;
  border-style: solid;
  width: 20px;
  aspect-ratio: 2/1;
  min-width: 0;
  margin-top: -0.2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
  opacity: 1;
}

.mw_wp_form .horizontal-item {
  display: inline-block;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}

/* サンクスページ */

.page_contact .thanks_textArea .name {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
}

.page_contact .thanks_textArea .contact_text {
  margin: 0 auto 50px;
  width: 62%;
}

.page_contact .thanks_textArea .ichiran_link {
  background-color: var(--main-color);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  color: #fff;
  display: block;
  width: 300px;
  line-height: 50px;
  border-radius: 4px;
  font-size: 16px;
  transition: .3s;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
}

.page_contact .thanks_textArea .ichiran_link:hover {
  opacity: .8;
}

.page_contact .thanks_textArea .contact_text .space {
  display: block;
}

.page_contact .thanks_textArea .contact_text .space {
  display: block;
  margin-top: 10px;
}

/* ステップバー デザイン */
.page_contact .progressbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.6em;
  margin-block: 0 3em;
}

.page_contact .progressbar .item {
  color: #333;
  font-size: 14px;
  letter-spacing: .08em;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

.page_contact .progressbar .item+.item::before {
  content: "";
  width: 50px;
  height: 1px;
  background: #E6E6E6;
  position: absolute;
  top: 64%;
  left: -5em;
}

.page_contact .progressbar .item .mark {
  width: 36px;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #AFAFAF;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.5em;
  position: relative;
}

.page_contact .progressbar .item .mark::before {
  content: "";
  width: 41%;
  aspect-ratio: 1;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  opacity: 0;
}

.page_contact .progressbar .item.active .mark::before {
  opacity: 1;
}

.page_contact .progressbar .item .en {
  display: block;
  color: #A7A7A7;
  letter-spacing: 0;
  font-family: 'Helvetica', 'Arial', sans-serif;
}

.privacy_check_list {
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.privacy_check_list .hissu {
  background: #c70200;
  color: #fff;
  padding: 2px 15px;
  font-size: 10px;
  letter-spacing: .08em;
  border-radius: 30px;
  font-weight: 600;
}

.mw_wp_form .privacy_check_list .horizontal-item {
  margin: 0;
}

/* PC固定ページ 404ページ */
#page_404 {
  text-align: center;
}

#page_404 .num {
  font-size: 100px;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#page_404 .text {
  margin-bottom: 1em;
  font-size: 16px;
}

/* PC固定ページ アーカイブページ */
/* 投稿リスト表示 */
.archive_page_list>article {
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px dashed #eee;
  padding-right: 30px;
}

.archive_page_list>article:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  right: 5px;
  bottom: 0;
  margin: auto;
  border: solid #ccc;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.archive_page_list>article .date {
  font-weight: bold;
  font-size: 80%;
  width: 100px;
}

.archive_page_list>article .content_area {
  width: calc(100% - 100px);
}

.archive_page_list>article .content_area .ttl {
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.archive_page_list>article .content_area .content {
  font-size: 80%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* wp-pagenavi base */
.wp-pagenavi {
  text-align: center;
  margin-top: 50px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.wp-pagenavi .current {
  color: #FFF;
  background-color: var(--main-color);
  border-color: var(--main-color);
  font-weight: bold;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PCフッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site_footer {
  color: #fff;
  background-image: url("./image/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 50px;
  overflow: hidden;
}

.site_footer .slide_wrap a {
  display: block;
  padding: 52px 0;
}

.site_footer .slide_wrap a:hover {
  background: #40403D;
}

.site_footer .slide_items {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 31px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  -webkit-animation: slide-animation 50s linear infinite;
  animation: slide-animation 50s linear infinite;
}

.site_footer .slide_item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 31px;
}

.site_footer .slide_text {
  font-family: "Baskerville", serif;
  font-size: 50px;
  font-weight: 40;
  line-height: 1.14;
  letter-spacing: 0em;
  color: #fff;
  white-space: nowrap;
}

.site_footer .slide_logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.site_footer .slide_logo img {
  width: 25px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

@-webkit-keyframes slide-animation {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(var(--slide-end, -50%));
    transform: translateX(var(--slide-end, -50%));
  }
}

@keyframes slide-animation {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(var(--slide-end, -50%));
    transform: translateX(var(--slide-end, -50%));
  }
}

.site_footer .body {
  margin-top: 68px;
}

.site_footer .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.site_footer .logo {
  width: 100%;
  max-width: 257px;
}

.site_footer .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .logo a:hover {
  opacity: 0.8;
}

.site_footer .logo img {
  display: block;
  width: 100%;
}

.site_footer .text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.03em;
  margin-top: 30px;
}

.site_footer .nav {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 80px;
}

.site_footer .menu,
.site_footer .menu a {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.site_footer .menu a:hover::before {
  width: 100%;
}

.site_footer .menu:not(:first-of-type) {
  margin-top: 30px;
}

.site_footer .menu.menu--tab a span {
  position: relative;
  padding-right: 22px;
}

.site_footer .menu.menu--tab a span::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("./image/icon-separate-tab-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.site_footer .sub_menus {
  margin-top: 20px;
}

.site_footer .sub_menu,
.site_footer .sub_menu a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.03em;
}

.site_footer .sub_menu:not(:first-of-type) {
  margin-top: 15px;
}

.site_footer .sub_menu a {
  position: relative;
  padding-left: 10px;
}

.site_footer .sub_menu a:hover {
  opacity: 1;
}

.site_footer .sub_menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.site_footer .sub_menu a:hover::before {
  width: 100%;
}

.site_footer .sub_menu a::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
}

.site_footer .lists {
  margin-top: 53px;
}

.site_footer .list,
.site_footer .list a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: 0.03em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .list:not(:first-of-type) {
  margin-top: 15px;
}

.site_footer .list a:hover {
  opacity: 0.8;
}

.site_footer .list a::before {
  display: none;
}

.site_footer .box {
  margin-top: 106px;
}

.site_footer .box_row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.site_footer .copyright {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.site_footer .to_top {
  text-align: right;
}

.site_footer .to_top a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border: 1px solid #4D4D48;
  margin-left: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .to_top a:hover {
  opacity: 0.8;
}

.site_footer .to_top a img {
  position: relative;
  top: 4px;
  display: block;
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
hover 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
750px 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- デフォルトcss ------------------------- */
@media (max-width: 750px) {
  body {
    min-width: 100%;
    font-size: 3.85vw;
    line-height: 1.54;
  }

  .wrap.mid,
  .wrap.lr,
  .wrap {
    width: 94.87%;
  }

  a[href $='.pdf']::before {
    width: 7vw;
    height: 8vw;
    margin-right: 2.5vw;
  }

  a[href $='.pdf']:hover {
    text-decoration: underline;
  }

  /* SP固定ページ 共通設定 */
  .common_page_main {
    padding-block: 20vw;
  }

  .common_page_main .title_box .title {
    font-size: 5.6vw;
  }

  .common_page_wrap {
    padding: 8.21vw 0 25.64vw;
  }

  .reserve_text {
    font-size: 6vw;
  }

  /* ----------------------- サイト共通パーツ ------------------------- */
  /* パンくず */
  .breadcrumb {
    width: 100%;
    right: -7.95vw;
    font-size: 3.08vw;
    line-height: 1.42;
  }

  .breadcrumb a:hover {
    opacity: 1;
  }

  .breadcrumb span {
    padding-inline: 0.64vw;
  }

  .breadcrumb span::before {
    width: 0.77vw;
    top: 2.56vw;
    right: -0.51vw;
  }

  /* ボタン */
  .c_btn a {
    max-width: 66.67vw;
    gap: 5.13vw;
    padding-bottom: 2.82vw;
  }

  .c_btn a:hover::before {
    -webkit-animation: none;
    animation: none;
  }

  .c_btn .btn_text {
    font-size: 4.1vw;
  }

  .c_btn a:hover .btn_icon {
    -webkit-transform: none;
    transform: none;
  }

  .c_btn .btn_icon img {
    width: 4.62vw;
    height: 4.62vw;
  }

  .c_btn--tab .btn_icon img {
    width: 3.59vw;
    height: 3.59vw;
  }

  .c_btn--tab a:hover .btn_icon {
    -webkit-transform: none;
    transform: none;
  }


  /* 画像＋テキスト */
  .c_media {
    margin-top: 10.26vw;
  }

  .c_media .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
    padding-left: 5.13vw;
  }

  .c_media .item:not(:first-of-type) {
    margin-top: 15.38vw;
  }

  .c_media .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    width: 100%;
    top: 0;
  }

  .c_media .en {
    width: 100%;
    font-size: 4.1vw;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    padding-right: 5.13vw;
  }

  .c_media .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 2.56vw;
  }

  .c_media .image img {
    aspect-ratio: 370/200;
  }

  .c_media .texts {
    padding-right: 5.13vw;
    margin-top: 7.69vw;
  }

  .c_media .title {
    font-size: 5.13vw;
    padding-bottom: 2.05vw;
  }

  .c_media .title::before {
    width: 17.95vw;
  }

  .c_media .text {
    font-size: 3.59vw;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin-top: 6.15vw;
  }

  .c_media .lists {
    margin-top: 4.1vw;
  }

  .c_media .list {
    font-size: 3.59vw;
    line-height: 2;
    padding-left: 3.08vw;
  }

  .c_media .list::before {
    width: 0.77vw;
    height: 0.77vw;
    top: 3.33vw;
    left: 0.77vw;
  }

  .c_media .item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 0;
    padding-right: 5.13vw;
  }

  .c_media .item:nth-of-type(even) .en {
    padding-right: 0;
    padding-left: 5.13vw;
    text-align: right;
  }

  .c_media .item:nth-of-type(even) .contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    top: 0;
  }

  .c_media .item:nth-of-type(even) .texts {
    padding-right: 0;
    padding-left: 5.13vw;
    margin-top: 7.69vw;
  }

  .c_media .item:nth-of-type(even) .list {
    line-height: 2;
  }

  /* セクションタイトル */
  .c_title .c_title_row {
    gap: 5.13vw;
    padding-top: 5.64vw;
  }

  .c_title .c_title_row::before {
    width: 10.26vw;
  }

  .c_title .c_title_en {
    font-size: 9.23vw;
    line-height: 1.14;
  }

  .c_title .c_title_ja {
    font-size: 4.62vw;
  }

  /* ----------------------- サイト共通セクション ------------------------- */
  /* 下層FV */
  .common_fv .wrap {
    width: 89.74%;
  }

  .common_fv .image img {
    height: auto;
    min-height: 100%;
    aspect-ratio: 390/235;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }

  .common_fv .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7.18vw;
    padding: 4.1vw 5.13vw;
    margin-top: -15.38vw;
  }

  .common_fv .title {
    width: 100%;
  }

  .common_fv .en {
    font-size: 9.74vw;
    line-height: 1.13;
  }

  .common_fv .ja {
    font-size: 4.1vw;
    line-height: 1.5;
    margin-top: 1.03vw;
  }

  /* ----------------------- ヘッダー ------------------------- */
  .sp_hd {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 32px 0 22px;
    z-index: 100;
  }

  #sp_header.active {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #343432;
    transition: background .6s ease;
  }

  .sp_hd.is-scrolled {
    position: fixed;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.42) 80%,
        rgba(0, 0, 0, 0) 100%);
    padding: 22px 0;
  }

  .sp_hd .wrap {
    width: 89.74%;
  }

  .sp_hd .body {
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5.13vw;
    padding-right: calc(60px + 5.13vw);
  }

  .sp_hd .logo {
    width: 100%;
    max-width: 150px;
  }

  .sp_hd .logo img {
    width: 100%;
  }

  .sp_hd .mail {
    flex-shrink: 0;
  }

  .sp_hd .mail a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sp_hd .mail_icon {
    display: inline-block;
    width: 31px;
    height: 23px;
  }

  .sp_hd .mail_icon img {
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .sp_hd .mail_text {
    display: inline-block;
    font-family: "Baskerville", serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.17;
    letter-spacing: 0.004em;
    color: #fff;
    margin-top: 8px;
  }

  /* ----------------------- TOPページ ------------------------- */
  #top {
    overflow: hidden;
  }

  /* FV */
  #top_fv {
    height: 100svh;
    max-height: 165.13vw;
  }

  #top_fv .wrap {
    width: 89.74%;
  }

  #top_fv .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 9.23vw;
    padding: 101.79vw 0 5.13vw;
  }

  #top_fv .title {
    width: 100%;
    padding-bottom: 0;
    -webkit-transform: translateY(5.13vw);
    transform: translateY(5.13vw);
  }

  #top_fv .ja {
    font-size: 9.23vw;
    line-height: 1.39;
  }

  #top_fv .en {
    font-size: 3.85vw;
    line-height: 1.13;
    margin-top: 3.33vw;
  }

  #top_fv .scroll a {
    gap: 2.56vw;
  }

  #top_fv .scroll_text {
    font-size: 3.33vw;
  }

  #top_fv .scroll_btn {
    width: 7.69vw;
    height: 11.28vw;
    border-radius: 3.85vw;
  }

  #top_fv .scroll_arrow img {
    width: 3.59vw;
  }

  /* about */
  #top_about {
    padding: 27.95vw 0 19.23vw;
  }

  #top_about .wrap {
    width: 89.74%;
  }

  #top_about .catch {
    top: -19.23vw;
    right: -6.92vw;
    right: 0;
  }

  #top_about .catch_text {
    font-size: 17.95vw;
    line-height: 1.29;
  }

  #top_about .catch_text--vertical {
    position: relative;
    top: -0.77vw;
    right: -2.56vw;
    font-size: 17.95vw;
    line-height: 1.29;
  }

  #top_about .title {
    font-size: 5.4vw;
    line-height: 1.73;
    padding-left: 0;
  }

  #top_about .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 14.1vw;
    padding-right: 0;
    margin-top: 0;
  }

  #top_about .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    margin-top: 0;
  }

  #top_about .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 350/210;
  }

  #top_about .text {
    font-size: 3.59vw;
    line-height: 1.86;
    margin-top: 6.15vw;
  }

  /* reason */
  #top_reason {
    padding: 23.08vw 0 17.95vw;
  }

  #top_reason .wrap {
    width: 89.74%;
  }

  #top_reason .items {
    grid-template-columns: 1fr;
    gap: 10.26vw;
    margin-top: 8.21vw;
  }

  #top_reason .item {
    position: relative;
  }

  #top_reason .item::before {
    width: 58.97vw;
    height: 54.36vw;
    top: -2.56vw;
    left: -2.56vw;
  }

  #top_reason .item_image img {
    aspect-ratio: 350/160;
  }

  #top_reason .item_texts {
    margin-top: 7.69vw;
  }

  #top_reason .item_title {
    font-size: 5.13vw;
  }

  #top_reason .item_text {
    font-size: 3.59vw;
    line-height: 1.57;
    margin-top: 4.62vw;
  }

  #top_reason .btn {
    margin-top: 9.74vw;
  }

  /* business */
  #top_business {
    padding: 17.95vw 0 19.49vw;
  }

  #top_business .c_title {
    padding-left: 2.56vw;
  }

  #top_business .items {
    margin-top: 8.72vw;
  }

  #top_business .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.05vw;
    padding-left: 2.56vw;
  }

  #top_business .item:not(:first-of-type) {
    margin-top: 10.26vw;
  }

  #top_business .item a {
    width: 100%;
    padding: 16.41vw 5.13vw 6.15vw 10.26vw;
  }

  #top_business .item a:hover::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(60%, rgba(0, 0, 0, 0.5)), to(transparent));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 60%, transparent);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 60%, transparent);
  }

  #top_business .item a::after {
    width: 7.69vw;
    top: 22.56vw;
  }

  #top_business .item_en {
    font-size: 4.62vw;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  #top_business .item_image img {
    aspect-ratio: 380/140;
  }

  #top_business .item a:hover .item_image img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  #top_business .item_contents {
    position: relative;
    padding-right: 15.38vw;
  }

  #top_business .item_contents::before {
    content: "";
    position: absolute;
    width: 12.82vw;
    height: 12.82vw;
    bottom: -1.28vw;
    right: 0;
    background-image: url("./image/icon-right-arrow-circle.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  #top_business .item_title {
    font-size: 6.15vw;
    line-height: 1.08;
  }

  #top_business .item_texts {
    position: relative;
    padding-bottom: 10.26vw;
    margin: 0 2.56vw;
    margin-top: 3.33vw;
  }

  #top_business .item:last-of-type .item_texts {
    padding-bottom: 0;
  }

  #top_business .item_texts::before {
    content: "";
    position: absolute;
    width: 89.74vw;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #535353;
  }

  #top_business .item:last-of-type .item_texts::before {
    display: none;
  }

  #top_business .item_catch {
    font-size: 5.13vw;
    line-height: 1.5;
    margin-top: 0;
  }

  #top_business .item_text {
    font-size: 3.33vw;
    line-height: 1.62;
    letter-spacing: 0.03em;
    margin-top: 3.59vw;
  }

  #top_business .item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 2.56vw;
  }

  #top_business .item:nth-child(even) a {
    padding: 16.41vw 5.13vw 6.15vw 10.26vw;
  }

  #top_business .item:nth-child(even) .item_image img {
    aspect-ratio: 380/140;
  }

  #top_business .item:nth-child(even) .item_contents::before {
    right: -2.56vw;
  }

  #top_business .item:nth-child(even) .item_en {
    margin-left: auto;
  }

  #top_business .item:nth-child(even) .item_texts {
    margin: 0 2.56vw 0 5.13vw;
    margin-top: 3.33vw;
  }

  #top_business .item:nth-child(even) .item_text {
    font-size: 3.21vw;
  }

  #top_business .btn {
    margin-top: 12.82vw;
  }

  /* recruit */
  #top_recruit {
    padding: 28.21vw 0 31.54vw;
    overflow: hidden;
  }

  #top_recruit .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
  }

  #top_recruit .swiper-container {
    width: 100%;
    padding-right: 2.56vw;
  }

  #top_recruit .contents {
    width: 100%;
    background-image: url("./image/top-recruit-contents-bg-sp.webp");
    padding: 10.51vw 5.13vw 18.21vw;
  }

  #top_recruit .c_title_row {
    padding-top: 5.13vw;
  }

  #top_recruit .c_title_en {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: 0em;
  }

  #top_recruit .c_title_ja {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  #top_recruit .en {
    bottom: -8.21vw;
    right: -26.92vw;
  }

  #top_recruit .en img {
    width: 108.21vw;
    height: 25.64vw;
  }

  #top_recruit .catch {
    font-size: 6.15vw;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-top: 8.72vw;
  }

  #top_recruit .text {
    font-size: 3.33vw;
    line-height: 1.54;
    margin-top: 3.59vw;
  }

  #top_recruit .btn {
    margin-top: 10.77vw;
  }

  #top_recruit .slide_image img {
    aspect-ratio: 310/160;
  }

  #top_recruit .swiper-container--reverse {
    padding-right: 0;
    padding-left: 2.56vw;
  }

  /* ----------------------- 下層ページ ------------------------- */
  /* SP固定ページ 事業紹介 */
  #business_contents {
    padding: 8.21vw 0 25.64vw;
  }

  #business_contents .catch {
    font-size: 6.15vw;
    line-height: 1.75;
  }

  #business_contents .catch .border {
    padding-bottom: 1.03vw;
  }

  /* SP固定ページ 選ばれる理由 */
  #reason_contents {
    padding: 8.21vw 0 25.64vw;
  }

  #reason_contents .catch {
    font-size: 6.15vw;
    line-height: 1.75;
  }

  #reason_contents .catch .border {
    padding-bottom: 1.03vw;
  }

  #reason_contents .catch .border--width::before {
    width: calc(100% - 5.13vw);
  }

  /* SP固定ページ お問い合わせ */
  .page_contact .wrap {
    width: 89.74%;
  }

  .contact_form_disc {
    margin-block: 0 3em;
  }

  .contact_form_disc .text {
    font-size: 3.6vw;
    margin-block: 0 2em;
  }

  .contact_form_disc .caution {
    font-size: 3.1vw;
    letter-spacing: .06em;
  }

  .common_contact_form .form_box {
    margin-block: 0 10vw;
  }

  .common_contact_form .form_box dl {
    grid-template-columns: 1fr;
    gap: 0.6em;
  }

  .common_contact_form .form_box dl+dl {
    margin-block: 1.3em 0;
  }

  .common_contact_form .form_box dl dt {
    flex-direction: row-reverse;
    justify-content: space-between;
    font-size: 4.1vw;
    padding-inline: 0;
  }

  .common_contact_form .form_box dl dt .label {
    font-size: 3.1vw;
  }

  .common_contact_form .form_box dl dt::after {
    content: none;
  }

  .common_contact_form input[type="text"],
  .common_contact_form input[type="email"],
  .common_contact_form #zip {
    font-size: 3.6vw;
  }

  .common_contact_form select {
    width: 100%;
    font-size: 3.6vw;
  }

  .common_contact_form textarea {
    height: 33vw;
    font-size: 3.6vw;
  }

  .radio_btns,
  .checkboxes {
    gap: 0.5em 2.5em;
  }

  .page_contact #btn_wrap button {
    width: 83%;
    line-height: 15.5vw;
    font-size: 4.6vw;
  }

  .page_contact #btn_wrap button[name="submitBack"] {
    margin-top: 4vw;
  }

  .mwform-checkbox-field.horizontal-item {
    display: block;
  }

  .page_contact #btn_wrap {
    width: 100%;
    text-align: center;
  }

  .privacy_check_list .mwform-checkbox-field-text {
    font-size: 3.6vw;
    padding-left: 11vw;
  }

  .radio_btns .radio_btns__item+span {
    font-size: 3.6vw;
  }

  .mw_wp_form .privacy_check_list .horizontal-item {
    margin-right: 4vw;
  }

  .privacy_check_list .hissu {
    padding: 0.3vw 4vw;
  }

  .privacy_check_list {
    margin-bottom: 6vw;
  }

  .privacy_term_detail {
    font-size: 3.4vw;
    margin: 5vw 0;
  }

  .privacy_term_outer {
    width: 96%;
    padding: 5vw 0;
  }

  .privacy_check_list .check_items {
    margin-bottom: 10vw;
  }

  .privacy_check_list .check_item {
    margin-bottom: 7.69vw;
  }

  .privacy_check_list .check_item:last-child {
    margin-bottom: 0;
  }

  .privacy_check_list .check_item .question {
    font-size: 3.6vw;
    margin-bottom: 2.56vw;
  }

  .privacy_check_list .check_item .question .required {
    font-size: 3.2vw;
    margin-left: 0.5vw;
  }

  .privacy_term_outer .privacy_term_inner .main_text {
    font-size: 3.4vw;
    line-height: 1.6;
    margin-bottom: 5vw;
  }

  .privacy_term_outer .privacy_term_inner dl dt {
    font-size: 3.5vw;
    margin-bottom: 1.5vw;
  }

  .privacy_term_outer .privacy_term_inner dl dd {
    font-size: 3.5vw;
    line-height: 1.6;
  }

  .privacy_term_outer .privacy_term_inner dl+dl {
    margin-top: 7vw;
  }

  .privacy_term_detail::after {
    width: 2.5vw;
    margin: 1.5vw auto 0;
  }

  /* サンクスページ */
  .page_contact .thanks_textArea .name {
    font-size: 4vw;
    margin-bottom: 3vw;
  }

  .page_contact .thanks_textArea .contact_text {
    font-size: 3.5vw;
    margin-bottom: 2em;
    width: 100%;
  }

  .page_contact .thanks_textArea .ichiran_link {
    width: 80%;
    line-height: 12vw;
    font-size: 4vw;
  }

  /* ステップバー デザイン */
  .page_contact .progressbar {
    gap: 4.5em;
    margin-block: 0 2.5em;
  }

  .page_contact .progressbar .item {
    font-size: 3.1vw;
  }

  .page_contact .progressbar .item+.item::before {
    width: 5.7vw;
    top: 63%;
    left: -3.3em;
  }

  .page_contact .progressbar .item .mark {
    width: 7.7vw;
    margin: 0 auto 0.4em;
  }

  /* SP固定ページ 404ページ */
  #page_404 .num {
    font-size: 20vw;
    line-height: 1.5;
  }

  #page_404 .text {
    font-size: 3.5vw;
  }

  /* SP投稿ページ アーカイブページ */
  .archive_page_list>article {
    padding-right: 20px;
  }

  .archive_page_list>article .date {
    width: 80px;
  }

  .archive_page_list>article .content_area {
    width: calc(100% - 80px);
  }

  .archive_page_list>article:after {
    width: 7px;
    height: 7px;
  }

  /* SP固定ページ サイトマップ */
  #page_sitemap .wrap {
    width: 89.74%;
  }

  ul#sitemap_list li {
    margin: 0;
  }

  body #sitemap_list li a {
    font-size: 4vw;
    padding: 1vw 2vw;
    line-height: 9vw;
    margin-bottom: 1vw;
  }

  body #sitemap_list li.home-item {
    margin-bottom: 4vw;
  }

  body #sitemap_list {
    padding: 0;
  }

  /* ----------------------- フッター ------------------------- */
  .site_footer {
    padding: 0 0 12.82vw;
  }

  .site_footer .slide_wrap a {
    padding: 8.21vw 0;
  }

  .site_footer .slide_wrap a:hover {
    background: transparent;
  }

  .site_footer .slide_items {
    gap: 7.95vw;
    padding-bottom: 8.21vw;
    border-bottom: 1px solid #333;
  }

  .site_footer .slide_item {
    gap: 7.95vw;
  }

  .site_footer .slide_text {
    font-size: 12.82vw;
  }

  .site_footer .slide_logo img {
    width: 6.41vw;
    height: 5.13vw;
  }

  .site_footer .wrap {
    width: 89.74%;
  }

  .site_footer .body {
    margin-top: 3.33vw;
  }

  .site_footer .row {
    display: block;
  }

  .site_footer .nav {
    display: block;
  }

  .site_footer .menus--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.77vw 7.69vw;
    margin-top: 4.1vw;
  }

  .site_footer .menu,
  .site_footer .menu a {
    font-size: 4.1vw;
  }

  .site_footer .menu:not(:first-of-type) {
    margin-top: 0;
  }

  .site_footer .menu {
    border-bottom: 1px solid #404040;
    padding: 3.59vw 0;
  }

  .site_footer .menu a:hover {
    opacity: 1;
  }

  .site_footer .menu.menu--tab a span {
    padding-right: 5.64vw;
  }

  .site_footer .menu.menu--tab a span::after {
    width: 3.59vw;
    height: 3.59vw;
  }

  .site_footer .menu--accordion {
    position: relative;
    cursor: pointer;
  }

  .site_footer .menu--accordion::before {
    content: "";
    position: absolute;
    width: 2.56vw;
    height: 2.56vw;
    top: 4.62vw;
    right: 0.51vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .site_footer .menu--accordion.is-open::before {
    top: 6.15vw;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .site_footer .menu--accordion.is-open .sub_menus {
    max-height: 100%;
    opacity: 1;
    visibility: visible;
  }

  .site_footer .sub_menus {
    position: relative;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    padding-top: 1.54vw;
    margin-top: 0;
  }

  .site_footer .sub_menu,
  .site_footer .sub_menu a {
    font-size: 3.59vw;
  }

  .site_footer .sub_menu {
    border-bottom: 1px solid #404040;
    padding: 3.59vw 0;
  }

  .site_footer .sub_menu:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .site_footer .sub_menu:not(:first-of-type) {
    margin-top: 0;
  }

  .site_footer .sub_menu {
    border-bottom: 1px solid #404040;
    padding-left: 3.08vw;
  }

  .site_footer .sub_menu a {
    border-bottom: none;
    padding-left: 2.56vw;
  }

  .site_footer .sub_menu a:hover {
    opacity: 1;
  }

  .site_footer .menu a::before,
  .site_footer .sub_menu a::before {
    display: none;
  }

  .site_footer .sub_menu a::after {
    width: 1.28vw;
  }

  .site_footer .lists {
    width: 100%;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10.26vw;
    margin-top: 11.03vw;
  }

  .site_footer .list,
  .site_footer .list a {
    font-size: 3.33vw;
    line-height: 1.46;
  }

  .site_footer .list:not(:first-of-type) {
    margin-top: 0;
  }

  .site_footer .list a {
    padding-bottom: 0.77vw;
    border-bottom: 1px solid #404040;
  }

  .site_footer .list a:hover {
    opacity: 1;
  }

  .site_footer .contents {
    margin-top: 11.54vw;
  }

  .site_footer .logo {
    max-width: 55.9vw;
    margin-inline: auto;
  }

  .site_footer .logo a:hover {
    opacity: 1;
  }

  .site_footer .text {
    font-size: 3.33vw;
    margin-top: 2.05vw;
    text-align: center;
  }

  .site_footer .box {
    margin-top: 10.77vw;
  }

  .site_footer .box_row {
    display: block;
  }

  .site_footer .copyright {
    font-size: 3.08vw;
    text-align: center;
  }

  .site_footer .to_top {
    display: none;
  }
}