@charset "UTF-8";
/* ------------------------------------------------------------------------------
*
* Layout
*
* ------------------------------------------------------------------------------ */
/*------------------------------
*
* base styles
*
------------------------------*/
/* css custom properties
-------------------------*/
:root {
  /* font-size */
  --font-size-11: 2.9333333333vw;
  --font-size-12: 3.2vw;
  --font-size-13: 3.4666666667vw;
  --font-size-14: 3.7333333333vw;
  --font-size-base: var(--font-size-14);
  --font-size-15: 4vw;
  --font-size-16: 4.2666666667vw;
  --font-size-17: 4.5333333333vw;
  --font-size-18: 4.8vw;
  --font-size-20: 5.3333333333vw;
  --font-size-24: 6.4vw;
  --font-size-22: 5.8666666667vw;
  --font-size-25: 6.6666666667vw;
  --font-size-26: 6.9333333333vw;
  --font-size-27: 7.2vw;
  --font-size-28: 7.4666666667vw;
  --font-size-30: 8vw;
  --font-size-32: 8.5333333333vw;
  --font-size-35: 9.3333333333vw;
  --font-size-36: 9.6vw;
  --font-size-40: 10.6666666667vw;
  --font-size-45: 12vw;
  --font-size-48: 12.8vw;
  --font-size-50: 13.3333333333vw;
  --font-size-55: 14.6666666667vw;
  --font-size-56: 14.9333333333vw;
  --font-size-60: 16vw;
  --font-size-64: 17.0666666667vw;
  /* width base settings */
  --wide-inner-width: 100%;
  --inner-width: 100%;
  /* border-radius */
  --round-5: 0.8vw;
  --round-10: 2.1333333333vw;
  --round-20: 4.2666666667vw;
  --round-30: 6.4vw;
  --round-full: 999px;
  /* logo width */
  --logo-width: 21.3333333333vw;
  /* map height */
  --map-height: 56.25vw;
  /* btn defaults */
  --btn-height: 3em;
  --btn-line-height: 1.5;
  --btn-font-size: var(--font-size-base);
  --btn-font-weight: var(--font-weight-semibold);
  --btn-letter-space: var(--letter-spacing-base);
  --btn-padding-x: 1.5em;
  --btn-padding-y: calc(
    (var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2
  );
  --btn-width-xs: 48vw;
  --btn-width-small: 200px;
  --btn-width-regular: 64vw;
  --btn-width-medium: 80vw;
  --btn-width-large: 85.3333333333vw;
  --btn-font-family: var(--font-main);
  /* header */
  /* prev next settings */
  --prev-next-link-width: 7.5em;
  --prev-next-back-link-width: 5em;
  --prev-next-link-gutter: 3.2vw;
  --prev-next-link-padding: 1em 1em;
  --prev-next-link-round: 3em;
  --prev-next-link-color: var(--color-text-main);
  --prev-next-link-bg-color: var(--color-gray);
  --prev-next-link-hov-color: var(--color-white);
  --prev-next-link-hov-bg-color: var(--color-golden-brown);
  --prev-next-link-font-size: var(--font-size-base);
  /* tag btn settings */
  --tag-btn-color: var(--color-text-main);
  --tag-btn-bg-color: var(--color-gray);
  --tag-btn-current-color: var(--color-white);
  --tag-btn-current-bg-color: var(--color-golden-brown);
  --tag-btn-round: 3em;
  --tag-btn-padding: 1em 1.5em;
  --tag-btn-font-size: var(--font-size-13);
  /* pagenation settings */
  --pagenation-margin-top: 10.6666666667vw;
  --pagenation-item-width: auto;
  --pagenation-item-height: auto;
  --pagenation-item-round: 0px;
  --pagenation-item-font-size: var(--font-size-base);
  --pagenation-item-font-weight: var(--font-weight-semibold);
  --pagenation-item-space: 0.5em;
  --pagenation-item-bg-color: transparent;
  --pagenation-item-color: var(--color-white);
  --pagenation-item-current-color: #ffb93f;
  --pagenation-item-current-bg-color:transparent;
  /* drawer settings */
  --drawer-btn-bg: var(--color-dark-brown);
  --drawer-btn-bar-color: var(--color-white);
  --drawer-main-color: var(--color-dark-brown);
  --drawer-link-font-size:var(--font-size-16);
  --drawer-link-current-color:#ffb93f;
  --drawer-link-border-color: rgb(var(--color-white-rgb) / 0.4);
}

body {
  font-size: var(--font-size-14);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark-brown);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 101;
}
.header__inner {
  padding: 0 3.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
}
.header__logo {
  width: var(--logo-width);
  position: absolute;
  top: 3vw;
  left: 3%;
  z-index: 1;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url("/img/pattern/footer_pattern.jpg") repeat center/auto;
  color: var(--color-white);
}
.footer__inner {
  padding-block: 17.0666666667vw 6.4vw;
  -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;
}
.footer__logo {
  --logo-width: 26.6666666667vw;
  margin: 0 auto 10.6666666667vw;
}
.footer-nav {
  width: 100%;
  margin-top: 6.4vw;
}
.footer-nav__list {
  gap: 0 4%;
  margin: 0 auto;
  max-width: 96vw;
}
.footer-nav__list:nth-child(2) {
  margin-top: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-nav__list:nth-child(2) .footer-nav__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-nav__list:nth-child(2) .footer-nav__link {
  font-size: var(--font-size-13);
  padding: 0 0 0.25em 0;
}
.footer-nav__item {
  width: 48%;
}
.footer-nav__link {
  line-height: 1;
  font-size: var(--font-size-14);
  padding: 1.25em 0;
  border-bottom: 1px solid rgb(var(--color-white-rgb)/0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  display: block;
}
.footer__info {
  gap: 8vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__official-btn {
  width: 80vw;
}
.footer__official-btn .ja {
  font-size: var(--font-size-13);
}
.footer__official-btn > a {
  place-content: center;
  text-align: center;
  line-height: 1;
  height: 14.6666666667vw;
  padding-block: 0 !important;
}
.footer__copy {
  margin-top: 10.6666666667vw;
  font-size: var(--font-size-11);
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-semibold);
  width: 100%;
  display: block;
  text-align: center;
  color: var(--color-white);
}

/* ===========================================
*  
*  main layouts
* 
* ======================================== */
.wrapper {
  position: relative;
  z-index: 1;
}

.global-container {
  overflow: hidden;
}

/* ------------------------------------------------------------------------------
*
* Object
*
* ------------------------------------------------------------------------------ */
/* ----------------------------------------------------
*  Component（共通化されたコンポーネントスタイル）
*  ---------------------------------------------------- */
/* logo
-------------------------*/
.logo {
  width: var(--logo-width);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.logo img {
  width: 100%;
  display: block;
}
.logo:hover {
  opacity: 0.7;
}

/* 
inner クラス
-------------------------*/
.inner,
.wide-inner {
  padding-inline: 4%;
  width: 100%;
  margin: 0 auto;
}

/*------------------------------
*
* title
*
------------------------------*/
/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ttl-img--center img {
  -o-object-position: center;
     object-position: center;
}

.ttl-img--left img {
  -o-object-position: left center;
     object-position: left center;
}

.ttl-img--right img {
  -o-object-position: right center;
     object-position: right center;
}

/* 
title style
-------------------------*/
.cmn-ttl {
  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;
  text-align: center;
  gap: 0.75em;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  color: var(--color-white);
  --txt-shadow-color: #19124c;
  margin-bottom: 10.6666666667vw;
}
.cmn-ttl::after {
  content: "";
  display: block;
  width: 2.35em;
  height: 0.275em;
  background: url("/img/common/ttl_deco_bottom.png") no-repeat top center/contain;
}
.cmn-ttl__main {
  margin-block: -0.25em;
  display: inline-block;
}

/* cmn-deco-left-ttl
-------------------------*/
.cmn-deco-left-ttl {
  font-size: var(--font-size-20);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  padding-left: 2.7857142857em;
  position: relative;
  z-index: 1;
}
.cmn-deco-left-ttl::before {
  content: "";
  width: 2.1071428571em;
  height: 1.0714285714em;
  background: url("/img/common/ttl_left_deco.png") no-repeat left center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}

/* cmn-border-bottom-ttl
-------------------------*/
.cmn-border-bottom-ttl {
  font-size: var(--font-size-20);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ffb93f;
}
.cmn-border-bottom-ttl::first-letter {
  color: #ffb93f;
}

/*------------------------------
*
* tel style
*
------------------------------*/
.tel-area {
  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;
  gap: 8px;
}

.tel {
  /* tel　style */
  --tel-font-size:var(--font-size-24);
  --tel-icon-space: 1.2em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.8em;
  --tel-icon-height: 0.8em;
  font-family: var(--font-main, sans-serif);
  font-weight: var(--font-weight-semibold, 700);
  font-size: var(--tel-font-size, 28px);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.tel-icon {
  /* icon付き */
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tel-icon--white {
  color: var(--color-white);
}
.tel-icon--white::before {
  background: url(../img/common/icon_tel_white.png) no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: max(20px, 5.3333333333vw);
  --sns-icon-size: max(30px, 8vw);
  gap: var(--sns-icon-space);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns__icon {
  width: var(--sns-icon-size);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

/*------------------------------
*
* table style
*
------------------------------*/
.main-table {
  --table-letter-spacing: var(--letter-spacing-medium);
  --table-th-text-align: left;
  --table-th-x-padding: 1em;
  --table-th-y-padding: 1em;
  --table-th-bg-color: url("/img/pattern/table_stripe.png") repeat center / auto;
  --table-th-color: var(--color-white);
  --table-th-width: 100%;
  --table-td-x-padding: 1em;
  --table-td-y-padding: 1em;
  --table-td-bg-color: var(--color-white);
  --table-td-color: var(--color-text-main);
  --table-td-width: 100%;
  --table-border-color: var(--color-text-main);
  --table-th-border-color: var(--color-white);
  --table-td-border-color: var(--color-text-main);
  --table-width: 100%;
  width: var(--table-width);
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
  display: block;
  border-block: 1px solid var(--table-border-color);
  font-size: var(--font-size-14);
}
.main-table tr:not(:last-child) {
  margin-bottom: 3.2vw;
}
.main-table th,
.main-table td {
  display: block;
  font-weight: var(--font-weight-semibold);
}
.main-table th {
  width: var(--table-th-width);
  background: var(--table-th-bg-color);
  color: var(--table-th-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-text-align);
  padding-inline: var(--table-th-x-padding);
  padding-block: var(--table-th-y-padding);
}
.main-table td {
  width: var(--table-td-width);
  background-color: var(--table-td-bg-color);
  color: var(--table-td-color);
  padding-inline: var(--table-td-x-padding);
  padding-block: var(--table-td-y-padding);
}

/*------------------------------
*
* check list style
*
------------------------------*/
.check-list__item p {
  line-height: 1.875em;
  padding-left: 2em;
  padding-block: 0.9375em;
  position: relative;
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-regular);
  z-index: 1;
  border-bottom: 1px dashed #2d5ea5;
}
.check-list__item p::before {
  content: "";
  width: 0.75em;
  height: 0.8125em;
  background: url(../img/common/icon_check.svg) no-repeat top center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0% -50%;
}

/*------------------------------
*
* text
*
------------------------------*/
/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* どこでも変更できるよう変数化 */
  --sentence-line-height: 1.875;
  --sentence-p-margin: 1.875em;
  letter-spacing: var(--letter-spacing-medium);
  font-weight: var(--font-weight-semibold);
  line-height: var(--sentence-line-height);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}
.cmn-sentence p::before, .cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/* 
画像
-------------------------*/
.cmn-img img {
  width: 100%;
}

/* 
* カラムスタイル
* flexを使用したカラム指定を行うクラスです
* flx-baseとセットで使用します
* col-container-PCColumnNum-SPColumnNum
-------------------------*/
.col-container-2-1,
.col-container-3-1 {
  /* PC2列　SP1列 */
  /* PC3列　SP1列 */
  /* 上下の余白 */
  --col-y-space: 36px;
  /* 左右の余白 */
  --col-x-space: 4%;
  gap: var(--col-y-space, 40px) var(--col-x-space, 40px);
}
.col-container-2-1 > .col-item,
.col-container-3-1 > .col-item {
  width: 100%;
}

.col-container-2-2,
.col-container-3-2,
.col-container-4-2 {
  /* PC2列　SP2列 */
  /* PC3列　SP2列 */
  /* PC4列　SP2列 */
  /* 上下の余白 */
  --col-y-space: 36px;
  /* 左右の余白 */
  --col-x-space: 4%;
  gap: var(--col-y-space, 30px) var(--col-x-space, 20px);
}
.col-container-2-2 > .col-item,
.col-container-3-2 > .col-item,
.col-container-4-2 > .col-item {
  width: calc(50% - var(--col-x-space) / 2);
}

/*------------------------------
*
* btn style
*
------------------------------*/
.cmn-btn--primary {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  position: relative;
  z-index: 1;
  background-color: #452a00;
  color: var(--color-white);
  border-right: 3px double var(--color-golden-brown);
  overflow: hidden;
}
.cmn-btn--primary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: 0 -50%;
  background-color: var(--color-dark-brown);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--primary:hover::before {
  translate: 0 50%;
}
.cmn-btn--secondary {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  letter-spacing: var(--btn-letter-space);
  font-family: var(--btn-font-family);
  padding-inline: var(--btn-padding-x);
  padding-block: calc((var(--btn-height) - var(--btn-font-size) * var(--btn-line-height)) / 2);
  position: relative;
  z-index: 1;
  background-color: var(--color-amber);
  color: var(--color-white);
  border-right: 3px double #ffb93f;
  overflow: hidden;
}
.cmn-btn--secondary::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  translate: 0 -50%;
  background-color: var(--color-golden-brown);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.cmn-btn--secondary:hover::before {
  translate: 0 50%;
}
.cmn-btn--arrow-brown {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-brown::after {
  content: "";
  width: 1.125em;
  height: 0.5em;
  background: url("/img/common/arrow_right_brown.svg") no-repeat top center/contain;
  position: absolute;
  right: 0.9375em;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--arrow-brown:hover::after {
  translate: 25% -50%;
}
.cmn-btn--arrow-white {
  position: relative;
  z-index: 1;
}
.cmn-btn--arrow-white::after {
  content: "";
  width: 1.125em;
  height: 0.5em;
  background: url("/img/common/arrow_right_white.svg") no-repeat top center/contain;
  position: absolute;
  right: 0.9375em;
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmn-btn--arrow-white:hover::after {
  translate: 25% -50%;
}
.cmn-btn--xs {
  max-width: var(--btn-width-xs);
}
.cmn-btn--sm {
  width: var(--btn-width-small);
}
.cmn-btn--rg {
  width: var(--btn-width-regular);
}
.cmn-btn--md {
  width: var(--btn-width-medium);
}
.cmn-btn--lg {
  width: var(--btn-width-large);
}
.cmn-btn--xl {
  width: var(--btn-width-xl);
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* main style page visual
*
------------------------------*/
.sv {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 85.3333333333vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  padding-top: 21.3333333333vw;
  background: url("/img/pattern/beige_pattern.jpg") repeat center/auto;
}
.sv::after, .sv::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.sv::after {
  background: url("/img/sv/sv_deco_right.png") no-repeat top center/contain;
  right: 2%;
  top: 48.275862069%;
  width: 13.3333333333vw;
  aspect-ratio: 100/133;
}
.sv::before {
  background: url("/img/sv/sv_deco_left.png") no-repeat top center/contain;
  top: 37.2413793103%;
  left: 2%;
  width: 30vw;
  aspect-ratio: 225/264;
}
.sv__catch {
  position: absolute;
  top: 62.0689655172%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: 20;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  padding: 0.65em 1em;
  border: 1px solid var(--color-amber);
  background-color: rgba(255, 249, 235, 0.8);
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
  white-space: nowrap;
}
.sv__catch:first-letter {
  color: var(--color-amber);
}
.sv__catch::after {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid var(--color-amber);
  background: url("/img/sv/sv_txt_frame_top_left.png") no-repeat top left/0.75em auto, url("/img/sv/sv_txt_frame_top_right.png") no-repeat top right/0.75em auto, url("/img/sv/sv_txt_frame_bottom_left.png") no-repeat bottom left/0.75em auto, url("/img/sv/sv_txt_frame_bottom_right.png") no-repeat bottom right/0.75em auto;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  margin-top: var(--pagenation-margin-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  border-radius: var(--pagenation-item-round);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg-color);
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenation li > a {
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  display: grid;
  place-content: center;
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg-color);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* cmn-post
*
------------------------------*/
.cmn-post {
  --post-width: 100%;
  --post-item-margin: 3.2vw;
  --post-link-padding: 4.2666666667vw 4.2666666667vw;
  --post-title-font-size: var(--font-size-base);
  --post-date-font-size: var(--font-size-13);
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  background-color: #e3cdaa;
  border: 1px solid var(--color-dark-brown);
  position: relative;
  z-index: 1;
  color: var(--color-text-main);
}
.cmn-post-item::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  z-index: 1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background-color: var(--color-white);
  border: 1px solid var(--color-dark-brown);
  z-index: -1;
}
.cmn-post-item:not(:last-child) {
  margin-bottom: var(--post-item-margin, 15px);
}
.cmn-post__box {
  width: calc(100% - 25.6vw);
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 21.3333333333vw;
  aspect-ratio: 1/1;
}
.cmn-post__flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75em;
}
.cmn-post__tags {
  margin-bottom: 0.5em;
}
.cmn-post__link {
  padding: var(--post-link-padding);
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-medium);
}
.cmn-post__ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  line-height: 1.2;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  font-size: var(--post-title-font-size);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-medium);
}

/*------------------------------
*
* tag
*
------------------------------*/
.tag {
  --tag-font-size: var(--font-size-13);
  --tag-height: 1;
  --tag-x-padding: 0px;
  --tag-round: 0px;
  --tag-color: var(--color-golden-brown);
  --tag-bg-color: transparent;
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  background-color: var(--tag-bg-color);
  border-radius: var(--tag-round);
  font-weight: var(--font-weight-medium);
  line-height: var(--tag-height);
  padding: 0 var(--tag-x-padding);
}

.tag-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tag-link.tag {
  padding: 0;
}
.tag-link > a {
  padding: 0.25em 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
}
.tag-link > a:hover {
  background-color: var(--color-dark-brown);
  color: var(--color-white);
}
.tag-link:hover {
  background-color: var(--color-golden-brown);
  color: var(--color-white);
}

.tag-list {
  --tag-space: 1.3333333333vw 1.3333333333vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--tag-space);
}

/*------------------------------
*
* tag btn
*
------------------------------*/
.tag-btns {
  margin-bottom: 6.4vw;
  gap: 2.1333333333vw;
}

.tag-btn {
  padding: var(--tag-btn-padding);
  background-color: var(--tag-btn-bg-color);
  color: var(--tag-btn-color);
  border-radius: var(--tag-btn-round);
  font-size: var(--tag-btn-font-size);
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  line-height: 1;
}
.tag-btn:hover {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
  opacity: 1;
}
.tag-btn.current {
  color: var(--tag-btn-current-color);
  background-color: var(--tag-btn-current-bg-color);
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.2;
}
.prev-next__item.prev, .prev-next__item.next {
  width: var(--prev-next-link-width);
}
.prev-next__item:not(:last-child) {
  margin-right: var(--prev-next-link-gutter);
}
.prev-next__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: var(--prev-next-link-color);
  background-color: var(--prev-next-link-bg-color);
  padding: var(--prev-next-link-padding);
  font-size: var(--prev-next-link-font-size);
}
.prev-next__link:hover {
  background-color: var(--prev-next-link-hov-bg-color);
  color: var(--prev-next-link-hov-color);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--prev-next-link-round);
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  border-radius: var(--prev-next-link-round);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--prev-next-back-link-width);
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------------
*
* breadcrumb style
*
------------------------------*/
.bread-crumb {
  display: none;
}

.cmn-box {
  background: url("/img/flow/flow_item_deco.png") no-repeat bottom 10px right 10px/auto, rgba(0, 24, 101, 0.3);
  padding: 8.5333333333vw 5%;
  border: 1px solid #ffb93f;
}

.pagetop {
  position: fixed;
  bottom: 5.3333333333vw;
  right: 2.6666666667vw;
  width: 32vw;
  z-index: 501;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: hover-float 2.4s ease-in-out infinite;
          animation: hover-float 2.4s ease-in-out infinite;
}
.pagetop:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

/*
animation-pagetop
-------------------------*/
/* 箒に乗った少女の要素 */
.animation-pagetop {
  position: fixed;
  width: 32vw;
  /* 初期位置: 左下 */
  bottom: 5.3333333333vw;
  left: 2.6666666667vw;
  z-index: 501;
  cursor: pointer;
  -webkit-transition: none;
  transition: none;
}

/* 上下に揺れる動き（ホバリング） */
@-webkit-keyframes hover-float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}
@keyframes hover-float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}
/* 左下から右上への移動アニメーション */
@-webkit-keyframes fly-to-corner {
  0% {
    left: 2.6666666667vw;
    opacity: 1;
  }
  100% {
    left: 65.3333333333vw;
    opacity: 1;
  }
}
@keyframes fly-to-corner {
  0% {
    left: 2.6666666667vw;
    opacity: 1;
  }
  100% {
    left: 65.3333333333vw;
    opacity: 1;
  }
}
/* アニメーション中 */
.animation-pagetop.animate-flight {
  -webkit-animation: fly-to-corner 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards, hover-float 2.4s ease-in-out infinite;
          animation: fly-to-corner 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards, hover-float 2.4s ease-in-out infinite;
}

