@charset "UTF-8";
/*
Theme Name: OCT エンジニアリング
Description: Modern WordPress theme built with Vite
Version: 1.0
Author: OCT
*/
* {
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Google Fonts */
/***************************************


  ブレイクポイント mixin


  ****************************************/
/***************************************

テキストにラインが左から右へ走る（初期値下線あり）inline使用（aタグ内に書く）

****************************************/
/***************************************

テキストにラインが左から右へ走る（初期値下線なし）inline使用（aタグ内に書く）

****************************************/
.marquee {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
.marquee .marquee-text {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 140px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px #7dcaae;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 810px) {
  .marquee .marquee-text {
    font-size: 100px;
  }
}
.marquee .marquee-text:nth-child(odd) {
  animation: MoveLeft 128s -64s infinite linear;
}
.marquee .marquee-text:nth-child(even) {
  animation: MoveLeft2 128s infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.btn {
  padding: 22px 18px;
  background: linear-gradient(135deg, #08C8A6 0%, #00816B 100%);
  border: 1px solid #0DA382;
  border-radius: 5px;
  position: relative;
  width: auto;
  display: inline-block;
  transition: 0.5s all;
  /*== 背景が流れる（左から右） */
  /*hoverした際の形状*/
}
.btn span {
  display: block;
  line-height: 100%;
  color: white;
  font-size: 16px;
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: 0.5s all;
}
.btn span::after {
  content: "";
  background-color: white;
  background-image: url("/wp-content/themes/oct/images/recruit/common/arrow-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: 100px;
  transition: 0.6s all;
}
@media (max-width: 1024px) {
  .btn span::after {
    margin-left: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .btn span::after {
    margin-left: 30px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .btn span::after {
    margin-left: 20px;
  }
}
.btn::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: white; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 5px;
}
.btn:hover {
  transition: 0.5s all;
  border: 1px solid #0DA382;
}
.btn:hover span {
  color: #0DA382;
  transition: 0.5s all;
}
.btn:hover span::after {
  background-color: white;
  transition: 0.6s all;
}
.btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* ====================================
   ナビゲーションリンクのスタイル
   ==================================== */
/* 通常のナビゲーションリンク（ヘッダーなど） */
.nav-link {
  position: relative;
  font-size: 14px;
  color: #ffffff; /* グレー */
  transition: color 0.3s ease;
  font-weight: bold;
  /* ホバー時の色変更 */
  /* アンダーラインアニメーション */
  /* ホバー時のアンダーライン表示 */
  /* 現在のページ時のスタイル */
}
.nav-link._thin {
  font-weight: normal;
}
.nav-link:hover {
  color: #ffffff; /* ダークグリーン */
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #ffffff; /* ダークグリーン */
  transform-origin: right; /* 右から開始 */
  transform: scaleX(0); /* 初期状態は非表示 */
  transition: transform 0.3s ease;
}
.nav-link:hover::after {
  transform: scaleX(1); /* 表示状態 */
  transform-origin: left; /* 左から終了 */
}
.nav-link._white {
  color: white;
}
.nav-link._white:hover {
  color: rgba(255, 255, 255, 0.8);
}
.nav-link._white::after {
  background-color: rgba(255, 255, 255, 0.8);
}
.nav-link._current {
  color: #ffffff; /* ダークグリーン */
  /* 現在のページの下線は常に表示 */
  /* 白ナビでの現在ページスタイル */
}
.nav-link._current::after {
  transform: scaleX(1); /* 常に表示 */
  transform-origin: left;
}
.nav-link._current._white {
  color: white;
}
.nav-link._current._white::after {
  background-color: white;
  transform: scaleX(1);
}

/* ====================================
   フッターナビゲーションリンク
   ==================================== */
.footer-nav-link {
  position: relative;
  display: block;
  width: 100%;
  color: white;
  transition: color 0.3s ease;
  padding: 10px 0; /* 上下パディング */
  border-left: 1px solid rgba(255, 255, 255, 0.3); /* 左ボーダー */
  padding-left: 30px; /* 左パディング */
  font-family: "Zen Old Mincho", serif;
  /* ホバー時の色変更 */
  /* 右矢印アイコン */
  /* ホバー時の矢印移動アニメーション */
  /* 右カラム（2,4,6番目）の追加スタイル */
  /* テキスト部分のスタイル */
  /* ホバー時のアンダーライン表示 */
}
@media (max-width: 768px) {
  .footer-nav-link {
    border-right: 1px solid rgba(255, 255, 255, 0.3); /* 右ボーダーも追加 */
    padding-right: 15px; /* 右パディング追加 */
    padding-left: 15px; /* 左パディング調整 */
  }
  .footer-nav-link::after {
    right: 15px; /* 矢印位置調整 */
  }
}
.footer-nav-link:hover {
  color: rgba(255, 255, 255, 0.8); /* 半透明の白 */
}
.footer-nav-link::after {
  content: "";
  position: absolute;
  right: 15px; /* 統一した余白 */
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 10px;
  background-image: url("/wp-content/themes/oct/images/corp/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.footer-nav-link:hover::after {
  transform: translateY(-50%) translateX(4px); /* 右に4px移動 */
}
.footer-nav-link:nth-child(even) {
  border-right: 1px solid rgba(255, 255, 255, 0.3); /* 右ボーダー追加 */
  padding-right: 1rem; /* 右パディング追加 */
  /* 右カラムの矢印位置調整 */
}
.footer-nav-link:nth-child(even)::after {
  right: 15px; /* 統一した余白 */
}
.footer-nav-link span {
  position: relative;
  display: inline-block;
  /* テキスト幅に合わせたアンダーラインアニメーション */
}
.footer-nav-link span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: white;
  width: 100%; /* テキスト幅に合わせる */
  transform-origin: right; /* 右から開始 */
  transform: scaleX(0); /* 初期状態は非表示 */
  transition: transform 0.3s ease;
}
.footer-nav-link:hover span::before {
  transform: scaleX(1); /* 表示状態 */
  transform-origin: left; /* 左から終了（左→右アニメーション） */
}

/* ====================================
   フッター下部のリンク（個人情報保護方針等）
   ==================================== */
.footer-bottom-link {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  /* ホバー時の色変更 */
  /* アンダーラインアニメーション */
  /* ホバー時のアンダーライン表示 */
}
.footer-bottom-link:hover {
  color: white;
}
.footer-bottom-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: white;
  transform-origin: right; /* 右から開始 */
  transform: scaleX(0); /* 初期状態は非表示 */
  transition: transform 0.3s ease;
}
.footer-bottom-link:hover::after {
  transform: scaleX(1); /* 表示状態 */
  transform-origin: left; /* 左から終了（左→右アニメーション） */
}

/* ====================================
   フォーム関連スタイル
   ==================================== */
.form-tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}
@media (max-width: 480px) {
  .form-tit {
    font-size: 16px;
  }
}
.form-tit sup {
  position: relative;
  top: -2px;
  background-color: #00816b;
  color: white;
  font-size: 10px;
  padding: 2px 4px;
  margin-left: 4px;
  line-height: 1;
}

.wp-block-snow-monkey-forms-item {
  padding: 0 !important;
}

.smf-action {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.smf-action .smf-button-control .smf-button-control__control {
  background: linear-gradient(to right, #00816B, #08C8A6) !important;
  background-image: linear-gradient(to right, #00816B, #08C8A6) !important;
  color: white !important;
  border: none !important;
  padding: 16px 24px !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-width: 200px !important;
  position: relative !important;
  text-decoration: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
}
.smf-action .smf-button-control .smf-button-control__control:hover {
  background-color: rgb(221, 221, 221) !important;
  background-image: none !important;
  color: #22787B !important;
}
.smf-action .smf-button-control .smf-button-control__control:hover::after {
  background-color: #ffffff !important;
}
.smf-action .smf-button-control .smf-button-control__control:active {
  transform: translateY(0) !important;
}
.smf-action .smf-button-control .smf-button-control__control::after {
  content: "" !important;
  width: 32px !important;
  height: 32px !important;
  background-color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  background-image: url("/wp-content/themes/oct/images/recruit/common/arrow-green.svg") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 10px !important;
  margin-left: 80px;
}
.smf-action .smf-button-control .smf-button-control__control .smf-sending {
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  border: 2px solid transparent !important;
  border-top: 2px solid white !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
  margin-left: 8px !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pageNation ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 60px;
}
@media (max-width: 480px) {
  .pageNation ul {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.pageNation ul li {
  padding-bottom: 10px;
}
.pageNation ul li .page-numbers {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  margin: 0 5px;
  transition: all 0.3s ease;
  background-color: rgb(230, 230, 230);
  color: #22787B;
  line-height: 50px;
  border-radius: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .pageNation ul li .page-numbers:hover {
    background-color: #22787B;
    color: white;
  }
}
@media (max-width: 810px) {
  .pageNation ul li .page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .pageNation ul li .page-numbers {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 1px;
    font-size: 10px;
  }
}
.pageNation ul li .page-numbers.current {
  background-color: #22787B;
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 50px;
  margin: 0 5px;
  display: block;
  color: white;
}
@media (max-width: 810px) {
  .pageNation ul li .page-numbers.current {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 2px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .pageNation ul li .page-numbers.current {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 1px;
    font-size: 10px;
  }
}
.pageNation ul li .page-numbers.dots {
  line-height: 4.8;
  padding: 0 10px;
  background-color: white;
  color: #22787B;
}
@media (max-width: 810px) {
  .pageNation ul li .page-numbers.dots {
    line-height: 3.2;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .pageNation ul li .page-numbers.dots {
    padding: 0 5px;
  }
}
.pageNation ul li .page-numbers.next {
  transform: rotate(-180deg);
  display: block;
  line-height: 45px;
}
@media (max-width: 810px) {
  .pageNation ul li .page-numbers.next {
    line-height: 37px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .pageNation ul li .page-numbers.next {
    line-height: 28px;
  }
}
.pageNation ul li .page-numbers.prev {
  transform: rotate(-180deg);
  display: block;
  line-height: 45px;
}

._tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #939393;
  font-size: 10px;
  font-weight: 400;
  padding: 5px 9px;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background-color: white;
  transition: all 0.5s ease;
}
._tag:hover {
  color: white;
  background-color: #22787B;
  border-color: #22787B;
}

.entry-button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.entry-button-wrapper .entry-button {
  position: relative;
  display: block;
  width: 100%;
  height: 460px;
  text-decoration: none;
  background: white;
  overflow: hidden;
}
@media (max-width: 810px) {
  .entry-button-wrapper .entry-button {
    height: 300px;
  }
}
.entry-button-wrapper .entry-button .entry-button__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}
.entry-button-wrapper .entry-button .entry-button__icon {
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry-button-wrapper .entry-button .entry-button__icon img {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s ease;
}
@media (max-width: 810px) {
  .entry-button-wrapper .entry-button .entry-button__icon img {
    width: 30px;
    height: 30px;
  }
}
.entry-button-wrapper .entry-button .entry-button__icon .entry-button__icon--white {
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.entry-button-wrapper .entry-button .entry-button__icon .entry-button__icon--green {
  opacity: 1;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.entry-button-wrapper .entry-button .entry-button__title {
  margin-bottom: 0.75rem;
}
.entry-button-wrapper .entry-button .entry-button__title .entry-button__title-jp {
  display: block;
  font-size: 0.875rem;
  color: #80C4B4;
  margin-bottom: 0.25rem;
  margin-top: 25px;
  line-height: 1;
  transition: color 0.3s ease;
}
.entry-button-wrapper .entry-button .entry-button__title .entry-button__title-en {
  display: inline-block;
  font-size: 90px;
  font-weight: bold;
  color: #80C4B4;
  line-height: 1.2;
  background: linear-gradient(180deg, #80C4B4 0%, #22787B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  margin-top: -20px;
  position: relative;
}
@media (max-width: 810px) {
  .entry-button-wrapper .entry-button .entry-button__title .entry-button__title-en {
    font-size: 54px;
    margin-top: -10px;
  }
}
.entry-button-wrapper .entry-button .entry-button__title .entry-button__title-en::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #80C4B4;
  transition: background 0.3s ease;
}
.entry-button-wrapper .entry-button .entry-button__message {
  position: relative;
  height: 60px;
  margin-top: 25px;
}
.entry-button-wrapper .entry-button .entry-button__message img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 300px;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.entry-button-wrapper .entry-button .entry-button__message .entry-button__message--normal {
  opacity: 1;
}
.entry-button-wrapper .entry-button .entry-button__message .entry-button__message--hover {
  opacity: 0;
}
.entry-button-wrapper .entry-button .entry-button__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
.entry-button-wrapper .entry-button .entry-button__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.entry-button-wrapper .entry-button .entry-button__background picture img,
.entry-button-wrapper .entry-button .entry-button__background .entry-button__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  transform: scale(1.1);
}

.entry-button-wrapper .entry-button:hover .entry-button__icon--white {
  opacity: 1;
}
.entry-button-wrapper .entry-button:hover .entry-button__icon--green {
  opacity: 0;
}
.entry-button-wrapper .entry-button:hover .entry-button__title-jp {
  color: white;
}
.entry-button-wrapper .entry-button:hover .entry-button__title-en {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}
.entry-button-wrapper .entry-button:hover .entry-button__divider {
  background: white;
}
.entry-button-wrapper .entry-button:hover .entry-button__message--normal {
  opacity: 0;
}
.entry-button-wrapper .entry-button:hover .entry-button__message--hover {
  opacity: 1;
}
.entry-button-wrapper .entry-button:hover .entry-button__background {
  opacity: 1;
}
.entry-button-wrapper .entry-button:hover .entry-button__background picture img,
.entry-button-wrapper .entry-button:hover .entry-button__background .entry-button__bg-image {
  transform: scale(1);
}

@media (max-width: 768px) {
  .entry-button-wrapper .entry-button .entry-button__content {
    padding: 1.5rem;
  }
  .entry-button-wrapper .entry-button .entry-button__title-en {
    font-size: 1.25rem;
  }
  .entry-button-wrapper .entry-button .entry-button__message {
    height: 32px;
  }
}
.sub-navi-wrapper {
  width: 100%;
}
.sub-navi-wrapper .sub-navi {
  display: flex;
  width: 100%;
  gap: 0;
  position: relative;
}
.sub-navi-wrapper .sub-navi::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
}
@media (max-width: 810px) {
  .sub-navi-wrapper .sub-navi::after {
    display: none;
  }
}
.sub-navi-wrapper .sub-navi .sub-navi__btn {
  position: relative;
  display: flex;
  flex: 1;
  aspect-ratio: 920/720;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  margin-top: 60px;
}
@media (max-width: 810px) {
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-icon {
    margin-top: 30px;
    width: 30px;
    height: 30px;
  }
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-icon img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 810px) {
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-icon img {
    width: 15px;
    height: 15px;
  }
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-text .sub-navi__btn-text-jp {
  display: block;
  font-size: 24px;
  color: white;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
@media (max-width: 810px) {
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-text .sub-navi__btn-text-jp {
    margin-bottom: 5px;
  }
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-text .sub-navi__btn-text-en {
  display: block;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-background .sub-navi__btn-bg--normal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-background .sub-navi__btn-bg--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(1.1);
}
.sub-navi-wrapper .sub-navi .sub-navi__btn:hover .sub-navi__btn-background .sub-navi__btn-bg--normal {
  opacity: 0;
  transform: scale(1);
}
.sub-navi-wrapper .sub-navi .sub-navi__btn:hover .sub-navi__btn-background .sub-navi__btn-bg--hover {
  opacity: 1;
  transform: scale(1);
}
.sub-navi-wrapper .sub-navi .sub-navi__btn--left .sub-navi__btn-background .sub-navi__btn-bg--normal {
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn--left .sub-navi__btn-background .sub-navi__btn-bg--hover {
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn--right .sub-navi__btn-background .sub-navi__btn-bg--normal {
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-navi-wrapper .sub-navi .sub-navi__btn--right .sub-navi__btn-background .sub-navi__btn-bg--hover {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sub-navi-wrapper .sub-navi {
    flex-direction: column;
  }
  .sub-navi-wrapper .sub-navi .sub-navi__btn {
    padding-bottom: 40%;
  }
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-content {
    padding: 0 1rem;
  }
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-text .sub-navi__btn-text-jp {
    font-size: 20px;
  }
  .sub-navi-wrapper .sub-navi .sub-navi__btn .sub-navi__btn-text .sub-navi__btn-text-en {
    font-size: 16px;
  }
}
.nextBanner {
  width: 100%;
  padding: 0 5%;
  position: relative;
  padding-bottom: 1px;
}
.nextBanner .nextBanner-btn {
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn {
    margin-bottom: 30px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text {
  color: white;
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-en {
  font-size: 16px;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-en {
    font-size: 10px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-jp {
  font-weight: bold;
  font-size: 32px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: -5px;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-jp {
    font-size: 20px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-desc {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 10px;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-text .nextBanner-desc {
    font-size: 12px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-icon {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-icon {
    width: 30px;
    height: 30px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-icon img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 810px) {
  .nextBanner .nextBanner-btn .nextBanner-btnWrap .nextBanner-icon img {
    width: 15px;
    height: 15px;
  }
}
.nextBanner .nextBanner-btn .nextBanner-img {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 1280/380;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .nextBanner .nextBanner-btn .nextBanner-img {
    aspect-ratio: 4/3;
  }
}
.nextBanner .nextBanner-btn .nextBanner-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}
.nextBanner .nextBanner-btn .nextBanner-img img {
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nextBanner .nextBanner-btn:hover .nextBanner-img::before {
  background: rgba(0, 0, 0, 0);
}
.nextBanner .nextBanner-btn:hover .nextBanner-img img {
  transform: scale(1.1);
}

.nextBanner-bg {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1280px) {
  .nextBanner-bg {
    height: 30vw;
  }
}
@media (max-width: 1280px) and (max-width: 810px) {
  .nextBanner-bg {
    height: 140px;
  }
}
.nextBanner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

._flow ._flow-wrap {
  position: relative;
}
._flow ._flow-wrap ._flow-step {
  font-weight: 700;
  color: white;
  background-color: #05b193;
  border-radius: 50px;
  display: inline-block;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
._flow ._flow-wrap .flow-box {
  background-color: #ecebe7;
  padding: 30px 20px 25px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
}
._flow ._flow-wrap .flow-box._last {
  background-color: #05b193;
  color: white;
  margin-top: -10px;
  padding-top: 25px;
}
._flow ._flow-arrow {
  width: 34px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}

.staffIndex {
  display: block;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.staffIndex:hover .staffIndex-imgWrap .staffIndex-img {
  transform: scale(1.1);
}
.staffIndex:hover .staffIndex-imgWrap .staffIndex-arrow {
  transform: translateX(10px);
}
.staffIndex:hover .staffIndex-txtWrap .staffIndex-tit span {
  background-position: left bottom;
  background-size: 100% 1px;
  color: #22787b;
}
.staffIndex .staffIndex-imgWrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.staffIndex .staffIndex-imgWrap .staffIndex-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.staffIndex .staffIndex-imgWrap .staffIndex-en {
  position: absolute;
  bottom: 15px;
  left: 40px;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 64px;
  font-weight: 100;
  color: white;
}
@media (max-width: 810px) {
  .staffIndex .staffIndex-imgWrap .staffIndex-en {
    font-size: 36px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffIndex .staffIndex-imgWrap .staffIndex-en {
    font-size: 24px;
    bottom: 10px;
    left: 20px;
  }
}
.staffIndex .staffIndex-imgWrap .staffIndex-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(288deg, #00816b 1.58%, #08c8a6 87.4%);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  margin-top: 60px;
  transition: transform 0.3s ease;
}
@media (max-width: 810px) {
  .staffIndex .staffIndex-imgWrap .staffIndex-arrow {
    margin-top: 30px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffIndex .staffIndex-imgWrap .staffIndex-arrow {
    bottom: 20px;
    right: 20px;
  }
}
.staffIndex .staffIndex-imgWrap .staffIndex-arrow img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 810px) {
  .staffIndex .staffIndex-imgWrap .staffIndex-arrow img {
    width: 15px;
    height: 15px;
  }
}
.staffIndex .staffIndex-txtWrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap {
    flex-direction: column;
    justify-content: start;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-tit {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-tit {
    margin-top: 15px;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-tit span {
  font-weight: 900;
  font-size: 28px;
  line-height: 1.8;
  background: linear-gradient(currentColor, currentColor) right bottom/0 1px no-repeat;
  transition: background-size 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  display: inline;
}
@media (max-width: 810px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-tit span {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-tit span {
    font-size: 20px;
    line-height: 1.6;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-spec {
  margin-top: 20px;
  color: #22787b;
  text-align: right;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-spec {
    text-align: left;
    margin-top: 10px;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-year {
  font-size: 16px;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-year {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-position {
  font-size: 16px;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-position {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-name {
  font-size: 20px;
  margin-top: 5px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .staffIndex .staffIndex-txtWrap .staffIndex-spec .staffIndex-name {
    font-size: 14px;
    margin-top: 0;
  }
}

.staff {
  display: flex;
  margin: 0 auto 0 5%;
}
@media (max-width: 1280px) {
  .staff {
    display: block;
    margin: 0 auto;
  }
}
.staff .staff-nameWrap {
  width: 260px;
  flex-shrink: 0;
  margin-top: 148px;
  color: #22787b;
  font-size: 16px;
}
.staff .staff-nameWrap .staff-name {
  font-size: 20px;
  margin-top: 5px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .staff .staff-nameWrap .staff-name {
    font-size: 14px;
    margin-top: 0;
  }
}
@media (max-width: 1280px) {
  .staff .staff-nameWrap.__bpNone {
    display: none;
  }
}
.staff .staff-nameWrap.__bpTrue {
  display: none;
}
@media (max-width: 1280px) {
  .staff .staff-nameWrap.__bpTrue {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}
.staff .staffMain {
  flex-shrink: 0;
  width: calc(100% - 260px);
}
@media (max-width: 1280px) {
  .staff .staffMain {
    width: 90%;
    margin: 0 auto;
  }
}
.staff .staffMain .staffMain-wrap {
  width: 100%;
  max-width: 910px;
  margin: 0 auto;
}
.staff .staffMain .staffMain-wrap .staff-mainImg {
  margin-top: -340px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .staff .staffMain .staffMain-wrap .staff-mainImg {
    margin-top: 60px;
  }
}
@media (max-width: 1280px) and (max-width: 480px) {
  .staff .staffMain .staffMain-wrap .staff-mainImg {
    margin-top: 30px;
  }
}
.staff .staffMain .staffMain-wrap .staff-mainImg img {
  border-radius: 10px;
  max-width: 910px;
  width: 100%;
}
.staff .staffMain .staffMain-wrap .staff-mainImg .staff-en {
  position: absolute;
  bottom: 10px;
  left: 40px;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 64px;
  font-weight: 100;
  color: #08c8a6;
}
@media (max-width: 810px) {
  .staff .staffMain .staffMain-wrap .staff-mainImg .staff-en {
    font-size: 36px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staff .staffMain .staffMain-wrap .staff-mainImg .staff-en {
    font-size: 24px;
    bottom: 10px;
    left: 20px;
  }
}
.staff .staffMain .staffMain-wrap .staff-tit {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.5;
  background: linear-gradient(288deg, #00816b 1.58%, #08c8a6 87.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: 60px;
}
@media (max-width: 810px) {
  .staff .staffMain .staffMain-wrap .staff-tit {
    font-size: 28px;
    margin-top: 40px;
  }
  .staff .staffMain .staffMain-wrap .staff-tit br {
    display: none;
  }
  .staff .staffMain .staffMain-wrap .staff-tit.js-trim-br br {
    display: none;
  }
}
.staff .staffMain .staffMain-wrap .staff-kiziWrap {
  margin-top: 100px;
}
@media (max-width: 810px) {
  .staff .staffMain .staffMain-wrap .staff-kiziWrap {
    margin-top: 60px;
  }
}
.staff .staffMain .staffMain-wrap .staff-kiziWrap .staff-q {
  display: block;
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background-color: #08c8a6;
  position: relative;
}
.staff .staffMain .staffMain-wrap .staff-kiziWrap .staff-q span {
  font-size: 14px;
  background-color: #08c8a6;
  padding: 8px 15px;
  border-radius: 50px;
  color: white;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 0;
}
.staff .staffMain .staffMain-wrap .staff-kiziTit {
  font-weight: bold;
  font-size: 28px;
  margin-top: 50px;
}
@media (max-width: 810px) {
  .staff .staffMain .staffMain-wrap .staff-kiziTit {
    font-size: 24px;
    margin-top: 40px;
  }
  .staff .staffMain .staffMain-wrap .staff-kiziTit br {
    display: none;
  }
}
.staff .staffMain .staffMain-wrap .staff-p {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}
@media (max-width: 810px) {
  .staff .staffMain .staffMain-wrap .staff-p {
    margin-top: 25px;
  }
}
.staff .staffMain .staffMain-wrap .staff-img {
  margin-top: 30px;
}
.staff .staffMain .staffMain-wrap .staff-img img {
  border-radius: 10px;
  max-width: 910px;
  width: 100%;
}

.staff-dayWrap {
  margin-top: 200px;
}
@media (max-width: 810px) {
  .staff-dayWrap {
    margin-top: 140px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staff-dayWrap {
    margin-top: 100px;
  }
}
.staff-dayWrap .staff-dayTitWrap {
  background-image: url("/wp-content/themes/oct/images/recruit/staff/oneday-back.webp");
  background-position: center;
  background-repeat: no-repeat;
  height: 285px;
  position: relative;
}
.staff-dayWrap .staff-dayTitWrap .staff-dayTit {
  position: absolute;
  left: 5%;
  bottom: 50px;
}
.staff-dayWrap .staff-dayTitWrap .staff-dayTit .staff-dayTitJp {
  color: white;
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 810px) {
  .staff-dayWrap .staff-dayTitWrap .staff-dayTit .staff-dayTitJp {
    font-size: 24px;
  }
}
.staff-dayWrap .staff-dayTitWrap .staff-dayTit .staff-dayTitEn {
  color: white;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 810px) {
  .staff-dayWrap .staff-dayTitWrap .staff-dayTit .staff-dayTitEn {
    font-size: 14px;
  }
}
.staff-dayWrap .staff-dayTitWrap .staff-dayImg {
  position: absolute;
  width: 530px;
  right: 5%;
  top: -35px;
}
@media (max-width: 1024px) {
  .staff-dayWrap .staff-dayTitWrap .staff-dayImg {
    width: 400px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .staff-dayWrap .staff-dayTitWrap .staff-dayImg {
    width: 300px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .staff-dayWrap .staff-dayTitWrap .staff-dayImg {
    width: 250px;
    top: -20px;
  }
}
.staff-dayWrap .staff-dayTitWrap .staff-dayImg img {
  width: 100%;
  border-radius: 10px;
}

.staff-day {
  display: block;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
@media (max-width: 810px) {
  .staff-day {
    margin-top: 40px;
  }
}
.staff-day::after {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: #06aa87;
  position: absolute;
  top: -80px;
  left: 56px;
  z-index: 1;
}
@media (max-width: 810px) {
  .staff-day::after {
    top: -40px;
  }
}
.staff-day .staff-dayBox {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #06aa87;
  display: flex;
  align-items: center;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 810px) {
  .staff-day .staff-dayBox {
    margin-top: 20px;
  }
}
.staff-day .staff-dayBox._night {
  border: 3px solid #007259;
}
.staff-day .staff-dayBox._night .staff-dayWatch {
  background-color: #007259;
}
.staff-day .staff-dayBox .staff-dayWatch {
  background-color: #06aa87;
  padding: 20px;
  width: 110px;
}
@media (max-width: 480px) {
  .staff-day .staff-dayBox .staff-dayWatch {
    width: 90px;
    padding: 10px;
  }
}
.staff-day .staff-dayBox .staff-dayWatch .staff-dayWatchImg {
  width: 62px;
  height: 62px;
  margin: 0 auto;
}
.staff-day .staff-dayBox .staff-dayWatch .staff-dayWatchImg img {
  width: 100%;
}
.staff-day .staff-dayBox .staff-dayWatch .staff-dayWatchTxt {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-top: 5px;
  text-align: center;
}
.staff-day .staff-dayBox .staff-dayTxt {
  padding: 10px 30px;
}
@media (max-width: 480px) {
  .staff-day .staff-dayBox .staff-dayTxt {
    padding: 10px 20px;
  }
}
.staff-day .staff-dayBox .staff-dayTxt .staff-dayflowTit {
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 480px) {
  .staff-day .staff-dayBox .staff-dayTxt .staff-dayflowTit {
    font-size: 20px;
  }
}
.staff-day .staff-dayBox .staff-dayTxt .staff-dayflowTxt {
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 480px) {
  .staff-day .staff-dayBox .staff-dayTxt .staff-dayflowTxt {
    font-size: 14px;
    line-height: 1.4;
  }
}
.staff-day .staff-sleep {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #06aa87;
  margin-top: 40px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e5f2f0;
  position: relative;
  z-index: 2;
}
@media (max-width: 810px) {
  .staff-day .staff-sleep {
    margin-top: 20px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staff-day .staff-sleep {
    min-height: 100px;
  }
}
.staff-day .staff-sleep .staff-sleepTit {
  font-weight: bold;
  font-size: 24px;
  color: #06aa87;
  display: flex;
  align-items: center;
  gap: 10px;
}
.staff-day .staff-sleep .staff-sleepTime {
  font-size: 14px;
  line-height: 2;
  color: #06aa87;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
}

.staffCard {
  margin-top: 60px;
  padding-top: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 810px) {
  .staffCard {
    padding: 60px 0;
  }
}
.staffCard .staffCard-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  height: 500px;
}
.staffCard .staffCard-tit {
  color: white;
  font-size: 16px;
  text-align: center;
}
.staffCard .staffCard-en {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 90px;
  color: white;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 810px) {
  .staffCard .staffCard-en {
    font-size: 60px;
  }
}
.staffCard .staffCard-voice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 180px;
  margin-top: -50px;
}
@media (max-width: 810px) {
  .staffCard .staffCard-voice {
    display: none;
  }
}
.staffCard .staffCard-wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.staffCard .staffCard-wrap a {
  flex: 0 0 calc(33.333% - 27px);
  min-width: 300px;
}
.staffCard .staffCard-wrap:has(a:only-child) {
  justify-content: center;
}
.staffCard .staffCard-wrap:has(a:nth-child(2):last-child) {
  justify-content: center;
}
@media (max-width: 1280px) {
  .staffCard .staffCard-wrap {
    gap: 20px;
  }
  .staffCard .staffCard-wrap a {
    flex: 0 0 calc(33.333% - 14px);
  }
}
@media (max-width: 810px) {
  .staffCard .staffCard-wrap {
    row-gap: 40px;
  }
  .staffCard .staffCard-wrap a {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffCard .staffCard-wrap {
    gap: 20px;
  }
  .staffCard .staffCard-wrap a {
    flex: 0 0 100%;
  }
}
.staffCard .staffCard-wrap .staffCard-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap {
  max-width: 320px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap {
    max-width: 280px;
    margin: 0 auto;
  }
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffCard-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffCard-img img {
  width: 100%;
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffIndexTate-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(288deg, #00816b 1.58%, #08c8a6 87.4%);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  margin-top: 60px;
  transition: transform 0.3s ease;
}
@media (max-width: 810px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffIndexTate-arrow {
    margin-top: 30px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffIndexTate-arrow {
    bottom: 20px;
    right: 20px;
  }
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffIndexTate-arrow img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 810px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-imgWrap .staffIndexTate-arrow img {
    width: 15px;
    height: 15px;
  }
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap {
  margin-top: 10px;
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-copy span {
  font-weight: 900;
  font-size: 18px;
  line-height: 1.8;
  background: linear-gradient(currentColor, currentColor) right bottom/0 1px no-repeat;
  transition: background-size 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  display: inline;
  color: #242424;
  text-align: left;
}
@media (max-width: 810px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-copy span {
    font-size: 18px;
    line-height: 1.6;
  }
  .staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-copy span br {
    display: none;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-copy span {
    font-size: 16px;
    line-height: 1.6;
  }
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-spec {
  margin-top: 10px;
  color: #22787b;
  font-size: 14px;
}
.staffCard .staffCard-wrap .staffCard-link .staffCard-txtWrap .staffCard-spec .staffCard-name {
  margin-top: 5px;
  font-weight: bold;
}
.staffCard .staffCard-wrap .staffCard-link:hover .staffCard-imgWrap .staffCard-img {
  transform: scale(1.1);
}
.staffCard .staffCard-wrap .staffCard-link:hover .staffCard-imgWrap .staffIndexTate-arrow {
  transform: translateX(10px);
}
.staffCard .staffCard-wrap .staffCard-link:hover .staffCard-txtWrap .staffCard-copy span {
  background-position: left bottom;
  background-size: 100% 1px;
  color: #22787b;
}

.imgSlide-wrap {
  width: 100%;
  position: relative;
}
@media (max-width: 810px) {
  .imgSlide-wrap {
    background-size: 300vw;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .imgSlide-wrap {
    background-position: top 60px center;
  }
}

.imgSlide-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  margin-top: 120px;
}
@media (max-width: 810px) {
  .imgSlide-back img {
    height: 60vw;
    margin-top: 20vw;
  }
}

.areaMap {
  max-width: 664px;
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
  z-index: 10;
  position: relative;
}
@media (max-width: 480px) {
  .areaMap {
    margin-top: 20px;
  }
}
.areaMap img {
  width: 100%;
}

.imgSlide {
  overflow: hidden;
  position: absolute;
  top: 265px;
}
.imgSlide .loop_wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: auto;
  overflow: hidden;
  gap: 40px;
}
.imgSlide .loop_wrap > * {
  height: auto;
  flex: 0 0 auto;
}
.imgSlide .loop_wrap img {
  width: auto;
  height: 200px;
}

.syuden {
  display: grid;
  grid-template-columns: clamp(280px, 50vw, 1000px) minmax(0, 1fr);
  align-items: center;
  -moz-column-gap: clamp(16px, 4vw, 100px);
       column-gap: clamp(16px, 4vw, 100px);
  width: 100%;
  position: relative;
}
@media (max-width: 810px) {
  .syuden {
    grid-template-columns: 1fr;
  }
}
.syuden .syuden-img {
  position: relative;
  z-index: 1;
}
.syuden .syuden-img img {
  width: 100%;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 810px) {
  .syuden .syuden-img img {
    border-radius: 0;
  }
}
.syuden .syuden-text {
  margin-right: 5vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 810px) {
  .syuden .syuden-text {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .syuden .syuden-text {
    margin-top: 20px;
  }
}
.syuden .syuden-text h3 {
  max-width: 400px;
}
@media (max-width: 810px) {
  .syuden .syuden-text h3 {
    max-width: 100%;
  }
}
.syuden .syuden-text p {
  max-width: 600px;
}
@media (max-width: 810px) {
  .syuden .syuden-text p {
    max-width: 100%;
  }
}
.syuden::after {
  content: "";
  position: absolute;
  top: 14.5vw;
  right: 0;
  width: 60vw;
  height: 30vw;
  background-color: rgba(23, 171, 124, 0.1);
  z-index: 0;
  border-radius: 10px 0 0 10px;
}

.jobFlow {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid #17ab7c;
  border-radius: 8px;
  max-width: 254px;
  position: relative;
  margin: 0 auto;
}
.jobFlow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 20px;
  height: 15px;
  background: url("/wp-content/themes/oct/images/recruit/common/arrow-green.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 810px) {
  .jobFlow::after {
    display: none;
  }
}
.jobFlow._arrowNone::after {
  display: none;
}
.jobFlow .jobFlow-time {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17ab7c;
  padding: 8px 10px;
  gap: 10px;
}
.jobFlow .jobFlow-time .jobFlow-timeImg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.jobFlow .jobFlow-time .jobFlow-timeImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.jobFlow .jobFlow-time .jobFlow-timeText {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
}
.jobFlow .jobFlow-img {
  width: 100%;
}
.jobFlow .jobFlow-img img {
  width: 100%;
  height: auto;
  display: block;
}
.jobFlow .jobFlow-text {
  padding: 20px 5px;
  text-align: center;
}
@media (max-width: 1024px) {
  .jobFlow .jobFlow-text {
    padding: 15px 15px;
  }
}
.jobFlow .jobFlow-text h4 {
  color: #17ab7c;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .jobFlow .jobFlow-text h4 {
    font-size: 20px;
  }
}
.jobFlow .jobFlow-text p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .jobFlow .jobFlow-text p {
    text-align: left;
  }
  .jobFlow .jobFlow-text p br {
    display: none;
  }
}
.jobFlow._sleep {
  background-color: #e5f2f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 254px;
}
@media (max-width: 810px) {
  .jobFlow._sleep {
    width: 254px;
    padding: 30px 15px;
  }
}
.jobFlow .staff-sleepTit {
  font-weight: bold;
  font-size: 24px;
  color: #06aa87;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.jobFlow .staff-sleepTime {
  font-size: 14px;
  line-height: 2;
  color: #06aa87;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: bold;
}
.jobFlow._yoru {
  border: 2px solid #007259;
}
.jobFlow._yoru .jobFlow-time {
  background: #007259;
}
.jobFlow._yoru .jobFlow-time .jobFlow-text h4 {
  color: #007259;
}

.halfBox {
  display: flex;
  flex-direction: column;
}
.halfBox .halfBox-img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.halfBox .halfBox-txt {
  flex: 1;
  border-radius: 0 0 10px 10px;
  background-color: #0DA382;
  color: white;
  padding: 30px 40px 35px;
}
@media (max-width: 1024px) {
  .halfBox .halfBox-txt {
    padding: 20px 20px 25px;
  }
}
.halfBox .halfBox-txt h3 {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .halfBox .halfBox-txt h3 {
    font-size: 20px;
  }
}
.halfBox .halfBox-txt p {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
@media (max-width: 810px) {
  .halfBox .halfBox-txt p {
    margin-top: 5px;
  }
}

.col2Box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(100px, 30vw, 284px);
  -moz-column-gap: clamp(20px, 4vw, 40px);
       column-gap: clamp(20px, 4vw, 40px);
  align-items: center;
}
@media (max-width: 480px) {
  .col2Box {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.col2Box .col2Box-txt .col2Box-tit {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 810px) {
  .col2Box .col2Box-txt .col2Box-tit {
    font-size: 20px;
  }
}
.col2Box .col2Box-txt .col2Box-tit sup {
  color: #0da382;
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: bold;
  display: block;
  position: relative;
  top: 0;
  margin-bottom: 6px;
}
.col2Box .col2Box-txt .text-base {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
@media (max-width: 810px) {
  .col2Box .col2Box-txt .text-base {
    margin-top: 5px;
  }
}
.col2Box .col2Box-img img {
  width: 100%;
  border-radius: 10px;
}

.col2BoxMin {
  display: grid;
  grid-template-columns: 200px 1fr;
  margin-top: 20px;
}
@media (max-width: 480px) {
  .col2BoxMin {
    display: block;
  }
}
.col2BoxMin .col2BoxMin-img {
  height: 100%;
}
@media (max-width: 480px) {
  .col2BoxMin .col2BoxMin-img {
    height: 230px;
  }
}
.col2BoxMin .col2BoxMin-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 480px) {
  .col2BoxMin .col2BoxMin-img img {
    border-radius: 10px 10px 0 0;
  }
}
.col2BoxMin .col2BoxMin-txt {
  background-color: #0DA382;
  border-radius: 0 10px 10px 0;
  padding: 20px 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 480px) {
  .col2BoxMin .col2BoxMin-txt {
    padding: 15px 20px 20px;
    border-radius: 0 0 10px 10px;
  }
}
.col2BoxMin .col2BoxMin-txt h3 {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .col2BoxMin .col2BoxMin-txt h3 {
    font-size: 20px;
  }
}
.col2BoxMin .col2BoxMin-txt p {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .col2BoxMin .col2BoxMin-txt p {
    margin-top: 2px;
  }
}
.col2BoxMin .col2BoxMin-txt._white {
  background-color: white;
  color: #2f2f2f;
  border: 1px solid #d6d6d6;
}

.supLecWrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 480px) {
  .supLecWrap {
    display: block;
  }
}

.supLec {
  border-left: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  max-width: 360px;
  margin: 0 auto;
}
.supLec._rightLine {
  border-right: 1px solid #d6d6d6;
}
@media (max-width: 480px) {
  .supLec {
    border: 1px solid #d6d6d6;
  }
}
.supLec .spoLec-img {
  position: relative;
}
.supLec .spoLec-img._arrow::after {
  content: "";
  background-color: #05B193;
  background-image: url("/wp-content/themes/oct/images/recruit/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 100px;
  transition: 0.6s all;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 1024px) {
  .supLec .spoLec-img._arrow::after {
    margin-left: 40px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .supLec .spoLec-img._arrow::after {
    margin-left: 30px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .supLec .spoLec-img._arrow::after {
    margin-left: 20px;
  }
}
@media (max-width: 480px) {
  .supLec .spoLec-img._arrow::after {
    display: none;
  }
}
.supLec .spoLec-txt {
  position: relative;
  padding: 20px 30px;
}
@media (max-width: 480px) {
  .supLec .spoLec-txt {
    padding: 20px 20px;
  }
}
.supLec .spoLec-txt .spoLec-tag {
  background-color: #0da382;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 15px;
  margin-bottom: 10px;
  font-family: "Montserrat Alternates", sans-serif;
  display: inline-block;
  top: -12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.supLec .spoLec-txt h3 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}
.supLec .spoLec-txt p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}

.topEnviro .topEnviro-list {
  display: grid;
  grid-template-columns: clamp(100px, 25vw, 400px) 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid #d6d6d6;
  padding-top: 56px;
  padding-bottom: 56px;
  transition: all 0.4s ease;
}
@media (max-width: 1024px) {
  .topEnviro .topEnviro-list {
    gap: 30px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topEnviro .topEnviro-list {
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: flex-start;
  }
}
.topEnviro .topEnviro-list:hover .topEnviro-listImg img {
  transform: scale(1.1);
}
.topEnviro .topEnviro-list:hover .topEnviro-listTxt::after {
  right: -20px;
}
.topEnviro .topEnviro-list:hover .topEnviro-listTxt h3 span {
  background-position: left bottom;
  background-size: 100% 1px;
  color: #05b193;
}
.topEnviro .topEnviro-list .topEnviro-listImg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 810px) {
  .topEnviro .topEnviro-list .topEnviro-listImg {
    border-radius: 10px;
    margin-top: -10px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .topEnviro .topEnviro-list .topEnviro-listImg {
    height: auto;
  }
}
.topEnviro .topEnviro-list .topEnviro-listImg img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topEnviro .topEnviro-list .topEnviro-listTxt {
  position: relative;
}
.topEnviro .topEnviro-list .topEnviro-listTxt::after {
  content: "";
  background-color: #05b193;
  background-image: url("/wp-content/themes/oct/images/recruit/common/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 100px;
  transition: 0.6s all;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt::after {
    display: none;
  }
}
.topEnviro .topEnviro-list .topEnviro-listTxt h3 span {
  font-weight: 900;
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(currentColor, currentColor) left bottom/0 1px no-repeat;
  transition: background-size 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  display: inline;
  color: #242424;
  text-align: left;
}
@media (max-width: 1024px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt h3 span {
    font-size: 28px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt h3 span {
    font-size: 24px;
    background-position: left bottom;
    background-size: 100% 1px;
    color: #05b193;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt h3 span {
    font-size: 20px;
  }
}
.topEnviro .topEnviro-list .topEnviro-listTxt h3 sup {
  font-size: 16px;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
  display: block;
  color: #0da382;
}
@media (max-width: 810px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt h3 sup {
    font-size: 14px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt h3 sup {
    font-size: 12px;
  }
}
.topEnviro .topEnviro-list .topEnviro-listTxt p {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}
@media (max-width: 810px) {
  .topEnviro .topEnviro-list .topEnviro-listTxt p {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.8;
  }
  .topEnviro .topEnviro-list .topEnviro-listTxt p br {
    display: none;
  }
}

.topTit {
  position: relative;
}
.topTit .topTit-jp {
  font-size: 16px;
  font-weight: bold;
}
.topTit .topTit-en {
  font-size: 90px;
  font-weight: bold;
  font-family: "Montserrat Alternates", sans-serif;
  background: linear-gradient(288deg, #00816b 1.58%, #08c8a6 87.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-top: -10px;
}
@media (max-width: 1024px) {
  .topTit .topTit-en {
    font-size: 64px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topTit .topTit-en {
    font-size: 54px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .topTit .topTit-en {
    font-size: 48px;
    margin-top: 0;
  }
}
.topTit .topTit-voice {
  position: absolute;
  top: -40px;
  left: 520px;
}
@media (max-width: 1024px) {
  .topTit .topTit-voice {
    left: 340px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topTit .topTit-voice {
    display: none;
  }
}
.topTit .topTit-voice img {
  width: 100%;
}
.topTit._white {
  text-align: center;
  width: 100%;
  position: relative;
}
.topTit._white .topTit-jp {
  color: white;
}
.topTit._white .topTit-en {
  background: initial;
  color: white;
  -webkit-text-fill-color: white;
  background-clip: initial;
}
.topTit._white .topTit-voice2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 260px;
  margin-top: -20px;
  z-index: 10;
  width: 244px;
}
@media (max-width: 810px) {
  .topTit._white .topTit-voice2 {
    margin-top: -60px;
    margin-left: 120px;
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .topTit._white .topTit-voice2 {
    display: none;
  }
}

.topJobs {
  position: relative;
  margin-right: 5%;
  width: 95%;
  margin-top: -90px;
}
.topJobs .topJobs-img {
  position: relative;
  z-index: 0;
}
.topJobs .topJobs-voice {
  position: absolute;
  z-index: 1;
}
.topJobs .topJobs-wrap {
  position: absolute;
  z-index: 2;
}
.topJobs .topJobs-voice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -20%;
  margin-top: 0%;
}
@media (max-width: 1024px) {
  .topJobs .topJobs-voice {
    margin-left: -20%;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .topJobs .topJobs-voice {
    transform: none;
    top: 10%;
    left: initial;
    right: 0%;
    margin-left: 0;
    display: none;
  }
}
.topJobs .topJobs-voice img {
  width: 100%;
}
@media (max-width: 1024px) {
  .topJobs .topJobs-voice img {
    width: 70%;
  }
}
.topJobs .topJobs-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 20%;
  color: white;
  max-width: 400px;
  width: 100%;
}
@media (min-width: 1921px) {
  .topJobs .topJobs-wrap {
    left: 900px;
  }
}
@media (max-width: 810px) {
  .topJobs .topJobs-wrap {
    left: 5%;
    transform: translate(0%, -50%);
    margin-left: 0;
  }
}
.topJobs .topJobs-wrap .topJobs-tit {
  font-size: 16px;
}
.topJobs .topJobs-wrap .topJobs-en {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 90px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .topJobs .topJobs-wrap .topJobs-en {
    font-size: 60px;
    margin-bottom: 15px;
  }
}
.topJobs .topJobs-wrap .topJobs-desc {
  font-size: 16px;
  line-height: 2.4;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .topJobs .topJobs-wrap .topJobs-desc {
    white-space: normal;
    line-height: 1.8;
    font-size: 14px;
  }
}
@media (max-width: 810px) {
  .topJobs .topJobs-wrap .topJobs-desc {
    font-size: 14px;
    line-height: 1.8;
  }
}
.topJobs .topJobs-wrap .topJobs-btn {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .topJobs .topJobs-wrap .topJobs-btn {
    margin-top: 20px;
  }
}
.topJobs .topJobs-img {
  max-width: 1920px;
  width: 100%;
}
@media (max-width: 480px) {
  .topJobs .topJobs-img {
    height: 600px;
  }
}
.topJobs .topJobs-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 480px) {
  .topJobs .topJobs-img img {
    -o-object-position: left center;
       object-position: left center;
  }
}

.numberTop {
  width: 100%;
  height: 100%;
  padding: 100px 0 250px;
}
@media (max-width: 1024px) {
  .numberTop {
    padding: 100px 0 150px;
  }
}
.numberTop .topNumber-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 30px;
  position: relative;
  z-index: 10;
}
@media (max-width: 810px) {
  .numberTop .topNumber-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .numberTop .topNumber-wrap {
    grid-template-columns: 1fr;
  }
}
.numberTop .topNumber-wrap .topNumber-item img {
  width: 100%;
}
.numberTop .topNumber-wrap .topNumber-item._01 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
  .numberTop .topNumber-wrap .topNumber-item._01 {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.numberTop .topNumber-wrap .topNumber-item._02 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 810px) {
  .numberTop .topNumber-wrap .topNumber-item._02 {
    border-right: none;
  }
}
.numberTop .topNumber-wrap .topNumber-item._03 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 810px) {
  .numberTop .topNumber-wrap .topNumber-item._03 {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media (max-width: 810px) and (max-width: 480px) {
  .numberTop .topNumber-wrap .topNumber-item._03 {
    border-right: none;
  }
}
.numberTop .topNumber-wrap .topNumber-item._04 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 810px) {
  .numberTop .topNumber-wrap .topNumber-item._04 {
    border-right: none;
  }
}
.numberTop .topNumber-wrap .topNumber-item._05 {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 480px) {
  .numberTop .topNumber-wrap .topNumber-item._05 {
    border-right: none;
  }
}
.numberTop .topNumber-wrap .topNumber-item._06 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.philoTop {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  margin-top: -1px;
}
.philoTop .philoTop-message {
  position: relative;
  z-index: 10;
  font-size: 20px;
  line-height: 3.5;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: white;
  padding-top: 100px;
}
@media (max-width: 810px) {
  .philoTop .philoTop-message {
    font-size: 18px;
    line-height: 2.8;
    padding-top: 80px;
  }
}
@media (max-width: 810px) and (max-width: 670px) {
  .philoTop .philoTop-message {
    width: 90%;
    margin: 0 auto;
    text-align: left;
  }
  .philoTop .philoTop-message br {
    display: none;
  }
}
.philoTop .philoTop-line {
  border-top: 6px solid #e3efc6;
  width: 100%;
  position: absolute;
  bottom: 95px;
  z-index: 20;
}
@media (max-width: 810px) {
  .philoTop .philoTop-line {
    bottom: 90px;
  }
}
.philoTop .philoTop-staff {
  position: relative;
  z-index: 10;
  margin-left: 60px;
}

/* メイントップセクション */
.mainTop {
  position: relative;
  height: 728px;
  z-index: 10;
  width: 100%;
  /* 上部の緑色のライン */
  /* キャッチコピー */
  /* スタッフ画像 */
  /* 背景画像 */
}
.mainTop .mainTop-line {
  border-top: 6px solid #e3efc6;
  width: 100%;
  position: absolute;
  top: 133px;
  z-index: 101;
  /* 初期非表示（アニメ開始までラインを隠す） */
  transform-origin: left center;
  transform: scaleX(0);
}
.mainTop .mainTop-tit {
  position: absolute;
  top: 460px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 105;
  width: 586px;
}
@media (max-width: 620px) {
  .mainTop .mainTop-tit {
    width: 80vw;
    top: 480px;
  }
}
@media (max-width: 620px) and (max-width: 480px) {
  .mainTop .mainTop-tit {
    width: 90vw;
    top: 500px;
  }
}
.mainTop .mainTop-tit img {
  width: 100%;
  /* 初期非表示（左→右のマスクと同じ状態） */
  clip-path: inset(0 100% 0 0);
}
.mainTop .imgSlide {
  margin-top: 20px;
  width: 100%;
  /* 初期非表示（フェードインまで隠す） */
  opacity: 0;
}
.mainTop .imgSlide .loop_wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: auto;
  overflow: hidden;
  gap: 40px;
}
.mainTop .imgSlide .loop_wrap > * {
  height: auto;
  flex: 0 0 auto;
}
.mainTop .imgSlide .loop_wrap img {
  width: auto;
  height: 200px;
}
.mainTop .mainTop-staff {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  /* 初期非表示（フェードインまで隠す） */
  opacity: 0;
}
.mainTop .mainTop-bg {
  width: 100%;
  height: 728px;
}
.mainTop .mainTop-bg img {
  width: 100%;
  height: 728px;
}

.gurten h2 {
  position: relative;
  padding-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  font-size: 32px;
  letter-spacing: 2;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 120px;
  scroll-margin-top: 120px;
}
@media (max-width: 1024px) {
  .gurten h2 {
    padding-top: 45px;
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: 28px;
    letter-spacing: 2;
  }
  .gurten h2 br {
    display: none;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .gurten h2 {
    padding-top: 37px;
    margin-bottom: 35px;
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
.gurten h2::after {
  content: "";
  top: 0px;
  position: absolute;
  display: block;
  width: calc(100% - 0px);
  border-top: 1px solid #ccc;
  z-index: 1;
  right: 0;
}
.gurten h2::before {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: 20px;
  border-top: 3px solid #08C8A6;
  z-index: 2;
}
.gurten h2 sub {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #1bc0a4;
  letter-spacing: 0px;
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .gurten h2 sub {
    font-size: 10px;
  }
}
.gurten h2 sup {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #1bc0a4;
  letter-spacing: 0px;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  top: 0;
}
@media (max-width: 480px) {
  .gurten h2 sup {
    font-size: 10px;
  }
}

._h2 {
  position: relative;
  padding-top: 48px;
  margin-bottom: 48px;
  width: 100%;
  font-size: 32px;
  letter-spacing: 2;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 120px;
  scroll-margin-top: 120px;
}
@media (max-width: 1024px) {
  ._h2 {
    padding-top: 45px;
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: 28px;
    letter-spacing: 2;
  }
  ._h2 br {
    display: none;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  ._h2 {
    padding-top: 37px;
    margin-bottom: 35px;
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
._h2::after {
  content: "";
  top: 0px;
  position: absolute;
  display: block;
  width: calc(100% - 0px);
  border-top: 1px solid #ccc;
  z-index: 1;
  right: 0;
}
._h2::before {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: 20px;
  border-top: 3px solid #08C8A6;
  z-index: 2;
}
._h2 sub {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #1bc0a4;
  letter-spacing: 0px;
  display: block;
  font-weight: bold;
  margin-top: 10px;
}
@media (max-width: 480px) {
  ._h2 sub {
    font-size: 10px;
  }
}
._h2 sup {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #1bc0a4;
  letter-spacing: 0px;
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  top: 0;
}
@media (max-width: 480px) {
  ._h2 sup {
    font-size: 10px;
  }
}

.gurten h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 100;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 5px 0px 6px 18px;
  position: relative;
  scroll-margin-top: 120px;
  border-left: 2px solid #00816b;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 1024px) and (max-width: 810px) {
  .gurten h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 5px 0px 5px 12px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  .gurten h3 {
    font-size: 20px;
    margin-top: 30px;
    padding: 5px 0px 5px 12px;
  }
}
.gurten h3 span {
  display: inline;
}
.gurten h3._simple {
  margin-top: 15px;
  border-left: none;
  padding: 0;
  margin-bottom: 15px;
}

._h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 100;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 5px 0px 6px 18px;
  position: relative;
  scroll-margin-top: 120px;
  border-left: 2px solid #00816b;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 1024px) and (max-width: 810px) {
  ._h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 5px 0px 5px 12px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 480px) {
  ._h3 {
    font-size: 20px;
    margin-top: 30px;
    padding: 5px 0px 5px 12px;
  }
}
._h3 span {
  display: inline;
}
._h3._simple {
  margin-top: 15px;
  border-left: none;
  padding: 0;
  margin-bottom: 15px;
}

.gurten h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

._h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.gurten h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 5px 0px 6px 18px;
}

._h5 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 5px 0px 6px 18px;
}

.gurten h6 {
  font-size: 16px;
}

._h6 {
  font-size: 16px;
}

.gurten p {
  font-size: 16px;
  line-height: 2;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .gurten p {
    font-size: 16px;
    line-height: 2;
    margin-top: 28px;
  }
}

.gurten ul {
  margin-top: 28px;
}
.gurten ul:first-child {
  margin-top: 0;
}
.gurten ul li {
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
  margin-left: 1.3em;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .gurten ul li {
    margin-top: 5px;
  }
}
.gurten ul li:first-child {
  margin-top: 0;
}
.gurten ul li::before {
  position: relative;
  top: 14px;
  left: -12px;
  display: block;
  width: 3px;
  height: 3px;
  content: "";
  border-radius: 100%;
  background: black;
  flex-shrink: 0;
}
.gurten ul li ul,
.gurten ul li ol {
  margin-top: 10px !important;
}
.gurten ul._kome li::before {
  position: relative;
  top: 0px;
  left: -25px;
  display: inline-block;
  width: 0px;
  height: auto;
  content: "※";
  border-radius: none;
  background: initial;
}
.gurten ol {
  margin-top: 28px;
  list-style-type: decimal;
}
.gurten ol li {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 1px;
  margin-left: 1.4em;
  margin-top: 10px;
}
@media (max-width: 480px) {
  .gurten ol li {
    margin-left: 1.7em;
  }
}
.gurten ol li:first-child {
  margin-top: 0;
}
.gurten ol li ul,
.gurten ol li ol {
  margin-top: 10px !important;
}

.gurten p a {
  color: #00816b;
  background: linear-gradient(currentColor, currentColor) left bottom/100% 1px no-repeat;
  transition: background-size 0.4s;
  display: inline;
}
@media (hover: hover) and (pointer: fine) {
  .gurten p a:hover {
    background-position: right bottom;
    background-size: 0 1px;
    opacity: 0.8;
  }
}

.gurten hr {
  border-top: 1px solid #ccc;
  margin-top: 32px;
}

.gurten .wp-block-columns {
  margin-top: 32px;
}
.gurten .wp-block-columns.__align-center {
  align-items: center !important;
}
@media (max-width: 810px) {
  .gurten .wp-block-columns {
    display: block;
    margin-top: 20px;
  }
  .gurten .wp-block-columns.is-not-stacked-on-mobile {
    display: flex;
    flex-wrap: wrap;
  }
}
.gurten .wp-block-columns > .wp-block-column:nth-of-type(1) > :first-child {
  margin-top: 0;
}
.gurten .wp-block-columns > .wp-block-column:nth-of-type(2) > :first-child {
  margin-top: 0;
}
@media (max-width: 810px) {
  .gurten .wp-block-columns > .wp-block-column:nth-of-type(2) {
    margin-top: 15px;
  }
}
.gurten .wp-block-columns > .wp-block-column:nth-of-type(3) > :first-child {
  margin-top: 0;
}
@media (max-width: 810px) {
  .gurten .wp-block-columns > .wp-block-column:nth-of-type(3) {
    margin-top: 20px;
  }
}
.gurten .wp-block-columns .wp-element-caption {
  text-align: center;
}
@media (max-width: 810px) {
  .gurten :where(.wp-block-columns.is-layout-flex) {
    gap: 0em;
  }
  .gurten .__reverse {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
  .gurten .__reverse > .wp-block-column:nth-of-type(1) > :first-child {
    margin-top: 30px;
  }
  .gurten .__reverse > .wp-block-column:nth-of-type(2) {
    margin-top: 0px;
  }
}
.gurten .__gap {
  gap: 20px !important;
}
.gurten .__gap .wp-block-columns {
  gap: 20px !important;
}

.gurten figure {
  margin-top: 32px;
}
.gurten figure figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}

.gurten .wp-block-quote {
  position: relative;
  margin-top: 32px;
  padding: 30px;
  background-color: #f8f9fa;
  border-left: 1px solid #22787b;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.gurten .wp-block-quote p {
  margin: 0 0 10px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.gurten .wp-block-quote cite {
  display: block;
  font-size: 14px;
  color: #666;
  font-style: normal;
  text-align: right;
}
.gurten .wp-block-quote cite::before {
  content: "— ";
}
.gurten .wp-block-quote::before {
  content: "“";
  position: absolute;
  opacity: 0.8;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: #22787b;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}

.wp-block-pullquote {
  position: relative;
  margin: 3rem 0;
  padding: 40px;
  background-color: #f8f9fa;
  border: 1px solid #22787b;
  border-radius: 12px;
  text-align: center;
}
.wp-block-pullquote blockquote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.wp-block-pullquote blockquote p {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
.wp-block-pullquote blockquote cite {
  display: block;
  font-size: 14px;
  color: #666;
  font-style: normal;
  text-align: center;
}
.wp-block-pullquote blockquote cite::before {
  content: "— ";
}
.wp-block-pullquote::before, .wp-block-pullquote::after {
  content: "“";
  position: absolute;
  font-size: 3rem;
  color: #22787b;
  opacity: 0.3;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
.wp-block-pullquote::before {
  top: 15px;
  left: 15px;
}
.wp-block-pullquote::after {
  bottom: 15px;
  right: 15px;
  transform: rotate(180deg);
}

.gurten .wp-block-code {
  position: relative;
  margin: 2rem 0;
  padding: 20px;
  background-color: #2d3748;
  border-radius: 8px;
  overflow-x: auto;
  color: white;
}
.gurten .wp-block-code pre {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
  white-space: pre;
  word-wrap: normal;
}
.gurten .wp-block-code pre code {
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: white;
  white-space: inherit;
  word-wrap: inherit;
}
.gurten .wp-block-code .token.comment {
  color: #68d391;
}
.gurten .wp-block-code .token.keyword {
  color: #f6ad55;
}
.gurten .wp-block-code .token.string {
  color: #68d391;
}
.gurten .wp-block-code .token.function {
  color: #63b3ed;
}
.gurten .wp-block-code .token.number {
  color: #f687b3;
}
.gurten .wp-block-code .token.property {
  color: #9f7aea;
}
.gurten .wp-block-code::after {
  content: "Copy";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background-color: #4a5568;
  color: #e2e8f0;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gurten .wp-block-code:hover::after {
  opacity: 1;
}
.gurten code:not(.wp-block-code code) {
  padding: 2px 6px;
  background-color: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  color: #2d3748;
}
.gurten .wp-block-preformatted {
  white-space: pre-wrap; /* 改行と空白を保持 */
  overflow-wrap: break-word; /* 長い単語は折り返す */
  font-family: var(--wp--preset--font-family--monospace, monospace);
  font-size: var(--wp--preset--font-size--medium, 1em);
  line-height: inherit;
}

.gurten .wp-block-table {
  margin-top: 32px;
}
@media (max-width: 810px) {
  .gurten .wp-block-table {
    margin-top: 20px;
  }
}
.gurten .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.gurten .wp-block-table table thead {
  border-bottom: none;
  background-color: #f8f9fa;
}
.gurten .wp-block-table table th,
.gurten .wp-block-table table td {
  background-color: transparent;
  padding: 15px 10px !important;
  border: 1px solid #ccc !important;
  line-height: 1.4;
  font-size: 16px;
}
@media (max-width: 810px) {
  .gurten .wp-block-table table th,
  .gurten .wp-block-table table td {
    padding: 5px 5px;
    font-size: 14px;
  }
}
.gurten .wp-block-table._2colum tr td:first-child {
  margin-top: 0;
  font-weight: bold;
  background-color: #f8f9fa;
  width: 20%;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .gurten .wp-block-table._2colum tr td:first-child {
    width: 30%;
  }
}
.gurten .wp-block-flexible-table-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.gurten .wp-block-flexible-table-block-table table thead {
  border-bottom: none;
  background-color: #f8f9fa;
}
.gurten .wp-block-flexible-table-block-table table th,
.gurten .wp-block-flexible-table-block-table table td {
  background-color: transparent;
  padding: 15px 10px !important;
  border: 1px solid #ccc !important;
  line-height: 1.4;
  font-size: 16px;
}
@media (max-width: 810px) {
  .gurten .wp-block-flexible-table-block-table table th,
  .gurten .wp-block-flexible-table-block-table table td {
    padding: 5px 5px;
    font-size: 14px;
  }
  .gurten .is-scroll-on-mobile {
    width: 95vw;
  }
}

.gurten .wp-block-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.gurten .wp-block-buttons .wp-block-button {
  margin-top: 32px;
}
.gurten .wp-block-buttons .wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: white;
  border-radius: 3px;
  font-size: 16px;
  font-weight: normal;
  font-family: "Zen Old Mincho", serif;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background-color: #22787B !important;
  background-image: none !important;
  border: 1px solid #22787B !important;
  box-shadow: none !important;
  min-width: 200px;
  transition: all 0.3s ease;
}
.gurten .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background-color: white !important;
  background-image: none !important;
  color: #22787B !important;
  border: 1px solid #22787B !important;
}
.gurten .wp-block-buttons .wp-block-button .wp-block-button__link:hover::after {
  background-color: #22787B !important;
}
.gurten .wp-block-buttons .wp-block-button .wp-block-button__link:active {
  transform: translateY(0);
}
.gurten .wp-block-buttons .wp-block-button .wp-block-button__link::after {
  content: "";
  width: 32px;
  height: 32px;
  background-color: #659395;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url("/wp-content/themes/oct/images/corp/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-left: 80px;
}

.gurten .wp-block-group {
  margin-top: 32px;
}

._bg-box-stone {
  margin-top: 24px !important;
  padding: 24px !important;
  background-color: #f1f1ec;
}
@media (max-width: 480px) {
  ._bg-box-stone {
    margin-top: 15px !important;
    padding: 15px !important;
  }
}

.tableList {
  border-top: 1px solid #c0c0c0;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 810px) {
  .tableList {
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 0;
  }
}
.tableList .tableList-left p {
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .tableList .tableList-left p {
    margin-bottom: 5px;
  }
}
.tableList .tableList-left > :first-child {
  margin-top: 0;
}
@media (max-width: 810px) {
  .tableList .tableList-right {
    margin-top: 0px !important;
  }
}
.tableList .tableList-right p {
  margin-bottom: 0;
}
@media (max-width: 810px) {
  .tableList .tableList-right p {
    line-height: 1.7;
    margin-top: 5px;
  }
}
.tableList .tableList-right > :first-child {
  margin-top: 0;
}
.tableList._lastChild {
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 40px;
}

.__sp {
  display: none;
}
@media (max-width: 480px) {
  .__sp {
    display: block;
  }
}

.__pc {
  display: block;
}
@media (max-width: 480px) {
  .__pc {
    display: none;
  }
}

@media (max-width: 1024px) {
  .__tb-none {
    display: none !important;
  }
}

.__tbs-none {
  display: block;
}
@media (max-width: 810px) {
  .__tbs-none {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .__tb-br-none br {
    display: none;
  }
}

@media (max-width: 810px) {
  .__tbs-br-none br {
    display: none;
  }
}

@media (max-width: 480px) {
  .__sp-br-none br {
    display: none;
  }
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

body {
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  }
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1050px){
  .container{
    max-width: 1050px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.underline-link {
    display: inline;
    padding: 0;
    background: linear-gradient(to right, #22787b 50%, transparent 50%);
    background-size: 200% 1px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    transition: background-position 0.5s ease;
  }
.group:hover .underline-link {
    background-position: 0% 100%;
    color: #22787b;
  }
.container-main{
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1536px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.pointer-events-none{
  pointer-events: none;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  inset: 0px;
}
.-right-\[30px\]{
  right: -30px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-\[30px\]{
  bottom: 30px;
}
.bottom-\[35px\]{
  bottom: 35px;
}
.bottom-\[80px\]{
  bottom: 80px;
}
.left-0{
  left: 0px;
}
.left-8{
  left: 2rem;
}
.left-\[26px\]{
  left: 26px;
}
.left-\[5\%\]{
  left: 5%;
}
.right-0{
  right: 0px;
}
.right-4{
  right: 1rem;
}
.right-\[2\.5\%\]{
  right: 2.5%;
}
.right-\[20px\]{
  right: 20px;
}
.right-\[26px\]{
  right: 26px;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 0.5rem;
}
.top-4{
  top: 1rem;
}
.top-6{
  top: 1.5rem;
}
.top-\[64px\]{
  top: 64px;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.\!ml-0{
  margin-left: 0px !important;
}
.\!mt-0{
  margin-top: 0px !important;
}
.-mr-4{
  margin-right: -1rem;
}
.-mt-\[0\.5em\]{
  margin-top: -0.5em;
}
.-mt-\[15px\]{
  margin-top: -15px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[-40px\]{
  margin-bottom: -40px;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-\[10px\]{
  margin-left: 10px;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-4{
  margin-right: 1rem;
}
.mt-0{
  margin-top: 0px;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-32{
  margin-top: 8rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[-60px\]{
  margin-top: -60px;
}
.mt-\[0\.6em\]{
  margin-top: 0.6em;
}
.mt-\[10px\]{
  margin-top: 10px;
}
.mt-\[2px\]{
  margin-top: 2px;
}
.mt-\[4px\]{
  margin-top: 4px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.aspect-\[1\/1\.5\]{
  aspect-ratio: 1/1.5;
}
.aspect-\[12\/6\.3\]{
  aspect-ratio: 12/6.3;
}
.h-1\.5{
  height: 0.375rem;
}
.h-12{
  height: 3rem;
}
.h-14{
  height: 3.5rem;
}
.h-3{
  height: 0.75rem;
}
.h-4{
  height: 1rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-8{
  height: 2rem;
}
.h-\[170px\]{
  height: 170px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[300px\]{
  height: 300px;
}
.h-\[44px\]{
  height: 44px;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[8px\]{
  height: 8px;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.max-h-\[960px\]{
  max-height: 960px;
}
.w-1\.5{
  width: 0.375rem;
}
.w-12{
  width: 3rem;
}
.w-3{
  width: 0.75rem;
}
.w-4{
  width: 1rem;
}
.w-40{
  width: 10rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-8{
  width: 2rem;
}
.w-\[100\%\]{
  width: 100%;
}
.w-\[120px\]{
  width: 120px;
}
.w-\[12px\]{
  width: 12px;
}
.w-\[180px\]{
  width: 180px;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[40vw\]{
  width: 40vw;
}
.w-\[44px\]{
  width: 44px;
}
.w-\[50\%\]{
  width: 50%;
}
.w-\[70\%\]{
  width: 70%;
}
.w-\[80\%\]{
  width: 80%;
}
.w-\[90\%\]{
  width: 90%;
}
.w-auto{
  width: auto;
}
.w-full{
  width: 100%;
}
.min-w-0{
  min-width: 0px;
}
.min-w-max{
  min-width: -moz-max-content;
  min-width: max-content;
}
.max-w-\[1536px\]{
  max-width: 1536px;
}
.max-w-\[630px\]{
  max-width: 630px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-none{
  max-width: none;
}
.max-w-screen-2xl{
  max-width: 1536px;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.border-collapse{
  border-collapse: collapse;
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-5{
  --tw-translate-y: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-45{
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-\[1fr_3fr\]{
  grid-template-columns: 1fr 3fr;
}
.grid-cols-\[2fr_3fr\]{
  grid-template-columns: 2fr 3fr;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[2px\]{
  gap: 2px;
}
.gap-\[40px\]{
  gap: 40px;
}
.gap-\[8px\]{
  gap: 8px;
}
.gap-\[clamp\(30px\2c 2vw\2c 40px\)\]{
  gap: clamp(30px,2vw,40px);
}
.gap-\[clamp\(40px\2c 3vw\2c 94px\)\]{
  gap: clamp(40px,3vw,94px);
}
.gap-x-10{
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
.gap-x-8{
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.gap-y-4{
  row-gap: 1rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-hidden{
  overflow-y: hidden;
}
.break-words{
  overflow-wrap: break-word;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-\[4px\]{
  border-width: 4px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-\[1px\]{
  border-bottom-width: 1px;
}
.border-r{
  border-right-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-\[\#00816B\]{
  --tw-border-opacity: 1;
  border-color: rgb(0 129 107 / var(--tw-border-opacity, 1));
}
.border-\[\#CACACA\]{
  --tw-border-opacity: 1;
  border-color: rgb(202 202 202 / var(--tw-border-opacity, 1));
}
.border-\[\#E3EFC6\]{
  --tw-border-opacity: 1;
  border-color: rgb(227 239 198 / var(--tw-border-opacity, 1));
}
.border-\[\#d6d6d6\]{
  --tw-border-opacity: 1;
  border-color: rgb(214 214 214 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity, 1));
}
.border-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/20{
  border-color: rgb(255 255 255 / 0.2);
}
.border-opacity-30{
  --tw-border-opacity: 0.3;
}
.bg-\[\#00816B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 129 107 / var(--tw-bg-opacity, 1));
}
.bg-\[\#22787B\]{
  --tw-bg-opacity: 1;
  background-color: rgb(34 120 123 / var(--tw-bg-opacity, 1));
}
.bg-\[\#2D836F\]{
  --tw-bg-opacity: 1;
  background-color: rgb(45 131 111 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F6F5F2\]{
  --tw-bg-opacity: 1;
  background-color: rgb(246 245 242 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F7F4EC\]{
  --tw-bg-opacity: 1;
  background-color: rgb(247 244 236 / var(--tw-bg-opacity, 1));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-red-400{
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-stone-200{
  --tw-bg-opacity: 1;
  background-color: rgb(231 229 228 / var(--tw-bg-opacity, 1));
}
.bg-teal-500{
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-opacity-40{
  --tw-bg-opacity: 0.4;
}
.bg-\[linear-gradient\(currentColor\2c currentColor\)\]{
  background-image: linear-gradient(currentColor,currentColor);
}
.bg-\[url\(\'\/wp-content\/themes\/oct\/images\/corp\/common\/footer-back\.jpg\'\)\]{
  background-image: url('/wp-content/themes/oct/images/corp/common/footer-back.jpg');
}
.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-\[\#00816B\]{
  --tw-gradient-from: #00816B var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 129 107 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#08C8A6\]{
  --tw-gradient-from: #08C8A6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 200 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#80C4B4\]{
  --tw-gradient-from: #80C4B4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(128 196 180 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#00816B\]{
  --tw-gradient-to: #00816B var(--tw-gradient-to-position);
}
.to-\[\#05B394\]{
  --tw-gradient-to: #05B394 var(--tw-gradient-to-position);
}
.to-\[\#22787B\]{
  --tw-gradient-to: #22787B var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-clip-text{
  -webkit-background-clip: text;
          background-clip: text;
}
.bg-center{
  background-position: center;
}
.bg-right-bottom{
  background-position: right bottom;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.p-10{
  padding: 2.5rem;
}
.p-4{
  padding: 1rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-0{
  padding-left: 0px;
  padding-right: 0px;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-\[5\%\]{
  padding-left: 5%;
  padding-right: 5%;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-14{
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pb-20{
  padding-bottom: 5rem;
}
.pb-24{
  padding-bottom: 6rem;
}
.pb-40{
  padding-bottom: 10rem;
}
.pb-8{
  padding-bottom: 2rem;
}
.pb-\[0\.2em\]{
  padding-bottom: 0.2em;
}
.pl-4{
  padding-left: 1rem;
}
.pr-4{
  padding-right: 1rem;
}
.pt-0{
  padding-top: 0px;
}
.pt-12{
  padding-top: 3rem;
}
.pt-16{
  padding-top: 4rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[14px\]{
  font-size: 14px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[32px\]{
  font-size: 32px;
}
.text-\[36px\]{
  font-size: 36px;
}
.text-\[48px\]{
  font-size: 48px;
}
.text-\[clamp\(40px\2c 7vw\2c 64px\)\]{
  font-size: clamp(40px,7vw,64px);
}
.text-\[clamp\(40px\2c 7vw\2c 96px\)\]{
  font-size: clamp(40px,7vw,96px);
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.\!font-normal{
  font-weight: 400 !important;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-normal{
  font-weight: 400;
}
.font-thin{
  font-weight: 100;
}
.italic{
  font-style: italic;
}
.leading-\[1\.07\]{
  line-height: 1.07;
}
.leading-\[1\.5\]{
  line-height: 1.5;
}
.leading-\[180\%\]{
  line-height: 180%;
}
.leading-\[2\.5\]{
  line-height: 2.5;
}
.leading-\[2\]{
  line-height: 2;
}
.leading-loose{
  line-height: 2;
}
.leading-none{
  line-height: 1;
}
.leading-normal{
  line-height: 1.5;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-\[7px\]{
  letter-spacing: 7px;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.text-\[\#00816B\]{
  --tw-text-opacity: 1;
  color: rgb(0 129 107 / var(--tw-text-opacity, 1));
}
.text-\[\#1bc0a4\]{
  --tw-text-opacity: 1;
  color: rgb(27 192 164 / var(--tw-text-opacity, 1));
}
.text-\[\#22787B\]{
  --tw-text-opacity: 1;
  color: rgb(34 120 123 / var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-transparent{
  color: transparent;
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-50{
  opacity: 0.5;
}
.opacity-80{
  opacity: 0.8;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[background-size\2c color\2c opacity\]{
  transition-property: background-size,color,opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.duration-500{
  transition-duration: 500ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.wrap-\[1080px\]{
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[1280px\]{
  max-width: 1280px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[1536px\]{
  max-width: 1536px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[780px\]{
  max-width: 780px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[800px\]{
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.wrap-\[980px\]{
  max-width: 980px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.font-en {
    font-family: "Montserrat Alternates", sans-serif;
  }
.font-jp {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
/* =============================
     縦書きユーティリティクラス
     ============================= */
/* 縦書き（右から左）+ 文字向き自動調整 */
.writing-vertical-rl {
    writing-mode: vertical-rl; /* 縦書き、右から左に列が流れる */
    text-orientation: mixed; /* 日本語は正立、英数字は横向き */
  }
/* 縦書き（左から右）+ 文字向き自動調整 */
.writing-vertical-lr {
    writing-mode: vertical-lr; /* 縦書き、左から右に列が流れる */
    text-orientation: mixed; /* 日本語は正立、英数字は横向き */
  }
/* 文字を正立表示（すべて縦向き） */
.text-orientation-upright {
    text-orientation: upright; /* すべての文字を縦向きに表示 */
  }
/* 文字を横向き表示（すべて横向き） */
.text-orientation-sideways {
    text-orientation: sideways; /* すべての文字を横向きに表示 */
  }
.text-primary {
    color: #006835;
  }
.bg-primary {
    background-color: #006835;
  }
.border-primary {
    border-color: #006835;
  }
.\[background-size\:0_1px\]{
  background-size: 0 1px;
}
.\[writing-mode\:vertical-rl\]{
  writing-mode: vertical-rl;
}
.before\:\!hidden::before{
  content: var(--tw-content);
  display: none !important;
}
.after\:-mt-\[5px\]::after{
  content: var(--tw-content);
  margin-top: -5px;
}
.after\:block::after{
  content: var(--tw-content);
  display: block;
}
.after\:h-\[1px\]::after{
  content: var(--tw-content);
  height: 1px;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:bg-white::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.after\:opacity-80::after{
  content: var(--tw-content);
  opacity: 0.8;
}
.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}
.last\:border-b-0:last-child{
  border-bottom-width: 0px;
}
.hover\:border-\[\#22787B\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(34 120 123 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#006B5A\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(0 107 90 / var(--tw-bg-opacity, 1));
}
.hover\:bg-\[\#22787B\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(34 120 123 / var(--tw-bg-opacity, 1));
}
.hover\:bg-teal-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(45 212 191 / var(--tw-bg-opacity, 1));
}
.hover\:text-green-200:hover{
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.hover\:opacity-50:hover{
  opacity: 0.5;
}
.hover\:opacity-60:hover{
  opacity: 0.6;
}
.hover\:opacity-80:hover{
  opacity: 0.8;
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.group:hover .group-hover\:block{
  display: block;
}
.group:hover .group-hover\:hidden{
  display: none;
}
.group:hover .group-hover\:scale-110{
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:bg-\[\#006855\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 104 85 / var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-left-bottom{
  background-position: left bottom;
}
.group:hover .group-hover\:text-\[\#22787B\]{
  --tw-text-opacity: 1;
  color: rgb(34 120 123 / var(--tw-text-opacity, 1));
}
.group:hover .group-hover\:\[background-size\:100\%_1px\]{
  background-size: 100% 1px;
}
@media (min-width: 640px){
  .sm\:bottom-\[53px\]{
    bottom: 53px;
  }
  .sm\:bottom-\[57px\]{
    bottom: 57px;
  }
  .sm\:bottom-\[70px\]{
    bottom: 70px;
  }
  .sm\:-mt-1{
    margin-top: -0.25rem;
  }
  .sm\:mb-32{
    margin-bottom: 8rem;
  }
  .sm\:mb-48{
    margin-bottom: 12rem;
  }
  .sm\:mt-10{
    margin-top: 2.5rem;
  }
  .sm\:mt-20{
    margin-top: 5rem;
  }
  .sm\:mt-\[5px\]{
    margin-top: 5px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:aspect-\[1\/1\]{
    aspect-ratio: 1/1;
  }
  .sm\:aspect-\[1920\/456\]{
    aspect-ratio: 1920/456;
  }
  .sm\:h-\[460px\]{
    height: 460px;
  }
  .sm\:h-\[auto\]{
    height: auto;
  }
  .sm\:w-\[150px\]{
    width: 150px;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:gap-y-5{
    row-gap: 1.25rem;
  }
  .sm\:border-\[6px\]{
    border-width: 6px;
  }
  .sm\:border-b-0{
    border-bottom-width: 0px;
  }
  .sm\:border-l{
    border-left-width: 1px;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .sm\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .sm\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .sm\:pb-32{
    padding-bottom: 8rem;
  }
  .sm\:pt-16{
    padding-top: 4rem;
  }
  .sm\:pt-24{
    padding-top: 6rem;
  }
  .sm\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .sm\:text-\[16px\]{
    font-size: 16px;
  }
  .sm\:text-\[20px\]{
    font-size: 20px;
  }
  .sm\:text-\[32px\]{
    font-size: 32px;
  }
  .sm\:text-\[36px\]{
    font-size: 36px;
  }
  .sm\:text-\[48px\]{
    font-size: 48px;
  }
  .sm\:text-\[64px\]{
    font-size: 64px;
  }
  .sm\:after\:-mt-\[10px\]::after{
    content: var(--tw-content);
    margin-top: -10px;
  }
}
@media (min-width: 768px){
  .md\:left-16{
    left: 4rem;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:mb-12{
    margin-bottom: 3rem;
  }
  .md\:mb-16{
    margin-bottom: 4rem;
  }
  .md\:mb-20{
    margin-bottom: 5rem;
  }
  .md\:ml-14{
    margin-left: 3.5rem;
  }
  .md\:mr-0{
    margin-right: 0px;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-10{
    margin-top: 2.5rem;
  }
  .md\:mt-20{
    margin-top: 5rem;
  }
  .md\:mt-32{
    margin-top: 8rem;
  }
  .md\:mt-6{
    margin-top: 1.5rem;
  }
  .md\:mt-8{
    margin-top: 2rem;
  }
  .md\:mt-\[-80px\]{
    margin-top: -80px;
  }
  .md\:block{
    display: block;
  }
  .md\:inline{
    display: inline;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:aspect-\[1920\/960\]{
    aspect-ratio: 1920/960;
  }
  .md\:h-14{
    height: 3.5rem;
  }
  .md\:h-8{
    height: 2rem;
  }
  .md\:h-\[600px\]{
    height: 600px;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-8{
    width: 2rem;
  }
  .md\:w-\[30\%\]{
    width: 30%;
  }
  .md\:w-\[460px\]{
    width: 460px;
  }
  .md\:w-\[60\%\]{
    width: 60%;
  }
  .md\:w-\[70\%\]{
    width: 70%;
  }
  .md\:w-\[calc\(100\%-460px\)\]{
    width: calc(100% - 460px);
  }
  .md\:w-auto{
    width: auto;
  }
  .md\:w-full{
    width: 100%;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-start{
    justify-content: flex-start;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-4{
    gap: 1rem;
  }
  .md\:gap-y-8{
    row-gap: 2rem;
  }
  .md\:space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(3rem * var(--tw-space-x-reverse));
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .md\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .md\:py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .md\:pl-6{
    padding-left: 1.5rem;
  }
  .md\:pr-0{
    padding-right: 0px;
  }
  .md\:pt-0{
    padding-top: 0px;
  }
  .md\:pt-10{
    padding-top: 2.5rem;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-6xl{
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-\[48px\]{
    font-size: 48px;
  }
  .md\:text-base{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .md\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .md\:leading-\[2\.5\]{
    line-height: 2.5;
  }
  .md\:leading-normal{
    line-height: 1.5;
  }
  .md\:leading-relaxed{
    line-height: 1.625;
  }
}
@media (min-width: 1024px){
  .lg\:bottom-\[160px\]{
    bottom: 160px;
  }
  .lg\:bottom-\[50px\]{
    bottom: 50px;
  }
  .lg\:right-\[50px\]{
    right: 50px;
  }
  .lg\:top-\[94px\]{
    top: 94px;
  }
  .lg\:mb-32{
    margin-bottom: 8rem;
  }
  .lg\:mb-4{
    margin-bottom: 1rem;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:mt-10{
    margin-top: 2.5rem;
  }
  .lg\:mt-12{
    margin-top: 3rem;
  }
  .lg\:mt-20{
    margin-top: 5rem;
  }
  .lg\:mt-32{
    margin-top: 8rem;
  }
  .lg\:mt-8{
    margin-top: 2rem;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:inline-flex{
    display: inline-flex;
  }
  .lg\:grid{
    display: grid;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-\[310px\]{
    height: 310px;
  }
  .lg\:h-\[500px\]{
    height: 500px;
  }
  .lg\:h-\[840px\]{
    height: 840px;
  }
  .lg\:h-auto{
    height: auto;
  }
  .lg\:w-\[250px\]{
    width: 250px;
  }
  .lg\:w-\[40\%\]{
    width: 40%;
  }
  .lg\:w-\[60\%\]{
    width: 60%;
  }
  .lg\:w-auto{
    width: auto;
  }
  .lg\:flex-1{
    flex: 1 1 0%;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:gap-4{
    gap: 1rem;
  }
  .lg\:gap-y-14{
    row-gap: 3.5rem;
  }
  .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:p-8{
    padding: 2rem;
  }
  .lg\:px-16{
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:px-\[70px\]{
    padding-left: 70px;
    padding-right: 70px;
  }
  .lg\:py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:py-32{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .lg\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .lg\:py-48{
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .lg\:pb-4{
    padding-bottom: 1rem;
  }
  .lg\:pb-40{
    padding-bottom: 10rem;
  }
  .lg\:pb-48{
    padding-bottom: 12rem;
  }
  .lg\:pt-16{
    padding-top: 4rem;
  }
  .lg\:pt-\[14px\]{
    padding-top: 14px;
  }
  .lg\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .lg\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .lg\:text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .lg\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-\[16px\]{
    font-size: 16px;
  }
  .lg\:text-\[18px\]{
    font-size: 18px;
  }
  .lg\:text-\[32px\]{
    font-size: 32px;
  }
  .lg\:text-\[96px\]{
    font-size: 96px;
  }
  .lg\:text-\[clamp\(40px\2c 2\.5vw\2c 96px\)\]{
    font-size: clamp(40px,2.5vw,96px);
  }
  .lg\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .lg\:leading-\[250\%\]{
    line-height: 250%;
  }
  .lg\:leading-relaxed{
    line-height: 1.625;
  }
  .lg\:wrap-\[1000px\]{
    max-width: 1000px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .lg\:writing-vertical-rl {
    writing-mode: vertical-rl; /* 縦書き、右から左に列が流れる */
    text-orientation: mixed; /* 日本語は正立、英数字は横向き */
  }
  .lg\:after\:-mt-\[23px\]::after{
    content: var(--tw-content);
    margin-top: -23px;
  }
}
@media (min-width: 1050px){
  .w-1050\:mb-32{
    margin-bottom: 8rem;
  }
  .w-1050\:mt-0{
    margin-top: 0px;
  }
  .w-1050\:flex{
    display: flex;
  }
  .w-1050\:hidden{
    display: none;
  }
  .w-1050\:w-auto{
    width: auto;
  }
  .w-1050\:flex-row{
    flex-direction: row;
  }
  .w-1050\:flex-wrap{
    flex-wrap: wrap;
  }
  .w-1050\:items-center{
    align-items: center;
  }
}
@media (min-width: 1208px){
  .min-\[1208px\]\:text-\[20px\]{
    font-size: 20px;
  }
}
@media (min-width: 1536px){
  .\32xl\:block{
    display: block;
  }
  .\32xl\:py-40{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.\[\&\:first-child\]\:border-t:first-child{
  border-top-width: 1px;
}
@media (min-width: 640px){
  .\[\&\:first-child\]\:sm\:border-t-0:first-child{
    border-top-width: 0px;
  }
}
@media (min-width: 1024px){
  .\[\&\:last-child\:not\(\:nth-child\(3n\)\)\]\:lg\:border-r:last-child:not(:nth-child(3n)){
    border-right-width: 1px;
  }
}
@media (min-width: 640px){
  .\[\&\:nth-child\(2n\)\]\:sm\:border-r:nth-child(2n){
    border-right-width: 1px;
  }
}
@media (min-width: 1024px){
  .\[\&\:nth-child\(2n\)\]\:lg\:border-r-0:nth-child(2n){
    border-right-width: 0px;
  }
  .\[\&\:nth-child\(3n\)\]\:lg\:border-r:nth-child(3n){
    border-right-width: 1px;
  }
}
