/* 2025/04/16 */

@charset "utf-8";

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  /* PC表示時に背景色を付けたい場合などに設定 */
  background-color: #ffffff;
  margin: 0;
  /* bodyのデフォルトマージンをリセット */
  padding: 0;
}

.container {
  width: 750px;
  /* LPの指定幅 */
  margin-left: auto;
  /* 左右マージンを自動設定 */
  margin-right: auto;
  /* これによりブロック要素が中央揃えされる */
  /* PCで見たときに見やすいように、上下にもマージンや影などを設定しても良い */
  /* 例: margin: 20px auto; */
  background-color: #ffffff;
  /* コンテンツの背景色 */
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),
ul,
ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 600;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #333;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover>img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */
#wrapper {
  width: 100vw;
  max-width: 750px;
  margin: 0 auto;
  background: #fff
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 auto;
  max-width: 750px;
}

@media(max-width: 599px) {
  body .l-wide {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding>.l-margin:first-child {
  margin-top: 0;
}

.l-padding>.l-margin:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .l-margin {
    margin: ;
  }

  .l-padding {
    padding: px;
  }
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {

  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }

  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}

/* 画像の大きさ */

.l-max-width-90 {
  max-width: 90%;
}

.l-max-width-80 {
  max-width: 80%;
}

.l-max-width-70 {
  max-width: 70%;
}

.l-max-width-60 {
  max-width: 60%;
}

.l-max-width-50 {
  max-width: 50%;
}

.l-max-width-40 {
  max-width: 40%;
}

.l-max-width-30 {
  max-width: 30%;
}

.l-max-width-20 {
  max-width: 20%;
}

.l-max-width-10 {
  max-width: 10%;
}

@media(max-width: 599px) {
  .l-sp-max-width-90 {
    max-width: 90%;
  }

  .l-sp-max-width-80 {
    max-width: 80%;
  }

  .l-sp-max-width-70 {
    max-width: 70%;
  }

  .l-sp-max-width-60 {
    max-width: 60%;
  }

  .l-sp-max-width-50 {
    max-width: 50%;
  }

  .l-sp-max-width-40 {
    max-width: 40%;
  }

  .l-sp-max-width-30 {
    max-width: 30%;
  }

  .l-sp-max-width-20 {
    max-width: 20%;
  }

  .l-sp-max-width-10 {
    max-width: 10%;
  }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =======================================================================

  ヘッダー

======================================================================= */

.header {
  display: flex;
  background-color: #01b1a6;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  width: 100%;
  position: relative; /* 初期は通常表示 */
  top: 0;
  transition: top 0.3s ease;
  z-index: 999;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.header_logo {
  width: 85%;
}

.header_logo img {
  vertical-align: bottom;
}

@media (min-width: 751px) {
  .header.fixed {
    position: relative;
  }
}

/* ハンバーガーメニュー（常に表示） */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* 上下の線を均等配置 */
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center center; /* 中央回転 */
}

/* グロナビ */
.global-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);

  opacity: 0;             /* 初期は透明 */
  visibility: hidden;     /* 初期は非表示 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.global-nav.show {
  opacity: 1;             /* 表示時 */
  visibility: visible;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav li {
  display: flex; /* 横並び */
  justify-content: space-between; /* 左にテキスト、右に矢印 */
  align-items: center; /* 垂直中央 */
  padding: 15px 20px;
  border-bottom: 1px solid #01b1a6; /* 下線 */
  cursor: pointer;
  position: relative;
}

/* 文頭に下向き矢印を右端に配置 */
.global-nav li::before {
  content: "▼";
  color: #01b1a6;
  font-size: 0.8em;
  order: 2; /* 矢印を右側 */
  margin: 0;
}

/* テキストは左側に */
.global-nav li a {
  color: #01b1a6;
  text-decoration: none;
  display: inline-block;
  width: auto;
  order: 1;
}

/* 最後の li は下線なし */
.global-nav li:last-child {
  border-bottom: none;
}

/* ホバー時に少し背景色変更 */
.global-nav li:hover {
  background-color: rgba(1, 177, 166, 0.1);
}

/* =======================================================================

  メイン

======================================================================= */
main .fv {
  background-size: 100vw;
  margin-bottom: 0px;
}


main .cta {
  width: 100%;
  aspect-ratio: 750 / 1575;
}


main .faq .faq-wrap {
  padding: 0 calc(30 / 750 * 100%) calc(35 / 750 * 100%);
}

.main {
  padding-bottom: 0px;
}

.main>*:first-child {
  margin-top: 0;
}

.main>*:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 0px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
}

