@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-L {
      font-size: 18px;
  }
  .font-size-LL {
      font-size: 20px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 16px;
  }
  .font-size-M {
      font-size: 18px;
  }
  .font-size-L {
      font-size: 20px
  }
  .font-size-LL {
      font-size: 24px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background: #e6e6e6;
  color: #221815;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}

p {
  line-height: 1.4em;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: auto;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}

.inner {
  width: 95%;
  max-width: 600px;
  margin: auto;
}

.pink {
  color: #fb4c65;
  font-weight: bold;
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta {

}
.cta_box {
  text-align: center;
  padding: 8% 0;
}
.reflection {
  position: relative;
  width: 95%;
  margin: auto;
  overflow: hidden;
  animation: anime1 0.8s ease 0s infinite alternate;
  transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.95,0.95);
  }
  to {
    transform: scale(1,1);
  }
}
.tell_cta {
  margin-top: 3%;
  position: relative;
}
.tell_cta img {
  width: 95%;
}

.section01 {
  background-color: #fff;
}


.section02 {
  background-color: #fffee6;
  padding: 0 0 5%;
  margin-top: -12px;
}

.arrow1 {
  margin: 0 auto -15px;
  width: 40px;
  height: 40px;
  border: 5px solid;
  border-color:  transparent transparent #f2930a #f2930a;
  transform: rotate(-45deg);
}

.arrow1:nth-child(2) {
  margin: 0 auto 10px;
}

.accordion_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 15px 15px;
  width: 100%;
  cursor: pointer;
  background-color: #5597c2;
  color: #fff;
  position: relative;
}

.accordion_header img {
  width: 80%;
}

.accordion_content {
  display: none;
  background-color: #fff;
  box-shadow: 0px 1px 4px gray;
  padding: 20px 10px;
}
.accordion_header:nth-child(n + 1) {
  margin-top: 20px;
}

.accordion_header::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 20px;
  height: 2px;
  background-color:#fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

.accordion_header::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 20px;
  height: 2px;
  background-color:#fff;
  transition: all .3s ease-in-out;
}

.accordion_header.open::before {
  transform: rotate(180deg);
}

.accordion_header.open::after {
  opacity:0;
}

.section02 h3 {
  text-align: center;
}

.section02 h3 span {
  background-color: #e9f2f7;
  color: #5597c2;
  padding: 5px 10px;
}

.flow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5em auto;
  padding: 15px 5px;
  width: 100%;
  background-color: #fffee6;
  border: solid 2px #f2930a;
  box-sizing: border-box;
  border-radius: 5px;
}

.flow:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -16px;
  border: 13px solid transparent;
  border-top: 13px solid #fffee6;
  z-index: 2;
}

.flow:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #f2930a;
  z-index: 1;
}

.flow:nth-child(4)::before,
.flow:nth-child(4)::after {
  content: none;
}

.flow-img {
  min-width: 60px;
  text-align: center;
}

.flow img {
  width: 55%;
}

.flow h4 {
  color: #5597c2;
  margin-bottom: 5px;
}

.flow h4 span {
  background-color: #f2930a;
  color: #fff;
  padding: 0px 5px;
  border-radius: 20px;
  font-weight: 100;
  margin-right: 5px;
}

.circle_box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
  max-width: 400px;
}

.circle{
  width:100px;
  height:100px;
  border-radius:50%;
  background-color:#fffee6;
  border: #f2930a 2px solid;
  color: #5597c2;
  font-weight: bold;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align: center;
  box-shadow: 3px 3px rgba(102, 63, 0, 0.3);
}

@media screen and (min-width:750px) {
.section02 {
  margin-top: -20px;
}

.accordion_header {
  padding: 10px 0px 25px 65px;
}

.accordion_content {
  padding: 20px 40px;
}
}

.section03 {
  background-color: #e9f2f7;
  padding: 0 0 5%;
}

.triangle3{
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #fffee6;
  margin: auto;
}

.worry {
  background-image: url(../images/worry01.webp);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 60px auto;
  background-color: #fff;
  padding: 10px 0 10px 65px;
  margin: 20px 0;
  min-height: 80px;
}
.worry:nth-child(3) {
  background-image: url(../images/worry02.webp);
}

.answer {
  background-image: url(../images/answer.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 60px auto;
  background-color: #fffee6;
  padding: 10px 60px 10px 10px;
  margin: 20px 0;
  position: relative;
}

.light {
  position: absolute;
  top: -15px;
  right: 0;
  width: 30px;
}


.section04 {
  background-color: #fffee6;
  padding: 5% 0;
}

.section04 h2 {
  margin-bottom: 20px;
}

.section04 p {
  margin: 20px auto;
  background-color: #fff;
  padding: 10px;
}

.card h3 {
  background-color: #f2930a;
  color: #fff;
  text-align: center;
  border-radius: 7px 7px 0 0;
  padding: 5px;
}

.card {
  border: #f2930a 2px solid;
  border-radius: 10px;
  text-align: center;
}

.card img {
  width: 90%;
  margin: 10px auto;
}



.section05 {
  background-color: #ff8a95;
  padding: 5% 0;
  position: relative;
}
.section05:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  border-color: #ff8a95 #fffee6 transparent #fffee6;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  margin-top: -1px;
}

.balloon05 {
  position: absolute;
  bottom: -50px;
  left: 20px;
  width: 80px;
  z-index: 20;
}

.review_box {
  background-color: #fff;
  border: #221815 solid 2px;
  text-align: center;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  margin: 0 10px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  padding: 45px 30px;
}

