@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;
  }
}
.font-bold {
  font-weight: bold;
}

.font-small {
  font-size: 85%;
}

.font-red {
  color: rgb(236, 75, 78);
}

.text-center {
  text-align: center;
}

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

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: 750px) {
  .br-sp {
    display: block;
  }
}
.fadeup {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1), transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}
.fadeup.is-in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
/* Header Container */
.header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  box-sizing: border-box;
  position: relative;
  background-color: white;
}
.header-cta {
  display: block;
  max-width: 150px;
}
.header-cta img {
  width: 100%;
  height: auto;
}

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

.fv {
  position: relative;
}
.fv-cta {
  position: absolute;
  display: block;
  width: 90%;
  height: 13%;
  bottom: 8.8%;
  left: 5%;
}

/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
main > section {
  position: relative;
}

.cta {
  background: rgb(255, 134, 168);
  padding: 5% 0 2%;
}
.cta-web {
  width: 90%;
  max-width: 750px;
  margin: 0 auto;
}
.cta-cap {
  width: 90%;
  max-width: 750px;
  margin: 10px auto 0;
}
.cta-cap p {
  text-align: center;
  color: #fff;
}

.reflection {
  position: relative;
  overflow: hidden;
  animation: pekopeko 2s infinite;
}

@keyframes pekopeko {
  0% {
    top: 0px;
  }
  10% {
    top: 3px;
  }
  20% {
    top: 0px;
  }
  30% {
    top: 3px;
  }
  40% {
    top: 0px;
  }
}
.faq {
  padding: 5% 0 10%;
}

.faq h2 {
  width: 78.6666666667%;
  max-width: 750px;
  margin: 0 auto;
}
.faq h2 img {
  margin: 0 auto;
}

.accordion {
  width: 95%;
  margin: 20px auto 0;
}

.accordion-wrapper {
  margin-bottom: 20px;
  border: 1px solid rgb(16, 57, 117);
  border-radius: 15px;
  padding: 12px;
}

.accordion-content {
  display: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 33px 0 8px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  min-height: 70px;
}

.accordion-header::before {
  content: "";
  position: absolute;
  top: 43%;
  right: 0;
  border: 9px solid transparent;
  border-top: 10px solid rgb(16, 57, 117);
  transition: all 0.2s;
}

.accordion-header.active::before {
  top: 20%;
  transform: scale(1, -1);
}

.accordion-content {
  padding: 12px 8px 0;
  border-top: 1px solid rgb(4, 96, 146);
}

.accordion-header p,
.accordion-content {
  position: relative;
}

.accordion-header p::before {
  content: "Q.";
  color: rgb(16, 57, 117);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

.accordion-content p::before {
  content: "A.";
  color: rgb(230, 85, 103);
  font-size: 18px;
  margin-right: 5px;
  font-weight: bold;
}

/* ------------------------------------------------------------
  section
------------------------------------------------------------ */
.section01 {
  padding: 20px;
}

.section05 {
  position: relative;
}
.section05-text {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  color: #333;
}

/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.section_Form {
  padding: 20px 0;
  background-color: rgb(255, 248, 251);
}

.section_Form h2 {
  width: 73.6%;
  max-width: 750px;
  margin: 0 auto;
}
.section_Form h2 img {
  margin: 0 auto;
}

.form-cap {
  text-align: center;
  margin-top: 11%;
}
.form-cap span {
  color: #ff9200;
  font-weight: bold;
}

.form {
  width: 91%;
  max-width: 700px;
  margin: 5% auto 0;
  padding: 1% 4% 8%;
  background: #f8fef6;
  background: #ffffff;
  box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
}

.require {
  background-color: #ff493f;
  color: white;
  padding: 1% 2%;
  font-size: 13px;
  margin-right: 3%;
  border-radius: 3px;
}

.any {
  border: #666666 solid 1px;
  color: #666666;
  padding: 1% 2%;
  font-size: 13px;
  margin-right: 3%;
  border-radius: 3px;
}

.form_item {
  padding-bottom: 2%;
  margin: 5% 0;
}
.form_item input {
  accent-color: rgb(255, 86, 132);
}

.form_head {
  font-weight: bold;
  margin-bottom: 5%;
  color: #333333;
  text-indent: -2.9rem;
  padding-left: 2.9rem;
}

.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;
}
.input_text.is-error {
  background: rgb(255, 231, 231);
}

.annotation {
  color: #777777;
  font-size: 11px;
  margin: 0;
}