/* ホバー時の効果 */
.animation-pagetop:hover {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.para-box {
  width: 100%;
  position: relative;
  z-index: 0;
}

.para-box__inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0px);
          clip-path: inset(0px);
  z-index: -1;
}

.para-box__inner .bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* ----------------------------------------------------
*  Utility（スタイルの調整用クラス　common.cssにあるものは省略）
*  ---------------------------------------------------- */
/* margin style
  -------------------------*/
.mx--center {
  margin-inline: auto;
}

.mt-tiny {
  margin-top: 8px;
}

.mt-sm {
  margin-top: 16px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 40px;
}

.mt-2xl {
  margin-top: 48px;
}

.mt-3xl {
  margin-top: 56px;
}

.mt-4xl {
  margin-top: 64px;
}

.mt-huge {
  margin-top: 80px;
}

.mb-tiny {
  margin-bottom: 8px;
}

.mb-sm {
  margin-bottom: 16px;
}

.mb-md {
  margin-bottom: 24px;
}

.mb-lg {
  margin-bottom: 32px;
}

.mb-xl {
  margin-bottom: 40px;
}

.mb-2xl {
  margin-bottom: 48px;
}

.mb-3xl {
  margin-bottom: 56px;
}

.mb-4xl {
  margin-bottom: 64px;
}