.h3:first-child {
  margin-top: 0;
}

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding: .75em 1em;
    font-size: 21px;
  }
}

/* 小見出し H3-1
======================================================================= */

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
  position: relative;
}

.h3-1:first-child {
  margin-top: 0;
}

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(images/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(images/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }

  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
    margin: 2em auto 1em;
    font-size: 18px;
  }
}

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}



/* キャプション
======================================================================= */

.caption,
.main p.caption {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}


/* =======================================================================
  CTA
======================================================================= */

.cta_container {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  z-index: 1;
}

ul.cta_btn_box {
  width: 88%;
  margin: 0 auto;
}

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

.cta_btn_box {
  position: absolute;
  width: 95%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 9%;
}

.cta .is-shadow-l:hover {
  filter: none;
}


.cta__btn img {
  border-radius: 9px;
}

.cta .is-shadow-l:hover {
  filter: none;
}

.cta_aten {
  position: absolute;
  bottom: 2vw;
  left: 0;
  width: 100%;
  text-align: center;
}


/* =======================================================================
ふわふわ
======================================================================= */

/*アニメーション*/
.animation {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }

  100% {
    transform: translateY(0)
  }
}

/* =======================================================================
  よくある質問
======================================================================= */

.faq {
  background-color: #e7f6f2;
}

.faq_img {
  margin-bottom: 20px;
}

main .faq .faq-wrap details {
  border: #01b1a6 1px solid;
  margin-bottom: calc(25 / 750 * 100%);
}

main .faq .faq-wrap summary {
  background-color: #fff;
  color: #3f3f3f;
  padding: calc(30 / 690 * 100%) calc(90 / 690 * 100%) calc(30 / 690 * 100%) calc(110 / 690 * 100%);
  display: block;
  list-style: none;
  position: relative;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

details {
  display: block;
}

main .faq .faq-wrap summary {
  font-weight: 600;
  font-size: 1.1em;
}


/* ＋／－ を上下中央に配置 */
main .faq .faq-wrap summary:after {
  position: absolute;
  content: "＋";
  color: #01b1a6;
  font-size: 22px;
  right: calc(15 / 690 * 100%);
  top: 50%;
  transform: translateY(-50%);
}

/* 開いた時は － を表示 */
main .faq .faq-wrap details[open] summary:after {
  content: "－";
}


/* Q を上下中央に配置 */
main .faq .faq-wrap .faq-item summary:before {
  position: absolute;
  content: "Q";
  font-size: 28px;
  left: calc(30 / 690 * 100%);
  top: 50%;
  transform: translateY(-50%);
  color: #01b1a6;
}


main .faq .faq-wrap .faq-item p {
  background-color: #fff;
  border-top: #01b1a6 1px solid;
  color: #484848;
  font-weight: 400;
  padding: calc(30 / 690 * 100%) calc(40 / 690 * 100%) calc(30 / 690 * 100%) calc(110 / 690 * 100%);
  display: block;
  position: relative;
  animation: fadeIn .5s ease;
}

/* Aの頭文字 */
main .faq .faq-wrap .faq-item p:before {
  position: absolute;
  content: "A";
  display: inline-block;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  left: calc(30 / 690 * 100%);
  margin-top: -.1em;
  color: #01b1a6;
}



@media(max-width: 599px) {
  .faq__q {
    padding: 24px 1em;
  }

  .faq__q h4 {
    font-size: 18px;
    padding-left: 36px;
  }

  .faq__q::before {
    position: absolute;
    font-size: 30px;
  }

  .faq__a {
    margin: 0 auto 24px;
    padding: 24px 24px;
  }

  .main .faq__a,
  .main .faq__a p,
  .main .faq__a li {
    font-size: .95em;
  }
}

/*-------------------------------------------
　アクセス
-------------------------------------------*/



/*埋め込み地図*/

.access__maparea {
  position: relative;
  height: 300px;
  /* iframe の高さと同じにする */
  margin: 0 auto;
  /* 中央寄せ */
}

.access__map {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  /* 親要素いっぱいに広げる */
}



/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0 auto;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #01b1a6;
}



.footer__copy {
  font-size: 1em;
  text-align: center;
  color: #fff;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }

  .footer__inner {
    display: block;
  }

  .footer__logo {
    margin-bottom: 24px;
  }

  .footer__logo img {
    max-width: 50%;
  }

  .footer__nav ul {
    justify-content: center;
  }

  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  このページの先頭へ戻る
======================================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  clear: both;
  text-align: right;
}