.annotation2 {
  width: 100%;
  margin: 0;
  padding: 4px;
  color: #ff493f;
  font-size: 11px;
  background-color: #ffe7e6;
}

.add_head {
  color: #333333;
  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: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}
.form_item select.is-error {
  background: rgb(255, 231, 231);
}

.attention {
  color: rgb(102, 102, 102);
}

.attention p {
  text-align: left;
  margin: 0;
}

.attention span {
  color: rgb(236, 75, 78);
}

@media screen and (min-width: 750px) {
  .attention p {
    font-size: 16px;
  }
}
.file {
  padding: 8px 10px;
  background: #f1f1f1;
  border: 1px solid #aeaeae;
  border-radius: 5px;
}
.file input {
  width: 100%;
}
.file.is-error {
  background: rgb(255, 231, 231);
}

.button, .button--back {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  max-width: 300px;
  padding: 15px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background-color: rgb(248, 102, 142);
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.button[disabled=true], [disabled=true].button--back {
  pointer-events: none;
  background-color: #b6b6b6;
}
.button--back {
  background-color: rgb(149, 149, 149);
  margin-top: 20px;
}

.button:hover, .button--back:hover {
  opacity: 0.7;
}

.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;
  font-size: 0.9rem;
  background: rgb(231, 143, 177);
}
.footer-list {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-list a {
  color: #fff;
  font-size: 14px;
}

.footer .copyright {
  font-size: 12px;
  color: #fff;
}

.privacy {
  padding: 40px 0;
  background-color: rgb(255, 248, 251);
}
.privacy h2 {
  width: 73.6%;
  max-width: 750px;
  margin: 0 auto;
}
.privacy h2 img {
  margin: 0 auto;
  height: auto;
}
.privacy-contents {
  background-color: #fff;
  width: 90%;
  margin: 20px auto 0;
  padding: 20px;
}
.privacy-contents p {
  font-size: 14px;
}
.privacy-contents p + p {
  margin-top: 20px;
}

.admin {
  padding: 40px 0;
}
.admin h2 {
  text-align: center;
  width: 73.6%;
  max-width: 750px;
  margin: 0 auto;
}
.admin h2 img {
  margin: 0 auto;
  height: auto;
}
.admin-contents {
  width: 90%;
  margin: 20px auto 0;
}
.admin-contents dl {
  font-weight: bold;
  color: rgb(51, 51, 51);
}
.admin-contents dt {
  background: #fff8fb;
  border-top: 1px solid rgb(255, 189, 207);
  padding: 15px;
}
.admin-contents dd {
  padding: 15px;
}
.admin-contents dd a {
  color: rgb(51, 51, 51);
}

.thanks {
  padding: 40px 0;
  background-color: rgb(255, 248, 251);
}
.thanks h2 {
  text-align: center;
  width: 61.3333333333%;
  max-width: 750px;
  margin: 0 auto;
}
.thanks h2 img {
  margin: 0 auto;
  height: auto;
}
.thanks-contents {
  width: 90%;
  margin: 20px auto 0;
}
.thanks-item {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.thanks-item + .thanks-item {
  margin-top: 15px;
}
.thanks-item h3 {
  color: rgb(248, 102, 142);
  text-align: center;
  margin-bottom: 15px;
}
.thanks-item .tel {
  display: block;
  margin: 20px auto 0;
}
.thanks-item h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgb(255, 197, 213);
}
.thanks .card-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: center;
}
.thanks .card-btn li {
  padding: 4px 0;
  border: 1px solid rgb(112, 109, 110);
  border-radius: 5px;
  font-weight: bold;
}
.thanks .card-img {
  display: block;
  margin-top: 20px;
}
.thanks .gototop {
  display: block;
  margin: 20px auto 0;
}

.confirm {
  padding: 40px 0;
  background-color: rgb(255, 248, 251);
}
.confirm h2 {
  text-align: center;
  width: 73.6%;
  max-width: 750px;
  margin: 0 auto;
}
.confirm h2 img {
  margin: 0 auto;
  height: auto;
}
.confirm-contents {
  width: 90%;
  margin: 20px auto 0;
}
.confirm-item {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.confirm-item h3 {
  margin: 20px auto 10px;
  border-bottom: 1px solid rgb(255, 197, 213);
}
.confirm .btnBox {
  margin-top: 30px;
}
.confirm .image-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  text-align: center;
  font-weight: bold;
}
.confirm .image-section + .image-section {
  margin-top: 20px;
}
.confirm .image-section img {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
/*# sourceMappingURL=style.css.map */
