@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}
/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-M2 {
    font-size: 18px;
  }
  .font-size-L {
      font-size: 28px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 20px;
  }
  .font-size-M {
      font-size: 20px;
  }
  .font-size-M2 {
    font-size: 28px;
  }
  .font-size-L {
      font-size: 48px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background: #e6e6e6;
  color: #333333;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.6em;
}

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

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: 100%;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
/* Header Container */
.header {
  background-color: #a11c1f;
  width: 100%;
  height: 70px;
  display: flex; /* フレックスボックスで要素を整列 */
  justify-content: space-between; /* ロゴとハンバーガーメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0 10px; /* ヘッダーの左右に余白 */
  box-sizing: border-box;
  position: relative; /* メニューの位置制御のために追加 */
  box-shadow: 0px 2px 4px gray;
}

/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  height: auto;
  max-width: 210px;
}

/* Hamburger Menu Button */
.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #feea00;
  box-shadow: 0px 2px 4px gray;
}

/* Hamburger Icon */
.navicon {
  background: #4a2b00;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #4a2b00;
  transition: 0.3s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation */
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  bottom: 0;
}


/* Navbar Menu */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin: 70px 0 0;
  padding: 0 0 10px 0;
  background-color: #f9f4e9;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.3s;
  z-index: 1000; /* メニューが他の要素の下に隠れないようにする */
}

/* Menu Visibility */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
}

/* Menu Links */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #4a2b00;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s;
}

.menu li {
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: opacity 0.5s;
}

/* Make Menu Items Visible */
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
}

/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
.fv {
  margin-top: -1px;
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta {
  background: url("../img/cpn-bg.jpg") center/cover no-repeat;
  padding: 3% 0 8%;
}
.reflection {
  position: relative;
  overflow: hidden;
  animation: pekopeko 1.8s infinite;
  text-align: center;
}
@keyframes pekopeko {
  0% {
      top: 0px;
  }
  10% {
      top: 5px;
  }
  20% {
      top: 0px;
  }
  30% {
      top: 5px
  }
  40% {
      top: 0px;
  }
}
/* .tell_cta {
  margin: 5% auto;
  position: relative;
  text-align: center;
  font-weight: bold;
}

.cta_btn_tell {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  width: 100%;
  text-align: center;
}
@media screen and ( min-width:750px) {
  .cta_btn_tell {
    font-size: 2.8rem;
  }
} */

.web_cta img{
    width: 90%;
    margin: auto;
}

.tel img{
  width: 80%;
  margin: auto;
  margin-top: 20px;
}

.section01 {
  position: relative;
}


.section02 {
  position: relative;
  z-index: 1;
}


.section03 {
  margin-top: -5%;
  padding: 10% 0;
  background-color: #fff;
  position: relative;
}
.section03 p {
  font-weight: bold;
}

.point-item {
  margin-bottom: 10px;
  overflow: hidden;
}

.point-header {
  width: 100%;
  background: #a11c1f;
  color: #fff;
  padding: 15px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.point-text {
  display: flex;
  flex-direction: column;
}

.point-title {
  font-size: 0.8rem;
  font-weight: bold;
}

.point-sub {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 4px;
}

.highlight {
  color: #ffeb3b; 
}

.point-icon {
  font-size: 1.2rem;
  margin-left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff; 
  color: #a11c1f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.point-content {
  display: none;
  padding: 15px;
  background: #f9f4e9;
  line-height: 1.6;
}

.point-content img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 5px;
}

/* 開いた状態 */
.point-item.open .point-content {
  display: block;
}
.point-item.open .point-icon {
  content: "−";
}

/* スマホ縮小対応 */
@media screen and (max-width: 768px) {
  .point-header {
    font-size: 0.9rem;
    padding: 12px;
  }
  .point-icon {
    font-size: 1.2rem;
  }
}


.section04 p span {
  background:linear-gradient(transparent 60%, #ff6 60%);
}
.reason_content {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/section04.png);
  background-size: 100%;
  text-align: center;
}
.reason_content p {
  text-align: left;
  padding: 3%;
  font-weight: bold;
}

.section05 {
 position: relative;
}

.section08 {
  position: relative;
 }

/* ボタン配置 */
.cta-buttons {
  position: absolute;
  bottom: 5%; /* 画像の下からの距離 */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}

.web_cta {
  flex: 1 1 45%;
}

.web_cta img {
  height: auto;
  display: block;
}


.section06 {
 background-color: #fff;
 padding: 10% 3%;
}
.section06 h2 {
 text-align: center;
 margin-bottom: 5%;
}
.section06 img {
  margin-bottom: 2%;
 }

.faq {
  background-color: #f7f7f7;
  padding: 5% 0 10%;
}
.faq h2 {
  text-align: center;
  margin-bottom: 5%;
}
.accordion {
  width: 95%;
  margin: auto;
}
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
  border-radius: 5px;
  font-weight: bold;
  min-height: 70px;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#e75566;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
}