.back-to-top a {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAABhlBMVEUAAADMzMzd3d2AgIDd3d3d3d3c3Nzb29vc3NzV1dXc3Nzc3Nzd3d3d3d3c3Nzb29vc3Nzc3Nze3t7c3NzW1tbb29vd3d3d3d3d3d3c3Nzc3Nzf39/d3d3d3d3b29va2trc3NzGxsbb29vc3Nzd3d3d3d3c3Nzc3Ny/v7/c3Nzd3d3c3NzR0dHY2Njc3Nzc3Nzc3Nzc3Nzc3Nzb29vY2Nja2trc3Nzc3NzZ2dnc3Nze3t7d3d3c3Nzc3Nzc3NzX19fc3Nzc3Nzc3Nzd3d3b29vc3Nzc3Nzb29vV1dXd3d3c3NzV1dXd3d3c3Nzc3Nzd3d3c3Nzc3Nzd3d3d3d3c3Nzc3Nzb29vc3Nzd3d3d3d3d3d3c3Nzd3d3d3d3////o6Oj9/f329vbm5ub8/Pz5+fn4+Pj+/v7w8PDj4+Py8vLx8fHv7+/i4uL4+fnk5OTs7Ozd3d339/ekpqrt7e3u7u6doKS3ubzLzM6+wMLr6+vf39/6+vrl5uexs7bR09WqrbDr7O3e3+Ej3aiqAAAAXnRSTlMACuEC35y4FXYMFunx9NtH60j0px9NeHCUUCT+WchcKewJB2y70VjzCKjX2gsh1m2Yk9yPDUXV5RTG79DjkL0g+eTinV3FHUYS3r8G7d2+b/KZ4NK3dZ5RSlJ3SVq5/bnMpQAAAw1JREFUeF6t2WVz4lAUgOGDU6SFFipABaruLluVdXe58eBWddl/vjPMMGXTJpwk9/0Bz6ebKydQp6X53va+Ce9gafP1m/6+9t75JTCeJTy7GuUvkpwosERmr0QuecFHV2fDFiOaranFzydF8igxyftbmmw6uYY2eyojEJWETMHe1gD44l8CTJloVmYC7jjWG7AyIqmbyFgHUFzoc4ojqLiUM1Tf6/IdywSZfOzrAu2GdnIS0ZGU+zqk5XmWGZboimWWPere+EyR6K44M67mdS9miYGyi91Pe5G1NDFUei3ylOdqTBKDZRpdj71XnUfEcEedCVDmYIiJGIfS68qxZkA2p1jhIZ9ETCX5QlCb85iYLOus9QZSsllQTsUePIuVI6bjrBao5mYIhRh31WsIiDRAsad6KkwyhErMJFSyvZDogJLdVgGbUoRShWAFbMnQAjPDlTXTLNACheYxAOjgCbX4DgCYStIDk1MAMCoigPztXwwojgJ4LhHe9eHJyV0eIV56IMjjPJzI/4LWIspDisVWcGQwHlZMO+AZh/DQIvcWRq4QHlq8GgGvgPDQouCF9yzKuztEiewglHBe/honlmAT5/2Ha4I9LM7Diewg2AU1774K3FQAlCh44ZPqsjmt8RTirfqy0VjYhw+eUjxXA7mX4EirgWcPnlK8Vv/0NDaH/GnVU4pnWptDkNfYVW/O8kTR/fmpxl7Lf0dtsPguPQCNIg7AHgHwgfIhRf8YHaN90MMw5asIBAuUL0s2O63r3Ecb5Qvnu+qVuIfulZj+pR0s1rJ5r1zzrIAYjYfPb6jJmTULZv9AbRvmH4+KycOu2eftLuUH+A4oS5gbEQw9NcTIUB1iAES2jI5ZtiIqg6BtY4Og7W5QaX/ByKhqYR9Ue76nf5i29xw0SkzrHfdNJ0C7bys6BpLZlR9Qt5BTx8h0AzDFsEPdGCCLuwOMpM1JTOBnHPDNtdkLdQbjcxRH982K0T02S3i9P8oX05woyITIgsili3y0fz1sAeO5Diq/P/ylkt870dfee+AC7f4Bnw1DMsoy0tsAAAAASUVORK5CYII=") no-repeat center center;
  background-size: contain;
  line-height: 100px;
}

.back-to-top a:active {
  outline: 0 none black;
}



/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-small,
p.a-small {
  font-size: 10px;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-small,
  p.a-small {
    font-size: 8px;
  }

  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
  animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

.video-bg {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
  }
.video-bg video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */