/*
Theme Name: MKT Org Theme
Description: arkheテーマをベースにしたカスタムテーマ
Template: arkhe
Version: 1.0.0
*/

/*******************************************************
  初期化
********************************************************/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}
html,
body {
  overscroll-behavior: none;
}
a {
  text-decoration: none;
}
p,
li {
  font-weight: 500;
}

.l-content__body {
  padding: 0;
  margin: 0;
}

.inview-target {
  opacity: 0;
}

.auto-phrase {
  word-break: auto-phrase;
}

/*******************************************************
  変数定義
********************************************************/
:root {
  /* ブルー系 */
  --color-blue-50: #D0EDFF;
  --color-blue-100: #8BC7F8;
  --color-blue-200: #008CFF;
  --color-blue-300: #006FC9;
  --color-blue-400: #064FA5;
  --color-blue-500: #032563;

  /* スカイブルー系 */
  --color-sky-blue-50: #D0FFFF;
  --color-sky-blue-100: #8BF0F8;
  --color-sky-blue-200: #00FFFF;
  --color-sky-blue-300: #00BCC9;
  --color-sky-blue-400: #008E8F;
  --color-sky-blue-500: #035563;

  /* グリーン系 */
  --color-green-50: #D0FFD2;
  --color-green-100: #8BF88F;
  --color-green-200: #00FF37;
  --color-green-300: #00C917;
  --color-green-400: #009111;
  --color-green-500: #036315;
  
  /* モスグリーン系 */
  --color-moss-green-50: #D0FFDE;
  --color-moss-green-100: #AEF8A4;
  --color-moss-green-200: #5EB479;
  --color-moss-green-300: #3B7460;
  --color-moss-green-400: #315941;
  --color-moss-green-500: #1B3F2B;

  /* イエロー系 */
  --color-yellow-50: #FFF8D0;
  --color-yellow-100: #FFF0A0;
  --color-yellow-200: #FFE870;
  --color-yellow-300: #FFE040;
  --color-yellow-400: #FFD810;
  --color-yellow-500: #FFD000;

  /* グリーンイエロー系 */
  --color-green-yellow-50: #F4FFD0;
  --color-green-yellow-100: #DFF88B;
  --color-green-yellow-200: #C5FF00;
  --color-green-yellow-300: #9CC900;
  --color-green-yellow-400: #709100;
  --color-green-yellow-500: #4E6303;

  /* グレー系 */
  --color-slate: #F1F5F9;
  --color-gray: #626262;


  /* 廃棄色 */
  --color-blue: #1D50A2;
  --color-light-blue: #81D5F2;
  --color-yellow: #F5F300;
  --color-light-green: #CAF42A;
  --color-green: #33D85A;
  --color-moss-green: #008E8F;

  
  /* コンテンツサイズ */
  --content-max-width: 1500px;

  /* 平行四辺形 */
  --polygon-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  --polygon-clip-path-2: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

/*******************************************************
  FLEX / GRID
********************************************************/
.no-gap {
  gap: 0 !important;
}

/*******************************************************
  テクスチャ
********************************************************/
/* ドット */
.dots-texture {
  background: #ffffff70;
  background-image:
    radial-gradient(circle, white 1px, transparent 1px),
    radial-gradient(circle, white 1px, transparent 1px);
  background-size: 11px 11px;
  background-position: 0 0, 5px 5px;
}
.dots-texture.dark {
  background-color: #00000040;
  background-image:
    radial-gradient(circle, #ffffff80 1px, transparent 1px),
    radial-gradient(circle, #ffffff80 1px, transparent 1px);
}

/*******************************************************
  見出し
********************************************************/
/* セクションタイトル */
.section-title h2 {
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 4px;
  padding-left: 50px;
  display: inline-flex;
}
.section-title h2.marker {
  position: relative;
}
.section-title h2.marker:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 2.5em;
  height: 20px;
  background: #000;
  clip-path: var(--polygon-clip-path);
}

.section-title h2.marker .line {
  padding-left: 4px;
}

/* マーカーブルー系 */
.section-title h2.marker.blue-50::before {
  background: var(--color-blue-50);
}
.section-title h2.marker.blue-100::before {
  background: var(--color-blue-100);
}
.section-title h2.marker.blue-200::before {
  background: var(--color-blue-200);
}
.section-title h2.marker.blue-300::before {
  background: var(--color-blue-300);
}
.section-title h2.marker.blue-400::before { 
  background: var(--color-blue-400);
}
.section-title h2.marker.blue-500::before {
  background: var(--color-blue-500);
}

/* マーカースカイブルー系 */
.section-title h2.marker.sky-blue-50::before {
  background: var(--color-sky-blue-50);
}
.section-title h2.marker.sky-blue-100::before {
  background: var(--color-sky-blue-100);
}
.section-title h2.marker.sky-blue-200::before {
  background: var(--color-sky-blue-200);
}
.section-title h2.marker.sky-blue-300::before {
  background: var(--color-sky-blue-300);
}
.section-title h2.marker.sky-blue-400::before {
  background: var(--color-sky-blue-400);
}
.section-title h2.marker.sky-blue-500::before {
  background: var(--color-sky-blue-500);
}

/* マーカーグリーン系 */
.section-title h2.marker.green-50::before {
  background: var(--color-green-50);
}
.section-title h2.marker.green-100::before {
  background: var(--color-green-100);
}
.section-title h2.marker.green-200::before {
  background: var(--color-green-200);
}
.section-title h2.marker.green-300::before {
  background: var(--color-green-300);
}
.section-title h2.marker.green-400::before {
  background: var(--color-green-400);
}
.section-title h2.marker.green-500::before {
  background: var(--color-green-500);
}

/* マーカーモスグリーン系 */
.section-title h2.marker.moss-green-50::before {
  background: var(--color-moss-green-50);
}
.section-title h2.marker.moss-green-100::before {
  background: var(--color-moss-green-100);
}
.section-title h2.marker.moss-green-200::before {
  background: var(--color-moss-green-200);
}
.section-title h2.marker.moss-green-300::before {
  background: var(--color-moss-green-300);
}
.section-title h2.marker.moss-green-400::before { 
  background: var(--color-moss-green-400);
}
.section-title h2.marker.moss-green-500::before {
  background: var(--color-moss-green-500);
}

/* マーカーイエロー系 */
.section-title h2.marker.yellow-50::before {
  background: var(--color-yellow-50);
}
.section-title h2.marker.yellow-100::before {
  background: var(--color-yellow-100);
}
.section-title h2.marker.yellow-200::before { 
  background: var(--color-yellow-200);
}
.section-title h2.marker.yellow-300::before {
  background: var(--color-yellow-300);
}
.section-title h2.marker.yellow-400::before {
  background: var(--color-yellow-400);
}
.section-title h2.marker.yellow-500::before {
  background: var(--color-yellow-500);
}

/* マーカーグリーンイエロー系 */
.section-title h2.marker.green-yellow-50::before {
  background: var(--color-green-yellow-50);
}
.section-title h2.marker.green-yellow-100::before {
  background: var(--color-green-yellow-100);
}
.section-title h2.marker.green-yellow-200::before {
  background: var(--color-green-yellow-200);
}
.section-title h2.marker.green-yellow-300::before {
  background: var(--color-green-yellow-300);
}
.section-title h2.marker.green-yellow-400::before {
  background: var(--color-green-yellow-400);
}
.section-title h2.marker.green-yellow-500::before {
  background: var(--color-green-yellow-500);
}



/* 廃棄 */
.section-title h2.marker.blue:before {
  background: var(--color-blue);
}
.section-title h2.marker.yellow:before {
  background: var(--color-yellow);
}
.section-title h2.marker.light-blue:before {
  background: var(--color-light-blue);
}
.section-title h2.marker.green:before {
  background: var(--color-green);
}
.section-title h2.marker.light-green:before {
  background: var(--color-light-green);
}
.section-title h2.marker.moss-green:before {
  background: var(--color-moss-green);
}
/* 廃棄 */

.section-title .sub-title {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0 0;
  padding-left: 50px;
}



/* 行ごとのアニメーション */
.line-animation .line-wrapper {
  overflow: hidden;
  display: block;
  line-height: 1.2;
}
p.line-animation .line-wrapper {
  line-height: 1.7;
}

.line-animation .line {
  display: block;
  transform: translateY(100%);
}

/* 文字単位のアニメーション */
.char-animation {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin: 20px 0;
  color: #222;
}

.char-animation .line-wrapper {
  display: block;
  line-height: 1.2;
}

.char-animation .char-wrapper {
  display: inline-block;
  overflow: hidden;
}

.char-animation .char {
  display: inline-block;
  transform: translateY(100%);
  padding: 0 5px;
  text-indent: -2px;
}

.line-animation .line-wrapper:nth-child(n + 2),
.char-animation .line-wrapper:nth-child(n + 2) {
  margin-top: 10px;
}

#mainvisual .line-animation .line-wrapper:nth-child(n + 2),
#mainvisual .char-animation .line-wrapper:nth-child(n + 2) {
  margin-top: -30px;
}


/*******************************************************
  ボタン
********************************************************/
/* リンクボタン */
.link-button a {
  display: inline-flex;
  align-items: center;
  color: currentColor;
  font-weight: bold;
  gap: 15px;
}
.link-button a .link-text {
  flex: 1;
}

/* 矢印マークのアニメーション */
a .arrow-mark {
  position: relative;
  border-radius: 100px;
  border: 3px solid currentColor;
  display: inline-flex;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
a .arrow-mark:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transition: all 0.4s ease;
}
a .arrow-mark:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-150%, -50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  opacity: 0;
  transition: all 0.4s ease;
}
/* ホバー時のアニメーション（aタグホバーで実行） */
a:hover .arrow-mark:after {
  transform: translate(100%, -50%) rotate(45deg);
  opacity: 0;
}

a:hover .arrow-mark:before {
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}


/*******************************************************
  コンテンツ共通
********************************************************/
.max-contents {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.fluid-contents {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.contents-wrapper {
  margin-top: 50px !important;
  padding-left: 50px;
  padding-right: 50px;
}

/*******************************************************
  余白
********************************************************/
.no-m {
  margin: 0 !important;
}

.no-p {
  padding: 0 !important;
}

.cm-y-p {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

.cm-x-p {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

/*******************************************************
  ヘッダー
********************************************************/
#header {
  position: sticky;
  transition: .3s;
  top: 0;
  background: #fff;
  padding: 10px 0;
}

#header .l-header__body {
  padding-left: 50px;
  padding-right: 50px;
}
[data-btns=r-l] .l-header__body {
  grid-template-areas: "search left center right lang menu";
}
[data-btns=l-r][data-logo=left] .l-header__body,
[data-btns=r-l][data-logo=left] .l-header__body {
  grid-template-columns: min-content min-content 30% 1fr min-content;
}

#header .c-headLogo,
#header .l-header__right,
#header .c-langSwitch {
  transition: .3s;
}

#header .c-headLogo {
  position: relative;
  z-index: 9999;
}

.l-header__right {
  width: 100%;
  justify-content: flex-start;
  transition: .3s;
}

/* グローバルナビゲーション */
#gnav {
  background: #fff;
  border-radius: 100px;
  padding-left: 20px;
}
#gnav .c-gnav {
  gap: 20px;
}
#gnav .c-gnav > li.menu-item span {
  font-size: 14px;
  font-weight: bold;
}
#gnav .c-gnav > li.menu-item.contact {
  background: var(--color-blue);
  color: #fff;
  border-radius: 100px;
  cursor: pointer;
}

#gnav .c-gnav>li.menu-item.contact a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  width: 56px;
  transition: width 0.3s ease-out;
}