.accordion-header p,
.accordion-content{
  padding-left: 25px;
  position: relative;
}

.accordion-header p::before{
  position: absolute;
  content:"Q";
  top: 12px;
  left: 0;
  color: #e75566;
  font-size: 24px;
  font-weight: bold;
}

/* hover */
.accordion-header:hover {
  box-shadow: none;
  box-shadow: 2px 0px 2px rgb(202, 202, 202);
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

@media screen and (min-width:750px) {
  .accordion-header {
    padding: 22px 45px 20px 20px;
  }
  .accordion-header p,
  .accordion-content{
    padding-left: 35px;
  }
  .accordion-header p::before{
    top: 0px;
    font-size: 32px;
  }
}

/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.section_Form {
  background-color: #f7f7f7;
  padding: 0 0 10%;
}
.section_Form h2{
  background: #e36671;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 8% 0 3%;
}
.section_Form h2:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  border-color: #e36671 #f7f7f7 transparent #f7f7f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width:750px) {
  .section_Form h2:after{
    border-width: 50px 375px 0 375px;
  }
}

.section_Form p {
  text-align: center;
  margin-top: 10%;
}
.section_Form p span {
  color: #e75566;
  font-weight: bold;
}



.form {
  width: 97%;
  max-width: 700px;
  margin: 5% auto 0;
  background-color: #fff;
  padding: 5% 2% 8%;
}

.require {
  background-color: #fa4141;
  color: #fff;
  padding: 0.2% 1%;
  font-size: 0.9rem;
  margin-right: 3%;
}
.any {
  background-color: #666666;
  color: #fff;
  padding: 0.2% 1%;
  font-size: 0.9rem;
  margin-right: 3%;
}

.form_item {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 2%;
  margin: 5% 0;
}

.form_head {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333333;
}

.radio_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

.form_item label {
  font-size: 1.2rem;
  padding-left: 5%;
  padding-bottom: 3%;
  color: #333333;
}

.zip_input_text {
  width: 20%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  font-size: 16px;
  padding-left: 1em;
}

.input_text {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  width: 100%;
  font-size: 16px;
  padding-left: 1em;
  background-color: #f2f2f2;
}

.annotation {
  color: #777777;
  font-size: 0.9rem;
}

.add_head {
  color: #333333;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 5px;
}

.money {
  display: flex;
  align-items: center;
  gap: 2%;
}

.money .input_text {
  width: 60%;
}

.yen {
  font-size: 1.2rem;
}

.form_item select {
  width: 60%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.form_item textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 100px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  padding: 3% 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background-color: #e36671;
  border-radius: 60px;
  border: none;
}
.button:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
  cursor: pointer;
}

.form_attention {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  width: 97%;
  margin: auto;
  margin-top: 8%;
}

.form_attention img {
  width: 35%;
}

.attention_box {
  background-color: #fff;
  border: solid 1px #666666;
  padding: 2% 1%;
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 2%;
}

.attention_box ul li {
  margin-bottom: 2%;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #39312a;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}
.footer a {
  color: #fff;
}

/* ------------------------------------------------------------
  floating
------------------------------------------------------------ */
.floating-banner {
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 0;
  width: 100%;
  margin: auto;
}
.banner {
  max-width: 750px;
  width: 100%;/* バナーの横幅 */
  margin: auto;
  padding: 5px;
  background: rgb(0, 0, 0,0.7);/* バナーの背景色 */
  color: #fff;/* バナー内の文字色 */
  text-align: center;
}
.floating-banner a {
  text-decoration: none;/* リンクに下線が入らないように */
}
.floating-banner p {
  display: inline-block;
  width: 95%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  background: #e36671; /* ボタンの背景 */
  margin: 0;
  font-weight: bold;
}


/* ------------------------------------------------------------
  first-form
------------------------------------------------------------ */
/* 共通設定 */
form {
  max-width: 750px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  color: #42210b;
  line-height: 1.6;
  font-weight: bold;
}

/* 見出し */
.top-title h1, form h1 {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #a11c1f;
  margin-bottom: 10px;
  position: relative;
  margin-top: 5%;
}
.top-title h1::after, form h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 6px;
  background: #f8d93d;
  margin: 8px auto 0;
  border-radius: 3px;
}

/* 各項目ブロック */
.accountInfo ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-radius: 4px;
  padding: 10px;
}

/* 項目タイトル */
.accountInfo ul li:first-child {
  font-weight: bold;
  margin-bottom: 8px;
  background: #fffde7; /* 薄い黄色背景 */
  padding: 10px;
}

/* ラジオボタン */
.radio_number_add label {
  margin-right: 20px;
  font-size: 1rem;
  cursor: pointer;
}
.radio_number_add input[type="radio"] {
  margin-right: 6px;
}

