@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

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

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

/* フォント */
@font-face {
  font-family: "Avenir";
  src: url("./font/Avenir-Heavy-05.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "High Summit";
  src: url("./font/High Summit.ttf") format("truetype");
}

html,
body,
button,
input,
select,
textarea {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

body {
  min-width: 1440px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #252B3E;
  background: #fff;
  margin: 0;
}

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

.wrap.mid {
  width: 1240px;
}

.wrap.lr {
  width: 1340px;
}

.no_article {
  margin-top: 20px;
}

/* 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: 100px 0;
}

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

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

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ユーティリティ スタイル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 帯アニメーション */
.u-band {
  position: relative;
  display: inline-block;
  overflow: hidden;
  opacity: 0;
}

.u-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.u-band.is-animated {
  -webkit-animation-name: u-band-fade-in;
  animation-name: u-band-fade-in;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.u-band.is-animated::before {
  -webkit-animation-name: u-band-reveal;
  animation-name: u-band-reveal;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes u-band-reveal {
  0% {
    -webkit-transform: translateX(-101%) scaleX(1);
    transform: translateX(-101%) scaleX(1);
  }

  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }

  100% {
    -webkit-transform: translateX(100%) scaleX(0);
    transform: translateX(100%) scaleX(0);
  }
}

@keyframes u-band-reveal {
  0% {
    -webkit-transform: translateX(-101%) scaleX(1);
    transform: translateX(-101%) scaleX(1);
  }

  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }

  100% {
    -webkit-transform: translateX(100%) scaleX(0);
    transform: translateX(100%) scaleX(0);
  }
}

@-webkit-keyframes u-band-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes u-band-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* 遅延 */
.u-delay01.is-animated,
.u-delay01.is-animated::before {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.u-delay02.is-animated,
.u-delay02.is-animated::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.u-delay03.is-animated,
.u-delay03.is-animated::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- サイト共通パーツ ------------------------- */
/* パンくず */
.breadcrumb {
  font-size: 12px;
  font-weight: 500;
  line-height: 2.08;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 55px;
}

.breadcrumb .box {
  margin-left: -5px;
  text-align: left;
}

.breadcrumb a {
  color: #5d5d5d;
}

.breadcrumb span {
  padding-inline: 2px;
}

/* ボタン */
.c_btn a {
  position: relative;
  display: inline-block;
  min-width: 280px;
  border: 2px solid #2B4F9F;
  border-radius: 35px;
  padding: 17px 23px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c_btn a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2B4F9F;
  position: absolute;
  top: 100%;
  left: 30%;
  -webkit-transform: translate3d(0, 10%, 0);
  transform: translate3d(0, 10%, 0);
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.c_btn a .btn_text {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.13em;
  color: #2B4F9F;
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.c_btn--reverse a {
  background: #2B4F9F;
}

.c_btn--reverse a .btn_text {
  color: #fff;
}

.c_btn--reverse a::before {
  background: #fff;
}

.c_btn--gradation a {
  background: -webkit-gradient(linear, left top, left bottom, from(#2b4f9f), color-stop(40%, #204089), to(#10285c));
  background: -webkit-linear-gradient(top, #2b4f9f 0%, #204089 40%, #10285c 100%);
  background: linear-gradient(to bottom, #2b4f9f 0%, #204089 40%, #10285c 100%);
}

.c_btn--gradation a .btn_text {
  color: #fff;
}

.c_btn--gradation a::before {
  background: #10285c;
}

/* イベント */
.c_event {
  margin-top: 29px;
}

.c_event .item {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 41.5px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 19px 20px 19px 40px;
}

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

.c_event .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.c_event .head {
  padding-bottom: 21px;
  border-bottom: 1px solid #333;
}

.c_event .title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
}

.c_event .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0.03em;
  margin-top: 5px;
}

.c_event .date {
  position: relative;
}

.c_event .date::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: calc(50% + 2px);
  right: -16px;
  -webkit-transform: translateY(-50%) rotate(105deg);
  transform: translateY(-50%) rotate(105deg);
  background: #333;
}

.c_event .lists {
  margin-top: 20px;
}

.c_event .list {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57;
  letter-spacing: 0.08em;
}

.c_event .images {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 718px;
  flex: 0 0 718px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.c_event .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 230/180;
  border-radius: 7px;
}

/* 画像＋テキスト */
.c_media .items {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

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

.c_media .item_row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.c_media .item_contents {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
}

.c_media .item_logo {
  width: 100%;
  max-width: 400px;
}

.c_media .item:nth-of-type(2) .item_logo {
  max-width: 300px;
}

.c_media .item:nth-of-type(3) .item_logo {
  max-width: 500px;
}

.c_media .item_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.05em;
  color: #2B4F9F;
}

.c_media .item_catch {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 24px;
}

.c_media .item_text {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
}

.c_media .item_annotation {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.01em;
  margin-top: 20px;
}

.c_media .item_image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 580px;
  flex: 0 0 580px;
}

.c_media .item_image img {
  width: 100%;
  margin-inline: auto;
  border-radius: 10px;
}

.c_media .item_btn {
  margin-top: 32px;
}

.c_media .item_btn a {
  padding: 9px 23px;
}

.c_media .item_dl_wrap {
  margin-top: 24px;
}

.c_media .item_dl {
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.56;
  letter-spacing: 0.01em;
}

.c_media .item_dt {
  font-weight: 500;
}

/* ご協賛 */
.c_sponsor {
  overflow: hidden;
}

.c_sponsor .title-wrap {
  text-align: center;
}

.c_sponsor .en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

.c_sponsor .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.c_sponsor .ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.73;
  letter-spacing: 0.05em;
}

.c_sponsor .catch {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.c_sponsor .lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.c_sponsor .btn {
  margin-top: 48px;
  text-align: center;
}

.c_sponsor .btn a {
  min-width: 310px;
}

.c_sponsor .swiper-container {
  position: relative;
  margin-top: 30px;
}

.c_sponsor .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.c_sponsor .swiper-slide {
  height: auto;
}

.c_sponsor .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 200/100;
}

/* 下層セクションタイトル01 */
.c_title--center {
  text-align: center;
}

.c_title .c_title_ja {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: 0.11em;
}

.c_title .c_title_en {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
  margin-top: 14px;
}

/* 下層セクションタイトル02 */
.c_title02--center {
  text-align: center;
}

.c_title02 .c_title02_ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.73;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.c_title02 .c_title02_en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

/* 下層FV */
.common_fv {
  position: relative;
  padding: 143px 0 25px;
  margin-top: -130px;
}

.common_fv .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

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

.common_fv .title {
  color: #fff;
}

.common_fv .en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.06;
}

.common_fv .ja {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PCヘッダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.pc_header {
  position: relative;
  width: 100%;
  min-width: 1440px;
  height: 130px;
  z-index: 100;
}

.pc_header .wrap {
  height: 100%;
}

.pc_header .body {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

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

.pc_header .logo img.switch {
  display: none;
}

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

.pc_header .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.pc_header .nav {
  position: relative;
  height: 100%;
}

.pc_header .menus {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc_header .menu {
  height: 100%;
}

.pc_header .menu a {
  position: relative;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  font-family: "Avenir", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  letter-spacing: 0.01em;
  padding: 0 18px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pc_header .en,
.pc_header .ja {
  display: block;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  will-change: transform;
}

.pc_header .en {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.pc_header .ja {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.pc_header .underline {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  z-index: 1;
}

.pc_header .underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2B4F9F;
  opacity: var(--underline-opacity, 0);
  -webkit-transform: translateX(var(--underline-position, 0)) translateX(-50%);
  transform: translateX(var(--underline-position, 0)) translateX(-50%);
  -webkit-transition: opacity 0.45s cubic-bezier(0.22, 1, 0.28, 1.05), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.28, 1.05);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.28, 1.05), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.28, 1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.28, 1.05), opacity 0.45s cubic-bezier(0.22, 1, 0.28, 1.05);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.28, 1.05), opacity 0.45s cubic-bezier(0.22, 1, 0.28, 1.05), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.28, 1.05);
}

.pc_header .underline_bar {
  display: none;
}

.pc_header .btn {
  position: relative;
  min-width: 174px;
}

.pc_header .btn a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 174px;
  padding: 13px 30px;
  background: #2B4F9F;
  border-radius: 25px;
  overflow: hidden;
  -webkit-transition: min-width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: min-width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.pc_header .btn a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  background: #333;
  border-radius: 25px;
  z-index: 1;
}

.pc_header .btn_text {
  position: relative;
  font-family: "Avenir", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.71;
  letter-spacing: 0.01em;
  color: #fff;
  z-index: 2;
}

.pc_header.is-change .menu a {
  color: #fff;
}

.pc_header.is-change .logo img.default {
  display: none;
}

.pc_header.is-change .logo img.switch {
  display: block;
}

.pc_header.is-change .underline::before {
  background: #fff;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOPページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* FV */
#top_fv {
  position: relative;
  height: 100vh;
  margin-top: -130px;
}

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

#top_fv .wrap {
  height: 100%;
}

#top_fv .body {
  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;
  gap: 40px;
  padding-bottom: 10vh;
}

