@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: #595750;
}

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: #5d97c4;
  width: 100%;
  height: 52px;
  display: flex; /* フレックスボックスで要素を整列 */
  justify-content: space-between; /* ロゴとハンバーガーメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0 10px; /* ヘッダーの左右に余白 */
  box-sizing: border-box;
  position: relative; /* メニューの位置制御のために追加 */
}

/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  max-height: 40px; /* ロゴがヘッダーに収まるように高さを調整 */
  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);
}

/* Hamburger Icon */
.navicon {
  background: #fff;
  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: #fff;
  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: 52px 0 0;
  padding: 0 0 10px 0;
  background-color: #fff;
  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: #ef856e;
  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;
}

.fv_btn {
  display: flex;
  gap: 3%;
  width: 95%;
  margin: auto;
  margin-top: -10%;
}

.fv_btn img {
  min-width: 0;
}
/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.campaign {
  background-color: #fef4cf;
  padding: 3% 0;
}
.cta_box {
  background-color: #f19dae;
  text-align: center;
  padding: 3%;
}
.cta_content {
  background-color: #fff;
  border-radius: 5px;
  padding: 3%;
}
.cta_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3%;
  gap: 5px;
}
.cta_txt p {
  color: #5d97c4;
  font-weight: bold;
  text-align: left;
}
.circle {
  position: relative;/* ←文字の親要素に指定 */
  width: 85px;
  height: 85px;
  background-color: #5d97c4;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}
.circle-inner {
  position: absolute;
  top: 53%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width:750px) {
  .circle {
    width: 120px;
    height: 120px;
  }
  .cta_txt {
    width: 80%;
  }
}

.reflection {
  position: relative;
  width: 95%;
  margin: auto;
  overflow: hidden;
  animation: pekopeko 1.8s infinite;
}
@keyframes pekopeko {
  0% {
      top: 0px;
  }
  10% {
      top: 5px;
  }
  20% {
      top: 0px;
  }
  30% {
      top: 5px
  }
  40% {
      top: 0px;
  }
}
.tell_cta {
  margin: 5% auto;
  position: relative;
}
.tell_cta img {
  width: 95%;
}
.cta_btn_tell {
  position: absolute;
  top: 25%;
  left: 52%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #595750;
  font-weight: bold;
  font-size: 1.4rem;
  width: 100%;
}
@media screen and ( min-width:750px) {
  .cta_btn_tell {
    font-size: 2.8rem;
  }
}

.section01 {
  position: relative;
}


.section02 {
  position: relative;
  z-index: 1;
}


.section03 {
  margin-top: -11%;
  text-align: center;
  background-color: #fef4cf;
  padding: 8% 0;
  position: relative;
}
.merit_box {
  margin: 5% 0;
}
.merit_point {
  text-align: left;
  width: 94%;
  margin: auto;
}
.merit_point h3 span {
  color: #f7931e;
  background-color: #fff;
}
.merit_point p {
  margin-top: 5%;
}
.merit_point p span {
  font-weight: bold;
  background-color: #c3d94e;
}


.section04 {

}

.section05 {
 position: relative;
 margin-top: -8%;
}

.section06 {
 text-align: center;
 padding-bottom: 5%;
}
.section06 p {
  width: 80%;
  margin: auto;
}

.section07 {

}

.faq {
  background-color: #f7f7f7;
  padding: 5% 0;
}
.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;
}

.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
------------------------------------------------------------ */
table {
  width: 100%;
}

.section_Form {
  background-color: #f7f7f7;
  padding: 10% 2%;
}

.form_detail {
  background-color: #fff;
  width: 97%;
  max-width: 700px;
  margin: 0 auto 0;
  padding-top: 5%;
}

.section_Form h2 {
  color: #e75566;
  position: relative;
  border-bottom: 2px solid #e75566;
  text-align: center;
  width: 80%;
  margin: 0 auto 10%;
}

.section_Form h2:before {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 10px 0 10px;
  border-style: solid;
  border-color: #e75566 transparent transparent transparent;
}

.section_Form h2:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.section_Form p {
  text-align: center;
}

.section_Form p span {
  color: #e75566;
  font-weight: bold;
}

.form {
  width: 97%;
  max-width: 700px;
  margin: 0% auto 0;
  background-color: #fff;
  padding: 0% 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_lp2 {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 2%;
  margin: 5% 0;
}

.head {
  font-weight: bold;
  margin-bottom: 5%;
  color: #333333;
}

.form_lp2 label {
  font-size: 1.2rem;
  margin-right: 16%;
  padding-bottom: 3%;
  color: #333333;
}

.form_head {
  font-weight: bold;
  margin-bottom: 5%;
  padding-top: 5%;
  color: #333333;
}

.input-cont {
  border-bottom: solid 1px #cccccc;
}

.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: 5%;
}

.form_lp2 select {
  width: 60%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.form_lp2 textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 100px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.common_btn {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 25px auto;
  width: 85%;
  padding: 5% 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background-color: #f19dae;
  border-radius: 60px;
  border: none;
}
.common_btn: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;
}
.common_btn: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%;
}

.input_text_ss {
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  width: 60%;
  font-size: 16px;
  padding-left: 1em;
  background-color: #f2f2f2;
}

.input_text_ss.tel{
  padding:10px 10px;
  margin:0 0;
  font-size:1.2em;
  width:25%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  font-size: 16px;
  padding-left: 1em;
  background-color: #f2f2f2;
}

.AddText {
  font-size: 1.2rem;
  margin-left: 2%;
}

.form table td.head {
  border-bottom: none;
}

.check_lp2 {
  text-align:-webkit-center;
}

.common_btn_s {
  justify-content: space-around;
  align-items: center;
  margin: 20px auto;
  width: 25%;
  padding: 2% 2px;
}

input[type="radio"] {
  display: inline-block;
  transform: scale(1.8);
  margin-right: 10px;
  margin-bottom: 4%;
}

.radio_box {
  display:  flex;
  flex-wrap: wrap;
}

.type_button {
  /* font-size: 1.2rem; */
  padding-left: 5%;
  padding-bottom: 2%;
  collor: #333333;
}

.type_text {
  padding-bottom: 2%;
}

#ErrorBox {
  width: 97%;
  max-width: 700px;
  margin: 0% auto 0;
  background-color: #fff;
  padding: 2% 2% 0%;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #595750;
}

.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;/* バナー内の文字色 */
  font-weight: bold;
  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: #f19dae; /* ボタンの背景 */
  margin: 0
}

