@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-weight: unset;
  font-size: inherit;
}

ol, ul {
  list-style: none;
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input[type=submit],
input[type=button] {
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: 0;
  outline: none;
  border: none;
}

textarea {
  resize: vertical;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input {
  line-height: normal;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button {
  overflow: visible;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  border: none;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.effect-fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 500ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.accordion {
  width: 100%;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 20px;
}
.option p {
  width: 100%;
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .option p {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .option {
    margin-bottom: 10px;
  }
}

.title,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  color: #333;
  font-weight: bold;
  font-size: 2rem;
}
.title .icon {
  width: 45px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .title .icon {
    margin-right: 10px;
    width: 35px;
  }
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.6rem;
    padding: 15px;
  }
}

.answer {
  padding: 20px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .answer {
    padding: 0;
    padding-left: 15px;
  }
}
.answer .icon {
  padding-top: 14px;
  width: 45px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .answer .icon {
    width: 35px;
  }
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 3%;
  top: 36%;
  width: 2px;
  height: 1em;
  background-color: #0092D7;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .title::after,
  .title::before {
    top: 40%;
    right: 5%;
    height: 0.7em;
  }
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.content p {
  padding: 16px 0;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .content p {
    font-size: 1.6rem;
  }
}

.toggle:checked + .title + .content {
  max-height: 6000px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.wrap-10 {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap-10 {
    width: 90%;
  }
}

.wrap-8 {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrap-8 {
    width: 90%;
  }
}

.btn {
  cursor: pointer;
}

.btn:hover {
  opacity: 0.8;
  transition: 0.4s;
}

.mv {
  position: relative;
  background-image: url("./../../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}
.mv .wrap-14 {
  position: relative;
  padding-top: 2%;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .mv .wrap-14 {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.mv .logo {
  width: 210px;
  position: absolute;
  left: 5%;
  top: 2.5%;
}
@media screen and (max-width: 768px) {
  .mv .logo {
    width: 120px;
    top: 3%;
    left: 3%;
  }
}
.mv .logo a {
  display: block;
}
.mv_txt {
  max-width: 900px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv_txt {
    width: 100%;
  }
}

.date {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* left:50% の分を戻して中央配置 */
  z-index: 2;
  background-image: url("./../../images/date.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: scroll;
  background-size: auto;
  text-align: center;
  color: #fff;
  padding: 70px 0 40px;
  height: auto;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .date {
    font-size: 1.6rem;
  }
}
.date .btn {
  max-width: 650px;
  margin: 0 auto;
  margin-top: 15px;
}

.details {
  padding: 100px 0;
  background-color: #EAF6FD;
}
@media screen and (max-width: 768px) {
  .details {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.details .table {
  position: relative;
}
.details .btn {
  width: clamp(80px, 16vw, 160px);
  height: auto;
  position: absolute;
  bottom: 3.5%;
  right: 30%;
}
@media screen and (max-width: 768px) {
  .details .btn {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    bottom: 1.5%;
  }
}

.how-to-use_pic {
  background-color: #EAF6FD;
  text-align: center;
}
.how-to-use_pic img {
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .how-to-use_pic img {
    margin-bottom: 0px;
  }
}
.how-to-use_ttl {
  background-color: #BEE1EA;
  text-align: center;
}
.how-to-use_ttl img {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .how-to-use_ttl img {
    width: 100%;
  }
}
.how-to-use .container {
  background-color: #BEE1EA;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .how-to-use .container {
    padding-bottom: 50px;
  }
}
.how-to-use .container .wrap-10 {
  padding: 50px;
  border: 4px solid #239EC9;
  background: #fff;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .how-to-use .container .wrap-10 {
    padding: 30px 0;
    border-radius: 25px;
  }
}
.how-to-use .container .img {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .how-to-use .container .img {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.how-to-use .container .txt-area {
  width: 80%;
  margin: 0 auto;
}
.how-to-use .container .txt-area img {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .how-to-use .container .txt-area {
    width: 90%;
  }
}
.how-to-use .container .txt-area .txt {
  text-align: center;
  font-weight: bold;
}

.banner {
  background-color: #239EC9;
}
@media screen and (max-width: 768px) {
  .banner {
    padding-bottom: 0;
  }
}
.banner__wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.banner-img {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.banner .btn {
  position: absolute;
  width: 60%;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .banner .btn {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .banner .wrap {
    width: 100%;
  }
}

.faq {
  background-color: #EAF6FD;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
.faq-ttl {
  max-width: 300px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .faq-ttl {
    max-width: 250px;
    margin-bottom: 20px;
  }
}
.faq_btn {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq_btn {
    width: 100%;
    margin-top: 20px;
  }
}

.fixed-buttons {
  position: fixed;
  background-color: #EC6F80;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15); /* ← 追加：上方向の薄い影 */
}
.fixed-buttons .btn {
  flex: 1;
  display: flex;
  justify-content: center; /* テキストを中央寄せ */
  align-items: center;
  height: 80px;
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fixed-buttons .btn {
    font-size: 1.6rem;
    height: 60px;
  }
}
.fixed-buttons .btn .arrow-btn .arrow {
  font-size: 28px; /* 矢印を少し大きく */
  line-height: 1;
}
.fixed-buttons .btn::after {
  content: "›"; /* または "＞" */
  font-size: 3.4rem;
  margin-left: 12px;
  position: relative;
  top: 25%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fixed-buttons .btn::after {
    font-size: 2.4rem;
  }
}

.footer {
  color: #fff;
  font-size: 1.8rem;
  width: 100%;
  background-color: #003894;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 75px;
  }
}
.footer .page-top {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .footer .page-top {
    font-size: 1.6rem;
    padding: 10px;
  }
}
.footer .page-top .icon {
  margin-right: 10px;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .footer .page-top .icon {
    font-size: 1.8rem;
  }
}
.footer .wrap {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .footer .wrap {
    padding-top: 50px;
  }
}
.footer_logo {
  width: 210px;
  display: block;
  margin-left: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    width: 140px;
  }
}
.footer_txt {
  margin-bottom: 100px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer_txt {
    font-size: 1.2rem;
    margin-bottom: 50px;
    flex-direction: column; /* 縦並びに変更 */
    gap: 10px;
  }
}
.footer_copy {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    text-align: center;
    font-size: 1.2rem;
  }
}

.caution {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .caution {
    padding: 50px 0;
  }
}
.caution-ttl {
  text-align: center;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .caution-ttl {
    font-size: 1.8rem;
  }
}
.caution .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .caution .txt {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=styles.css.map */