#top_fv .title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.13em;
  color: #fff;
}

#top_fv .catch {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.69;
  letter-spacing: 0.06em;
  margin-top: 26px;
  color: #fff;
}

#top_fv .box a {
  display: block;
  color: #252B3E;
}

#top_fv .head {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#top_fv .row {
  width: 545px;
  margin-inline: auto;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#top_fv .tag {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  background: #2B4F9F;
  border-radius: 13px;
  padding: 4px 14px;
}

#top_fv .date {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
}

#top_fv .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.03em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #fff;
}

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

#top_fv .icon img {
  display: block;
  width: 13px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 会社情報 */
#top_about {
  padding: 160px 0 160px;
}

#top_about .wrap {
  position: relative;
}

#top_about .image {
  position: absolute;
  width: 875px;
  height: 591px;
  top: calc(50% - 80px);
  right: -50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

#top_about .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#top_about .title-wrap {
  position: relative;
}

#top_about .sketch {
  position: absolute;
  width: 400px;
  height: 160px;
  top: 110px;
  right: 305px;
  z-index: 2;
}

#top_about .sketch svg {
  width: 100%;
  height: 100%;
}

#top_about svg .svg-elem-1 {
  stroke-dashoffset: 2297.9455566406px;
  stroke-dasharray: 2297.9455566406px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s ease 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s ease 0.8s;
}

#top_about svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(43, 79, 159);
}

#top_about .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 94px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#top_about .en--reverse {
  color: #fff;
  text-shadow: -1px -1px 0 #2B4F9F, 1px -1px 0 #2B4F9F, -1px 1px 0 #2B4F9F, 1px 1px 0 #2B4F9F;
  margin-top: 3px;
}

#top_about .catch {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  padding-left: 8px;
  margin-top: 26px;
}

#top_about .contents {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin-top: 200px;
  z-index: 2;
}

#top_about .title {
  width: 97.5%;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #fff;
  background: #1a1a1a;
  padding: 16px 18px;
}

#top_about .text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.69;
  letter-spacing: 0.13em;
  margin-top: 45px;
}

#top_about .btns {
  gap: 10px;
  margin-top: 42px;
}

/* 代表挨拶 */
#top_greeting {
  padding: 0 0 90px;
}

#top_greeting .body {
  position: relative;
}

#top_greeting .bg {
  position: absolute;
  width: 75.3%;
  max-width: 1640px;
  height: 100%;
  top: 0;
  left: 0;
}

#top_greeting .bg img {
  width: 100%;
  height: 100%;
  border-radius: 0 60px 0 0;
}

#top_greeting .wrap {
  position: relative;
}

#top_greeting .contents {
  padding: 125px 0 193px;
}

#top_greeting .title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.13em;
}

#top_greeting .brush {
  position: relative;
  top: 5px;
  display: inline-block;
  width: 170px;
  height: 82px;
  border: 1px solid #2B4F9F;
  padding: 6px 14px 8px;
  margin: 0 -7px 0 -15px;
}

#top_greeting .brush svg {
  width: 100%;
  height: 100%;
}

#top_greeting svg .svg-elem-1 {
  stroke-dashoffset: 1272.3149414063px;
  stroke-dasharray: 1272.3149414063px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

#top_greeting svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
  fill: rgb(244, 123, 34);
}

#top_greeting svg .svg-elem-2 {
  stroke-dashoffset: 2520.6254882813px;
  stroke-dasharray: 2520.6254882813px;
  fill: transparent;
  -webkit-transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

#top_greeting svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
  fill: rgb(244, 123, 34);
}

#top_greeting .text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 46px;
}

#top_greeting .name {
  width: 100%;
  max-width: 271px;
  margin-top: 76px;
}

#top_greeting .name img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#top_greeting .image {
  position: absolute;
  width: 421px;
  height: 638px;
  bottom: 90px;
  right: -100px;
}

#top_greeting .swiper-container {
  position: relative;
  margin-top: -90px;
}

#top_greeting .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

#top_greeting .swiper-slide {
  height: auto;
}

#top_greeting .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 300/180;
  border-radius: 10px;
}

#top_greeting .cursor {
  position: absolute;
  width: 160px;
  height: 160px;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}

#top_greeting .cursor.is-active {
  opacity: 1;
  pointer-events: auto;
}

#top_greeting .cursor a {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 23px;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  padding-top: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#top_greeting .cursor_text {
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  color: #2B4F9F;
  padding-inline: 12px;
  text-align: center;
}

#top_greeting .cursor img {
  display: block;
  width: 22px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* プロダクト紹介 */
#top_products {
  padding: 90px 0 0;
}

#top_products .wrap {
  position: relative;
}

#top_products .ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #1a1a1a;
}

#top_products .en {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
  margin-top: 14px;
}

#top_products .lead {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.63;
  letter-spacing: 0.05em;
  margin-top: 26px;
}

#top_products .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}

#top_products .item {
  position: relative;
  -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;
  gap: 23px;
  border: 1px solid #ddd;
  padding: 39px 30px 32px;
  text-align: center;
  cursor: pointer;
}

#top_products .item:not(:last-of-type) {
  border-right: none;
}

#top_products .item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("./image/top-products-item-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: -1;
}

#top_products .item_image img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin-inline: auto;
}

#top_products .item:nth-of-type(1) img {
  width: 280px;
  height: 158px;
}

#top_products .item:nth-of-type(2) img {
  width: 263px;
  height: 158px;
}

#top_products .item:nth-of-type(3) img {
  width: 230px;
  height: 173px;
}

#top_products .item_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

#top_products .item_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.59;
  letter-spacing: 0.01em;
  margin-top: 19px;
}

#top_products .item_btn {
  margin-top: 27px;
}

#top_products .item_btn a {
  min-width: 220px;
  border-radius: 30px;
  border: 1px solid #333;
  padding: 8px 23px;
}

#top_products .btn_text {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  line-height: 2.29;
  letter-spacing: 0.13em;
  color: #252B3E;
}

#top_products .item_btn a::before {
  background: #333;
}

#top_products .item_btn a::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("./image/icon-separate-tab.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

/* リアン不動産交流会 */
#top_event {
  padding: 105px 0 0;
}

#top_event .en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#top_event .ja {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding-left: 20px;
  margin-top: 8px;
}

#top_event .ja::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: -5px;
  -webkit-transform: translateY(-50%) rotate(115deg);
  transform: translateY(-50%) rotate(115deg);
  background: #2B4F9F;
}

#top_event .lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.05em;
  margin-top: 14px;
}

#top_event .banner {
  margin-top: 24px;
}

