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

html {
  overflow-x: hidden;
}
/***************************************


  ブレイクポイント mixin


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

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

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

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

****************************************/
.marquee {
  position: absolute;
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  z-index: 20;
  bottom: -110px;
}
@media (max-width: 640px) {
  .marquee {
    bottom: -90px;
  }
}
.marquee .marquee-text {
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 200px;
  font-weight: normal;
  color: white;
  font-family: "Sorts Mill Goudy", serif;
}
.marquee .marquee-text span {
  color: #005026;
  mix-blend-mode: hard-light;
}
@media (max-width: 1024px) {
  .marquee .marquee-text {
    font-size: 160px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) {
  .marquee .marquee-text {
    font-size: 140px;
  }
}
@media (max-width: 1024px) and (max-width: 810px) and (max-width: 640px) {
  .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;
}
.marquee .marquee-text._fistmargin {
  margin-left: 100px;
}
.marquee._footer {
  bottom: -75px;
}
@media (max-width: 1024px) {
  .marquee._footer {
    bottom: -35px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .marquee._footer {
    bottom: -20px;
  }
}
.marquee._footer .marquee-text {
  font-size: 220px;
}
@media (max-width: 1024px) {
  .marquee._footer .marquee-text {
    font-size: 98px;
  }
}
@media (max-width: 1024px) and (max-width: 640px) {
  .marquee._footer .marquee-text {
    font-size: 52px;
  }
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 5rem 0.75rem 0;
  color: white;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-mincho, serif);
  cursor: pointer;
}
@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 3.5rem 0.75rem 0;
  }
}
.btn::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: calc(100% - 5rem);
  height: 1px;
  background-color: white;
  transition: all 0.5s ease;
}
@media (max-width: 480px) {
  .btn::before {
    width: calc(100% - 3.5rem);
  }
}
.btn:hover::before {
  right: 5rem;
  left: auto;
  width: 0;
}
@media (max-width: 480px) {
  .btn:hover::before {
    right: 3.5rem;
  }
}
.btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-image: url("/wp-content/themes/oct/images/corp/common/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
@media (max-width: 480px) {
  .btn::after {
    width: 40px;
    height: 40px;
    background-size: 10px 10px;
  }
}
.btn._green {
  color: #006835;
}
.btn._green::before {
  background-color: #006835;
}
.btn._green::after {
  border: 1px solid rgba(0, 104, 53, 0.5);
  background-image: url("/wp-content/themes/oct/images/corp/common/arrow-right-green.svg");
}
.btn._1column {
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
}
@media (max-width: 480px) {
  .btn._1column {
    padding: 1rem 0;
  }
}
.btn._1column::after {
  position: static;
  transform: none;
  margin-bottom: 1rem;
  order: -1;
}
.btn._1column::before {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}
@media (max-width: 480px) {
  .btn._1column::before {
    bottom: 18px;
  }
}
.btn._1column:hover::before, .btn._1column.line-animating::before {
  right: 0;
  left: auto;
  width: 0;
}
.btn._1column svg {
  position: absolute !important;
  top: calc(1.5rem + 0px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  margin: 0 !important;
  order: -1;
}
@media (max-width: 480px) {
  .btn._1column svg {
    display: none;
  }
}

/**
 * メインスライドのスタイル（ネスト構成）
 */
.main-slide-section {
  position: relative;
  z-index: 10;
  color: white;
  aspect-ratio: 1920/1061;
}
@media (max-width: 640px) {
  .main-slide-section {
    width: 100%;
    aspect-ratio: inherit;
  }
}
.main-slide-section .main-slide-back {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.main-slide-section .main-slide-back img {
  clip-path: inset(0 100% 0 0);
}
.main-slide-section .main-slide-container,
.main-slide-section .main-slide-content,
.main-slide-section .marquee {
  opacity: 0;
  transform: translateY(24px);
}
.main-slide-section .main-slide-line {
  transform-origin: left center;
  transform: scaleX(0);
}
.main-slide-section .main-slide-line-right {
  transform-origin: right center;
  transform: scaleX(0);
}
.main-slide-section .main-slide-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
  transform-origin: center center;
}
@media (max-width: 640px) {
  .main-slide-section .main-slide-back img {
    -o-object-position: left;
       object-position: left;
  }
}
.main-slide-section .main-slide-container {
  position: absolute;
  top: auto;
  bottom: 60px;
  left: auto;
  transform: none;
  right: 10%;
  z-index: 20;
}
@media (max-width: 640px) {
  .main-slide-section .main-slide-container {
    position: relative;
    right: auto;
    bottom: auto;
    padding-top: 80px;
  }
}
.main-slide-section .main-slide-container .main-slide-wrapper {
  position: relative;
  width: 30vw;
  height: auto;
  overflow: hidden;
  z-index: 20;
}
@media (max-width: 640px) {
  .main-slide-section .main-slide-container .main-slide-wrapper {
    width: 85vw;
    margin: 0 auto;
  }
}
.main-slide-section .main-slide-container .main-slide-wrapper .main-slide-img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.main-slide-section .main-slide-container .main-slide-wrapper .main-slide-img.active {
  opacity: 1;
  position: relative;
}
.main-slide-section .main-slide-content {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 640px) {
  .main-slide-section .main-slide-content {
    padding-top: 20px;
  }
}
.main-slide-section .main-slide-text-wrapper {
  margin-bottom: 12vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper {
    text-align: left;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row {
    justify-content: flex-start;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-container {
  width: 7%;
  display: none;
  align-items: center;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-container {
    display: flex;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-container .main-slide-line {
  flex: 1;
  border-top: 1px solid white;
  opacity: 0.8;
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-right {
  flex: 1;
  border-top: 1px solid white;
  opacity: 0.8;
  margin-left: 1rem;
  display: none;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-right {
    display: block;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-spacer {
  width: 7%;
  display: none;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-line-spacer {
    display: block;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text {
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  margin-left: 0;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text {
    margin-left: 1rem;
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-1 {
  font-size: 5.5vw;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-1 {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-1 {
    font-size: clamp(35px, 3vw, 100px);
  }
}
.main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-2 {
  font-size: 5.5vw;
}
@media (min-width: 640px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-2 {
    font-size: 3vw;
  }
}
@media (min-width: 1024px) {
  .main-slide-section .main-slide-text-wrapper .main-slide-text-row .main-slide-text-2 {
    font-size: clamp(35px, 3vw, 100px);
  }
}

/* ====================================
   ナビゲーションリンクのスタイル
   ==================================== */
/* 通常のナビゲーションリンク（ヘッダーなど） */
.nav-link {
  position: relative;
  font-size: 1rem;
  color: #374151; /* グレー */
  transition: color 0.3s ease;
  font-family: "Zen Old Mincho", serif;
  /* ホバー時の色変更 */
  /* アンダーラインアニメーション */
  /* ホバー時のアンダーライン表示 */
  /* 現在のページ時のスタイル */
}
.nav-link:hover {
  color: #166534; /* ダークグリーン */
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: #166534; /* ダークグリーン */
  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: #166534; /* ダークグリーン */
  /* 現在のページの下線は常に表示 */
  /* 白ナビでの現在ページスタイル */
}
.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-color: #22787B !important;
  background-image: none !important;
  color: white !important;
  border: none !important;
  padding: 16px 24px !important;
  font-family: "Zen Old Mincho", 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;
  border: 1px solid #22787B !important;
}
.smf-action .smf-button-control .smf-button-control__control:hover {
  background-color: white !important;
  background-image: none !important;
  color: #22787B !important;
  border: 1px solid #22787B !important;
}
.smf-action .smf-button-control .smf-button-control__control:hover::after {
  background-color: #22787B !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: #659395 !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/corp/common/arrow-right.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;
}

.pageTitleImg {
  position: relative;
  overflow: hidden;
}
.pageTitleImg img {
  transform-origin: center center;
}

.gurten h2 {
  position: relative;
  padding-top: 48px;
  margin-bottom: 40px;
  width: 100%;
  font-size: 36px;
  letter-spacing: 2;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 120px;
  scroll-margin-top: 120px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 1024px) {
  .gurten h2 {
    padding-top: 45px;
    margin-bottom: 20px;
    margin-top: 60px;
    font-size: 28px;
    letter-spacing: 2;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .gurten h2 {
    padding-top: 37px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.gurten h2::after {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: calc(100% - 25px);
  border-top: 1px solid #ccc;
  z-index: 1;
  right: 0;
}
.gurten h2::before {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: 20px;
  border-top: 1px solid #00816b;
  z-index: 2;
}
.gurten h2 sup {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 14px;
  font-weight: 100;
  color: #00816b;
  letter-spacing: 0px;
  display: block;
}
@media (max-width: 480px) {
  .gurten h2 sup {
    font-size: 10px;
  }
}

._h2 {
  position: relative;
  padding-top: 48px;
  margin-bottom: 40px;
  width: 100%;
  font-size: 36px;
  letter-spacing: 2;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 120px;
  scroll-margin-top: 120px;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 1024px) {
  ._h2 {
    padding-top: 45px;
    margin-bottom: 20px;
    margin-top: 60px;
    font-size: 28px;
    letter-spacing: 2;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  ._h2 {
    padding-top: 37px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
._h2::after {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: calc(100% - 25px);
  border-top: 1px solid #ccc;
  z-index: 1;
  right: 0;
}
._h2::before {
  content: "";
  top: -1px;
  position: absolute;
  display: block;
  width: 20px;
  border-top: 1px solid #00816b;
  z-index: 2;
}
._h2 sup {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 14px;
  font-weight: 100;
  color: #00816b;
  letter-spacing: 0px;
  display: block;
}
@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: 32px;
  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: 38px;
    margin-bottom: 28px;
    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: 28px;
  border-left: none;
  padding: 0;
  margin-bottom: 28px;
}

._h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 100;
  margin-top: 48px;
  margin-bottom: 32px;
  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: 38px;
    margin-bottom: 28px;
    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: 28px;
  border-left: none;
  padding: 0;
  margin-bottom: 28px;
}

.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: 28px;
  }
  .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: 28px;
  }
}
.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;
}

*, ::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: "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-gothic {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  }
.font-mincho {
    font-family: "Zen Old Mincho", serif;
  }
.font-goudy {
    font-family: "Sorts Mill Goudy", serif;
  }
.font-outfit {
    font-family: "Outfit", 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;
  }
}