#gnav .c-gnav>li.menu-item.contact a:before {
  content: "";
  background-image: url(./src/images/icon/contact-icon.svg);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#gnav .c-gnav>li.menu-item.contact a .__mainText {
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  margin-left: 5px;
}

#gnav .c-gnav>li.menu-item.contact a:hover {
  width: 160px;
}

#gnav .c-gnav>li.menu-item.contact a:hover .__mainText {
  opacity: 1;
  transform: translateX(0);
}

/* 言語切り替えスイッチ */
#header .c-langSwitch {
  grid-area: lang;
}
#header .c-langSwitch .c-switch {
  display: flex;
  align-items: center;
  gap: 10px;

  /* 多言語対応できるまで非表示 */
  display: none !important;
}
#header .c-langSwitch .c-switch span.current-lang,
#header .c-langSwitch .c-switch a {
  position: relative;
  font-weight: 900;
  font-style: italic;
  font-size: 25px;
  line-height: 1em;
  color: #000;
  padding: 0 2px 0 5px;
  overflow: hidden;
  transition: color 0.3s ease;
}
#header .c-langSwitch .c-switch span.current-lang {
  cursor: pointer;
}
#header .c-langSwitch .c-switch span.current-lang:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 10px;
  background: var(--color-yellow);
  z-index: -1;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#header .c-langSwitch .c-switch a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--color-yellow);
  z-index: -1;
  transform: translateX(-102%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#header .c-langSwitch .c-switch:has(a:hover) .current-lang::before {
  transform: translateX(102%);
}

#header .c-langSwitch .c-switch:has(a:hover) a::before {
  transform: translateX(0);
}

#header .c-langSwitch .c-switch span.separator {
  width: 2px;
  height: 1.2em;
  background: #000;
  transform: rotate(15deg);
}

/*******************************************************
  フッター
********************************************************/
#footer .c-widget {
  margin: 0;
}

.l-footer__widgets,
.l-footer__widgets>.l-container {
  padding: 0;
}

.before-footer-contact .contents {
  margin-top: 30px;
}
.before-footer-contact .contents p {
  font-size: 20px;
  font-weight: 700;
}
.before-footer-contact .cta-buttons {
  margin-top: 50px;
}
.before-footer-contact .cta-buttons .wp-block-column {
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
}
.before-footer-contact .cta-buttons .wp-block-column .link-button {
  height: 100%;
}
.before-footer-contact .cta-buttons .wp-block-column .link-button a {
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  font-size: 18px;
  background: #00000060;
  transition: .3s;
}
.before-footer-contact .cta-buttons .wp-block-column .link-button a:before {
  content: "";
  display: block;
}
.before-footer-contact .cta-buttons .wp-block-column .link-button a:hover {
  background: #00000080;
}

#footer {
  background: var(--color-slate);
}
#footer .footer-main-contents {
  padding: 75px 50px 0px !important;
}
#footer .left-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#footer .footer-logo-image figure {
  text-align: left;
}
#footer .footer-menus {
  margin-bottom: 100px;
}
#footer .footer-menus > .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
#footer .footer-menus>.wp-block-group__inner-container .widget_nav_menu {
  margin: 0;
}
#footer .footer-menus>.wp-block-group__inner-container .widget_nav_menu .c-submenuToggleBtn {
  display: none;
}
#footer .footer-menus>.wp-block-group__inner-container .widget_nav_menu .has-child--acc .children,
#footer .footer-menus>.wp-block-group__inner-container .widget_nav_menu .has-child--acc .sub-menu {
  height: max-content;
  opacity: 1;
  visibility: visible;
}

#footer .widget_nav_menu .menu-item ,
#footer .widget_nav_menu .menu,
#footer .widget_nav_menu .has-child--acc .children,
#footer .widget_nav_menu .has-child--acc .sub-menu {
  border: 0 !important;
}
#footer .widget_nav_menu .menu-item > a {
  font-weight: 700;
  padding: 5px 5px 5px 0;
  margin-bottom: 5px;
  transition: .3s;
}
#footer .widget_nav_menu .menu-item > a:hover {
  background: none;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  opacity: .8;
}
#footer .widget_nav_menu .sub-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
#footer .widget_nav_menu .sub-menu .menu-item > a {
  font-weight: 500;
  position: relative;
  padding: 5px 5px 5px 0;
  margin: 0;
}
#footer .widget_nav_menu .sub-menu .menu-item:before {
  content: "-";
  display: inline-block;
}

#footer .footer-banners > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#footer .footer-banners>div figure {
  margin: 0;
  width: 200px;
  aspect-ratio: 200 / 80;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
}
#footer .footer-banners>div figure a {
  width: 100%;
  height: 100%;
}
#footer .footer-banners>div figure img {
  height: 100%;
  width: 100%;
  object-fit: contain !important;
}
#footer .l-footer__foot {
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
}
#footer .l-footer__foot .l-container {
  max-width: var(--content-max-width);
  border-top: 1px solid #ccc;
  padding: 15px 0 0;
}

#footer .footer-lang-switch {
  display: none;
}

.c-copyright {
  text-align: right;
}

.p-fixBtnWrap #pagetop {
  border-radius: 100%;
  width: 60px;
  height: 60px;
  flex-direction: column;
  gap: 5px;
}
.p-fixBtnWrap #pagetop .text {
  font-size: 10px;
  font-weight: 900;
  font-style: italic;
  width: 35px;
}

/*******************************************************
  トップ
********************************************************/
#mainvisual {
  height: min(100svh, 700px);
  position: relative;
  overflow: hidden;
}
#mainvisual > .wp-block-group__inner-container,
#mainvisual > .wp-block-group__inner-container > .wp-block-cover {
  height: 100%;
}
#mainvisual .mainvisual-contents {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: min(100svh, 780px);
  z-index: -1;
  padding-left: 50px;
  padding-right: 50px;
}
#mainvisual .wp-block-cover .wp-block-cover__inner-container,
#mainvisual .wp-block-cover-image .wp-block-cover__inner-container {
  position: static;
}
#mainvisual .mainvisual-contents .wp-block-group__inner-container {
  width: 100%;
  max-width: var(--content-max-width);
  margin-bottom: 60px;
}

#mainvisual .mainvisual-contents .catchcopy {
  font-style: italic;
  font-weight: 900;
  font-size: 95px;
  color: #fff;
  margin: 20px 0 0;
  text-shadow: 1px 1px 1px #000;
}
#mainvisual .mainvisual-contents .catchcopy.for-sp {
  display: none;
}
#mainvisual .mainvisual-contents .sub-copy {
  font-size: 32px;
  margin: 0;
  color: #fff;
  font-weight: 800;
  text-shadow: 1px 1px 1px #000;
  margin-top: -25px;
}
 
#mainvisual .scroll-down-animation {
  position: absolute;
  right: 0;
  bottom: 200px;
  z-index: -1;
  transform: rotate(90deg) !important;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
#mainvisual .scroll-down-animation:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  left: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: arrowFlow 4s infinite;
  animation-delay: 5s;
}
#mainvisual .scroll-down-animation:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 100%;
  position: absolute;
  left: 128px;
  top: 0;
  bottom: 0;
  opacity: 0;
  margin: auto;
  animation: arrowHeadFlow 4s infinite;
  animation-delay: 5s;
}

/* 矢印の線のアニメーション */
@keyframes arrowFlow {
  0% {
    width: 0;
    transform: translateX(0);
  }

  50% {
    width: 50px;
    transform: translateX(0);
  }

  90% {
    width: 0;
    transform: translateX(50px);
  }

  100% {
    width: 0;
    transform: translateX(0);
  }
}

/* 矢印の先端のアニメーション */
@keyframes arrowHeadFlow {
  0% {
    opacity: 0;
    left: 78px;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    left: 128px;
    transform: translateX(0);
  }

  90% {
    opacity: 1;
    left: 128px;
    transform: translateX(0);
  }

  95% {
    opacity: 0;
    left: 128px;
    transform: translateX(0);
  }
}

#mainvisual .mainvisual-bg-images {
  position: fixed;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
#mainvisual .mainvisual-bg-images .wp-block-group__inner-container,
#mainvisual .mainvisual-bg-images .wp-block-image {
  height: 100%;
  width: 100%;
}
#mainvisual .mainvisual-bg-images .bg-image {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
#mainvisual .mainvisual-bg-images .bg-image:first-child {
  opacity: 1;
}
#mainvisual .mainvisual-bg-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
}

/* ニュース */
#news-section .title-column .section-title {
  margin-bottom: 30px;
}
#news-section .title-column .link-button {
  padding: 0 50px;
}

/* ミッション */
#mission-section {
  position: relative;
}
#mission-section .section-title-wrapper > .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mission-section .contents-wrapper {
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 0 50px;
}
#mission-section .contents-wrapper .mission-word {
  font-size: 40px;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
#mission-section .contents-wrapper p .line-wrapper {
  line-height: 1.5;
}

#mission-section .text-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
}
#mission-section .text-slider-wrapper .slider-track {
  display: flex;
  width: 100%;
  animation: slide 16s linear infinite;
}
.slider-text {
  opacity: .3;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 6rem;
  font-weight: bold;
  color: var(--color-blue);
  letter-spacing: 0.1em;
  font-style: italic;
  text-shadow:
      -1px -1px 0 white,
      1px -1px 0 white,
      -1px 1px 0 white,
      1px 1px 0 white,
      -1px 0 0 white,
      1px 0 0 white,
      0 -1px 0 white,
      0 1px 0 white;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 強み */
#strength-section .section-title-wrapper>.wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#strength-section .contents-wrapper {
  margin-top: 50px;
  padding: 0 50px;
}
#strength-section .contents-wrapper .strength-word {
  font-size: 30px;
}
#strength-section .contents-wrapper p {
  line-height: 1.5;
  margin-top: 30px;
}

#strength-section .contents-wrapper .world-map {
  margin-left : 0;
  margin-right: 0;
  margin-bottom: 50px;
  background: var(--color-light-blue);
  position: relative;
  border-radius: 15px;
}
#strength-section .contents-wrapper .world-map:before {
  content: "手配可能国 / 地域";
  background: var(--color-moss-green);
  color: #fff;
  display: inline-flex;
  font-size: 24px;
  left: 50px;
  top: 50px;
  padding: 10px 20px;
  position: absolute;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
}

#strength-section .area-available-numbers .area-panels {
  position: sticky;
  top: 100px;
  height: max-content;
  padding-top: 40px;
}
#strength-section .area-available-numbers {
  margin-top: 50px;
  position: relative;
}
#strength-section .area-available-numbers .available-number {
  margin-bottom: 40px;
}
#strength-section .area-available-numbers .area-panels .area {
  position: relative;
  border-top: 4px solid var(--color-moss-green);
  border-bottom: 4px solid var(--color-moss-green);
  padding: 20px 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  transform: translate(0px, 0px) !important;
}
#strength-section .area-available-numbers .area-panels .area:not(.active) {
  display: none;
}
#strength-section .area-available-numbers .area-panels .area:before {
  content: "手配可能国 / 地域";
  display: block;
  position: absolute;
  left: 0;
  bottom: 100%;
  background: var(--color-moss-green);
  color: #fff;
  padding: 5px 20px;
  letter-spacing: 1px;
}