.review_box img {
  position: absolute;
  top: -18%;
  left: 18%;
  width: 120px;
}

.review_box h3 {
  color: #5597c2;
  border-bottom: #ff8a95 dashed 2px;
  margin-bottom: 20px;
}

.slider-container {
  width: 100%;
  margin: 60px auto 20px;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  justify-content: flex-start;
}

.prev-button,
.next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.prev-button {
  left: 10px;
}
.next-button {
  right: 10px;
}

.slider-indicators {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.indicator-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: #221815 solid 1px;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.indicator-dot.active {
  background-color: #221815;
}

@media screen and (min-width:750px) {
.section05:after{
  border-width: 60px 375px 0 375px;
}

.balloon05 {
  bottom: -70px;
  left: 50px;
  width: 120px;
}

.review_box {
  width: 400px;
  height: 400px;

  padding: 100px 30px;
}

.review_box img {
  top: -20%;
  left: 14%;
  width: 200px;
}

.slider-container {
  margin: 100px auto 20px;
}
}



.section06 {
  padding: 12% 0 0;
  background-color: #fffee6;
  position: relative;
  overflow: hidden;
}

.section06 h2 {
  text-align: center;
  font-size: 25px;
}

.section06 h2 span {
  color: #fb4c65;
  font-size: 35px;
  background:linear-gradient(transparent 60%, #fcea30 60%);
}

.confetti {
  position: absolute;
  opacity: 0;
  animation: fall 5s linear forwards infinite;
  transform-origin: center center;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 0%;
  opacity: 0;
  animation: fall 5s linear forwards infinite;
}

@keyframes fall {
  0% {
    transform: translate(0, -100px) rotateZ(0deg) rotateX(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 60vh) rotateZ(1080deg) rotateX(720deg);
    opacity: 0;
  }
}

@media screen and (min-width:750px) {
.section06 h2 {
  font-size: 50px;
}

.section06 h2 span {
  font-size: 70px;
}
}


.section07 {
  background-color: #e9f2f7;
  padding: 5% 0;
}

.section07 .inner {
  margin: 20px auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  background-color: white;
  box-shadow: 0 0 3px rgba(85, 151, 194, 0.7);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  padding: 10px;
  border-bottom: #e9f2f7 solid 1.5px;
}

.accordion-header p {
  margin: auto 10px;
  width: 100%;
}

.question-mark {
  font-size: 28px;
  color: #5597c2;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  font-family: "Inter", sans-serif;
}

.toggle-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5597c2;
  flex-shrink: 0;
}

.accordion-content {
  position: relative;
  padding: 10px;
  display: none;
  text-align: left;
}

.accordion-content.open {
  display: block;
}

.accordion-header.open .question-mark {
  border-radius: 10px 0 0 0;
}

/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.section_Form {
  background-color: #e9f2f7;
  scroll-margin-top: 50px;
  padding-bottom: 5%;
}

.section_Form h2 {
  background-color: #5597c2;
  color: #fff;
  font-size: 32px;
  text-align: center;
  padding: 20px 0 5px;
  position: relative;
}
.section_Form h2:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 50vw 0 50vw;
  border-color: #5597c2 #e9f2f7 transparent #e9f2f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  margin-top: -1px;
}

.center_txt {
  text-align: center;
  margin-top: 30px;
}

.notices_box {
  background-color: #fffee6;
  width: 95%;
  max-width: 400px;
  margin: auto;
  border-radius: 2px;
  padding: 2%;
  font-size: 12px;
  margin-top: 2%;
}

.form {
  width: 97%;
  max-width: 700px;
  margin: auto;
  margin-top: 5%;
  background-color: #fff;
  padding: 2% 2% 8%;
}

.require {
  border: solid 1px #fa4141;
  color: #fa4141;
  padding: 0.2% 1%;
  border-radius: 10%;
  font-size: 0.9rem;
  margin-right: 3%;
}
.any {
  border: solid 1px #666666;
  color: #666666;
  padding: 0.2% 1%;
  border-radius: 10%;
  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: 5%;
}

.radio_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

.form_item label {
  padding-left: 5%;
  padding-bottom: 3%;
}

.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;
}

.annotation {
  color: #777777;
  font-size: 0.9rem;
}

.pink {
  color: #fb4c65;
}

.add_head {
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 5%;
}

.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;
}

.explanation {
  text-align: left;
  font-size: 12px;
}

.koumoku_sub {
  margin: 10px auto;
  border-bottom: #5597c2 solid 1px;
}

.attachment {
  margin: 20px auto;
}

.button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  max-width: 350px;
  padding: 15px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 24px;
  text-shadow: 0 0 2px gray;
  background-color: #f2930a;
  border: none;
  border-radius: 3px;
  border-radius: 50px;
  box-shadow: 0 5px 0 #b76400;
}
.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;
}


@media screen and ( min-width:750px) {
.form {
  padding: 10px 50px 30px;
}

.section_Form h2 {
  padding: 40px 0 0;
  font-size: 50px;
}

.section_Form h2:after{
  border-width: 40px 375px 0 375px;
}

.center_txt {
  margin-top: 60px;
}
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #5597c2;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}
.footer a {
  color: #fff;
}

/* ------------------------------------------------------------
  floating
------------------------------------------------------------ */
.floating-banner {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  right: 0;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}
.floating-banner img {
  max-width: 90%;
  margin: auto;
}

.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and ( min-width:750px) {
.floating-banner {
  display: none;
  position: fixed;
  z-index: 99999;
  bottom: 0;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 750px;
  }

.floating-banner img {
  max-width: 60%;
  margin: auto;
  }
}