#top_event .banner a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

#top_event .banner a::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
  border-radius: 15px;
  z-index: 1;
}

#top_event .banner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ご協賛について */
#top_sponsor {
  padding: 75px 0 72px;
}

/* 講演・コンサルティング */
#top_consulting {
  padding: 0 0 184px;
}

#top_consulting .body {
  position: relative;
  border-top: 1px solid #333;
  border-bottom: 1px solid #ddd;
  padding: 140px 0 19px;
}

#top_consulting .row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

#top_consulting .en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#top_consulting .ja {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.73;
  letter-spacing: 0.05em;
  padding-left: 20px;
  margin-top: 8px;
}

#top_consulting .ja::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: -5px;
  -webkit-transform: translateY(-50%) rotate(115deg);
  transform: translateY(-50%) rotate(115deg);
  background: #2B4F9F;
}

#top_consulting .btn {
  margin-top: 5px;
}

#top_consulting .btn a {
  min-width: 190px;
  border-radius: 30px;
  padding: 9px 23px;
}

#top_consulting .btn .btn_text {
  font-size: 14px;
}

#top_consulting .lead {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

#top_consulting .image {
  position: absolute;
  width: 130px;
  height: 130px;
  opacity: 0;
}

#top_consulting.is-visible .image {
  -webkit-animation: popUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation: popUp 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#top_consulting.is-visible .image01 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#top_consulting.is-visible .image02 {
  -webkit-animation-name: popUpCenter;
  animation-name: popUpCenter;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#top_consulting.is-visible .image03 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

#top_consulting .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

#top_consulting .image01 {
  bottom: -95px;
  left: -110px;
}

#top_consulting .image02 {
  top: 74px;
  left: calc(50% + 78px);
}

#top_consulting .image03 {
  width: 150px;
  height: 150px;
  bottom: -55px;
  right: -50px;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px) scale(0.8);
    transform: translateY(100px) scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px) scale(0.8);
    transform: translateY(100px) scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
  }
}

@-webkit-keyframes popUpCenter {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(100px) scale(0.8);
    transform: translateX(-50%) translateY(100px) scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes popUpCenter {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(100px) scale(0.8);
    transform: translateX(-50%) translateY(100px) scale(0.8);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scale(1);
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* 採用情報 */
#top_recruit {
  position: relative;
  z-index: 1;
}

#top_recruit .body {
  padding: 100px 0 112px;
  background-image: url("./image/top-recruit-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
}

#top_recruit .title-wrap {
  padding: 0 20px;
  text-align: center;
}

#top_recruit .en {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#top_recruit .ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.96;
  letter-spacing: 0.15em;
  margin-top: 18px;
}

#top_recruit .lead {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.57;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

#top_recruit .btn {
  margin-top: 35px;
  text-align: center;
}

#top_recruit .btn a {
  min-width: 350px;
}

#top_recruit .swiper-container {
  position: relative;
  margin-top: 30px;
}

#top_recruit .swiper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  padding: 12px 0;
}

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

#top_recruit .swiper-slide {
  height: auto;
  margin-top: 42px;
}

#top_recruit .swiper-slide--reverse {
  margin-top: 0;
}

#top_recruit .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 420/280;
  border-radius: 10px;
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
}

#top_recruit .swiper-slide--reverse img {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層ページ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* PC固定ページ 企業理念 */
#philosophy_contents {
  padding: 100px 0 60px;
}

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

#philosophy_contents .item {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 80px;
}

#philosophy_contents .c_title02 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  text-align: left;
}

#philosophy_contents .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

#philosophy_sdgs {
  padding: 60px 0 135px;
}

#philosophy_sdgs .title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-align: center;
}

#philosophy_sdgs .block {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 50px;
}

#philosophy_sdgs .block:not(:first-of-type) {
  margin-top: 100px;
}

#philosophy_sdgs .row {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

#philosophy_sdgs .border {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

#philosophy_sdgs .text {
  margin-top: 20px;
}

#philosophy_sdgs .image {
  margin-top: 40px;
}

#philosophy_sdgs .image a {
  pointer-events: none;
}

/* モーダル */
#philosophy_sdgs_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

#philosophy_sdgs_modal .content {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

#philosophy_sdgs_modal img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-inline: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#philosophy_sdgs_modal .close {
  position: absolute;
  top: -80px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* PC固定ページ 会社情報 */
#about_profile {
  padding: 100px 0 50px;
}

#about_profile .dl-wrap {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 60px;
}

#about_profile .dl {
  border-bottom: 1px solid #ddd;
}

#about_profile .dl:last-of-type {
  border-bottom: none;
}

#about_profile .dt,
#about_profile .dd {
  padding: 24px 30px;
}

#about_profile .dt {
  width: 22%;
}

#about_profile .dd {
  width: 78%;
}

#about_member {
  padding: 50px 0 80px;
}

#about_member .box {
  margin-top: 50px;
}

#about_member .items {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

#about_member .item {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
}

#about_member .item_image {
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
}

#about_member .item_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

#about_member .item_contents {
  margin-top: 32px;
}

#about_member .item_name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: #2B4F9F;
  text-align: center;
}

#about_member .item_role {
  margin-top: 5px;
  text-align: center;
}

#about_member .item_text {
  margin-top: 20px;
}

#about_member .block {
  margin-top: 80px;
}

#about_member .title {
  position: relative;
  text-align: center;
}

#about_member .title span {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  background: #fff;
  padding: 0 20px;
}

#about_member .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ddd;
  z-index: -1;
}

#about_member .item_lists {
  position: relative;
  max-height: 3.6em;
  max-height: 3em;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#about_member .item_lists::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}

#about_member .item_lists.is-open::after {
  opacity: 0;
}

#about_member .item_btn {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px;
  padding-right: 10px;
  margin-top: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#about_member .item_btn_text {
  font-weight: 700;
  color: #2B4F9F;
}

#about_member .item_btn_arrow {
  position: relative;
  top: 5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border-right: 2px solid #2B4F9F;
  border-bottom: 2px solid #2B4F9F;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

#about_member .item_btn.is-open .item_btn_arrow {
  top: 8px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

#about_access {
  padding: 0 0 135px;
}

#about_access .body {
  padding: 70px 0 0;
}

#about_access .box {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 50px;
}

#about_access .text {
  line-height: 1.8;
}

#about_access .map {
  position: relative;
  width: 100%;
  aspect-ratio: 800/440;
  margin-top: 32px;
}

#about_access .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* PC固定ページ 代表挨拶 */
#greeting_contents {
  padding: 100px 0 80px;
}

#greeting_contents .c_media {
  margin-top: 50px;
}

#greeting_contents .items {
  max-width: 100%;
}

#greeting_contents .item_row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 65px;
}

#greeting_contents .item_contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#greeting_contents .item_text {
  font-size: 18px;
  margin-top: 0;
}

#greeting_contents .item_dl_wrap {
  margin-top: 40px;
}

#greeting_contents .item_dl {
  gap: 0;
}

#greeting_contents .item_dl:not(:first-of-type) {
  margin-top: 5px;
}

#greeting_history {
  padding: 80px 0 60px;
}

#greeting_history .lead {
  margin-top: 50px;
}

#greeting_history .block_wrap {
  position: relative;
}

#greeting_history .block_wrap::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: #333;
}

#greeting_history .block {
  position: relative;
  padding-left: 100px;
  margin-top: 100px;
}

#greeting_history .block--last {
  padding-left: 0;
  margin-top: 100px;
}

#greeting_history .block::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 10px;
  left: -7px;
  background: #333;
  border-radius: 50%;
}

#greeting_history .block--last::before {
  display: none;
}

#greeting_history .block_row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}

#greeting_history .block_row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#greeting_history .block_image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#greeting_history .block_image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
}

#greeting_history .block_contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#greeting_history .block_title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