.mb-huge {
  margin-bottom: 80px;
}

/* padding style
-------------------------*/
.cmn-pd {
  padding: 75px 0;
}

.pt-tiny {
  margin-top: 8px;
}

.pt-sm {
  margin-top: 16px;
}

.pt-md {
  margin-top: 24px;
}

.pt-lg {
  margin-top: 32px;
}

.pt-xl {
  margin-top: 40px;
}

.pt-2xl {
  margin-top: 48px;
}

.pt-3xl {
  margin-top: 56px;
}

.pt-4xl {
  margin-top: 64px;
}

.pt-huge {
  margin-top: 80px;
}

.pb-tiny {
  margin-bottom: 8px;
}

.pb-sm {
  margin-bottom: 16px;
}

.pb-md {
  margin-bottom: 24px;
}

.pb-lg {
  margin-bottom: 32px;
}

.pb-xl {
  margin-bottom: 40px;
}

.pb-2xl {
  margin-bottom: 48px;
}

.pb-3xl {
  margin-bottom: 56px;
}

.pb-4xl {
  margin-bottom: 64px;
}

.pb-huge {
  margin-bottom: 80px;
}

/* 
sp時に非表示
-------------------------*/
.sp-none {
  display: none !important;
}

/* ----------------------------------------------------
*  Project （ページごとのスタイルなど）
*  ---------------------------------------------------- */
/* ===========================================
*
* top page style
*
* ======================================== */
.txt-shadow {
  --txt-shadow-color: #002651;
  text-shadow: 0 0 10px var(--txt-shadow-color), 0 0 10px var(--txt-shadow-color), 0 0 10px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color);
}