#strength-section .area-available-numbers .area-panels .area .area-name,
#strength-section .area-available-numbers .area-panels .area .unit {
  font-size: 30px;
  font-weight: 700;
}
#strength-section .area-available-numbers .area-panels .area .animate-number {
  line-height: 1.2;
  font-size: 60px;
  color: var(--color-moss-green);
  font-weight: bold;
}
#strength-section .area-available-numbers .switch-panel .panel-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
#strength-section .area-available-numbers .switch-panel .panel-buttons .panel-button {
  margin: 0;
  border: 2px solid #000;
  border-radius: 100px;
  padding: 5px 20px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: .3s;
}
#strength-section .area-available-numbers .switch-panel .panel-buttons .panel-button.active {
  background: var(--color-moss-green);
  border-color: var(--color-moss-green);
  color: #fff;
  font-weight: 700;
  cursor: default;
}
#strength-section .area-available-numbers .switch-panel .panel-buttons .panel-button:not(.active):hover {
  opacity: .8;
}
#strength-section .area-available-numbers .area-maps {
  margin-left: 50px !important;
  background: var(--color-light-blue);
  border: 1px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  height: max-content;
}
#strength-section .area-available-numbers .area-maps figure:not(.active) {
  display: none;
}
#strength-section .area-available-numbers .area-maps figure {
  margin: 0;
}

/* 事業内容 */
#business-section {
  position: relative;
}
#business-section .section-title-wrapper {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

/*  */
#travel-abst-section .plain-contents-wrapper {
  height: 650px;
  position: relative;
}
#travel-abst-section .plain-contents-wrapper .travel-images {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  z-index: 0;
}

#travel-abst-section .plain-contents-wrapper .travel-images figure {
  position: absolute;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
}
#travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-1 {
  left: 25%;
  top: 100px;
  width: 350px;
  z-index: 10;
}
#travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-2 {
  left: 4%;
  top: 430px;
  width: 280px;
  z-index: 12;
}
#travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-3 {
  left: 0;
  top: 150px;
  width: 230px;
  z-index: 6;
}
#travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-4 {
  left: 55%;
  top: 0;
  width: 250px;
  z-index: 4;
}
#travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-5 {
  left: 65%;
  top: 400px;
  width: 200px;
  z-index: 2;
}
#travel-abst-section .plain-contents-wrapper > div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

#travel-abst-section .plain-contents-wrapper .contents-entity {
  width: 100%;
  max-width: 600px;
  margin: 0;
  position: relative;
}
#travel-abst-section .plain-contents-wrapper .contents-entity h3 {
  font-size: 40px;
}
#travel-abst-section .plain-contents-wrapper .contents-entity p {
  margin-top: 20px;
}
#travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-title {
  align-content: center;
}
#travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-title h4 {
  font-size: 1.4rem;
  margin-top: 20px;;
}
#travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-results .number {
  font-size: 60px;
  font-weight: 900;
}
#travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-results .unit {
  font-weight: bold;
  margin-left: 5px;
  font-size: 1.4rem;
}

/* 会社情報 */
#corporate-information-section {
  padding-bottom: 100px !important;
}
#corporate-information-section .contents-wrapper {
  margin-top: 50px;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
#corporate-information-section .parallax-wrapper {
  height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#corporate-information-section .contents-wrapper .bg-layer{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
}
#corporate-information-section .contents-wrapper .bg-layer .corporate-image {
  width: 100%;
  height: 100%;
  margin: 0;
}

#corporate-information-section .contents-wrapper .bg-layer .corporate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#corporate-information-section .contents-wrapper .contents-layer {
  margin-top: 50px;
}
#corporate-information-section .contents-wrapper .contents-layer .inner-contents-wrapper {
  padding-left: 50px;
  padding-right: 50px;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents figure {
  text-align: left;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .catchcopy {
  font-weight: bold;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit {
  margin: 0;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .title-wrapper .ruby {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit h3 {
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit {
  margin-top: 10px;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .wp-block-columns {
  gap: 15px !important;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .link-button a {
  width: 100%;
  justify-content: space-between;
  padding: 10px 15px;
  border-radius: 5px;
  transition: .3s;
  border: 3px solid var(--color-moss-green);
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .link-button a .arrow-mark {
  width: 40px;
  height: 40px;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .newer .link-button a,
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .career .link-button a:hover {
  background: var(--color-moss-green);
  color: #fff;
}
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .newer .link-button a:hover,
#corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .career .link-button a {
  color: var(--color-moss-green);
  background: #fff;
}

#corporate-information-section .contents-wrapper .corporate-information-menu > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 30px;
}
#corporate-information-section .contents-wrapper .corporate-information-menu .link-button {
  border-bottom: 2px solid #000;
  margin: 0;
}
#corporate-information-section .contents-wrapper .corporate-information-menu > div .link-button:nth-child(-n + 2) {
  border-top: 2px solid #000;
}
#corporate-information-section .contents-wrapper .corporate-information-menu .link-button a {
  width: 100%;
  justify-content: space-between;
  padding: 20px 30px;
  font-size: 20px;
  letter-spacing: 1px;
  height: 100%;
}

.sp-link {
  display: none;
}

/*******************************************************
  下層ページ共通
********************************************************/
/* ページタイトル */
.p-topArea {
  height: 400px;
  position: relative;
}
#top_title_area:after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 30px;
  border-radius: 30px 30px 0 0;
  left: 0;
  top: unset;
  bottom: 0;
  z-index: 5;
}
.p-topArea .dots-texture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-topArea__body {
  position: absolute;
  left: 0;
  bottom: 10px;
}
.p-topArea__title .line-wrapper  {
  margin-top: 0 !important;
}
.c-pageTitle__main {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  font-style: italic;
  text-align: left;
  text-indent: 10px;
  margin: 0;
}
.c-pageSubTitle {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  margin-left: 20px;
  letter-spacing: 2px;
}
.p-topArea__img {
  position: fixed;
  max-height: 600px;;
}

/* パンくず */
#breadcrumb {
  padding-left: 50px;
  padding-right: 50px;
  background: #fff;
  position: relative;
}
#breadcrumb .p-breadcrumb__list {
  max-width: var(--content-max-width);
  padding: 0;
}
#breadcrumb .p-breadcrumb__list span {
  font-weight: 600;
}

/* コンテナ */
body:not(.home) .l-content__body {
  background: #fff;
  position: relative;
  margin-top: -5px;   /* iOS隙間埋め */
}
body:not(.home) .l-content__body:before {
  /* iOS隙間埋め */
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 10px;
  background: #fff;
  z-index: -1;
  display: block;
}

/* ページフレーズ */
.page-phrase {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-style: italic;
}

/* セクションフレーズ */
.page-section-phrase {
  font-size: 35px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-style: italic;
}

/*******************************************************
  ミキ・ツーリストについて
********************************************************/
#message-section .executive-item {
  height: 100%;
  gap: 50px !important;
}
#message-section .executive-item .image-column figure {
  overflow: hidden;
  border-radius: 15px;
  opacity: 0;
}
#message-section .executive-item .image-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#message-section .executive-item .message-column {
  align-content: center;
  position: absolute;
  right: 30px;
  bottom: 0;
  z-index: 10;
  border-radius: 15px;
  background: #fff;
  max-width: 700px;
  width: 100%;
  height: max-content;
  padding: 50px;
}
#message-section .executive-item .message-column .message h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
}
#message-section .executive-item .message-column .message p {
  font-size: 16px;
  word-break: auto-phrase;
}
#message-section .executive-item .message-column .message p .line-wrapper {
  line-height: 1.7;
}
#message-section .executive-item .sigunature {
  margin-top: 15px
}
#message-section .executive-item .sigunature .position {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
}
#message-section .executive-item .sigunature .name {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

#corporate-policy-section .corporate-policy-object {
  max-width: 600px;
  margin: 0 auto 80px;
}

#corporate-policy-section .corporate-policy h3 {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 2px;
  font-style: italic;
}
#corporate-policy-section .corporate-policy .expert h3 {
  color: var(--color-light-green);
}
#corporate-policy-section .corporate-policy .trust h3 {
  color: var(--color-light-blue);
}
#corporate-policy-section .corporate-policy .future h3 {
  color: var(--color-green);
}
#corporate-policy-section .corporate-policy .policy-block {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #fff;
  padding: 0 50px;
}
#corporate-policy-section .corporate-policy .policy-block:last-child {
  border: 0;
}
#corporate-policy-section .corporate-policy .policy-block .text h4 {
  font-size: 30px;
  font-weight: 800;
  min-height: 3em;
}

#quality-section .quality-point-block {
  position: relative;
  margin-bottom: 80px;
  padding-bottom: 50px;
}
#quality-section .quality-point-block:last-child {
  margin-bottom: 0;
}
#quality-section .quality-point-block > div {
  display: flex;
}
#quality-section .quality-point-block figure {
  border-radius: 15px;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
}
#quality-section .quality-point-block.right-position figure {
  margin-right: auto;
}
#quality-section .quality-point-block.left-position figure {
  margin-left: auto;
}
#quality-section .quality-point-block .detail-block {
  position: absolute;
  margin: 0;
  background: #fff;
  padding: 30px;
  width: 700px;
  bottom: 0;
}
#quality-section .quality-point-block.right-position .detail-block {
  right: 0;
}
#quality-section .quality-point-block.left-position .detail-block {
  left: 0;
}
#quality-section .quality-point-block .detail-block .number-column p {
  font-size: 70px;
  line-height: 1.2;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 4px;
}
#quality-section .quality-point-block .detail-block .text h4 {
  font-size: 24px;
  font-weight: 800;
  word-break: auto-phrase;
}
#quality-section .quality-point-block .detail-block .title-column {
  align-content: center;
}
#quality-section .quality-point-block .detail-block .title-column p {
  font-weight: 800;
}
#quality-section .quality-point-block .detail-block .title-column h3 {
  margin: 0;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.2;
}
#support-section .support-block .support-item {
  padding: 0 30px;
  border-right: 2px solid #000;
}
#support-section .support-block .support-item:first-child {
  border-left: 2px solid #000;
}
#support-section .support-block .support-item .item-heading > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100px;
  padding: 0 20px;
}
#support-section .support-block .support-item .item-heading figure {
  width: 60px;
}
#support-section .support-block .support-item .item-heading h3 {
  font-size: 20px;
  text-align: left;
  margin: 0;
  flex: 1;
  max-width: max-content;
}
#support-section .support-block .support-item .text {
  font-size: 15px
}

#network-section .description-block {
  margin-top: 30px;
  gap: 70px !important;
}
#network-section .description-block .link-column .link-button {
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
#network-section .description-block .link-column .link-button a {
  width: 100%;
}

#for-society-section .contributes-block {
  margin-top: 30px;
}
#for-society-section .contributes-block > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
#for-society-section .contributes-block .contribute-item {
  margin: 0;
}
#for-society-section .contributes-block .contribute-item figure {
  text-align: left;
  height: 180px;
  align-content: center;
}
#for-society-section .contributes-block .contribute-item .title {
  color: var(--color-blue);
  font-weight: 800;
}
#for-society-section .contributes-block .contribute-item p {
  margin-top: 5px;
  font-size: 14px;
}

/*******************************************************
  ネットワーク・拠点一覧
********************************************************/
.map-image-column figure {
  background: var(--color-light-blue);
  border-radius: 10px;
  border: 1px solid #ccc;
  position: sticky;
  top: 100px;
  overflow: hidden;
}
.map-image-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.network-block {
  gap: 50px !important;
}

/*******************************************************
  手配可能国・地域一覧
********************************************************/
.countries-column .two-column-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.countries-column ul {
  padding: 0;
  list-style: none;
  border-top: 1px solid #ddd;
}
.countries-column ul li {
  padding: 10px 15px;
  margin: 0;
  border-bottom: 1px solid #ddd;
}
.countries-column ul:not(.two-column-list) li:nth-child(odd) {
  background: var(--color-slate);
}
.countries-column .two-column-list li:nth-child(4n-3),
.countries-column .two-column-list li:nth-child(4n-2) {
  background: var(--color-slate);
}

