@charset "UTF-8";
/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #3A5F6E;
  mix-blend-mode: multiply;
  z-index: 9998;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 9999;
  width: 60rem;
  border: #8DA6AF solid 1rem;
  background-color: #fff;
  padding-top: 3.6rem;
  padding-right: 5rem;
  padding-bottom: 3.3rem;
  padding-left: 4rem;
  letter-spacing: 0.03rem;
}
@media screen and (max-width: 767px) {
  .popup {
    width: 32rem;
    border: #8DA6AF solid 0.55rem;
    height: 33rem;
    letter-spacing: -0.07rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 1.6rem;
    padding-left: 2rem;
  }
}

.popup__text {
  font-size: 1.4rem;
  line-height: 1.85;
  color: #333;
}
@media screen and (max-width: 767px) {
  .popup__text {
    font-size: 1.4rem;
    line-height: 1.52;
    letter-spacing: -0.07rem;
  }
}

.popup__question {
  margin-top: 3.8rem;
  padding-left: 1rem;
  font-size: 2rem;
  letter-spacing: 0.07em;
  color: #8DA6AF;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .popup__question {
    margin-top: 1.8rem;
    padding-left: 0rem;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
}

.popup__btn-group {
  margin-top: 2rem;
  padding-left: 0.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .popup__btn-group {
    margin-top: 1.3rem;
    padding-left: 0rem;
    gap: 2.6rem;
  }
}

.popup__btn {
  width: 15rem;
  height: 5rem;
  background-color: #8DA6AF;
  border: none;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .popup__btn {
    height: 4.2rem;
    font-size: 1.4rem;
  }
}
.popup__btn:hover {
  opacity: 0.8;
}

.popup__note {
  margin-top: 1.4rem;
  padding-left: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0rem;
  color: black;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .popup__note {
    margin-top: 2.75rem;
    padding-left: 0.6rem;
    letter-spacing: -0.12rem;
    text-align: left;
    line-height: 1.6;
  }
}