.top-story {
  background: url("/img/top/top_bg.png") no-repeat top center/auto 100%, url("/img/pattern/beige_pattern.jpg") repeat center/auto;
  height: 561.25vw;
  width: 100%;
}
.top-story__first {
  height: 70.546875vw;
  place-content: center;
  padding-inline: 3%;
}
.top-story__ttl {
  width: 91.5254237288vw;
  translate: -50% 50%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 24.8125vw;
}
.top-story__text-area {
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  font-size: 3.3333333333vw;
  line-height: 1.8;
}
.top-story__box {
  padding-inline: 0%;
}
.top-story__box--01 {
  margin-top: 64.0625vw;
}
.top-story__box--01 > .top-story__text-area {
  width: 22.2666666667em;
  height: 8.7em;
  padding-bottom: 0.2em;
  padding-left: 1.6em;
  place-content: center;
  background: url("/img/top/top-story_box01.png") no-repeat top center/contain;
  margin-left: 3%;
  color: var(--color-white);
}
.top-story__box--02 {
  margin-top: 56.25vw;
}
.top-story__box--02 > .top-story__text-area {
  width: 34.4em;
  height: 11.6333333333em;
  padding-left: 3.3333333333em;
  padding-right: 3.3333333333em;
  padding-bottom: 0.3em;
  place-content: center;
  margin-inline: auto;
  text-align: center;
  translate: -10.9375vw 0;
  background: url("/img/top/top-story_box02.png") no-repeat top center/contain;
  --txt-shadow-color: #26292a;
  color: var(--color-white);
}
.top-story__box--03 {
  margin-top: -6.25vw;
}
.top-story__box--03 > .top-story__text-area {
  width: 19.1666666667em;
  height: 9.1em;
  padding-left: 2.2333333333em;
  padding-bottom: 0.1em;
  place-content: center;
  background: url("/img/top/top-story_box03.png") no-repeat top center/contain;
  --txt-shadow-color: #001a1f;
  margin-left: auto;
  margin-right: 3%;
  color: var(--color-white);
}
.top-story__box--03 > .top-story__text-area > p {
  padding-left: 0.5em;
  text-indent: -0.5em;
}
.top-story__box--04 {
  margin-top: 12.5vw;
}
.top-story__box--04 > .top-story__text-area {
  width: 24.3em;
  height: 6.8em;
  padding-left: 3.4em;
  padding-bottom: 0.3em;
  text-align: center;
  place-content: center;
  background: url("/img/top/top-story_box04.png") no-repeat top center/contain;
  --txt-shadow-color: #001553;
  color: var(--color-white);
  translate: -6.25vw 0;
}
.top-story__box--05 {
  margin-top: 12.5vw;
}
.top-story__box--05 > .top-story__text-area {
  width: 17.4em;
  height: 7.6333333333em;
  padding-left: 2.1666666667em;
  padding-top: 0.2em;
  place-content: center;
  margin-left: auto;
  margin-right: 8%;
  background: url("/img/top/top-story_box05.png") no-repeat top center/contain;
  --txt-shadow-color: #002758;
  color: var(--color-white);
}
.top-story__box--06 {
  margin-top: 1.5625vw;
}
.top-story__box--06 > .top-story__text-area {
  width: 14.1em;
  height: 8.2em;
  padding-left: 2.0333333333em;
  padding-bottom: 0.4666666667em;
  place-content: center;
  text-align: center;
  margin-left: auto;
  background: url("/img/top/top-story_box06.png") no-repeat top center/contain;
  --txt-shadow-color: #004349;
  color: var(--color-white);
}
.top-story__box--07 {
  margin-top: -7.8125vw;
}
.top-story__box--07 > .top-story__text-area {
  width: 16.8333333333em;
  height: 12.4666666667em;
  padding-left: 2em;
  place-content: center;
  margin-left: -2%;
  text-align: left;
  --txt-shadow-color: #004349;
  color: var(--color-white);
}
.top-story__box--08 {
  margin-top: 9.375vw;
}
.top-story__box--08 > .top-story__text-area {
  --sentence-line-height: 2.4em;
  --sentence-p-margin: 2.4em;
  --txt-shadow-color: #004349;
  color: var(--color-white);
}

