﻿@charset "utf-8";

/*--------------------------------------
html,body,main
-------------------------------------- */
html {
  overflow-x: hidden;
  font-size: min(1vw, calc(var(--contentWidth) / 100));
}

body {
  width: 100%;
  background-image: url("../img/backgraound.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-attachment: fixed;
  color: var(--black);
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

main {
  overflow: hidden;
}

/*----------------------------------------------
リセットCSS
 ---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: underline;
  color: revert;
}

:root {
  --black: #222222;
  --red: #90000c;
  --red2: #e00d1f;
  --blue: #00697b;
  --blue2: #1a3a89;
  --yellow: #ddb136;
  --yellow2: #7f6002;
  --yellow3: #fde9b4;
  --green: #023f00;
  --gold: #fde9b4;
  --gold2: #a8892c;
  --gold3: #c0a047;
  --gold4: #7f6002;
  --pink: ;
  --purple: ;
  --white: #fff;
  --gra_green: linear-gradient(to right, #02454e 0%, #022e34 100%);
  --gra_gold: linear-gradient(to right, #d8c073 0%, #f8edc1 50%, #d8c073 100%);
  --gra_red: linear-gradient(to right, #9a000e 0%, #ca2035 50%, #9a000e 100%);
  --radius: 1rem;
  --serif: "Noto Serif JP", serif;
  /* 2つの値の大きい方が指定される (横幅)*/
  --contentWidth: max(500px, 20vw);
}

/* 色の指定 */
.blk {
  color: var(--black);
}

.r {
  color: var(--red);
}

.r2 {
  color: var(--red2);
}

.blu {
  color: var(--blue);
}

.blu2 {
  color: var(--blue);
}

.y {
  color: var(--yellow);
}

.y2 {
  color: var(--yellow2);
}

.y3 {
  color: var(--yellow3);
}

.wht {
  color: var(--white);
}

.gray {
  color: #707070;
}

.green {
  color: var(--green);
}

.gra_gold {
  background: linear-gradient(to right, #d8c073 0%, #f8edc1 50%, #d8c073 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold_txt {
  background: linear-gradient(to right, #d8c073 0%, #fffbec 40%, #fffbec 60%, #d8c073 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* 一部ブラウザ用 */
  color: transparent;
  /* Fallback用 */
}

/*--------------------------------------------------
 bg
-------------------------------------------------- */
.bg_r2 {
  background: var(--red);
}

.bg_gl2 {
  background: #584321;
}

.bg_blk2 {
  background: #140800;
}

.bg_grad_gold2 {
  background: linear-gradient(90deg, var(--gold4), var(--gold3), var(--gold4));
}

.bg_blk {
  background: var(--black);
}

.bg_wht {
  background: #fff;
}

.bg_gry {
  background: #eee;
}

/*--------------------------------------------------
 Section
-------------------------------------------------- */
section {
  padding: 14rem 0;
  position: relative;
}

.sub_head {
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.sec_inner {
  padding: 0 5rem;
}

.lead {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

/*--------------------------------------
font
-------------------------------------- */
.serif {
  font-family: "Noto Serif JP", serif;
}

.b {
  font-weight: bold;
}

.b900 {
  font-weight: 900;
}

.u {
  text-decoration: underline;
}

.dash {
  letter-spacing: -3px;
}

/* ----------------------
font-size
---------------------- */

.font40 {
  font-size: 40%;
}

.font50 {
  font-size: 50%;
}

.font60 {
  font-size: 60%;
}

.font70 {
  font-size: 70%;
}

.font80 {
  font-size: 80%;
}

.font90 {
  font-size: 90%;
}

.font95 {
  font-size: 95%;
}

.font100 {
  font-size: 100%;
}

.font110 {
  font-size: 110%;
}

.font120 {
  font-size: 120%;
}

.font130 {
  font-size: 130%;
}

.font140 {
  font-size: 140%;
}

.font150 {
  font-size: 150%;
}

.font160 {
  font-size: 160%;
}

.font170 {
  font-size: 170%;
}

.font180 {
  font-size: 180%;
}

.font190 {
  font-size: 190%;
}

.font200 {
  font-size: 200%;
}

/*--------------------------------------
text-align
-------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_r {
  text-align: right;
}

.txt_l {
  text-align: left;
}

/*--------------------------------------
line-height
-------------------------------------- */
.lh_11 {
  line-height: 1.1;
}

.lh_12 {
  line-height: 1.2;
}

.lh_13 {
  line-height: 1.3;
}

.lh_14 {
  line-height: 1.4;
}

.lh_15 {
  line-height: 1.5;
}

/*--------------------------------------
margin-bottom
-------------------------------------- */
.bottom1 {
  margin-bottom: 1rem;
}

.bottom2 {
  margin-bottom: 2rem;
}

.bottom3 {
  margin-bottom: 3rem;
}

.bottom4 {
  margin-bottom: 4rem;
}

.bottom5 {
  margin-bottom: 5rem;
}

.bottom6 {
  margin-bottom: 6rem;
}

.bottom7 {
  margin-bottom: 7rem;
}

.bottom8 {
  margin-bottom: 8rem;
}

.bottom9 {
  margin-bottom: 9rem;
}

.bottom10 {
  margin-bottom: 10rem;
}

.bottom11 {
  margin-bottom: 11rem;
}

.bottom12 {
  margin-bottom: 12rem;
}

.bottom13 {
  margin-bottom: 13rem;
}

.bottom14 {
  margin-bottom: 14rem;
}

.bottom15 {
  margin-bottom: 15rem;
}

.bottom16 {
  margin-bottom: 16rem;
}

.bottom17 {
  margin-bottom: 17rem;
}

.bottom18 {
  margin-bottom: 18rem;
}

.bottom19 {
  margin-bottom: 19rem;
}

.bottom20 {
  margin-bottom: 20rem;
}

.pt2 {
  padding-top: 2rem !important;
}

.img_80 {
  margin: 0 auto;
  display: block;
  width: 80%;
}

.img_50 {
  width: 50%;
}

/*----------------------------------------------
注釈
 ---------------------------------------------- */
.notice {
  padding-top: 3rem;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: sans-serif;
  color: #535353;
  letter-spacing: 0.2rem;
}

.notice li {
  position: relative;
  padding-left: 3rem;
  display: inline-block;
}

.notice li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/*----------------------------------------------
吹き出し
 ---------------------------------------------- */
.balloon {
  position: relative;
  background: #111;
  padding: 3rem 3rem;
  margin: 6rem auto;
  width: 95%;
  text-align: center;
  transform: skew(-10deg);
  border-radius: 1rem;
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
}

.balloon span {
  display: inline-block;
  transform: skew(10deg);
}

.balloon::after {
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-top: 5rem solid #111;
}

/*----------------------------------------------
矢印
 ---------------------------------------------- */
.gradient-triangle {
  position: relative;
}

.gradient-triangle::after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(255, 255, 255, 0) 40%);
  width: 120px;
  /*::beforeのborder-left border-rightの合計*/
  height: 25px;
  /*::beforeのborder-top*/
}

.gradient-triangle::before {
  /*色の変更*/
  border-top: 25px solid var(--red);
  /*borderの値で三角形の大きさを調整する*/
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -60px;
}

/*----------------------------------------------
リボン(シンプル)
 ---------------------------------------------- */
.ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-inline: auto;
  padding: 0.35em 1.5em;
  background: linear-gradient(90deg, #a8892c 0%, #fde9b4 50%, #a8892c 100%);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.08em;
  border-radius: 0.6em;
  box-shadow: 0 0.35em 0.7em rgba(0, 0, 0, 0.25);
  gap: 0.3em;
}

.ribbon::before,
.ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1em;
  height: 1.1em;
  background: #a87f11;
  z-index: -1;
}

.ribbon::before {
  left: -0.55em;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.ribbon::after {
  right: -0.55em;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*----------------------------------------------
リボン2（立体的）
 ---------------------------------------------- */
.ribbon2 {
  display: block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}

.ribbon2::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 3%;
  border: 6rem solid var(--red);
  border-left-color: transparent;
}

.ribbon2::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  right: 3rem;
  border: 6rem solid var(--red);
  border-right-color: transparent;
}

.ribbon2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 3rem 5rem;
  font-size: 3.5rem;
  color: #f7eab4;
  background: linear-gradient(to right, #991f10 0%, #b8261d 100%);
  /*真ん中の背景色----------------------------------------- */
  z-index: 1;
}

.ribbon2 h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 2rem transparent;
  border-right: solid 3rem #4d150e;
  /*左の折り返し部分*/
}

.ribbon2 h2::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 2rem transparent;
  border-left: solid 3rem #4d150e;
  /*右の折り返し部分*/
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/*----------------------------------------------
マーカー
 ---------------------------------------------- */
.mark {
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 0.5em;
  /* 線の太さ */
  text-decoration-color: rgba(255, 9, 9, 0.2);
  /* 線の色 */
  text-underline-offset: -0.2em;
  /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*--------------------------------------
レターボタン
-------------------------------------- */
.btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  transition: 0.3s;
}

.btn_wrap span {
  display: contents;

}

.btn_wrap .btn_ft a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.btn_wrap .btn_ft {
  width: 90%;
  background: #2590d0;
  border-radius: 2rem;
  box-shadow: rgb(0, 103, 219) 0px 7px 0px 0px, rgba(255, 255, 255, 0.3) 0px 0px 20px 0px inset;
  overflow: hidden;
}

.btn_wrap .letter_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 4rem;
  font-size: 4.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 3px #004cab;
  text-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
  line-height: 1.2;

}