/*******************************************************
  パッケージツアー / アドホックツアー / FIT / クルーズ商品
********************************************************/
#tour-contact-section .section-title h2 {
  font-size: 40px;
  padding: 0;
  letter-spacing: 2px;
}
#tour-contact-section .section-title h2 .small {
  font-size: 25px;
  display: block;
}
#tour-contact-section .section-title h2 .line-wrapper {
  line-height: 1.5;
}
#tour-contact-section .link-button a,
#cruise-page #tour-contact-section .contact-message {
  width: 100%;
  background: var(--color-slate);
  padding: 50px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
#tour-contact-section .link-button a p {
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}
#tour-contact-section .link-button a:hover,
#tour-contact-section .link-button a:hover p {
  color: #fff;
}
#tour-contact-section .link-button a:before {
  content: "";
  left: -100%;
  transition: .3s;
  position: absolute;
  display: block;
  height: 100%;
  width: 0;
}
#tour-contact-section .link-button a:hover:before {
  content: "";
  left: 0;
  width: 100%;
  background: var(--color-blue-400);
}
#tour-contact-section .link-button a .wp-block-columns {
  width: 100%;
}
#tour-contact-section .only-sp-text {
  display: none;
}
#tour-contact-section .arrow-mark {
  margin: 0;
}


.product-block {
  margin-top: 50px !important;
}
.product-block:first-child {
  margin-top: 0;
}
.product-block > div {
  display: flex;
  gap: 50px;
}
.product-block .product-detail {
  margin: 0;
  flex: 1;
}
.product-block .product-detail .product-title {
  font-size: 28px;
  padding-bottom: 10px;
  border-bottom: 4px solid #000;
}
.product-block .product-detail .brand-menu-item h4 {
  font-size: 20px;
}
.product-block .product-detail .brand-menu-item p {
  font-size: 15px;
  margin-top: 5px;
  padding-left: 10px;
}

.product-block .cruise-image-banner {
  text-align: left;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: 30px 0 15px;
}
.product-block .cruise-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fit-products-section .product-block>div {
  flex-direction: column;
}
#fit-products-section .product-block>div .product-image-wrapper > div {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-left: 50px;
}
#fit-products-section .product-block>div .product-image-wrapper>div .product-image {
  margin: 0;
  align-content: center;
}

#contact-information-section .link-banner {
  text-align: left;
  margin-top: 5px;
}
#contact-information-section .contents-wrapper > div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px;
}
#contact-information-section .contents-wrapper>div .site-link-block {
  margin-bottom: 30px;
}
#contact-information-section .contents-wrapper>div .site-link-block:last-child {
  margin-bottom: 0;
}
#contact-information-section .contents-wrapper>div .site-link-block > div {
  display: flex;
  align-items: center;
  gap: 50px;
}
#contact-information-section .contents-wrapper>div .site-link-block .wp-block-heading {
  width: 400px;
}
#contact-information-section .contents-wrapper>div .site-link-block .banner-wrapper {
  margin: 0;
  flex: 1;
}
#contact-information-section .contents-wrapper>div .site-link-block .banner-wrapper > div {
  display: flex;
  gap: 15px;
}
#contact-information-section .for-corporate,
#contact-information-section .for-individual {
  margin: 0;
}
#contact-information-section .for-corporate h4,
#contact-information-section .for-individual h4 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-slate);
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
}

#contact-information-section .for-corporate .note,
#contact-information-section .for-individual .note {
  color: #f33;
  font-size: 14px;
  font-weight: 700;
}

/*******************************************************
  会社情報
********************************************************/
#introduct-section .executive-block > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#introduct-section .executive-item {
  margin: 0;
}
#introduct-section .executive-item .image-column figure {
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}
#introduct-section .executive-item .profile-column {
  align-content: center;
}
#introduct-section .executive-item .profile .position {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
}
#introduct-section .executive-item .profile .name {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}
#introduct-section .executive-item .supplement ul {
  padding: 0;
}
#introduct-section .executive-item .supplement ul li {
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}

/*******************************************************
  沿革
********************************************************/
.history-list .history-item > div {
  display: flex;
  gap: 30px;
  min-height: 70px;
}
.history-list .history-item > div > * {
  margin: 0;
}
.history-list .history-item .year {
  font-size: 22px;
  font-weight: 900;
  width: 80px;
}
.history-list .history-item .divider {
  margin-top: .5em;
  position: relative;
}
.history-list .history-item .divider:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--color-moss-green-300);
  border-radius: 100%;
}

.history-list .history-item .divider:after {
  content: "";
  display: block;
  width: 4px;
  height: 0;
  background: var(--color-moss-green-300);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  border-radius: 100px;
  transition: 2s;
}
.history-list .history-item.inviewed .divider:after {
  height: 100%;
}

.history-list .history-item .detail {
  font-size: 18px;
  flex: 1;
  font-weight: 600;
  padding-bottom: 10px;
}

/*******************************************************
  決算公告
********************************************************/
.balance-sheet-list {
  margin-top: 50px !important;
}
.balance-sheet-list:first-child {
  margin-top: 0;
}
.balance-sheet-list h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
}
.balance-sheet-table {
  border: 1px solid #000;
  max-width: 800px;
  width: 100%;
}
.balance-sheet-table .table-header {
  border-bottom: 1px solid #000;
  background: var(--color-blue-400);
  gap: 0 !important;
}
.balance-sheet-table .table-header .wp-block-column {
  align-content: center;
}
.balance-sheet-table .table-header p {
  color: #fff;
  letter-spacing: 4px;
}
.balance-sheet-table .table-header p .unit {
  font-size: 12px;
  width: 100%;
  display: block;
}
.balance-sheet-table .table-block {
  margin: 0;
  border-bottom: 1px solid #000;
}
.balance-sheet-table .table-block:last-child {
  border-bottom: none;
}

.balance-sheet-table .table-block .table-block-contents {
  margin-top: 0;
  gap: 0 !important;
}
.balance-sheet-table .table-block .table-block-footer {
  margin: 0;
  gap: 0 !important;
}

.balance-sheet-table .subject-column {
  border-right: 1px solid #000;
  flex-basis: 500px !important;
  padding: 5px 20px;
}
.balance-sheet-table .amount-column {
  flex-basis: 300px !important;
  padding: 5px 20px;
}

.balance-sheet-table .subject-column li {
  list-style: none;
  font-size: 15px;
}

.balance-sheet-table .amount-column ul {
  padding: 0;
}
.balance-sheet-table .amount-column li {
  padding: 0;
  text-align: right;
  list-style: none;
  font-size: 15px;
}

.balance-sheet-table .table-block-header {
  background: var(--color-blue-50);
  gap: 0 !important;
}
.balance-sheet-table .table-block-header .subject-column p {
  font-weight: bold;
}

.balance-sheet-table .table-block-contents .subject-column ul {
  padding-left: 10px;
}

.balance-sheet-table .table-block-footer {
  border-top: 1px solid #000;
  background: #eee;
}
.balance-sheet-table .table-block-footer .subject-column p {
  text-align: center;
  font-weight: bold;
  letter-spacing: 4px;
}
.balance-sheet-table .table-block-footer .amount-column p {
  text-align: right;
  font-weight: bold;
}



/*******************************************************
  お知らせ
********************************************************/
.single-news .l-content__body {
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  background: #fff;
  position: relative;
}
.single-news .l-content__body .l-article {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-top: 30px;
}

.single-news .l-content__body .l-article .post-date {
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
}
.single-news .l-content__body .l-article .news-title {
  margin-top: 5px;
  border-bottom: 4px solid #000;
  padding-bottom: 10px;
}
.single-news .l-content__body .l-article .news-title h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}
.single-news .l-content__body .l-article .news-content {
  min-height: 250px;
}
.single-news .l-content__body .l-article .news-content p:not(:first-child) {
  margin-top: 10px;
}
.single-news .l-content__body .l-article .news-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 20px 0 10px;
}
.single-news .l-content__body .l-article .news-content h3 {
  font-size: 1.6rem;
  margin: 15px 0 10px;
  background: var(--color-slate);
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  gap: 10px;
}
.single-news .l-content__body .l-article .news-content h3:before {
  content: "";
  display: block;
  width: 7px;
  height: 1em;
  background: var(--color-blue-500);
  border-radius: 10px 5px 10px 5px;
  position: relative;
  margin-top: 5px;
}
.single-news .l-content__body .l-article .news-content h4 {
  font-size: 1.5rem;
  margin: 10px 0;
  padding: 5px 15px;
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-news .l-content__body .l-article .news-content h4:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #000;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.single-news .l-content__body .l-article .news-content h5 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  position: relative;
  padding-left: 35px;
}
.single-news .l-content__body .l-article .news-content h5:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: var(--color-blue-500);
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 5;
}
.single-news .l-content__body .l-article .news-content h5:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-blue-500);
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 1;
}
.single-news .l-content__body .l-article .news-content h6 {
  font-size: 1.15rem;
  margin: 10px 0 5px;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.single-news .l-content__body .l-article .news-content h2:first-child,
.single-news .l-content__body .l-article .news-content h3:first-child,
.single-news .l-content__body .l-article .news-content h4:first-child,
.single-news .l-content__body .l-article .news-content h5:first-child,
.single-news .l-content__body .l-article .news-content h6:first-child {
  margin-top: 0;
}

.c-pnNav {
  background: var(--color-slate);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0 0;
}
.c-pnNav__item:last-child a {
  border-left: 1px solid #ccc;
}

.c-pnNav .c-pnNav__text-wrapper {
  display: flex;
  flex-direction: column;
}
.c-pnNav__item.-prev .c-pnNav__text-wrapper {
  align-items: flex-start;
}
.c-pnNav__item.-prev .c-pnNav__text-wrapper:before {
  content: "Prev";
  font-weight: 900;
  font-size: 16px;
}
.c-pnNav__item.-next .c-pnNav__text-wrapper {
  align-items: flex-end;
}
.c-pnNav__item.-next .c-pnNav__text-wrapper:before {
  content: "Next";
  font-weight: 900;
  font-size: 16px;
}
.c-pnNav__item .c-pnNav__title {
  font-size: 16px;
}
.c-pnNav__item .c-pnNav__date {
  display: block;
  margin-top: 5px;
  color: #666;
  font-weight: 900;
  font-style: italic;
  font-size: 16px;
}

/*** アーカイブ ***/
.post-type-archive-news .l-content__body {
  padding: 50px 50px 75px;
}
.post-type-archive-news .l-content__body .l-main {
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
}

.post-type-archive-news .archive-contents-wrapper {
  display: flex;
  gap: 50px;
}
.post-type-archive-news .archive-contents-wrapper .news-list {
  flex: 1;
}

.post-type-archive-news .p-postList.-type-list .p-postList__item {
  margin: 0;
}
.post-type-archive-news .p-postList.-type-list .p-postList__link {
  align-items: center;
}
.post-type-archive-news .p-postList.-type-list .p-postList__body {
  padding: 0;
  flex: 1;
}

.post-type-archive-news .archive-contents-wrapper .archive-sidebar {
  width: 250px;
}

.post-type-archive-news .archive-contents-wrapper .archive-sidebar .archive-sidebar-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item {
  padding: 0;
  display: flex;
  width: max-content;
  margin-bottom: 15px;
}

.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item:last-child {
  margin-bottom: 0;
}
.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item a {
  display: block;
  padding: 13px 20px;
  width: 100%;
  height: 100%;
  text-align: center;
  letter-spacing: 2px;
  color: #333;
  min-width: 150px;
  border: 2px solid #aaa;
  border-radius: 100px;
  font-weight: bold;
  transition: .3s;
}
.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item:hover a,
.post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item.is_active a {
  color: #fff;
  background: var(--color-moss-green-200);
  border-color: var(--color-moss-green-400);
}

/*******************************************************
  ツアー・商品のためのお問い合わせフォーム / お問い合わせフォーム
********************************************************/
#contact-page .before-footer-contact,
#contact-for-tour-page .before-footer-contact {
  display: none;
}