#greeting_history .block_text {
  margin-top: 24px;
}

#greeting_history .block_box {
  margin-top: 20px;
}

#greeting_history .block_name {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  text-align: left;
}

#greeting_history .block_name span {
  display: inline-block;
  font-weight: 600;
}

#greeting_youtube {
  padding: 60px 0 135px;
}

#greeting_youtube .youtube {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 560/315;
  overflow: hidden;
  margin-top: 50px;
}

#greeting_youtube .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#greeting_youtube .btn {
  margin-top: 40px;
  text-align: center;
}

/* PC固定ページ プロダクト紹介 */
#products_contents {
  padding: 100px 0;
}

#products_contents .c_media {
  margin-top: 80px;
}

#products_contents .box {
  margin-top: 80px;
}

#products_contents .units {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

#products_contents .unit {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

#products_contents .unit_image a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#products_contents .box_text {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 20px;
  text-align: center;
}

#products_other {
  padding: 100px 0 135px;
}

#products_other .c_media {
  margin-top: 80px;
}

#products_other .items {
  max-width: 100%;
}

#products_other .item_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

#products_other .item_row {
  gap: 80px;
}

#products_other .item_contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#products_other .item_image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 500px;
  flex: 0 0 500px;
}

#products_other .item_image img {
  aspect-ratio: 500/350;
  -o-object-fit: cover;
  object-fit: cover;
}

/* PC固定ページ イベント */
#event_info {
  padding: 62px 0 40px;
}

#event_info .block {
  border-bottom: 1px solid #ddd;
  padding-bottom: 48px;
}

#event_info .block_title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.19em;
  color: #1a1a1a;
}

#event_info .block_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin-top: 28px;
}

#event_info .body {
  border-bottom: 1px solid #333;
  padding: 50px 0 80px;
}

#event_info .body_image {
  width: 100%;
  max-width: 950px;
  margin-inline: auto;
  margin-top: 32px;
}

#event_info .body_image a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#event_info .body_image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 950/332;
}

#event_info .link {
  margin-top: 20px;
  text-align: center;
}

#event_info .link a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #a2a2a2;
  text-decoration: underline;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#event_info .box {
  padding: 78px 0 0;
}

#event_info .movie {
  padding-bottom: 100px;
  text-align: center;
}

#event_info .movie_en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#event_info .movie_image {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 32px;
}

#event_info .movie_image::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #333;
}

#event_info .movie_image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 800/451;
}

#event_info .movie_icon {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#event_info .movie_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#event_info .movie_icon::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-animation: ripple 2.5s ease-out infinite;
  animation: ripple 2.5s ease-out infinite;
}

@-webkit-keyframes ripple {
  0% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}

#event_info .box_image {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}

#event_info .box_image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 700/245;
}

#event_info .btn {
  margin-top: 30px;
  text-align: center;
}

#event_info .btn a {
  min-width: 320px;
  padding: 12px 23px;
}

#event_sponsor {
  padding: 50px 0 54px;
}

#event_archive {
  padding: 0 0 40px;
}

#event_archive .body {
  border-top: 1px solid #ddd;
  padding: 60px 0 0;
}

#event_archive .btn {
  margin-top: 50px;
  text-align: center;
}

#event_archive .btn a {
  min-width: 270px;
  padding: 14px 23px;
}

#event_archive .btn a .btn_text {
  font-size: 14px;
}

/* モーダル */
#event_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1000;
}

#event_modal .content {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

#event_modal .modal_video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 800/451;
  -o-object-fit: cover;
  object-fit: cover;
}

#event_modal img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 230/180;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

#event_modal .close {
  position: absolute;
  top: -80px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

#event_faq {
  padding: 50px 0 135px;
}

#event_faq .items {
  margin-top: 97px;
}

#event_faq .item {
  border-top: 1px solid #333;
  padding: 29px 30px;
}

#event_faq .item:last-of-type {
  border-bottom: 1px solid #333;
}

#event_faq .item--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  padding: 29px 0 29px 30px;
}

#event_faq .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#event_faq .head {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

#event_faq .en {
  position: relative;
  top: -1px;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #2B4F9F;
}

#event_faq .title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.73;
  letter-spacing: 0.11em;
  color: #1a1a1a;
}

#event_faq .text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #333;
  margin-top: 10px;
}

#event_faq .btn {
  position: relative;
  top: 5px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 230px;
  flex: 0 0 230px;
}

#event_faq .btn a {
  min-width: 230px;
  padding: 9px 23px;
}

#event_faq .btn_text {
  font-size: 14px;
}

/* PC固定ページ 過去のイベント */
#past-events {
  padding: 120px 0 135px;
}

/* PC固定ページ お問い合わせ */
.contact_form_disc {
  color: #252B3E;
  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: "";
  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;
}

.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 .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: #252B3E;
  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: #5A5A5A;
  -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: #3E3E3E;
  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 .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: #252B3E;
  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: #2B4F9F;
  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ページ */
.error404 #main_content {
  padding-bottom: 120px;
}

#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;
}

.p-authorBox .avatar {
  display: inline;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PCフッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site_footer {
  color: #fff;
  background: #2b3452;
  padding: 80px 0 45px;
}

.home .site_footer {
  padding: 240px 0 45px;
  margin-top: -150px;
}

.site_footer .body {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 114px;
}

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

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

.site_footer .company {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: 0.05em;
  color: #fff;
  margin-top: 10px;
}

.site_footer .box {
  width: 100%;
  max-width: 295px;
  margin-top: 60px;
}

.site_footer .box_btn a {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .box_title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
}

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

.site_footer .box_icon img {
  display: block;
  width: 25px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.site_footer .box_text {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #fff;
  margin-top: 10px;
}

.site_footer .address {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin-top: 132px;
}

.site_footer .nav {
  gap: 42px;
}

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

.site_footer .menu a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

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

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

.site_footer .sub_menu a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.site_footer .copyright {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 25px;
  margin-top: 18px;
  text-align: center;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
hover 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ボタン */
.c_btn a:hover {
  background: #2B4F9F;
}

.c_btn a:hover::before {
  width: 100%;
  height: 240px;
  left: -10%;
  -webkit-transform: translate3d(0, -50%, 0) scale(1.5);
  transform: translate3d(0, -50%, 0) scale(1.5);
}

.c_btn a:hover .btn_text {
  color: #fff;
}

.c_btn--reverse a:hover {
  background: transparent;
}

.c_btn--reverse a:hover .btn_text {
  color: #2B4F9F;
}

.c_btn--gradation a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#2b4f9f), color-stop(40%, #204089), to(#10285c));
  background: -webkit-linear-gradient(top, #2b4f9f 0%, #204089 40%, #10285c 100%);
  background: linear-gradient(to bottom, #2b4f9f 0%, #204089 40%, #10285c 100%);
}

/* ヘッダー */
.pc_header .logo a:hover {
  opacity: 0.8;
}

.pc_header .menu a:hover .en {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}

.pc_header .menu a:hover .ja {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
}

.pc_header .btn:hover a {
  min-width: 154px;
}

.pc_header .btn:hover a::before {
  width: 100%;
}

/* TOPページ */
#top_fv .box a:hover .head {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

#top_fv .box a:hover .row {
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
}

#top_greeting .cursor a:hover {
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 30px rgba(0, 0, 0, 0.1);
}

#top_products .item:hover::before {
  opacity: 1;
}

#top_products .item_btn a:hover {
  background: #333;
}

#top_products .item_btn a:hover .btn_text {
  color: #fff;
}

#top_products .item_btn a:hover::after {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#top_event .banner a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/* 下層ページ */
#about_member .item_btn:hover {
  opacity: 0.8;
}

#products_contents .unit_image a:hover {
  opacity: 0.8;
}

#event_info .body_image a:hover {
  opacity: 0.8;
}

#event_info .link a:hover {
  opacity: 0.8;
}

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

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

