@charset "UTF-8";
/*---------------------
変数
-----------------------*/
/*---------------------
ヘッダー用変数
-----------------------*/
/**************************

  カラーパレット

**************************/
/*-- mixinフォルダの中の_index.scss --*/
/*------------------------------------
SP特化サイト用メディアクエリ MIXIN
---------------------------------*/
/*---------------------
 ★ 文字関連一括指定
-----------------------*/
/*---------------------
//Fontサイズ vw可変指定（SP特化サイト用）
----------------------*/
/* @include font-vw(font-size, 440px, 16px, 12px);
SP特化サイトの最大幅440pxのとき16pxの文字sizeをvw変換し、
幅を狭めるごとに比率で縮めるが、そのまま適用すると早々に小さくなりすぎるので、
最小値12pxを指定。最小値になる幅sizeを割り出し、メディアクエリにmin指定することで
16pxの比率のまま縮め、12px以下には縮まないという指定にしている。
*/
/*---------------------
 ★ リンク文字色 一括指定
-----------------------*/
/*---------------------
 ★ リンク下線復活
-----------------------*/
/*-------------------------------------
 ★ リンク下線消去 一括指定//フォーカスのみ下線
---------------------------------------*/
/*-------------------------------------
 ★ floatのあとは自動 clear: both;
 @include clearfix;
 float: left;
 のように使用する
---------------------------------------*/
/*-------------------------------------
 ★セレクトのプロパティをサイズ指定して変更
---------------------------------------*/
/*-------------------------------------

   レイアウト汎用

---------------------------------------*/
/*-----------------------------------

 上部余白

-----------------------------------*/
/*-----------------------------------

 改行制御

-----------------------------------*/
/*-----------------------------------

 中央寄せと左寄せ制御

-----------------------------------*/
/*--------------------------------------------
//文字数を指定行数で丸めて…で省略・複数行対応mixin
----------------------------------------------*/
/*-----------------------------------

 文章段落

-----------------------------------*/
/*------------------------------------
コンテナ MIXIN
---------------------------------*/
/*
使い方例：

// 最大幅1200px、パディング20px（パディングを指定する場合）
@include l-container(1200px, 20px);  

// 最大幅1000px、パディング25px（デフォルト設定値なので省略可能）
@include l-container(1000px); 

// 最大幅800px、パディングなし
@include l-container-full(800px);

関連ファイル：
- assets/scss/layout/_l-container.scss で実際のクラス定義に使用
- .l-container-1200, .l-container-1000 などのクラスで利用
*/
/*--------------------- 
  エントリーフォームページ
-----------------------*/
.p-entry-form {
  /*--------------------- 
    メインコンテンツ
  -----------------------*/
}
.p-entry-form__body {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.9;
}
@media (min-width: 800px) {
  .p-entry-form__body {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__body {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__body {
    font-size: 14px;
  }
}
.p-entry-form__body {
  letter-spacing: 0.05em;
}
.p-entry-form {
  /*--------------------- 
    リード文
  -----------------------*/
}
.p-entry-form__lead {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(33, 66, 135, 0.03);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-entry-form__lead {
    margin-bottom: 30px;
    padding: 20px;
  }
}
.p-entry-form__lead p {
  font-style: normal;
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.9;
}
@media (min-width: 800px) {
  .p-entry-form__lead p {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__lead p {
    font-size: calc(0.4166666667vw + 12.6666666667px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__lead p {
    font-size: 14px;
  }
}
.p-entry-form__lead p {
  letter-spacing: 0.05em;
  margin: 0;
}
.p-entry-form__lead-note {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: calc(14 / 16 * 1rem);
  color: rgba(44, 44, 44, 0.8);
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-entry-form__lead-note {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__lead-note {
    font-size: calc(0.2083333333vw + 12.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__lead-note {
    font-size: 13px;
  }
}
.p-entry-form {
  /*--------------------- 
    フォームエリア
  -----------------------*/
}
.p-entry-form__form {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-entry-form__form {
    margin-bottom: 30px;
  }
}
.p-entry-form__form p label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-entry-form__form p label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.p-entry-form__form .field-note {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: calc(12 / 16 * 1rem);
  color: rgba(44, 44, 44, 0.7);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (min-width: 800px) {
  .p-entry-form__form .field-note {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__form .field-note {
    font-size: calc(0.2083333333vw + 10.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__form .field-note {
    font-size: 11px;
  }
}
.p-entry-form__form .field-note {
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.p-entry-form__form .age-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-entry-form__form .age-input-wrapper input[type=number] {
  width: 120px;
}
.p-entry-form__form .age-input-wrapper .age-unit {
  font-style: normal;
  font-weight: 400;
  font-size: calc(15 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-entry-form__form .age-input-wrapper .age-unit {
    font-size: 15px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__form .age-input-wrapper .age-unit {
    font-size: calc(0.2083333333vw + 13.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__form .age-input-wrapper .age-unit {
    font-size: 14px;
  }
}
.p-entry-form__form .age-input-wrapper .age-unit {
  letter-spacing: 0.05em;
}
.p-entry-form__form .visit-date-wrapper {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-entry-form {
  /*--------------------- 
    個人情報の取扱いについて
  -----------------------*/
}
.p-entry-form__privacy {
  padding: 24px 30px;
  background: rgba(33, 66, 135, 0.05);
  border: 2px solid rgba(33, 66, 135, 0.15);
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-entry-form__privacy {
    padding: 20px;
  }
}
.p-entry-form__privacy-title {
  font-style: normal;
  font-weight: 600;
  font-size: calc(14 / 16 * 1rem);
  color: #2c2c2c;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (min-width: 800px) {
  .p-entry-form__privacy-title {
    font-size: 14px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__privacy-title {
    font-size: calc(0.2083333333vw + 12.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__privacy-title {
    font-size: 13px;
  }
}
.p-entry-form__privacy-title {
  letter-spacing: 0.05em;
  margin: 0 0 12px 0;
  padding: 0;
  border: none;
}
@media screen and (max-width: 768px) {
  .p-entry-form__privacy-title {
    margin-bottom: 10px;
  }
}
.p-entry-form__privacy-text {
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 / 16 * 1rem);
  color: #373232;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (min-width: 800px) {
  .p-entry-form__privacy-text {
    font-size: 13px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__privacy-text {
    font-size: calc(0.2083333333vw + 11.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__privacy-text {
    font-size: 12px;
  }
}
.p-entry-form__privacy-text {
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.8;
}
.p-entry-form__privacy-link {
  font-style: normal;
  font-weight: 400;
  font-size: calc(13 / 16 * 1rem);
  color: #214287;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (min-width: 800px) {
  .p-entry-form__privacy-link {
    font-size: 13px;
  }
}
@media (min-width: 320px) and (max-width: 799px) {
  .p-entry-form__privacy-link {
    font-size: calc(0.2083333333vw + 11.3333333333px);
  }
}
@media (max-width: 319px) {
  .p-entry-form__privacy-link {
    font-size: 12px;
  }
}
.p-entry-form__privacy-link {
  color: #214287;
  text-decoration: none;
}
.p-entry-form__privacy-link:visited, .p-entry-form__privacy-link:hover, .p-entry-form__privacy-link:active, .p-entry-form__privacy-link:focus {
  color: #214287;
  text-decoration: none;
}
.p-entry-form__privacy-link {
  letter-spacing: 0.05em;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-entry-form__privacy-link:hover {
  opacity: 0.7;
}