#contact-for-tour-page .attention-message {
  background: var(--color-yellow-50);
  padding: 20px 30px;
  border-radius: 5px;
  margin-bottom: 30px;
}
#contact-for-tour-page .attention-message h5 {
  font-size: 18px;
  display: inline-block;
}
#contact-for-tour-page .attention-message ul {
  margin-top: 10px;
  font-size: 15px;
}

/*******************************************************
  プライバシーポリシー
********************************************************/
#privacy-policy-section .contents-wrapper {
  margin-top: 0 !important;
}
#privacy-policy-section .contents-wrapper .clause-block {
  margin-top: 30px;
}
#privacy-policy-section .contents-wrapper h2 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
}

#privacy-policy-section .contents-wrapper h4 {
  font-size: 1.2rem;
  display: inline-block;
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
}
#privacy-policy-section .contents-wrapper p {
  margin-top: 5px;
}

#privacy-policy-section .contents-wrapper .clause-inner-block {
  padding-left: 1em;
  margin-top: 15px;
}
#privacy-policy-section .contents-wrapper ol,
#privacy-policy-section .contents-wrapper ul {
  margin-bottom: 15px;
}
#privacy-policy-section .contents-wrapper ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
#privacy-policy-section .contents-wrapper ol li {
  display: block;
}
#privacy-policy-section .contents-wrapper ol li:before {
  content: "(" counter(item) ") ";
  counter-increment: item;
  font-weight: 500;
  margin-right: 5px;
}


/*******************************************************
  スライダー
********************************************************/
.vk_slider_item {
  justify-content: flex-start !important;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  height: 10px;
  clip-path: var(--polygon-clip-path);
}
.swiper-pagination-bullet-active {
  background: var(--color-blue) !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: unset;
  top: unset;
  bottom: 5px;
  border: 1px solid #000;
}
.swiper-button-next {
  right: 40%;
  width: 30px;
  height: 30px;
}
.swiper-button-next::before {
  content: "";
  display: block;
  width: 9px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 2px;
  right: 0;
  margin: auto;
}
.swiper-button-next::after {
  content: "" !important;
  display: block;
  width: 9px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 2px;
  right: 0;
  margin: auto;
}
.swiper-button-prev {
  left: 40%;
}
.swiper-button-prev::before {
  content: "";
  display: block;
  width: 9px;
  height: 2px;
  background: #000;
  transform: rotate(-135deg);
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 2px;
  margin: auto;
}

.swiper-button-prev::after {
  content: "" !important;
  display: block;
  width: 9px;
  height: 2px;
  background: #000;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 2px;
  margin: auto;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: .8;
}

/*******************************************************
  コンポーネント
********************************************************/
/* ニュース一覧 */
.news-list a {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #000;
}
.news-list .news-item {
  border-top: 2px solid #000;
}
.news-list .news-item:last-of-type {
  border-bottom: 2px solid #000;
}
.news-list a {
  padding: 15px 0;
}
.news-list a .news-detail {
  flex: 1;
  transition: .3s;
}
.news-list a:hover .news-detail {
  opacity: .8;
}
.news-list a .news-detail .news-date {
  font-weight: bold;
  font-size: 20px;
  font-style: italic;
}
.news-list a:hover .news-detail .news-title {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.news-list a .news-detail .news-excerpt {
  font-size: 14px;
}

/* ページネーション */
.pagination {
  gap: 10px;
}

.page-numbers:not(.dots).current,
.page-numbers:not(.dots):hover,
.post-page-numbers:not(.dots).current,
.post-page-numbers:not(.dots):hover {
  background: var(--color-slate);
  color: #000;
  font-weight: bold;
  border-bottom: 4px solid #000;
}

/* ネットワーク数値 */
.network-apeal-numbers {
  margin-top: 30px;
  background: var(--color-slate);
  border-radius: 15px;
  padding: 50px 0 30px;
}

.network-apeal-numbers .apeal-item h4 {
  text-align: center;
  letter-spacing: 2px;
  font-size: 24px;
}

.network-apeal-numbers .apeal-item .number {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
}

.network-apeal-numbers .apeal-item .animate-number {
  font-size: 80px;
  font-weight: bold;
  color: var(--color-moss-green);
  text-align: center;
  line-height: 1;
}

.network-apeal-numbers .apeal-item .number .unit {
  font-size: 25px;
  font-weight: bold;
}

/* ビジネスパネル */
.business-list .business-item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.business-list .business-item .business-thumb-image {
  height: 700px;
  overflow: hidden;
}
.business-list .business-item .business-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: .3s;
}
.business-list .business-item a:hover .business-thumb-image img {
  transform: scale(1.2);
  transition: 7s;
}
.business-list .business-item .business-detail {
  background: var(--color-gray);
  color: #fff;
  padding: 30px;
  flex: 1;
  position: relative;
  transition: .3s;
}
.business-list .business-item .business-detail > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.business-list .business-item a:hover .business-detail {
  background: var(--color-blue-400);
}
.business-list .business-item .business-detail:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 60%;
  height: 5px;
  display: block;
  background: var(--color-light-green);
  transition: .3s;
}
.business-list .business-item a:hover .business-detail:before {
  width: 100%;
}
.business-list .business-item .business-detail .business-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.business-list .business-item .business-detail .business-title-wrapper .business-title {
  letter-spacing: 2px;
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}
.business-list .business-item .business-detail .business-title-wrapper .business-sub-title {
  margin: 0;
  text-align: center;
}
.business-list .business-item .business-detail .business-description {
  font-size: 14px;
}
.business-list .business-item .business-detail .link-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

/* ビジネスパネル（下層個別用） */
#other-business-section {
  border-bottom: 15px solid var(--color-blue-400);
}
#other-business-section .business-list .business-item a {
  flex-direction: row;
}
#other-business-section .business-list .business-item .business-thumb-image {
  height: 100%;
  width: 55%;
  order: 2;
}
#other-business-section .business-list .business-item .business-detail {
  flex: 1;
  order: 1;
}
#other-business-section .business-list .business-item .business-detail .business-title-wrapper .business-title {
  font-size: 24px;
}
#other-business-section .business-list .business-item .business-detail .business-title-wrapper .business-sub-title {
  font-size: 14px;
}

/* コーポレートメニュー */
#corporate-menu-section .contents-wrapper {
  margin-top: 0 !important;
}
#corporate-menu-section .corporate-menu-buttons > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
#corporate-menu-section .corporate-menu-buttons .link-button {
  margin: 0;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  align-content: center;
}
#corporate-menu-section .corporate-menu-buttons .link-button a {
  width: 100%;
  transition: .3s;
}
#corporate-menu-section .corporate-menu-buttons .link-button a:hover {
  opacity: .8;
}
#corporate-menu-section .corporate-menu-buttons .link-button a .arrow-mark {
  width: 40px;
  height: 40px;
}

/* テーブル */
.table-style .table-row {
  border-bottom: 2px solid #000;
  padding: 20px 0;
  margin: 0;
}
.table-style .table-row .table-th {
  font-size: 18px;
  text-align: left;
}

.table-style .table-row .table-th p {
  font-weight: bold;
}

/* 問い合わせ用テーブル */
.contact-form-table.table-style .table-row {
  display: flex;
  padding: 0;
  border-width: 1px;
}
.contact-form-table.table-style .table-row .table-th {
  text-align: left;
  width: 300px;
  padding: 20px;
  background: var(--color-slate);
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}
.contact-form-table.table-style .table-row .table-th.must:after {
  content: "必須";
  display: inline-block;
  background: #f33;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
}
.contact-form-table.table-style .table-row .table-th p {
  flex: 1;
}
.contact-form-table.table-style .table-row .table-td {
  padding: 20px;
  flex: 1;
}

/* 画像スライダー */
.image-slider .slide-image {
  clip-path: var(--polygon-clip-path-2);
  overflow: hidden;
  position: relative;
}
.image-slider .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-slider .slide-image figcaption {
  margin: 0;
  position: absolute;
  left: 15px;
  bottom: 10px;
  background: #fff;
  padding: 2px 10px;
  font-weight: 700;
}
.image-slider {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.image-slider.is-ready {
  opacity: 1;
}

/* フォーム */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  max-width: 500px;
}

select,
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

span[data-name="agree-to-policy"] {
  display: block;
  width: 100%;
  margin: 20px 0 30px;
  text-align: center;
}
span[data-name="agree-to-policy"] label {
  cursor: pointer;
}
.wpcf7-not-valid-tip {
  font-size: 14px;
  font-weight: bold;
  color: #f33;
}

.submit-button-wrapper {
  text-align: center;
}
.submit-button-wrapper p {
  display: inline-block;
  position: relative;
  max-width: 400px;
  width: 100%;
}
.submit-button-wrapper input.submit-button {
  width: 100%;
  height: 50px;
  border: 1px solid #ccc;
  background: var(--color-slate);
  border-radius: 5px;
  font-weight: bold;
  display: block;
  transition: .3s;
}
.submit-button-wrapper input.submit-button:hover {
  opacity: .8;
}
.submit-button-wrapper .wpcf7-spinner {
  position: absolute;
  right: 10px;
  top: 0;
  margin: auto 0;
  bottom: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #f33;
  background: #f33;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-moss-green-300);
  background: var(--color-moss-green-300);
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.privacy-policy-link {
  text-align: center;
  margin: 30px 0;
}


/* フロー */
.flow-block > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.flow-block .flow-item {
  margin: 0;
  position: relative;
  background: var(--color-slate);
  border-radius: 10px;
  padding: 15px 30px 20px;
}
.flow-block .flow-item:before {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto;
  background-color: var(--color-blue-300);
  clip-path: polygon(0 0,
      /* 左上 */
      65% 0,
      /* 右上より少し手前 */
      100% 50%,
      /* 先端（右中央）*/
      65% 100%,
      /* 右下より少し手前 */
      0 100%
      /* 左下 */
    );
  z-index: 5;
}
.flow-block .flow-item:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
  background-color: #fff;
  clip-path: polygon(0 0,
      /* 左上 */
      25% 0,
      /* 右上より少し手前 */
      100% 50%,
      /* 先端（右中央）*/
      25% 100%,
      /* 右下より少し手前 */
      0 100%
      /* 左下 */
    );
  z-index: 10;
}
.flow-block .flow-item:nth-last-child(1):before {
  display: none;
}
.flow-block .flow-item > div:before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: -25px;
  margin: auto;
  background-color: var(--color-blue-200);
  clip-path: polygon(0 0,
      /* 左上 */
      50% 0,
      /* 右上より少し手前 */
      100% 50%,
      /* 先端（右中央）*/
      50% 100%,
      /* 右下より少し手前 */
      0 100%
      /* 左下 */
    );
  z-index: 15;
}

.flow-block .flow-item > div:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: -18px;
  margin: auto;
  background-color: #fff;
  clip-path: polygon(0 0,
      /* 左上 */
      30% 0,
      /* 右上より少し手前 */
      100% 50%,
      /* 先端（右中央）*/
      30% 100%,
      /* 右下より少し手前 */
      0 100%
      /* 左下 */
    );
  z-index: 20;
}

