@charset "UTF-8";
/* CSS Document */
/*VARIABLES
-------------------------------------------*/ :root {
  --black: #000;
  --light-green-origin: rgb(190, 231, 237);
  --light-green: rgb(194, 242, 237);
  --greenop80: rgba(0, 154, 186, .8);
  --green: rgba(0, 123, 148, 1);
  --green95: rgb(0, 123, 148, .95);
  --brown: rgb(135, 75, 30);
  --light-grey: #d5d4cf;
  --white: #fff;
  --whiteOp80: rgba(256, 256, 256, .9);
  --NotoSans-font: 'Noto Sans JP', sans-serif;
  --Mplus1: 'M PLUS 1p', sans-serif;
  --pcmaxwidth: 1281px;
  --translate: 5px 5px;
  --transition: all .5s ease-in-out;
  --opacity: .8;
  --japanblue: rgba(0, 81, 126, 1);
  --japangreen: #b6b666;
  --gray: #d5d4cf;
  --gray2: rgba(233, 231, 226, .3);
  --blue: rgba(0,123,148,1);
  --btn-padding-vertical: 0.8rem;
  --btn-padding-left: 1rem;
  --icon-area-right: 1rem; /* 右端余白 */
  --icon-size: 1.2rem;
  --transition-speed: 0.25s;
}
/*2025以降メニュー
-------------------------------------------*/
html {
  /*font-family: "Noto Sans JP", sans-serif;*/
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
  color: #000;
}
body {
  /*font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 350;
  font-style: normal;*/
}
h1, h2, h3, h4 {
  font-weight: 500;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2.0rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.6rem;
}
a, p, div,ul,li {
  font-size: 1.6rem;
}
#header a {
  text-decoration: none;
}
a {
  text-decoration: none;
	color: #000;
}
li{
	list-style: none;
}
heder {}
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4%;
  background: rgba(255, 255, 255, 0.8);
  /*background: var(--green);*/
  color: #000;
  position: fixed; /* sticky → fixed に変更 */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.7s ease; /* ゆっくりアニメーション */
}
#header.hide {
  transform: translateY(-100%);
}
#header.hide {
  transform: translateY(-100%); /* 上に隠す */
}
.logo {
  font-weight: 500;
  font-size: 1.8rem;
  padding: .2em 0 0;
  color: #000;
  display: flex;
  align-items: center;
}
.logo span {
  margin-right: .4rem;
  padding: .2rem .4rem;
  background: var(--green);
  color: #fff;
}
/* ハンバーガーアイコン */
.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100; /* メニューより上に配置 */
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s ease;
}
/* active時に×に変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #fff;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #fff;
}
/* ナビメニュー（スマホ用：全画面オーバーレイ） */
nav {
  position: fixed;
  inset: 0;
  background: var(--green95); /* 半透明ダーク */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
nav.active {
  opacity: 1;
  pointer-events: auto;
}
nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover {
  color: #c3c3c3; /* アクセント */
}
.sns {
  width: 100%;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns img {
  width: 40px;
  margin: 0 12px;
}
#footer {
  font-weight: 500;
}
.footer-content {
  margin: 15px 4%;
  border-top: rgba(264, 254, 254, 0.5) 1px solid;
  padding: 30px 0 0;
}
.footer-sns-ad {
  background: var(--green);
  margin: 25px 4% 0;
  padding: 30px 0;
  text-align: left;
  color: #fff;
  border-radius: 8px;
}
.footer-sns-ad div {}
.footer-nav {
  line-height: 3;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 4%;
}
.footer-nav a {
  color: #fff;
  line-height: 3;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.footer-sns {
  justify-content: flex-start;
  padding: 15px 0;
}
.copyright {
  padding: 20px 6%;
  line-height: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}
/*
ページタイトル---------------------------*/
.page-title {
  padding: 120px 4% 30px;
}
.page-title h1 {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.page-title-en {
  font-size: 1rem;
}
/*
ボタン----------------------------------*/
.button {
  display: inline-flex; /* フレックスで中央寄せ */
  align-items: center; /* 縦方向中央 */
  justify-content: center; /* 横方向中央 */
  height: 4.4rem; /* 高さを決めて左右を半円に */
  padding: 0 2.2rem; /* 左右の余白 */
  background-color: rgba(0, 123, 148, 1);
  color: #fff; /* 文字色を白 */
  text-decoration: none; /* 下線を消す */
  font-size: 16px;
  font-weight: 500;
  border-radius: 9999px; /* 両端を丸く（ピル型） */
  transition: background .2s ease, transform .2s ease;
}
.button:hover {
  background-color: rgba(0, 123, 148, 0.85); /* 少し淡く */
  transform: translateX(2px); /* ふわっと */
}
.button:active {
  transform: translateX(0);
}
.button:focus {
  outline: 3px solid rgba(0, 123, 148, 0.4);
  outline-offset: 2px;
}
/* 外部リンク矢印 */
/* サイズ、色、太さを制御するためのCSS */
.external-arrow,.internal-arrow {
	flex-shrink: 0;
  /* 矢印全体のサイズを設定 */
  width: 1rem;
  height: 1rem;
  
  /* デフォルトの色、太さ、線端のスタイルを設定 */
  stroke: var(--green); /* 色の変更 */
  stroke-width: 20; /* 線の太さの変更 */
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.external-arrow.wihte {
  stroke: #fff; /* 色の変更 */
}
/* 矢じりの太さの微調整（オプション） */
.external-arrow .arrowhead {
  /* 矢じり部分の線の太さを、矢印の幹とは別に調整することも可能 */
  /* stroke-width: 6; */
}

/* ホバー時の色の変更（例） */
.external-arrow:hover {
  stroke: var(--green95);
}
/* 内部リンク矢印 */
/* サイズ、色、太さを制御するためのCSS */
/* SVG全体のサイズと、線のデフォルトスタイルを設定 */
.internal-arrow.white {
  stroke: #fff;     /* 色の変更 */
}

/*
マウスオーバーで右にスライド----------------*/
.js-slide-right {
  cursor: pointer;
  padding: 0 1.6rem;
  transition: transform 1000ms cubic-bezier(0.25, 1, 0.5, 1), background 1000ms ease;
  will-change: transform, background;
}
/*
リンクの矢印----------------*/
.link-arrow {
  position: relative;
  text-decoration: none;
}
.link-arrow::after {
  content: "→"; /* 矢印記号 */
  margin-left: 0.4em; /* テキストとの間隔 */
}
/*
リンクの矢印(外部）----------------*/
.external-link::after {
  content: "↗"; /* 斜め矢印 */
  margin-left: 0.3em;
  font-size: 0.9em;
}
/*
折りたたみ------------------------*/
.foldable__content {
  overflow: hidden;
  max-height: 260px;
  transition: max-height 0.6s ease;
  position: relative;
  padding-bottom: 3.5rem; /* ボタン用スペース */
  z-index: 1;
}

/* 下フェード */
.foldable__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0rem; /* ボタンの下にスペースを空ける */
  height: 10rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.foldable.open .foldable__content::after {
  opacity: 0;
  bottom: 3rem;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* ボタン */
.foldable__btn {
  display: block;
  width: 25%;
  margin: 2rem auto;
  background: rgba(0,123,148,1);
  color: #fff;
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  position: relative; /* ここを relative にして絶対位置をやめる */
}
/* ========= スクロールアニメーション =========== */
.animate {
  opacity: 0;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(.2,.9,.3,1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.animate.in-view {
  opacity: 1;
  transform: none;
}

/* 方向別オフセット */
.animate-from-bottom { transform: translateY(40px); }
.animate-from-left   { transform: translateX(-40px); }
.animate-from-right  { transform: translateX(40px); }

/* モーション軽減設定 */
@media (prefers-reduced-motion: reduce) {
  .animate {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* 小型ノートPC */
@media (min-width: 900px) {
  .footer-content {
    margin: 15px 4%;
    border-top: rgba(264, 254, 254, 0.5) 1px solid;
    padding: 30px 0 0;
  }
  .footer-sns-ad {
    background: var(--green);
    margin: 25px 4% 0;
    padding: 30px 0;
    text-align: left;
    color: #fff;
    border-radius: 8px;
    display: grid;
    justify-content: end;
    grid-template-columns: 2fr 1fr;
    grid-template-areas:
      "item-a item-b"
      "item-a item-c";
  }
  .item-a {
    grid-area: item-a;
  }
  .item-b {
    grid-area: item-b;
  }
  .item-c {
    grid-area: item-c;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-nav a {
    line-height: 3;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .footer-sns {
    justify-content: flex-start;
    padding: 15px 0;
  }
  .copyright {
    padding: 20px 6%;
    line-height: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
}
/* PC表示では横並び */
@media (min-width: 1200px) {
  /*.hamburger {
    display: none;
  }
  nav {
    position: static;
    background: none;
    opacity: 1;
    pointer-events: auto;
    font-size: 1rem;
    gap: 20px;
  }*/
}