/* セレクトボックス */
.accountInfo select {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 1rem;
}

/* 入力フィールド */
.accountInfo input[type="text"],
.accountInfo input[type="number"],
.accountInfo input[type="email"],
.accountInfo textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

/* テキストエリア */
.accountInfo textarea {
  resize: vertical;
}

/* 単位（円など） */
.accountInfo ul li:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

/* 注意テキスト */
.red_text {
  color: #e60000;
  font-size: 0.9rem;
  margin: 15px 0;
  padding: 0 20px;
}

/* 送信ボタン */
#submit {
  display: block;
  width: 80%;
  background: #ff6c00;
  color: #fff;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 999px;
  margin: 20px auto;
}
#submit:hover {
  background: #c05100;
}

@media screen and (max-width: 768px) {
  form h1 {
    font-size: 1.6rem;
  }
  #submit {
    font-size: 1rem;
    padding: 12px;
  }
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: min(34px, 5.88vw) min(20px, 3.46vw);
  background-color: white;
  border-radius: 8px;
  z-index: 1000;
  text-align: center;
  width: 90%;
  max-width: 520px;
}

.attention-text{
  border:5px solid #f8d93d;
  padding: 20px;
  width: 90%;
  margin: 40px auto;
  border-radius: 20px;
}

.attention-text span {
  display: block;
  text-align: center;
}


/* ------------------------------------------------------------
  second-form
------------------------------------------------------------ */

.section-title h2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding: 10px;
  background-color: #fbb03b;
  color: #fff;
  display: flex;
  align-items: center;
  margin: auto;
  width: 98%;
  box-sizing: border-box;
}

.section-title {
  font-size: 1.5em;
  padding-top: 30px;
  padding-bottom: 30px;
}

.dl-table {
  background-color: #FFF;
  border-top: 1px solid #E4E4E4;
  border-left: 1px solid #E4E4E4;
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  margin: auto;
}

.dl-table dt {
  background-color: #efefef;
  font-weight: bold;
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: start;
  text-align: left;
}

.dl-table dt span {
  font-size: 0.8em;
}

.dl-table dd {
  width: 100%;
}

.images_uplord dd {
  text-align: center;
}

.images_uplord dd img {
  max-width: 300px;
  width: 60%;
}

.dl-table dt,
.dl-table dd {
  padding: 15px 10px;
  box-sizing: border-box;
  border-right: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
}

form .btnList .button {
  width: 300px;
  border-radius: 999px;
  border: none;
  background-color: #ff6c00;
  color: white;
  margin:20px auto;
}
form .btnList .back {
  background-color: #808080;
}
form .btnList .button:hover {
  background-color: #555555;
}
.btnList {
  text-align: center;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  width: 98%;
  margin: auto;
  gap: 10px;
}

.lastSec{
  width: 98%;
  margin: auto;
  font-weight: bold;
}

.lastSec p{
  font-size: 0.8rem;
}

.introduction span, .lastSec span {
  color: #ff0000;
}


/* ------------------------------------------------------------
  thaksStep2
------------------------------------------------------------ */
.inner-wrap {
  margin: 0 auto;
  text-align: center;
}

.thanks_box {
  background: #f9f4e9;
  border: solid 5px #42210b;
  border-radius: 5px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto 40px;
  padding: 4% 2%;
  font-weight: bold;
}

.comn-title {
  font-weight: 700;
  color: #a11c1f;
  text-align: center;
  position: relative;
  padding-bottom: .2rem;
  margin-bottom: 2%;
  font-size: 1.8rem;
}

.comn-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #f8d93d;
  width: 10rem;
  height: 0.3rem;
}

.red {
  color: red;
}

.phonenumber {
  background: #e8dcc2;
  color: #a11c1f;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: .9;
  padding: 2%;
  width: 80%;
  margin: 5% auto 0;
}

.phonenumber span {
  font-weight: bold;
  color: #42210b;
  font-size: .8rem;
}

#main h2 span {
  color: #42210b;
  background: linear-gradient(transparent 65%, #fffda6 50%);
}


/* ------------------------------------------------------------
  利用規約
------------------------------------------------------------ */
.txt_wrap{
  width: 95%;
  margin-inline:auto;
  margin: 40px auto;
  padding: 2em 1em;
  background-color: #fff;
  border: 1px solid #42210b;
  border-radius: 5px;
  box-shadow:  0 8px 5px rgba(0, 0, 0, 0.4);
}
.txt_wrap p{
  margin-bottom: 1.2em;
}

.terms .txt_wrap{
  height: 600px;
  overflow-y: scroll;
}
.txt_wrap::-webkit-scrollbar {
width: 12px;
}
.txt_wrap::-webkit-scrollbar-thumb {
background-color: #fbb03b;
border-radius: 6px;
}
.txt_wrap::-webkit-scrollbar-track {
background-color: #c2c2c2;
}