.flow-block .flow-item:nth-last-child(1) > div:before {
  display: none;
}
.flow-block .flow-item .flow-title-wrapper > div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.flow-block .flow-item .flow-order-number {
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
  aspect-ratio: 1 / 1;
  align-content: center;
}
.flow-block .flow-item .flow-contents {
  margin: 0;
}
.flow-block .flow-item .flow-contents .flow-title {
  margin: 0;
}
.flow-block .flow-item .flow-contents .flow-title p {
  font-weight: 800;
  font-size: 18px;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 1px;
}
.flow-block .flow-item .flow-contents .flow-title h4 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 800;
}
.flow-block .flow-item .flow-contents figure {
  width: 100%;
  margin: 15px 0;
  border-radius: 10px;
  border: 1px solid #e1e1e1;
  overflow: hidden;
  background: #fff;
}
.flow-block .flow-item .flow-contents figure img {
  max-width: 200px;
  margin: 10px auto;
}
.flow-block .flow-item .flow-contents .flow-description {
  margin-top: 5px;
}


.flow-block.yellow .flow-item:before {
  background-color: var(--color-yellow-300);
}

.flow-block.yellow .flow-item>div:before {
  background-color: var(--color-yellow-200);
}

/* 旅素材例 */
.travel-materials-block > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.travel-materials-block .travel-material-group {
  margin: 0;
}
.travel-materials-block .travel-material-group .travel-material-name {
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.travel-materials-block .travel-material-group .travel-material-name > div {
  display: flex;
  gap: 10px;
}
.travel-materials-block .travel-material-group .travel-material-name>div h4 {
  margin: 0;
}
.travel-materials-block .travel-material-group ul {
  list-style: none;
  margin-top: 5px;
  padding-left: 5px;
}
.travel-materials-block .travel-material-group ul li {
  font-size: 15px;
}
.travel-materials-block .travel-material-group ul li:before {
  content: "-";
  margin-right: 5px;
}

/*******************************************************
  メディアクエリ
********************************************************/
@media (max-width: 1600px) {
  #strength-section .contents-wrapper .world-map {
    margin-left: -100px;
    margin-right: -100px;
    border-radius: 0;
  }

  #strength-section .contents-wrapper .world-map:before {
    left: 100px;
  }

  .business-list .business-item .business-thumb-image {
    height: 600px;
  }

  #corporate-information-section .contents-wrapper .corporate-information-menu .link-button a {
    padding: 20px 0;
  }

  #quality-section .quality-point-block .detail-block {
    width: 500px;
  }

  .countries-column .two-column-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .countries-column .two-column-list li:nth-child(4n-3),
  .countries-column .two-column-list li:nth-child(4n-2) {
    background: unset;
  }
  .countries-column .two-column-list li:nth-child(odd) {
    background: var(--color-slate);
  }
}

@media (max-width: 1400px) {

  [data-btns="l-r"][data-logo="left"] .l-header__body,
  [data-btns="r-l"][data-logo="left"] .l-header__body {
    grid-template-columns: min-content min-content 23% 1fr min-content;
  }
  #header.scrolled .c-headLogo,
  #header.scrolled .l-header__right,
  #header.scrolled .c-langSwitch {
    transform: scale(1);
  }

  #header.scrolled .c-headLogo {
    height: 30px;
  }

  #mainvisual .mainvisual-contents .catchcopy {
    font-size: 80px;
  }

  #mainvisual .mainvisual-contents .sub-copy {
    font-size: 28px;
  }

  #gnav .c-gnav {
    gap: 10px;
  }

  .two-column-contents .title-column {
    flex-basis: 350px !important;
  }

  #strength-section .area-available-numbers .area-panels {
    flex-basis: 400px !important;
  }

  #travel-abst-section .plain-contents-wrapper .contents-entity {
    max-width: 550px;
  }


  #corporate-policy-section .corporate-policy {
    flex-direction: column;
  }
  #corporate-policy-section .corporate-policy .policy-block {
    padding: 50px 0;
    border-right: 0;
    border-bottom: 1px solid #fff;
  }
  #corporate-policy-section .corporate-policy .policy-block:first-child {
    padding-top: 0;
  }
  #corporate-policy-section .corporate-policy .policy-block:last-child {
    border-right: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
  #corporate-policy-section .corporate-policy h3 {
    font-size: 70px;
  }
  #corporate-policy-section .corporate-policy .policy-block .text h4 {
    min-height: unset;
  }

  #quality-section .quality-point-block {
    margin-bottom: 150px;
  }
  #quality-section .quality-point-block figure {
    max-width: 700px;
  }
  #quality-section .quality-point-block .detail-block {
    bottom: -60px;
    width: 550px;
  }

  #network-section .description-block p br {
    display: none;
  }

  #support-section .support-block .support-item .item-heading>div {
    flex-direction: column;
    height: auto;
    padding: 0;
  }
  #support-section .support-block .support-item .item-heading figure {
    height: 50px;
    width: 53px;

  }
  #support-section .support-block .support-item .item-heading figure img {
    width: 100%;
    height: 100%;
  }

  #for-society-section .contributes-block .contribute-item figure {
    text-align: center;
  }

  .map-image-column {
    flex-basis: 500px !important;
  }

  .page-phrase {
    font-size: 40px;
  }

  #other-business-section .business-list .business-item a {
    flex-direction: column;
  }
  #other-business-section .business-list .business-item .business-thumb-image {
    order: 1;
    width: 100%;
    height: 500px;
  }
  #other-business-section .business-list .business-item .business-detail {
    order: 2;
  }

  #message-section .executive-item .message-column {
    max-width: 550px;
  }
}

@media (max-width: 1250px) {
  /* スマホメニューへの切り替え */
  #header #gnav,
  #header .c-langSwitch {
    display: none;
  }

  #header .l-header__drawerBtn {
    display: inline-flex;
  }

  [data-drawer=opened],
  [data-drawer=opened] body {
    overflow: hidden;
  }

  [data-drawer=opened] #header {
    position: fixed;
  }

  [data-btns=l-r][data-logo=left] .l-header__body,
  [data-btns=r-l][data-logo=left] .l-header__body {
    grid-template-columns: min-content min-content auto 1fr min-content;
  }

  /* ドロワーメニュー */
  [data-drawer=closed] .c-iconBtn__icon .drawer-close {
    opacity: 0;
    display: none;
  }

  [data-drawer=opened] .c-iconBtn__icon .drawer-open {
    opacity: 0;
    display: none;
  }

  #drawer_menu {
    background: #fff;
    position: fixed;
    width: 600px;
    height: 100%;
    top: 0;
    left: unset;
    right: 0;
  }

  .p-drawer__body {
    padding: 25px 50px 50px 50px;
  }

  .p-drawer__inner {
    margin-top: 30px;
  }

  .c-iconBtn__icon,
  #drawer_menu a {
    color: #000;
  }

  .c-drawerNav {
    border: 0;
  }

  .c-drawerNav .menu-item {
    border-bottom: 1px solid #000;
  }

  .c-drawerNav__li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .c-drawerNav__li a:hover {
    background: none;
    opacity: .8;
  }

  .c-drawerNav__li a:before {
    content: attr(title);
    display: block;
    font-size: 24px;
    font-weight: 900;
    font-style: italic
  }

  .c-drawerNav__li a:after {
    content: "";
    position: absolute;
    left: 3px;
    width: 0;
    bottom: 20px;
    height: 10px;
    clip-path: var(--polygon-clip-path);
    background: var(--color-yellow);
    z-index: -1;
    transition: .3s;
  }

  .c-drawerNav__li a:hover:after {
    width: 3em;
  }

  .c-drawerNav__li a .__mainText {
    font-weight: bold;
  }

  .flow-block>div {
    grid-template-columns: repeat(2, 1fr);
  }

  #message-section .executive-item .image-column {
    flex-basis: 600px !important;
  }
  #message-section .executive-item .message-column {
    padding: 30px;
  }
  #message-section .executive-item .message-column .message h3 {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .contents-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .two-column-contents {
    flex-direction: column !important;
    gap: 50px !important;
  }
  .two-column-contents .title-column .section-title {
    margin: 0 !important;
  }
  .two-column-contents .title-column {
    flex-basis: unset !important;
    display: flex;
    justify-content: space-between;
  }
  .two-column-contents .title-column .link-button,
  .section-title-wrapper .link-button {
    padding-left: 0 !important;
    padding-right: 25px !important;
    margin: 0;
    align-content: center;
  }

  .section-title h2,
  .section-title .sub-title {
    padding-left: 25px;
  }

  #news-section .contents-column,
  #mission-section .contents-wrapper,
  #strength-section .contents-wrapper,
  #corporate-information-section .contents-wrapper .contents-layer .inner-contents-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  #strength-section .area-available-numbers .area-maps {
    margin-left: 0 !important;
  }

  .business-list .business-item .business-thumb-image {
    height: 500px;
  }

  #travel-abst-section .plain-contents-wrapper .travel-images {
    width: 40%;
  }

  #travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-1 {
    width: 300px;
  }
  #travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-2 {
    width: 230px;
  }

  #corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit > div {
    display: flex;
    gap: 30px;
    align-content: center;
  }
  #corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .wp-block-columns {
    flex-direction: column;
    margin: 0;
    flex: 1;
  }

  #corporate-information-section .contents-wrapper .corporate-information-menu .link-button a {
    font-size: 18px;
  }

  #footer .footer-menus>.wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .swiper-button-next {
    right: 35%;
  }
  .swiper-button-prev {
    left: 35%;
  }

  #quality-section .quality-point-block {
    margin-bottom: 300px;
  }
  #quality-section .quality-point-block:last-child {
    margin-bottom: 120px;
  }
  #quality-section .quality-point-block figure {
    max-width: 600px;
  }
  #quality-section .quality-point-block .detail-block {
    bottom: -200px;
    width: 80%;
  }

  #support-section .support-block .support-item .item-heading h3 {
    font-size: 18px;
  }

  #for-society-section .contributes-block .contribute-item .title {
    font-size: 18px;
  }

  #introduct-section .executive-block>div {
    grid-template-columns: repeat(3, 1fr);
  }
  #introduct-section .executive-item {
    flex-direction: column;
    gap: 10px !important;
  }
  #introduct-section .executive-item .image-column {
    flex-basis: auto !important;
  }
  #introduct-section .executive-item .profile-column {
    align-content: start;
  }
  #introduct-section .executive-item .supplement {
    margin-top: 10px;
  }
  #introduct-section .executive-item .supplement ul li {
    font-size: 12px;
  }

  #network-page .page-phrase br {
    display: none;
  }

  .companies-column .table-row {
    flex-direction: column;
    gap: 10px !important;
  }
  .companies-column .table-row .table-th {
    flex-basis: unset !important;
    text-align: left;
  }

  .flow-block .flow-item .flow-contents .flow-title h4 {
    font-size: 22px;
  }
  .flow-block .flow-item .flow-contents .flow-title p {
    font-size: 16px;
  }

  .product-block>div {
    flex-direction: column;
    gap: 20px;
  }
  #contact-information-section .contents-wrapper>div {
    grid-template-columns: 1fr;
  }

  #message-section .executive-item .message-column {
    max-width: 50%;
    top: 50px;
  }

  .post-type-archive-news .archive-contents-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .post-type-archive-news .archive-contents-wrapper .archive-sidebar {
    order: 1;
    width: 100%;
    overflow: hidden;
  }
  .post-type-archive-news .archive-contents-wrapper .archive-sidebar .archive-sidebar-title {
      margin-bottom: 10px;
  }
  .post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-list {
    display: flex;
    gap: 10px;
    overflow: auto;
    width: 100%;
  }
  .post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item {
    margin: 0;
  }
  .post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item a {
    padding: 10px 15px;
    min-width: 120px;
  }

  .post-type-archive-news .archive-contents-wrapper .news-list {
    order: 2;
  }

  #fit-products-section .product-block>div .product-image-wrapper>div {
    margin: 0;
    justify-content: center;
  }

  #contact-information-section .contents-wrapper>div .site-link-block .banner-wrapper>div {
    flex-direction: column;
  }
}

