@charset "UTF-8";
/*================================
  SCSS Information
----------------------------------
  File name: _functions.scss
  Summary:   自作関数定義用ファイル
  Author:    coder-ao
================================*/
/*======================
base
====================== */
* {
  min-inline-size: 0;
}

::-moz-selection {
  background: #1a355b;
  color: #fff;
}

::selection {
  background: #1a355b;
  color: #fff;
}

body {
  font-size: clamp(14px, 4.1025641026vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
}

a:not([class]) {
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
}

ul {
  list-style: disc;
  list-style-position: inside;
}

img {
  max-width: 100%;
}

figure:not([class]):not(:last-child) {
  margin-bottom: 1.8rem;
}
figure figcaption {
  margin-top: 0.9em;
  font-size: max(12px, 14 / 16 * 1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2;
  text-align: right;
}
@media screen and (max-width:900px) {
  figure:not([class]):not(:last-child) {
    margin-bottom: 1rem;
  }
}

table {
  display: block;
  line-height: 2;
}
table tbody {
  display: block;
}
table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(30 / 16 * 1rem);
}
@media screen and (max-width:900px) {
  table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
table th,
table td {
  padding: 1rem 1.7em 0.8rem 1.7em;
}
@media screen and (max-width:900px) {
  table th,
  table td {
    padding: 0.5rem 1rem;
  }
}
table th {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(228 / 16 * 1rem);
  border-bottom: 5px solid #ebebd3;
  font-weight: 400;
}
@media screen and (max-width:900px) {
  table th {
    width: 100%;
    font-weight: 500;
  }
}
table td {
  width: 100%;
  border-bottom: 5px solid #f2f2f2;
}
@media screen and (max-width:900px) {
  table td {
    padding: 1rem;
    margin-bottom: 1.6rem;
    border: none;
  }
}

/*======================
汎用クラス（utility）
====================== */
.u-pcView {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pcView {
    display: none;
  }
}

.u-spView {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-spView {
    display: block;
  }
}

.u-dib {
  display: inline-block;
}

/* ロゴ */
.u-logo {
  display: block;
  width: min(90%, 483px);
}
@media screen and (max-width:900px) {
  .u-logo {
    width: min(90%, 240px);
  }
}

/* コピーライト */
.u-copyright {
  display: block;
}
.u-copyright:not(:first-child) {
  margin-top: 1rem;
}

/* 見出し */
h2:not([class]) {
  padding: 0 0 0.2em;
  border-bottom: 2px solid #1a355b;
  font-size: calc(40 / 16 * 1rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
h2:not([class]):not(:last-child) {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (max-width:900px) {
  h2:not([class]) {
    font-size: 1.6rem;
  }
  h2:not([class]):not(:last-child) {
    margin-bottom: calc(30 / 16 * 1rem);
  }
}

h3:not([class]),
h3.c-bgText__title {
  font-size: calc(28 / 16 * 1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
h3:not([class]):not(:last-child),
h3.c-bgText__title:not(:last-child) {
  margin-bottom: calc(60 / 16 * 1rem);
}
h3 span {
  font-size: calc(20 / 16 * 1rem);
}

@media screen and (max-width:900px) {
  h3:not([class]),
  h3.c-bgText__title {
    font-size: 1.2rem;
  }
  h3:not([class]):not(:last-child),
  h3.c-bgText__title:not(:last-child) {
    margin-bottom: calc(30 / 16 * 1rem);
  }
}

/* テキスト */
.u-text p + p {
  margin-top: 2rem;
}

/*======================
レイアウト（layout）
====================== */
/* ヘッダー */
.l-header {
  padding: clamp(1rem, 2.0833333333vw, 40px) clamp(1rem, 4.1666666667vw, 80px);
  background: #f2f2f2;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__inner .u-logo {
  height: 100%;
}

/* セクション・コンテンツ */
.l-section {
  width: min(90%, 900px);
  margin: 0 auto;
}
.l-section:not(:first-child) {
  margin-top: calc(120 / 16 * 1rem);
}
.l-section:not(:last-child) {
  margin-bottom: calc(120 / 16 * 1rem);
}
.l-section:not(:last-child).--mgb0 {
  margin-bottom: 0;
}
.l-section.--w100 {
  width: 100%;
}
.l-section.--mgb0 {
  margin-bottom: 0;
}
@media screen and (max-width:900px) {
  .l-section:not(:first-child) {
    margin-top: calc(60 / 16 * 1rem);
  }
  .l-section:not(:last-child) {
    margin-bottom: calc(60 / 16 * 1rem);
  }
}

/* フッター */
.l-footer {
  padding: calc(60 / 16 * 1rem) 5%;
  margin-top: calc(120 / 16 * 1rem);
  text-align: center;
}
.l-footer .u-logo {
  width: min(90%, 241px);
  margin: 0 auto calc(calc(60 / 16 * 1rem) * 0.5);
}
@media screen and (max-width:900px) {
  .l-footer {
    padding: calc(30 / 16 * 1rem) 5% calc(60 / 16 * 1rem);
    margin-top: calc(60 / 16 * 1rem);
  }
}

/*======================
コンポーネント（component）
====================== */
/* キービジュアル（KV） */
.c-kv {
  margin-bottom: calc(120 / 16 * 1rem);
}
.c-kv picture {
  display: block;
}
.c-kv picture img {
  width: 100%;
}
@media screen and (max-width:900px) {
  .c-kv {
    margin-bottom: calc(60 / 16 * 1rem);
  }
}

/* リンク・ボタン */
.c-btn, .c-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #f95738;
  border-radius: 3rem;
  background: #f95738;
  font-size: calc(18 / 16 * 1rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-transition-property: border, background, color;
  transition-property: border, background, color;
}
.c-btn:hover, .c-cta__btn:hover {
  background: #fff;
  color: #f95738;
}
.c-btn.--header, .--header.c-cta__btn {
  padding: 0.6em 2.6em;
}
@media screen and (max-width:900px) {
  .c-btn.--header, .--header.c-cta__btn {
    display: none;
  }
}
.c-btn.--fixed, .--fixed.c-cta__btn {
  padding: 3.7em 2.8em;
  border-right: none;
  border-radius: calc(20 / 16 * 1rem) 0 0 calc(20 / 16 * 1rem);
  border-color: #fff;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  font-size: calc(18 / 16 * 1rem);
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 1000;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-transition-property: border, background, -webkit-transform;
  transition-property: border, background, -webkit-transform;
  transition-property: border, background, transform;
  transition-property: border, background, transform, -webkit-transform;
}
.c-btn.--fixed.is-fixed, .--fixed.is-fixed.c-cta__btn {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-btn.--fixed:hover, .--fixed.c-cta__btn:hover {
  border-color: #f95738;
}
@media screen and (max-width:900px) {
  .c-btn.--fixed, .--fixed.c-cta__btn {
    width: 100%;
    padding: 1rem 5%;
    border: none;
    border-radius: 0;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    bottom: 0;
  }
}

/* CTA  */
.c-cta {
  margin: calc(60 / 16 * 1rem) 0;
}
@media screen and (max-width:900px) {
  .c-cta {
    margin: calc(30 / 16 * 1rem) 0;
  }
}
.c-cta__btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 3.4rem 0.875em;
  margin: 0 auto;
  border-radius: calc(10 / 16 * 1rem);
  font-size: calc(32 / 16 * 1rem);
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.c-cta__btn::after {
  content: "";
  width: 0.875em;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: url(../img/arrow_more.svg) center no-repeat;
          mask: url(../img/arrow_more.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: calc(50% - 0.4375em);
  right: 0.625em;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  -webkit-transition-property: background, -webkit-transform;
  transition-property: background, -webkit-transform;
  transition-property: background, transform;
  transition-property: background, transform, -webkit-transform;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-cta__btn:hover::after {
  background: #f95738;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
@media screen and (max-width:900px) {
  .c-cta__btn {
    padding: 2rem calc(48 / 16 * 1rem);
    font-size: 1.1rem;
  }
}

/* 画像+テキスト */
.c-imgText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(60 / 16 * 1rem);
}
.c-imgText.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-imgText:not(:last-child) {
  margin-bottom: calc(60 / 16 * 1rem);
}
@media screen and (max-width:900px) {
  .c-imgText {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(30 / 16 * 1rem);
  }
  .c-imgText.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-imgText__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(90%, 300px);
}

/* 背景ベタテキスト */
.c-bgText {
  padding: calc(60 / 16 * 1rem) 5%;
  background: #ebebd3;
}
@media screen and (max-width:900px) {
  .c-bgText {
    padding: calc(30 / 16 * 1rem) 5%;
  }
}
.c-bgText__inner {
  width: min(90%, 780px);
  margin: 0 auto;
}

/* マップ */
.c-map {
  width: 100%;
  aspect-ratio: 900/450;
}
.c-map > iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:900px) {
  .c-map {
    aspect-ratio: 4/3;
  }
}

/* チェックリスト */
.p-check {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: calc(40 / 16 * 1rem);
}
.p-check > picture {
  -ms-flex-item-align: end;
      align-self: end;
}
@media screen and (max-width:900px) {
  .p-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-check > picture {
    -ms-flex-item-align: center;
        align-self: center;
    width: min(90%, 240px);
  }
}

.c-checkList {
  font-size: calc(22 / 16 * 1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}
.c-checkList > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(20 / 16 * 1rem);
}
.c-checkList > li::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: calc(24 / 16 * 1rem);
  aspect-ratio: 1/1;
  margin-top: 0.4rem;
  background: url(../img/icon_check.webp) center no-repeat;
  background-size: contain;
}
.c-checkList > li:not(:last-child) {
  margin-bottom: calc(20 / 16 * 1rem);
}
.c-checkList > li > a {
  text-decoration: underline;
}
.c-checkList > li > a:hover {
  text-decoration: none;
}
@media screen and (max-width:900px) {
  .c-checkList {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.1rem;
  }
}

/* プライバシーポリシー */
.c-privacyPolicy {
  width: 100%;
  aspect-ratio: 900/450;
  padding: 2rem 1rem;
  overflow-y: scroll;
  background: #f2f2f2;
}
@media screen and (max-width:900px) {
  .c-privacyPolicy {
    aspect-ratio: 4/3;
  }
}
.c-privacyPolicy__sec:not(:last-child) {
  margin-bottom: calc(calc(60 / 16 * 1rem) * 0.5);
}
.c-privacyPolicy__label {
  font-weight: 700;
}
.c-privacyPolicy__body dl {
  padding-left: 1rem;
}
.c-privacyPolicy__body dl:not(:last-child) {
  margin-bottom: 1rem;
}
.c-privacyPolicy__body dl dt {
  font-weight: 600;
}
.c-privacyPolicy__body dl dd ul {
  padding-left: 1rem;
}

/*======================
その他のCSSは以下に記載
====================== *//*# sourceMappingURL=style.css.map */

.nameText {
  width: min(240/900*100vw,130px);
  margin: 0 auto min(50/900*100vw,50px);
}