.top-recruit-wrapper {
  background: url("/img/pattern/beige_pattern.jpg") repeat center/auto;
  padding: 20vw 0;
  overflow: hidden;
}

/*------------------------------
  *
  * page-link
  *
  ------------------------------*/
.page-link .inner {
  padding-inline: 0%;
}
.page-link__ttl {
  margin-bottom: 12.8vw;
  width: 100%;
}
.page-link__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --col-x-space: 4.2666666667vw;
  --col-y-space: 4.2666666667vw;
}

/*------------------------------
  *
  * top-news
  *
  ------------------------------*/
.top-news {
  margin-top: 20vw;
}
.top-news__ttl {
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1;
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-regular);
  padding-bottom: 0.6em;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 0.6em;
}
.top-news__ttl::before {
  content: "";
  width: 95vw;
  min-width: 332.5px;
  height: 1px;
  background-color: var(--color-golden-brown);
  position: absolute;
  bottom: 0;
  right: 0;
}
.top-news__ttl::first-letter {
  color: var(--color-golden-brown);
}
.top-news__box {
  width: 100%;
}
.top-news__btn {
  width: 40vw;
  margin: 8vw auto 0;
}
.top-news .cmn-post {
  width: 100%;
}

/* ===========================================
*
* under pages default style
*
* ======================================== */
.privacy-page .privacy {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/about/repeat_bg.png") repeat top center/200% auto;
  color: var(--color-white);
}