@media (max-width: 1000px) {
  .section-title h2 {
    font-size: 50px;
  }

  #mission-section .contents-wrapper .mission-word {
    font-size: 30px;
  }
  #mainvisual .scroll-down-animation {
    bottom: 150px;
    font-size: 14px;
  }

  #mission-section p br {
    display: none;
  }

  #strength-section .contents-wrapper .world-map::before {
    left: 75px;
  }
  #strength-section .contents-wrapper .world-map {
    margin-left: -75px;
    margin-right: -75px;
  }

  #strength-section .contents-wrapper .world-map::before {
    font-size: 20px;
    top: 25px;
  }

  #strength-section .area-available-numbers .area-panels {
    flex-basis: 300px !important;
    position: static;
  }
  #strength-section .area-available-numbers .area-panels .area {
    flex-wrap: wrap;
  }
  #strength-section .area-available-numbers .area-panels .area .area-name {
    width: 100%;
    font-size: 20px;
    line-height: 1;
    padding-left: 20px;
  }
  #strength-section .area-available-numbers .area-panels .area .animate-number {
    line-height: 1;
  }
  #strength-section .area-available-numbers .available-number {
    margin-bottom: 20px;
  }
  #strength-section .area-available-numbers .switch-panel .panel-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  #travel-abst-section .plain-contents-wrapper {
    height: 980px;
  }
  #travel-abst-section .plain-contents-wrapper>div {
    align-items: flex-end;
    justify-content: center;
  }

  #travel-abst-section .plain-contents-wrapper .achievements {
    margin-top: 30px;
  }
  #travel-abst-section .plain-contents-wrapper .travel-images {
    width: 100%;
  }

  #travel-abst-section .plain-contents-wrapper .contents-entity h3 {
    font-size: 30px;
  }
  #travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-title h4 {
    font-size: 1.3rem;
  }

  #corporate-information-section .parallax-wrapper {
    height: 300px;
  }

  #corporate-information-section .contents-wrapper .contents-layer .inner-contents-wrapper {
    display: flex;
    flex-direction: column;
  }
  #corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit>div {
    flex-direction: column;
    gap: 10px;
  }
  #corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .wp-block-columns {
    flex-direction: row;
  }

  .before-footer-contact .cta-buttons .wp-block-column .link-button a {
    padding: 15px 20px 15px 5px;
  }
  #footer .footer-main-contents > div > .wp-block-columns {
    flex-direction: column;
  }
  #footer .left-contents {
    flex-direction: row;
    flex-basis: unset !important;
    justify-content: center;
  }

  .p-topArea__body {
    bottom: 17px;
  }
  .c-pageTitle__main {
    font-size: 70px;
  }
  .c-pageSubTitle {
    font-size: 18px;
  }

  #message-section .executive-item {
    flex-direction: column;
    gap: 30px !important;
    flex-wrap: nowrap !important;
  }
  #message-section .executive-item .image-column {
    flex-basis: unset !important;
  }
  #message-section .executive-item .image-column figure {
    margin: 0 auto;
  }

  #quality-section .quality-point-block {
    margin-bottom: 250px;
  }
  #quality-section .quality-point-block .detail-block {
    width: 90%;
  }

  #support-section .support-block .support-item .text {
    font-size: 14px;
  }

  #for-society-section .contributes-block>div {
    grid-template-columns: repeat(2, 1fr);
  }

  #corporate-menu-section .corporate-menu-buttons .link-button {
    font-size: 14px;
  }

  #corporate-menu-section .corporate-menu-buttons>div {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-phrase {
    font-size: 40px;
  }

  .network-block,
  .area-block {
    flex-direction: column;
    gap: 30px !important;
  }
  .map-image-column {
    flex-basis: unset !important;
  }
  .companies-column .table-row {
    flex-direction: row;
    gap: 30px !important;
  }
  .companies-column .table-row .table-th {
    flex-basis: 200px !important;
    text-align: center;
  }

  .flow-block>div {
    grid-template-columns: repeat(1, 1fr);
  }

  .flow-block .flow-item:before {
    bottom: -45px;
    top: unset;
    right: 0;
    left: 0;
    transform: rotate(90deg);
  }
  .flow-block .flow-item:after {
    transform: rotate(90deg);
    bottom: -38px;
    right: 0;
    left: 0;
    top: unset;
  }
  .flow-block .flow-item > div:before {
    transform: rotate(90deg);
    right: 0;
    bottom: -30px;
    left: 0;
    top: unset;
  }
  .flow-block .flow-item > div:after {
    transform: rotate(90deg);
    right: 0;
    left: 0;
    top: unset;
    bottom: -25px;
  }

  .travel-materials-block>div {
    grid-template-columns: repeat(2, 1fr);
  }

  #tour-contact-section .section-title h2 {
    font-size: 30px;
  }

  #other-business-section .business-list {
    grid-template-columns: repeat(1, 1fr);
  }
  
  #other-business-section .business-list .business-item a {
    flex-direction: row;
  }
  #other-business-section .business-list .business-item:nth-child(odd) .business-thumb-image {
    width: auto;
    height: 350px;
    flex: 1;
    order: 1
  }
  #other-business-section .business-list .business-item:nth-child(even) .business-thumb-image {
    width: auto;
    height: 350px;
    flex: 1;
    order: 5;
  }
  #other-business-section .business-list .business-item .business-detail {
    flex: unset;
    width: 400px;
  }

  #message-section .executive-item .message-column {
    right: 0;
    max-width: 75%;
    top: 400px;
    border-radius: 15px 0 0 0;
    padding: 50px;
  }
  #message-section .swiper-container,
  #message-section .vk_slider_item {
    height: 60rem !important;
  }

  .vk_slider .swiper-button-next,
  .vk_slider .swiper-button-prev,
  .vk_post_list_slider .swiper-button-next,
  .vk_post_list_slider .swiper-button-prev {
    top: 300px;
    bottom: unset;
  }

  .single-news .l-content__body .l-article .news-title h1 {
    font-size: 35px;
  }

  .c-pnNav {
    flex-direction: column;
    padding: 0 20px;
  }
  .c-pnNav__item a {
    width: 100%;
    padding: 20px 0;
  }
  .c-pnNav__item:last-child a {
    border-left: 0;
    border-top: 1px solid #ccc;
  }

  #contact-information-section .contents-wrapper>div .site-link-block .wp-block-heading {
    width: 350px;
  }

  .history-list .history-item .detail {
    font-size: 16px;
  }
}

@media (max-width: 850px) {
  #drawer_menu {
    width: 100%;
    right: unset;
    left: 0;
  }
  .p-drawer__inner {
    max-width: 100% !important;
  }

  #mainvisual .mainvisual-contents .catchcopy.for-pc {
    display: none;
  }
  #mainvisual .mainvisual-contents .catchcopy.for-sp {
    display: block;
  }
  #mainvisual .mainvisual-contents .catchcopy {
    font-size: 65px;
  }
  #mainvisual .mainvisual-contents .sub-copy {
    font-size: 24px;
    margin-top: -15px;
  }

  .news-list a .news-detail .news-date {
    font-size: 18px;
  }
  .news-list .news-item .news-title {
    font-size: 1.4rem;
  }

  #strength-section .area-available-numbers {
    flex-direction: column;
    margin-top: 30px;
  }
  #strength-section .area-available-numbers .area-panels {
    flex-basis: unset !important;
    order: 2;
  }
  #strength-section .area-available-numbers .area-maps {
    flex-basis: auto !important;
  }
  #strength-section .area-available-numbers .switch-panel .panel-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
  #strength-section .area-available-numbers .area-panels .area .area-name {
    width: auto;
    font-size: 30px;
    padding: 0;
    line-height: unset;
  }
  
  #message-section .executive-item .message-column .message h3 .line-wrapper {
    line-height: 1.5;
  }
  .swiper-button-prev {
    left: 0;
  }
  .swiper-button-next {
    right: 0;
  }

  #support-section .support-block {
    flex-direction: column;
  }
  #support-section .support-block .support-item {
    flex-direction: column;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
  }
  #support-section .support-block .support-item:first-child {
    border-left: 0;
  }

  #network-section .description-block {
    flex-direction: column;
    gap: 30px !important;
  }
  #network-section .description-block .link-column {
    flex-basis: unset !important;
  }

  #introduct-section .executive-block>div {
    grid-template-columns: repeat(2, 1fr);
  }

  #tour-contact-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }
  #tour-contact-section .contents-wrapper {
    padding: 0 !important;
  }
  #tour-contact-section .section-title h2 {
    font-size: 24px;
  }

  #message-section .executive-item .message-column {
    position: static;
    padding: 0;
    max-width: 100%;
  }

  .contact-form-table.table-style .table-row {
    flex-direction: column;
  }
  .contact-form-table.table-style .table-row .table-th {
    width: 100%;
    padding: 10px 20px;
  }

  #contact-information-section .contents-wrapper>div .site-link-block>div {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  #contact-information-section .contents-wrapper>div .site-link-block .wp-block-heading {
    width: unset;
  }

  #contact-information-section .contents-wrapper>div .site-link-block .banner-wrapper>div {
    flex-direction: row;
    flex-wrap: wrap;
  }

  #fit-products-section .product-block>div .product-image-wrapper>div {
    gap: 15px;
  }

  .history-list .history-item .year {
    font-size: 20px;
    width: 70px;
  }

  .vk_slider .swiper-button-next,
  .vk_slider .swiper-button-prev,
  .vk_post_list_slider .swiper-button-next,
  .vk_post_list_slider .swiper-button-prev {
    top: 200px;
    bottom: unset;
  }
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .contents-wrapper {
    margin-top: 30px !important;
    padding-left: 0;
    padding-right: 0;
  }

  .p-drawer__body {
    padding-left: 25px;
    padding-right: 25px;
  }
  .c-drawerNav__li a .__mainText {
    font-size: 13px;
  }

  .section-title h2 {
    padding: 0 10px;
    font-size: 40px;
  }
  .section-title h2.marker::before {
    width: 2em;
  }
  .section-title .sub-title {
    padding: 0 10px;
    font-size: 16px;
  }

  a .arrow-mark {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }
  a .arrow-mark::before,
  a .arrow-mark::after {
    border-width: 2px;
  }

  .two-column-contents {
    gap: 30px !important;
  }

  .cm-x-p,
  #header .l-header__body,
  #mainvisual .mainvisual-contents,
  #footer .footer-main-contents,
  #footer .l-footer__foot,
  .single-news .l-content__body,
  .post-type-archive-news .l-content__body {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .cm-y-p {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  #news-section .contents-column,
  #mission-section .contents-wrapper,
  #strength-section .contents-wrapper,
  #corporate-information-section .contents-wrapper .contents-layer .inner-contents-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #mainvisual .mainvisual-contents .wp-block-group__inner-container {
    margin-bottom: 50px;
  }

  .news-list a .news-detail .news-excerpt {
    font-size: 12px;
  }

  #mission-section .contents-wrapper {
    margin-top: 30px;
    margin-bottom: 0;
  }
  #mission-section .contents-wrapper .mission-word {
    font-size: 25px;
  }
  #mission-section .contents-wrapper .line-wrapper,
  #strength-section .contents-wrapper .line-wrapper {
    line-height: 1.4;
  }
  .slider-text {
    font-size: 5rem;
  }

  #strength-section .contents-wrapper {
    margin-top: 30px;
  }

  #strength-section .contents-wrapper .world-map::before {
    font-size: 16px;
    left: 0;
    top: 0;
  }
  #strength-section .contents-wrapper .world-map {
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  #strength-section .area-available-numbers .area-panels .area .area-name,
  #strength-section .area-available-numbers .area-panels .area .unit {
    font-size: 25px;
  }

  #travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-1 {
    width: 250px;
  }
  #travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-2 {
    width: 200px;
    top: 415px;
  }
  #travel-abst-section .plain-contents-wrapper .travel-images figure.travel-abst-image-5 {
    top: 330px;
  }
  #travel-abst-section .plain-contents-wrapper .contents-entity h3 {
    font-size: 24px;
    font-weight: 900;
  }
  #travel-abst-section .achievement-item {
    gap: 15px !important;
  }
  #travel-abst-section .achievement-item .achievement-title {
    flex-basis: 180px !important;
    display: inline-flex;
    align-items: center;
  }
  #travel-abst-section .achievement-item .achievement-title h4 {
    font-size: 16px;
  }
  
  #travel-abst-section .achievement-item .achievement-results {
    flex-basis: auto !important;
  }
  #travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-results .number {
    line-height: 1;
  }

  #corporate-information-section .contents-wrapper {
    margin-top: 30px;
  }
  #corporate-information-section .parallax-wrapper {
    height: 250px;
  }
  #corporate-information-section .contents-wrapper .contents-layer .left-contents {
    gap: 20px;
  }
  #corporate-information-section .contents-wrapper .corporate-information-menu .link-button a {
    font-size: 16px;
  }

  .before-footer-contact .cta-buttons {
    margin-top: 30px;
  }
  .before-footer-contact .contents p {
    font-size: 16px;
  }
  .before-footer-contact .cta-buttons .wp-block-column .link-button a {
    font-size: 16px;
  }

  .sp-link {
    display: block;
    text-align: right;
    margin-top: 50px;
    position: relative;
    z-index: 100;
  }
  #mission-section .sp-link {
    margin-bottom: 80px;
  }

  #footer .footer-menus {
    margin-bottom: 50px;
  }
  #footer .footer-menus>.wp-block-group__inner-container {
    gap: 15px;
  }
  #footer .footer-menus>.wp-block-group__inner-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-topArea {
    height: 300px;
  }
  .p-topArea__body {
    bottom: 20px;
  }
  .c-pageTitle__main {
    font-size: 50px;
  }
  .c-pageSubTitle {
    font-size: 16px;
  }
  #top_title_area:after {
    border-radius: 20px 20px 0 0;
  }
  #breadcrumb {
    padding-left: 25px;
    padding-right: 25px;
  }

  #message-section .executive-item .message-column .message h3 {
    font-size: 26px;
  }

  #quality-section .quality-point-block .detail-block .number-column {
    flex-basis: 80px !important;
  }
  #quality-section .quality-point-block .detail-block .number-column p {
    font-size: 50px;
  }
  #quality-section .quality-point-block .detail-block .title-column p {
    font-size: 16px;
  }
  #quality-section .quality-point-block .detail-block .title-column h3 {
    font-size: 26px;
  }
  #quality-section .quality-point-block .detail-block {
    width: 95%;
  }
  #quality-section .quality-point-block .detail-block .text h4 {
    font-size: 22px;
  }
  #quality-section .quality-point-block .detail-block .text p {
    font-size: 14px;
    margin-top: 5px;
  }

  #corporate-menu-section .corporate-menu-buttons>div {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-style .table-row {
    padding: 15px 0;
    gap: 5px !important;
  }
  .table-style .table-row .table-th {
    text-align: left;
  }
  .table-style .table-row .table-td {
    font-size: 15px;
  }

  #privacy-policy-section .contents-wrapper .clause-inner-block {
    padding-left: 0;
  }

  .page-phrase {
    font-size: 30px;
    margin-bottom: unset;
  }
  .page-phrase br {
    display: none;
  }
  .page-section-phrase {
    font-size: 26px;
    margin: 0;
  }
  .network-block,
  .area-block {
    gap: 15px !important;
  }

  .flow-block .flow-item .flow-order-number {
    font-size: 40px;
  }
  .flow-block .flow-item .flow-contents .flow-title h4 {
    font-size: 20px;
  }
  .flow-block .flow-item .flow-contents .flow-description p {
    font-size: 14px;
  }

  .travel-materials-block>div {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  #tour-contact-section .link-button a,
  #cruise-page #tour-contact-section .contact-message {
    padding-left: 25px;
    padding-right: 25px;
  }

  #other-business-section .business-list .business-item a {
    flex-direction: column;
  }
  #other-business-section .business-list .business-item .business-thumb-image {
    order: 1 !important;
    width: 100%;
    height: 300px;
    flex: unset !important;
  }
  #other-business-section .business-list .business-item .business-detail {
    width: 100%;
  }

  .product-block .product-detail .product-title {
    font-size: 24px;
  }

  #message-section .swiper-container,
  #message-section .vk_slider_item {
    height: 60rem !important;
  }

  .single-news .l-content__body .l-article .news-content {
    min-height: 200px;
  }
  .single-news .l-content__body .l-article .news-title h1 {
    font-size: 30px;
  }

  .c-pnNav__item.-prev .c-pnNav__text-wrapper:before,
  .c-pnNav__item .c-pnNav__title,
  .c-pnNav__item .c-pnNav__date {
    font-size: 14px;
  }

  .post-type-archive-news .archive-contents-wrapper .archive-sidebar .term-item a {
    font-size: 14px;
    word-break: keep-all;
    width: max-content;
  }

  .single-news .l-content__body .l-article .news-title h1 {
    font-size: 26px;
  }

  #contact-information-section .for-corporate h4,
  #contact-information-section .for-individual h4 {
    font-size: 18px;
  }

  .p-topArea__img {
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  #mainvisual .mainvisual-contents .catchcopy {
    font-size: 40px;
    filter: unset;
    margin: 0;
  }
  #mainvisual .mainvisual-contents .sub-copy {
    font-size: 17px;
    margin-top: -5px;
  }
  #mainvisual .line-animation .line-wrapper:nth-child(n + 2),
  #mainvisual .char-animation .line-wrapper:nth-child(n + 2) {
    margin-top: -15px;
  }

  .news-list .news-item .news-title {
    font-size: 1.2rem;
  }
  .news-list a .news-detail .news-excerpt {
    display: none;
  }

  #strength-section .contents-wrapper .world-map {
    margin-left: -25px;
    margin-right: -25px;
  }

  #strength-section .area-available-numbers .area-panels .area .area-name {
    width: 100%;
    line-height: 1;
    font-size: 20px;
    padding-left: 20px;
  }
  #strength-section .area-available-numbers .switch-panel .panel-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  #strength-section .area-available-numbers .area-maps {
    border-radius: 0;
    border: 0;
    margin-left: -25px !important;
    margin-right: -25px !important;
  }

  .business-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .business-list .business-item .business-thumb-image {
    height: 350px;
  }

  #travel-abst-section .achievement-item {
    flex-direction: column;
  }
  #travel-abst-section .plain-contents-wrapper .contents-entity .achievement-item .achievement-title {
    flex-basis: auto !important;
  }

  #corporate-information-section .parallax-wrapper {
    height: 180px;
  }
  #corporate-information-section .contents-wrapper .bg-layer {
    top: 20px;
  }
  #corporate-information-section .contents-wrapper .bg-layer .corporate-image {
    width: 150%;
    margin: 0 -25%;
  }
  #corporate-information-section .contents-wrapper .contents-layer .left-contents .recruit .wp-block-columns {
    flex-direction: column;
    gap: 10px !important;
  }
  #corporate-information-section .contents-wrapper .corporate-information-menu>div {
    grid-template-columns: repeat(1, 1fr);
  }
  #corporate-information-section .contents-wrapper .corporate-information-menu>div .link-button:nth-child(-n+2) {
    border-top: 0;
  }
  #corporate-information-section .contents-wrapper .corporate-information-menu>div .link-button:first-child {
    border-top: 2px solid #000;
  }

  #footer .footer-menus>.wp-block-group__inner-container .widget_nav_menu:first-child {
    grid-column: 1 / 3;
  }

  #footer .footer-banners>div {
    justify-content: center;
  }

  #message-section .executive-item .image-column figure {
    max-width: 100%;
  }

  #quality-section .quality-point-block {
    padding: 0;
    margin-bottom: 50px;
  }
  #quality-section .quality-point-block:last-child {
    margin-bottom: 0;
  }
  #quality-section .quality-point-block>div {
    flex-direction: column;
    gap: 30px;
  }
  #quality-section .quality-point-block .detail-block {
    position: static;
    padding: 0;
  }

  #for-society-section .contributes-block>div {
    grid-template-columns: repeat(1, 1fr);
  }

  #for-society-section .contributes-block .contribute-item figure {
    height: auto;
    padding: 20px 0;
  }

  #corporate-menu-section .corporate-menu-buttons>div {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  #introduct-section .executive-block>div {
    grid-template-columns: repeat(1, 1fr);
  }

  .page-phrase {
    font-size: 26px;
  }

  #fit-products-section .product-block>div .product-image-wrapper>div .product-image img {
    height: auto !important;
  }

  #tour-contact-section .link-button a .wp-block-columns {
    flex-direction: column !important;
  }

  #tour-contact-section .link-button a .wp-block-columns .only-sp-text {
    display: inline-block;
  }

  #tour-contact-section .link-button a .wp-block-columns .wp-block-column:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
  }

  #message-section .swiper-container,
  #message-section .vk_slider_item {
    height: 62rem !important;
  }

  .history-list .history-item>div {
    gap: 0;
    flex-wrap: wrap;
  }
  .history-list .history-item .year {
    width: 100%;
  }
  .history-list .history-item .divider {
    margin-top: 5px;
  }
  .history-list .history-item .detail {
    margin-left: 15px;
    min-height: 60px;
  }

  .balance-sheet-table .subject-column {
    flex-basis: 55% !important
  }
  .balance-sheet-table .amount-column {
    flex-basis: 45% !important;
  }
  .balance-sheet-table .table-header p .unit {
    font-size: 10px;
  }
  .balance-sheet-table .subject-column {
    padding: 5px 10px;
  }

  .balance-sheet-table .table-header p {
    letter-spacing: 2px;
  }

  .balance-sheet-table .table-block-contents .subject-column > ul {
    padding-left: 0;
  }

  #contact-for-tour-page .attention-message {
    padding: 15px 20px;
  }
  #contact-for-tour-page .attention-message h5 {
    font-size: 16px;
  }

  .vk_slider .swiper-button-next,
  .vk_slider .swiper-button-prev,
  .vk_post_list_slider .swiper-button-next,
  .vk_post_list_slider .swiper-button-prev {
    top: 150px !important;
  }
}

/* 強制 */
.no-mt {
  margin-top: 0 !important;
}
.no-pb {
  padding-bottom: 0 !important;
}

/* reCAPTCHAバッジを完全に非表示 */
.grecaptcha-badge {
  display: none !important;
}