/* フッター */
.site_footer .logo a:hover {
  opacity: 0.8;
}

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

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

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

 /* .wp-singular .l-content {
    border-top: 99px solid #1A1A1A;
  } */

  body.single .pc_header {
    background-color: #2b3452;
  }

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
750px 〜 style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ----------------------- デフォルトcss ------------------------- */
@media (max-width: 750px) {

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  body {
    min-width: 100%;
    font-size: 3.59vw;
    line-height: 1.5;
  }

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

  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: 10.26vw 0 25.64vw;
  }

  .reserve_text {
    font-size: 6vw;
  }

  /* ----------------------- サイト共通パーツ ------------------------- */
  /* パンくず */
  .breadcrumb {
    display: none;
  }

  /* ボタン */
  .c_btn a {
    min-width: 64.1vw;
    border-radius: 8.97vw;
    padding: 3.72vw 4.62vw;
  }

  .c_btn a:hover {
    background: transparent;
  }

  .c_btn a::before {
    display: none;
  }

  .c_btn a .btn_text {
    font-size: 3.59vw;
    line-height: 1.43;
  }

  .c_btn a:hover .btn_text {
    color: #2B4F9F;
  }

  .c_btn--reverse a:hover {
    background: #2B4F9F;
  }

  .c_btn--reverse a:hover .btn_text {
    color: #fff;
  }

  .c_btn--gradation a:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(#2b4f9f), color-stop(40%, #204089), to(#10285c));
    background: -webkit-linear-gradient(top, #2b4f9f 0%, #204089 40%, #10285c 100%);
    background: linear-gradient(to bottom, #2b4f9f 0%, #204089 40%, #10285c 100%);
  }

  .c_btn--gradation a:hover .btn_text {
    color: #fff;
  }

  /* イベント */
  .c_event {
    margin-top: 6.15vw;
  }

  .c_event .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
    border-radius: 2.56vw;
    padding: 5.13vw;
  }

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

  .c_event .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }

  .c_event .head {
    padding-bottom: 3.08vw;
  }

  .c_event .title {
    font-size: 6.15vw;
  }

  .c_event .row {
    gap: 1.28vw 4.1vw;
    font-size: 3.59vw;
    margin-top: 2.05vw;
  }

  .c_event .date::before {
    width: 3.59vw;
    top: calc(50% + 0.26vw);
    right: -3.85vw;
  }

  .c_event .lists {
    margin-top: 3.08vw;
  }

  .c_event .list {
    font-size: 3.33vw;
  }

  .c_event .images {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 1.79vw;
  }

  .c_event .image img {
    border-radius: 1.28vw;
  }

  /* 画像＋テキスト */
  .c_media .items {
    max-width: 100%;
  }

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

  .c_media .item_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }

  .c_media .item_contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }

  .c_media .item_logo {
    max-width: 61.54vw;
    margin-inline: auto;
  }

  .c_media .item:nth-of-type(2) .item_logo {
    max-width: 48.72vw;
  }

  .c_media .item:nth-of-type(3) .item_logo {
    max-width: 76.92vw;
  }

  .c_media .item_title {
    font-size: 6.15vw;
  }

  .c_media .item_catch {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.01em;
    font-size: 4.1vw;
    margin-top: 5.13vw;
    text-align: center;
  }

  .c_media .item_text {
    font-size: 3.33vw;
    padding: 0 2.56vw;
    margin-top: 4.1vw;
  }

  .c_media .item_annotation {
    font-size: 3.08vw;
    padding: 0 2.56vw;
    margin-top: 2.56vw;
  }

  .c_media .item_image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }

  .c_media .item_image img {
    border-radius: 1.54vw;
  }

  .c_media .item_btn {
    margin-top: 4.1vw;
    text-align: center;
  }

  .c_media .item_btn a {
    padding: 3.21vw 4.62vw;
  }

  .c_media .btn_text {
    font-size: 3.59vw;
  }

  .c_media .item_dl_wrap {
    margin-top: 5.13vw;
  }

  .c_media .item_dl {
    gap: 2.56vw;
    font-size: 3.59vw;
  }

  /* ご協賛 */
  .c_sponsor .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c_sponsor .en {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 9.23vw;
    line-height: 1.1;
    margin-top: 1.03vw;
  }

  .c_sponsor .row {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    gap: 4.1vw;
    margin-top: 0;
  }

  .c_sponsor .ja {
    font-size: 3.59vw;
    letter-spacing: 0.15em;
  }

  .c_sponsor .catch {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    font-size: 4.62vw;
    line-height: 1.46;
    margin-top: 6.15vw;
  }

  .c_sponsor .lead {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    font-size: 3.59vw;
    margin-top: 3.85vw;
  }

  .c_sponsor .btn {
    margin-top: 8.21vw;
  }

  .c_sponsor .btn a {
    min-width: 64.1vw;
    background: #2B4F9F;
  }

  .c_sponsor .btn .btn_text {
    color: #fff;
  }

  .c_sponsor .btn a:hover .btn_text {
    color: #fff;
  }

  .c_sponsor .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.05vw 1.03vw;
    margin-top: 8.72vw;
  }

  .c_sponsor .item img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    aspect-ratio: 170/86;
  }

  /* 下層セクションタイトル01 */
  .c_title .c_title_ja {
    font-size: 4.1vw;
    line-height: 1.95;
  }

  .c_title .c_title_en {
    font-size: 3.59vw;
    margin-top: 0.77vw;
  }

  /* 下層セクションタイトル02 */
  .c_title02--center {
    text-align: center;
  }

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

  .c_title02 .c_title02_ja {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 3.59vw;
    letter-spacing: 0.15em;
    margin-top: 0;
  }

  .c_title02 .c_title02_en {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 9.23vw;
    line-height: 1.1;
    margin-top: 1.03vw;
  }

  /* 下層FV */
  .common_fv {
    padding: 24.1vw 0 11.54vw;
    margin-top: 0;
  }

  .common_fv .en {
    font-size: 8.21vw;
  }

  .common_fv .ja {
    font-size: 3.59vw;
    letter-spacing: 0.15em;
    margin-top: 1.28vw;
  }

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


  .sp_hd .body {
    -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;
  }

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

  .sp_hd .btns {
    margin-right: 52px;
  }

  .sp_hd .btn a {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: #2B4F9F;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .sp_hd .btn img {
    position: absolute;
    width: 27px;
    height: 19px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: contain;
    object-fit: contain;
  }

  .sp_hd .btn a .default {
    opacity: 1;
  }

  .sp_hd .btn a .switch {
    opacity: 0;
  }

  .sp_hd .btn a .default {
    opacity: 1;
  }

  .sp_hd .btn a .switch {
    opacity: 0;
  }

  /* ハンバーガーメニューアクティブ時 */
  .sp_hd.active .btn a {
    background: #fff;
  }

  .sp_hd.active .btn a .default {
    opacity: 0;
  }

  .sp_hd.active .btn a .switch {
    opacity: 1;
  }

  .sp_hd .logo img.switch {
    display: none;
  }

  .sp_hd.is-change .logo img.default {
    display: none;
  }

  .sp_hd.is-change .logo img.switch {
    display: block;
  }

  .sp_hd.is-change .logo img.switch {
    -webkit-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
  }

  /* ----------------------- TOPページ ------------------------- */
  /* FV */
  #top_fv {
    height: 100svh;
    margin-top: 0;
  }

  #top_fv .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8.97vw;
    padding-bottom: 5.13vw;
  }

  #top_fv .title_wrap {
    width: 100%;
  }

  #top_fv .title {
    font-size: 8.21vw;
    line-height: 1.41;
  }

  #top_fv .catch {
    font-size: 3.59vw;
    line-height: 1.93;
    padding-left: 0.77vw;
    margin-top: 1.03vw;
  }

  #top_fv .box {
    width: 100%;
  }

  #top_fv .box a:hover .head {
    -webkit-transform: none;
    transform: none;
  }

  #top_fv .row {
    width: 100%;
    gap: 6.92vw;
    margin-top: 2.05vw;
  }

  #top_fv .box a:hover .row {
    -webkit-transform: none;
    transform: none;
  }

  #top_fv .tag {
    font-size: 3.59vw;
    border-radius: 3.33vw;
    padding: 1.03vw 3.59vw;
  }

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

  #top_fv .text {
    font-size: 3.33vw;
    line-height: 1.38;
    -webkit-line-clamp: 2;
  }

  #top_fv .icon img {
    width: 3.33vw;
    height: 3.08vw;
  }

  /* 会社情報 */
  #top_about {
    padding: 17.95vw 0 19.23vw;
  }

  #top_about .image {
    width: 94.87vw;
    height: 64.1vw;
    top: 46.15vw;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  #top_about .title-wrap {
    position: relative;
  }

  #top_about .sketch {
    width: 64.1vw;
    height: 24.36vw;
    top: 43.59vw;
    right: -2.56vw;
  }

  #top_about .sketch svg {
    width: 100%;
  }

  #top_about .en {
    font-size: 13.85vw;
    line-height: 1.09;
    margin-top: 2.56vw;
  }

  #top_about .en--reverse {
    line-height: 1;
    margin-top: 0.77vw;
  }

  #top_about .catch {
    font-size: 4.62vw;
    padding-left: 0.77vw;
    margin-top: 0;
  }

  #top_about .contents {
    max-width: 100%;
    margin-top: 46.67vw;
  }

  #top_about .title {
    width: 100%;
    color: inherit;
    background: transparent;
    padding: 0;
  }

  #top_about .title span {
    display: inline-block;
    font-size: 4.62vw;
    letter-spacing: 0.17em;
    color: #fff;
    background: #1a1a1a;
    padding: 2.82vw 1.92vw;
  }

  #top_about .title span:nth-of-type(n + 2) {
    padding: 2.82vw 1.03vw 2.82vw 1.92vw;
    margin-top: 1.28vw;
  }

  #top_about .text {
    font-size: 3.85vw;
    line-height: 1.53;
    margin-top: 6.67vw;
  }

  #top_about .btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.28vw;
    margin-top: 9.49vw;
  }

  /* 代表挨拶 */
  #top_greeting {
    padding: 0 0 8.97vw;
  }

  #top_greeting .bg {
    width: 65.38vw;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  #top_greeting .bg img {
    border-radius: 0 10.26vw 5.13vw 0;
  }

  #top_greeting .contents {
    padding: 22.56vw 0 21.79vw;
  }

  #top_greeting .title {
    font-size: 6.67vw;
  }

  #top_greeting .brush {
    top: 5px;
    width: 30.77vw;
    height: 15.38vw;
    padding: 2.05vw 0.51vw;
    margin: 0 -1.28vw 0 -2.56vw;
  }

  #top_greeting .text {
    font-size: 3.59vw;
    line-height: 1.64;
    margin-top: 7.18vw;
  }

  #top_greeting .name {
    max-width: 32.56vw;
    margin-top: 21.28vw;
  }

  #top_greeting .image {
    width: 50vw;
    height: 75.9vw;
    bottom: 8.21vw;
    right: -5.13vw;
  }

  #top_greeting .swiper-container {
    margin-top: -8vw;
  }

  #top_greeting .swiper-slide img {
    aspect-ratio: 200/140;
    border-radius: 10px;
    border-radius: 1.54vw;
  }

  #top_greeting .cursor {
    position: sticky;
    width: 28.21vw;
    height: 28.21vw;
    top: 0;
    left: 0;
    margin-top: 8.72vw;
    opacity: 1;
    pointer-events: auto;
  }

  #top_greeting .cursor a {
    gap: 3.85vw;
    padding-top: 3.85vw;
  }

  #top_greeting .cursor a:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  #top_greeting .cursor_text {
    font-size: 4.1vw;
    padding-inline: 2.56vw;
  }

  #top_greeting .cursor img {
    width: 4.87vw;
    height: 4.62vw;
  }

  /* プロダクト紹介 */
  #top_products {
    padding: 10.26vw 0 0;
  }

  #top_products .title-wrap {
    text-align: center;
  }

  #top_products .ja {
    font-size: 3.59vw;
  }

  #top_products .en {
    font-size: 9.23vw;
    margin-top: 3.08vw;
  }

  #top_products .lead {
    font-size: 3.33vw;
    line-height: 1.54;
    margin-top: 4.1vw;
  }

  #top_products .items {
    grid-template-columns: 1fr;
    padding: 0 5.13vw;
    margin-top: 5.64vw;
  }

  #top_products .item {
    gap: 2.56vw;
    padding: 7.69vw 5vw 3.59vw;
    cursor: default;
  }

  #top_products .item:nth-of-type(3) {
    gap: 1.03vw;
    padding: 6.15vw 5vw 3.59vw;
  }

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

  #top_products .item:not(:last-of-type) {
    border-right: 1px solid #ddd;
  }

  #top_products .item::before {
    display: none;
  }

  #top_products .item:nth-of-type(1) img {
    width: 47.18vw;
    height: 26.67vw;
  }

  #top_products .item:nth-of-type(2) img {
    width: 1871.79vw;
    height: 26.67vw;
  }

  #top_products .item:nth-of-type(3) img {
    width: 39.49vw;
    height: 29.74vw;
  }

  #top_products .item_title {
    font-size: 4.62vw;
    line-height: 1.73;
  }

  #top_products .item_text {
    font-size: 3.33vw;
    line-height: 1.54;
    margin-top: 2.05vw;
  }

  #top_products .item_btn {
    margin-top: 4.62vw;
  }

  #top_products .item_btn a {
    min-width: 38.46vw;
    border-radius: 7.69vw;
    padding: 0.77vw 4.87vw;
  }

  #top_products .item_btn a:hover {
    background: transparent;
  }

  #top_products .btn_text {
    font-size: 3.59vw;
  }

  #top_products .item_btn a:hover .btn_text {
    color: #252B3E;
  }

  #top_products .item_btn a::after {
    display: none;
  }

  /* リアン不動産交流会 */
  #top_event {
    padding: 15.38vw 0 0;
  }

  #top_event .title-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #top_event .en {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 9.23vw;
    line-height: 1.1;
    margin-top: 1.03vw;
  }

  #top_event .ja {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 3.59vw;
    letter-spacing: 0.15em;
    padding-left: 3.08vw;
    margin-top: 0;
  }

  #top_event .ja::before {
    width: 4.1vw;
    height: 0.51vw;
    left: -1.28vw;
  }

  #top_event .lead {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    font-size: 3.33vw;
    line-height: 1.77;
    letter-spacing: 0;
    margin-top: 5.13vw;
  }

  #top_event .banner {
    margin-top: 5.13vw;
  }

  #top_event .banner a {
    border-radius: 2.56vw;
  }

  #top_event .banner a::before {
    width: calc(100% - 5.13vw);
    height: calc(100% - 5.13vw);
    border-radius: 1.54vw;
  }

  #top_event .banner a:hover img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  /* ご協賛について */
  #top_sponsor {
    padding: 11.54vw 0;
  }

  /* 講演・コンサルティング */
  #top_consulting {
    padding: 0 0 16.15vw;
  }

  #top_consulting .body {
    padding: 41.03vw 0 6.41vw;
  }

  #top_consulting .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
  }

  #top_consulting .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  #top_consulting .en {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    font-size: 9.23vw;
    line-height: 1.1;
    margin-top: 1.03vw;
  }

  #top_consulting .ja {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    font-size: 3.59vw;
    letter-spacing: 0.15em;
    padding-left: 3.08vw;
    margin-top: 0;
  }

  #top_consulting .ja::before {
    width: 4.1vw;
    height: 0.51vw;
    left: -1.28vw;
  }

  #top_consulting .lead {
    font-size: 3.33vw;
    line-height: 1.77;
    letter-spacing: 0;
    margin-top: 4.62vw;
  }

  #top_consulting .btn {
    margin-top: 5.64vw;
  }

  #top_consulting .btn a {
    min-width: 41.03vw;
    border-radius: 7.69vw;
    padding: 2.31vw 5.9vw;
  }

  #top_consulting .btn .btn_text {
    font-size: 3.33vw;
  }

  #top_consulting .image {
    width: 23.08vw;
    height: 23.08vw;
  }

  #top_consulting .image01 {
    bottom: auto;
    top: 12.82vw;
    left: 0;
  }

  #top_consulting .image02 {
    width: 28.21vw;
    height: 28.21vw;
    bottom: auto;
    top: 28.21vw;
    left: auto;
    right: 0;
  }

  #top_consulting .image03 {
    display: none;
  }

  @-webkit-keyframes popUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(12vw) scale(0.8);
      transform: translateY(12vw) scale(0.8);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes popUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(12vw) scale(0.8);
      transform: translateY(12vw) scale(0.8);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @-webkit-keyframes popUpCenter {
    0% {
      opacity: 0;
      -webkit-transform: translateY(12vw) scale(0.8);
      transform: translateY(12vw) scale(0.8);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  @keyframes popUpCenter {
    0% {
      opacity: 0;
      -webkit-transform: translateY(12vw) scale(0.8);
      transform: translateY(12vw) scale(0.8);
    }

    100% {
      opacity: 1;
      -webkit-transform: translateY(0) scale(1);
      transform: translateY(0) scale(1);
    }
  }

  /* 採用情報 */
  #top_recruit .body {
    padding: 15.38vw 0 14.1vw;
    background-image: url("./image/top-recruit-bg-sp.png");
    border-radius: 2.56vw;
  }

  #top_recruit .title-wrap {
    padding: 0 2.56vw;
  }

  #top_recruit .en {
    font-size: 9.23vw;
    line-height: 1.2;
    letter-spacing: 0;
  }

  #top_recruit .ja {
    font-size: 4.62vw;
    line-height: 1.44;
    letter-spacing: 0.1em;
    margin-top: 2.56vw;
  }

  #top_recruit .lead {
    font-size: 3.33vw;
    line-height: 1.77;
    letter-spacing: 0;
    margin-top: 6.41vw;
  }

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

  #top_recruit .btn a {
    min-width: 64.1vw;
    background: #2B4F9F;
  }

  #top_recruit .btn_text {
    color: #fff;
  }

  #top_recruit .btn a:hover .btn_text {
    color: #fff;
  }

  #top_recruit .swiper-container {
    margin-top: 2.56vw;
  }

  #top_recruit .swiper {
    padding: 5.13vw 0;
  }

  #top_recruit .swiper-slide {
    margin-top: 6.67vw;
  }

  #top_recruit .swiper-slide--reverse {
    margin-top: 0;
  }

  #top_recruit .swiper-slide img {
    aspect-ratio: 260/165;
    border-radius: 2.56vw;
  }

  /* ----------------------- 下層ページ ------------------------- */
  /* SP固定ページ 企業理念 */
  #philosophy_contents {
    padding: 10.26vw 0;
  }

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

  #philosophy_contents .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }

  #philosophy_contents .c_title02 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #philosophy_contents .text {
    font-size: 4.1vw;
  }

  #philosophy_sdgs {
    padding: 10.26vw 0 25.64vw;
  }

  #philosophy_sdgs .title {
    font-size: 8.21vw;
  }

  #philosophy_sdgs .block {
    max-width: 100%;
    margin-top: 10.26vw;
  }

  #philosophy_sdgs .block:not(:first-of-type) {
    margin-top: 15.38vw;
  }

  #philosophy_sdgs .row {
    gap: 2.56vw;
  }

  #philosophy_sdgs .text {
    margin-top: 2.56vw;
  }

  #philosophy_sdgs .image {
    margin-top: 8.21vw;
  }

  #philosophy_sdgs .image a {
    pointer-events: auto;
  }

  /* モーダル */
  #philosophy_sdgs_modal .content {
    max-width: 90vw;
  }

  #philosophy_sdgs_modal img {
    background: #fff;
  }

  #philosophy_sdgs_modal .close {
    top: -15.38vw;
    right: 0;
    font-size: 6.15vw;
  }

  /* SP固定ページ 会社情報 */
  #about_profile {
    padding: 10.26vw 0 0;
  }

  #about_profile .dl-wrap {
    max-width: 100%;
    margin-top: 8.21vw;
  }

  #about_profile .dt,
  #about_profile .dd {
    padding: 5.13vw 2.56vw;
  }

  #about_profile .dt {
    width: 25%;
  }

  #about_profile .dd {
    width: 75%;
  }

  #about_member {
    padding: 10.26vw 0;
  }

  #about_member .box {
    margin-top: 8.21vw;
  }

  #about_member .items {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10.26vw;
    margin-top: 12.82vw;
  }

  #about_member .item {
    max-width: 100%;
  }

  #about_member .item_image {
    max-width: 51.28vw;
  }

  #about_member .item_contents {
    margin-top: 5.13vw;
  }

  #about_member .item_name {
    font-size: 5.13vw;
  }

  #about_member .item_role {
    margin-top: 1.28vw;
  }

  #about_member .item_text {
    padding: 0 2.56vw;
    margin-top: 4.1vw;
  }

  #about_member .block {
    margin-top: 12.82vw;
  }

  #about_member .title span {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.01em;
    font-size: 4.62vw;
    padding: 0 4.1vw;
  }

  #about_member .item_lists {
    padding: 0 2.56vw;
  }

  #about_member .item_btn {
    gap: 2.56vw;
    padding-right: 2.56vw;
    margin-top: 5.13vw;
  }

  #about_member .item_btn:hover {
    opacity: 1;
  }

  #about_member .item_btn_arrow {
    top: 1.28vw;
    width: 1.79vw;
    height: 1.79vw;
  }

  #about_member .item_btn.is-open .item_btn_arrow {
    top: 2.05vw;
  }

  #about_access {
    padding: 0 0 25.64vw;
  }

  #about_access .body {
    padding: 15.38vw 0 0;
  }

  #about_access .box {
    max-width: 100%;
    margin-top: 8.21vw;
  }

  #about_access .text {
    line-height: 1.8;
  }

  #about_access .map {
    margin-top: 8.21vw;
  }

  #about_access .map iframe {
    border-radius: 1.54vw;
  }

  /* SP固定ページ 代表挨拶 */
  #greeting_contents {
    padding: 10.26vw 0;
  }

  #greeting_contents .c_media {
    margin-top: 6.15vw;
  }

  #greeting_contents .item_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 6.15vw;
  }

  #greeting_contents .item_text {
    font-size: 4.1vw;
    line-height: 1.5;
    text-align: left;
  }

  #greeting_contents .item_dl_wrap {
    margin-top: 8.21vw;
  }

  #greeting_contents .item_dl {
    font-size: 4.1vw;
  }

  #greeting_contents .item_dl:not(:first-of-type) {
    margin-top: 1.28vw;
  }

  #greeting_history {
    padding: 10.26vw 0;
  }

  #greeting_history .lead {
    margin-top: 8.21vw;
  }

  #greeting_history .block {
    padding-left: 5.13vw;
    margin-top: 10.26vw;
  }

  #greeting_history .block--last {
    padding-left: 0;
    margin-top: 15.38vw;
  }

  #greeting_history .block::before {
    width: 2.31vw;
    height: 2.31vw;
    top: 2.56vw;
    left: -1.03vw;
  }

  #greeting_history .block_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5.13vw;
  }

  #greeting_history .block_row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #greeting_history .block_image img {
    border-radius: 1.54vw;
  }

  #greeting_history .block_image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #greeting_history .block_title {
    font-size: 4.62vw;
  }

  #greeting_history .block_text {
    margin-top: 4.1vw;
  }

  #greeting_history .block_box {
    margin-top: 5.13vw;
  }

  #greeting_youtube {
    padding: 10.26vw 0 25.64vw;
  }

  #greeting_youtube .youtube {
    max-width: 100%;
    margin-top: 6.15vw;
  }

  #greeting_youtube .btn {
    margin-top: 6.15vw;
  }

  /* SP固定ページ プロダクト紹介 */
  #products_contents {
    padding: 10.26vw 0;
  }

  #products_contents .c_media {
    margin-top: 12.82vw;
  }

  #products_contents .item:nth-of-type(1) .item_logo,
  #products_contents .item:nth-of-type(2) .item_logo {
    position: relative;
    left: -2.56vw;
  }

  #products_contents .box {
    margin-top: 10.26vw;
  }

  #products_contents .units {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 5.13vw;
  }

  #products_contents .unit_image a:hover {
    opacity: 1;
  }

  #products_contents .unit_qr {
    display: none;
  }

  #products_contents .box_text {
    font-size: 2.56vw;
  }

  #products_other {
    padding: 10.26vw 0 25.64vw;
  }

  #products_other .c_media {
    margin-top: 10.26vw;
  }

  #products_other .item_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  #products_other .item_row {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 8.21vw;
  }

  #products_other .item_contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #products_other .item_catch {
    text-align: left;
  }

  #products_other .item_image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  /* SP固定ページ イベント */
  #event_info {
    padding: 10.77vw 0 10.26vw;
  }

  #event_info .block {
    padding-bottom: 6.67vw;
  }

  #event_info .block_title {
    font-size: 5.64vw;
    line-height: 1.42;
  }

  #event_info .block_text {
    font-size: 3.33vw;
    line-height: 1.69;
    margin-top: 4.36vw;
  }

  #event_info .body {
    padding: 7.18vw 0 8.97vw;
  }

  #event_info .body_image {
    max-width: 100%;
    margin-top: 5.13vw;
  }

  #event_info .body_image a:hover {
    opacity: 1;
  }

  #event_info .body_image img {
    aspect-ratio: 350/245;
  }

  #event_info .link {
    margin-top: 3.85vw;
  }

  #event_info .link a {
    font-size: 3.33vw;
    line-height: 1.85;
  }

  #event_info .link a:hover {
    opacity: 1;
  }

  #event_info .movie {
    padding-bottom: 15.38vw;
  }

  #event_info .movie_en {
    font-size: 9.23vw;
  }

  #event_info .movie_image {
    max-width: 79.49vw;
    margin-top: 6.15vw;
  }

  #event_info .movie_image::before {
    height: 15.38vw;
    bottom: -7.69vw;
  }

  #event_info .movie_icon {
    width: 12.82vw;
    height: 12.82vw;
  }

  #event_info .movie_icon::before {
    width: 20.51vw;
    height: 20.51vw;
    -webkit-animation: ripple 1.8s ease-out infinite;
    animation: ripple 1.8s ease-out infinite;
  }

  @-webkit-keyframes ripple {
    0% {
      width: 12.82vw;
      height: 12.82vw;
    }

    50% {
      opacity: 0.8;
    }

    100% {
      width: 17.95vw;
      height: 17.95vw;
      opacity: 0;
    }
  }

  @keyframes ripple {
    0% {
      width: 12.82vw;
      height: 12.82vw;
    }

    50% {
      opacity: 0.8;
    }

    100% {
      width: 17.95vw;
      height: 17.95vw;
      opacity: 0;
    }
  }

  #event_info .box {
    padding: 10.26vw 0 0;
  }

  #event_info .box_image {
    width: 79.49vw;
    max-width: 100%;
  }

  #event_info .box_image img {
    aspect-ratio: 310/108;
  }

  #event_info .btn {
    margin-top: 5.13vw;
  }

  #event_info .btn a {
    min-width: 61.54vw;
    padding: 2.05vw 4.62vw;
  }

  #event_info .btn_text {
    font-size: 3.33vw;
    letter-spacing: 0.05em;
  }

  #event_sponsor {
    padding: 10.26vw 0 15.38vw;
  }

  #event_archive {
    padding: 0 0 10.26vw;
  }

  #event_archive .c_title {
    text-align: center;
  }

  #event_archive .body {
    padding: 15.38vw 0 0;
  }

  #event_archive .btn {
    margin-top: 8.21vw;
  }

  #event_archive .btn a {
    min-width: 64.1vw;
    padding: 3.72vw 4.62vw;
  }

  #event_archive .btn a .btn_text {
    font-size: 3.59vw;
  }

  /* モーダル */
  #event_modal .content {
    max-width: 90vw;
  }

  #event_modal img {
    border-radius: 1.28vw;
  }

  #event_modal .close {
    top: -15.38vw;
    right: 0;
    font-size: 6.15vw;
  }

  #event_faq {
    padding: 10.26vw 0 25.64vw;
  }

  #event_faq .items {
    margin-top: 10.26vw;
  }

  #event_faq .item {
    padding: 5.13vw 2.56vw;
  }

  #event_faq .item--row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.56vw;
    padding: 5.13vw 2.56vw 6.15vw;
  }

  #event_faq .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  #event_faq .head {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.59vw;
  }

  #event_faq .en {
    top: 0;
    font-size: 5.13vw;
  }

  #event_faq .title {
    font-size: 4.1vw;
    line-height: 1.4;
  }

  #event_faq .text {
    font-size: 3.59vw;
    line-height: 1.7;
    margin-top: 2.56vw;
  }

  #event_faq .btn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    top: 5px;
  }

  #event_faq .btn a {
    min-width: 61.54vw;
    padding: 2.05vw 4.62vw;
  }

  #event_faq .btn_text {
    font-size: 3.33vw;
  }

  /* SP固定ページ 過去のイベント */
  #past-events {
    padding: 15.38vw 0 20.51vw;
  }

  /* SP固定ページ お問い合わせ */
  .contact_form_disc {
    margin-block: 0 2em;
  }

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

  .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.8vw;
    padding-left: 11vw;
  }

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

  /* 詳細ページ */
  .wp-singular .l-content {
    border-top: 99px solid #2b3452;
  }

  /* サンクスページ */
  .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ページ */
  .error404 #main_content {
    padding: 0 5.13vw 20.51vw;
    margin-top: 99px;
  }

  #page_404 .num {
    font-size: 20vw;
    line-height: 1.5;
  }

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

  /* SP固定ページ サイトマップ */
  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: 20.51vw 0 17.95vw;
  }

  .home .site_footer {
    padding: 41.79vw 0 17.95vw;
    margin-top: -22.31vw;
  }

  .site_footer .body {
    display: block;
  }

  .site_footer .logo {
    max-width: 33.08vw;
  }

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

  .site_footer .company {
    font-size: 3.59vw;
    margin-top: 2.56vw;
  }

  .site_footer .box {
    max-width: 100%;
    margin-top: 6.67vw;
  }

  .site_footer .box_btn a {
    gap: 2.56vw;
    padding-right: 2.56vw;
    padding-bottom: 2.56vw;
  }

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

  .site_footer .box_title {
    font-size: 4.62vw;
  }

  .site_footer .box_icon img {
    width: 6.41vw;
    height: 6.15vw;
  }

  .site_footer .box_text {
    font-size: 3.08vw;
    margin-top: 2.31vw;
  }

  .site_footer .address {
    font-size: 3.33vw;
    line-height: 1.65;
    margin-top: 6.15vw;
  }

  .site_footer .nav {
    display: none;
  }

  .site_footer .copyright {
    font-size: 3.08vw;
    border-top: none;
    padding: 0 5.13vw;
    margin-top: 15.38vw;
    text-align: left;
  }
}