.btn_wrap .letter_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 3.5rem 6rem;
  font-size: 4.7rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0.4rem 0 rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.discount-text {
  display: inline-block;
  /* インラインブロックに変更 */
  color: var(--yellow3);
  font-size: 1.5em;
  font-weight: 900;
}

.btn_wrap .letter_btn::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.15em solid currentColor;
  border-right: 0.15em solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.btn_wrap .letter_btn::before {
  content: "";
  display: inline-block;
  width: 14rem;
  height: 14rem;
  background: url(../img/pre_icon.png) no-repeat center / contain;
}



.btn_wrap:hover {
  filter: brightness(1.3);
}

.arrow {
  display: inline-block;
  border-style: solid;
  border-width: 30px 25px 0 25px;
  border-color: var(--red) transparent transparent transparent;
  margin: 3rem auto;
}

.large {
  display: inline-block;
  font-size: 11rem;
  font-weight: 900;
  color: var(--red);
  transform: rotate(-3deg);
  transform-origin: left center;
  margin: 2rem 0 3rem 0;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
  line-height: 1.2;
}

.emailBtn {
  text-decoration: underline !important;
  color: inherit;
  cursor: pointer;
}

/* -- よくある質問 ----------------------------------------------------------------------------------------------*/
#cp {
  background-color: #d4f4ff;
}

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

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 1em 0;
}