.news-page .news {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/company/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
}

.notfound-page .notfound {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/recruit/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
}

.site-page .sitemap {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/flow/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
}

.contact {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/staff/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
}

.complete-page .complete {
  padding: 17.0666666667vw 0 vw(80, 375);
  background: url("/img/staff/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
}

/* ===========================================
*
* staff-page
*
* ======================================== */
/*------------------------------
*
* staff
*
------------------------------*/
.staff-bg {
  background: url("/img/staff/staff_bg.jpg") no-repeat top center/cover;
}

.staff {
  padding: 17.0666666667vw 0 vw(80, 375);
}
.staff .inner {
  padding-inline: 0;
}
.staff__ttl {
  --txt-shadow-color: #19124c;
  text-align: center;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 1.714;
  padding: 5.4285714286em 0 4.3142857143em;
  background: url("/img/staff/staff_ttl_frame_top.png") no-repeat top center/contain, url("/img/staff/staff_ttl_frame_bottom.png") no-repeat bottom center/contain;
  margin-bottom: 0vw;
}
.staff__illust {
  padding-inline: 5%;
  width: 100%;
  margin-bottom: 8.5333333333vw;
}
.staff__container {
  --col-x-space: 4.2666666667vw;
  --col-y-space: 6.4vw;
  padding-inline: 5%;
}
.staff-item {
  color: var(--color-white);
}
.staff-item__img {
  aspect-ratio: 32/30;
  border-radius: 50% 50% 0 0;
  border: 1px solid var(--color-white);
  margin-bottom: 3.2vw;
}
.staff-item__img > img {
  border-radius: 50% 50% 0 0;
}
.staff-item__ttl {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-);
  border-bottom: 1px solid var(--color-amber);
  margin-bottom: 3.2vw;
  text-align: center;
}
.staff-item__ttl > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.staff-item__comment {
  line-height: 1.875;
  font-size: var(--font-size-13);
}