.cp_qa .cp_actab:last-child {
  margin-bottom: 0;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 2.8em;
  cursor: pointer;
  border-radius: 0.5em;
  background: #f8f8f8;
  font-size: 4rem;
}

.cp_qa .cp_actab label::before {
  position: absolute;
  font-family: serif;
  font-size: 1.5em;
  left: 3rem;
  top: 4.2rem;
  content: 'Q';
}

.cp_qa .cp_actab label:hover {
  transition: all 0.3s;
  color: var(--red);
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
  font-size: 1.7em;
  font-weight: bold;
  /* line-height: 2em; */
  position: absolute;
  top: 4rem;
  right: 0;
  content: '+';
  display: inline-block;
  right: 2rem;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
  position: absolute;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0 0 0 2.5em;
  -webkit-transition: max-height 0.2s;
  transition: max-height 0.2s;
  border-radius: 0 0 0.5em 0.5em;
  font-size: 3.5rem;
}

.cp_qa .cp_actab .cp_actab-content::before {
  font-family: serif;
  font-size: 1.5em;
  position: absolute;
  margin: 0.4em 0 0 -1em;
  padding: 0;
  content: 'A';
  color: var(--red);
  top: 2rem;
}

.cp_qa .cp_actab .cp_actab-content_inner {
  padding: 5rem 5rem 5rem 0;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content {
  max-height: 55em;
  border: 10px solid #f8f8f8;
  border-top: none;
  background: #fff;
}

/* --答えの高さ */
.cp_qa .cp_actab input:checked~.cp_actab-content.px {
  max-height: 85em;
  border: 10px solid #fff;
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked~label {
  border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked+label::after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.cp_actab .notice {
  padding-top: 0;
}

.ac_inner {
  background: #fff4e9;
  padding: 2rem;
}

.ac_inner:first-child {
  padding: 0rem;
}

/* アコーディオンエリアの設定 */
.ac_area {
  display: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.ac_inner:first-child {
  padding: 0rem;
}