/*------------------------------
*
* staff-single
*
------------------------------*/
.staff-single-wrapper {
  background: url("/img/staff/repeat_bg.jpg") repeat top center/200% auto;
  padding: 17.0666666667vw 0 21.3333333333vw;
}

.staff-single {
  color: var(--color-white);
}
.staff-single__container {
  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;
}
.staff-single__content {
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.staff-single__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 64%;
  margin-bottom: 8.5333333333vw;
}
.staff-single__ttl {
  margin-bottom: 6.4vw;
}
.staff-single__comment {
  margin-top: 5.3333333333vw;
}
.staff-single__footer {
  margin-top: 12.8vw;
}

/* ===========================================
*
* about-page
*
* ======================================== */
.about-wrapper {
  padding: 17.0666666667vw 0 21.3333333333vw;
}

.about-bg {
  background: url("/img/about/about_bg.jpg") no-repeat top center/cover;
}

/*------------------------------
*
* environment
*
------------------------------*/
.environment {
  color: var(--color-white);
}
.environment__img {
  width: 100%;
  padding: 2.6666666667vw;
  border: 1px solid #ffb93f;
}
.environment__img-inner {
  width: 100%;
  aspect-ratio: 90/48;
}
.environment__container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 17.0666666667vw;
}
.environment__left {
  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;
}
.environment__sub-ttl {
  text-align: center;
  font-size: var(--font-size-20);
  letter-spacing: var(--letter-spacing-regular);
  font-weight: var(--font-weight-semibold);
  line-height: 1.7857142857em;
  margin-bottom: 6.4vw;
}
.environment__sub-ttl .lg {
  font-size: 1.1428571429em;
  --txt-shadow-color: var(--color-white);
  color: #935d08;
  text-shadow: 0 0 10px var(--txt-shadow-color), 0 0 10px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color), 0 0 8px var(--txt-shadow-color);
}
.environment__left-illust {
  width: 70%;
  margin-bottom: 8.5333333333vw;
}
.environment__right {
  width: 100%;
}
.gallery {
  margin-top: 21.3333333333vw;
}
.gallery__container {
  --col-x-space: 4.2666666667vw;
  --col-y-space: 4.2666666667vw;
}
.gallery-item__img {
  width: 100%;
  aspect-ratio: 240/180;
  border: 1px solid var(--color-white);
  margin-bottom: 3.2vw;
}
.gallery-item__ttl {
  font-size: var(--font-size-16);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature {
  margin-top: 21.3333333333vw;
}
.feature__container {
  --col-x-space: 4.2666666667vw;
  --col-y-space: 10.6666666667vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.feature-item {
  color: var(--color-white);
}
.feature-item__img {
  width: 75%;
  margin-bottom: 3.2vw;
  margin-inline: auto;
}
.feature-item__img > img {
  width: 100%;
}
.feature-item__ttl {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ffb93f;
  margin-bottom: 4.2666666667vw;
}
.feature-item__sentence {
  text-align: center;
}

.benefits {
  margin-top: 17.0666666667vw;
}
/* ===========================================
*
* flow-page
*
* ======================================== */
/*------------------------------
*
* flow
*
------------------------------*/
.flow-bg {
  background: url("/img/flow/flow_bg.jpg") no-repeat top center/cover;
}

.flow {
  padding: 17.0666666667vw 0 21.3333333333vw;
  color: var(--color-white);
}
.flow__item {
  gap: 6.4vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow__item:not(:last-child) {
  margin-bottom: 8.5333333333vw;
  position: relative;
  z-index: 1;
}
.flow__item:not(:last-child)::after {
  content: "";
  width: 4.2666666667vw;
  aspect-ratio: 6/5;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 100%;
  background-color: #ffb93f;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.flow__item-head {
  gap: 3.2vw;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  margin-bottom: 4.2666666667vw;
  border-bottom: 1px solid #ffb93f;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.flow__item-ttl {
  font-size: 1em;
  color: var(--color-white);
}
.flow__item-step {
  color: #ffb93f;
  font-size: var(--font-size-16);
}
.flow__item-step__number {
  font-size: var(--font-size-24);
}
.flow__item-content {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
}
.flow__item-sentence {
  color: var(--color-white);
}
.flow__item-img {
  width: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flow__item-info {
  gap: 4.2666666667vw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 6.4vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===========================================
*
* recruit-page
*
* ======================================== */
.recruit-bg {
  background: url("/img/recruit/recruit_bg.jpg") no-repeat top center/cover;
}

.recruit-wrapper {
  padding: 17.0666666667vw 0 21.3333333333vw;
  color: var(--color-white);
}

/*------------------------------
*
* dream
*
------------------------------*/
.dream__ttl {
  --txt-shadow-color: #19124c;
  text-align: center;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 1.714;
  padding: 1.0214285714em 2.7142857143em;
  background: url("/img/recruit/dream_ttl_left_deco.png") no-repeat left center/auto 100%, url("/img/recruit/dream_ttl_right_deco.png") no-repeat right center/auto 100%;
  margin-bottom: 10.6666666667vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.dream__sentence {
  position: relative;
  z-index: 1;
}
.dream__sentence::after, .dream__sentence::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.dream__sentence::before {
  width: 32vw;
  aspect-ratio: 239/222;
  background: url("/img/recruit/illust01.png") no-repeat top center/contain;
  top: 0;
  right: 2%;
  translate: 0 -175%;
}
.dream__sentence::after {
  left: -12px;
  bottom: 8px;
  background: url("/img/recruit/illust02.png") no-repeat top center/contain;
  width: 25.3333333333vw;
  aspect-ratio: 190/161;
  translate: 0 125%;
}
.dream__container {
  margin-top: 37.3333333333vw;
}
.dream-item {
  gap: 7.4666666667vw;
  -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;
}
.dream-item:not(:last-child) {
  margin-bottom: 12.8vw;
}
.dream-item__img {
  width: 72%;
}
.dream-item__content {
  width: 100%;
}
.dream-item__ttl {
  margin-bottom: 5.3333333333vw;
}

/*------------------------------
*
* overview
*
------------------------------*/
.overview {
  margin-top: 48vw;
  position: relative;
  z-index: 1;
}
.overview::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 53.3333333333vw;
  aspect-ratio: 30/18;
  top: 0;
  left: 50%;
  translate: -50% -115%;
  background: url("/img/recruit/illust03.png") no-repeat top center/contain;
}
.overview__ttl {
  --txt-shadow-color: #19124c;
}
.overview-item:not(:last-child) {
  margin-bottom: 17.0666666667vw;
}
.overview-item__ttl {
  margin-bottom: 6.4vw;
}

/* ===========================================
*
* company page
*
* ======================================== */
.company-bg {
  background: url("/img/company/company_bg.jpg") no-repeat top center/cover;
}

.company-wrapper {
  padding: 17.0666666667vw 0 21.3333333333vw;
}

/*------------------------------
*
* solve
*
------------------------------*/
.solve__ttl {
  --txt-shadow-color: #19124c;
  text-align: center;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 1.714;
  padding: 0.0572857143em 2em;
  background: url("/img/recruit/dream_ttl_left_deco.png") no-repeat left center/2.2em auto, url("/img/recruit/dream_ttl_right_deco.png") no-repeat right center/2.2em auto;
  margin-bottom: 10.6666666667vw;
  width: 100%;
}
.solve__sentence {
  position: relative;
  color: var(--color-white);
  z-index: 1;
}
.solve__sentence::before {
  content: "";
  width: 18.4vw;
  aspect-ratio: 139/221;
  background: url("/img/company/solve_illust.png") no-repeat top center/contain;
  left: 0.6875em;
  bottom: 0;
  translate: 2% 110%;
  position: absolute;
}

/*------------------------------
*
* info
*
------------------------------*/
.info {
  margin-top: 42.6666666667vw;
  background-attachment: fixed;
}
.info__access {
  margin-top: 14.9333333333vw;
}
.info__access__ttl {
  margin-bottom: 5.3333333333vw;
}
.info__access__map {
  height: var(--map-height);
  border: 1px solid var(--color-white) !important;
}
.info__table {
  position: relative;
  z-index: 1;
}
.info__table::before {
  content: "";
  width: 25.6vw;
  aspect-ratio: 192/189;
  position: absolute;
  right: 2%;
  top: 0;
  translate: 0 -100%;
  background: url("/img/company/illust.png") no-repeat top center/contain;
}

/* ===========================================
*
* single page
*
* ======================================== */
.single-wrapper {
  background: url("/img/company/repeat_bg.jpg") repeat top center/200% auto;
  color: var(--color-white);
  padding: 17.0666666667vw 0 21.3333333333vw;
}

.single {
  position: relative;
  z-index: 5;
}
.single__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;
  margin-bottom: 8.5333333333vw;
  border-bottom: 1px solid #ffb93f;
  padding-bottom: 4.2666666667vw;
}
.single__date {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: var(--font-size-13);
  margin-bottom: 3.2vw;
  line-height: 1;
  text-align: right;
  margin-left: auto;
}
.single__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4.2666666667vw;
  gap: 0;
}
.single__ttl {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
}
.single__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 6.4vw;
}
.single__footer {
  margin-top: 10.6666666667vw;
  width: 100%;
}

/* ===========================================
*
* site page
*
* ======================================== */
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgb(var(--color-white-rgb)/0.4);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid rgb(var(--color-white-rgb)/0.4);
  border-right: 2px solid rgb(var(--color-white-rgb)/0.4);
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  color: var(--color-main);
  border-color: var(--color-main);
}
.sitemap-list__link:hover::after {
  right: 1em;
  border-color: var(--color-main);
}

/* ===========================================
*
* privacy page
*
* ======================================== */
.privacy-ttl {
  margin-bottom: 20px;
}

.privacy-purpose__list {
  margin-top: 1em;
}
.privacy-purpose__list > li {
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.privacy-box {
  margin-bottom: 40px;
}
.privacy-box p {
  line-height: 2;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

.header-nav__link.blank-link {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.header-nav__link.blank-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  translate: 0% -50%;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_wind.png) no-repeat center/contain;
}