@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;
}

.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%;
}
@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;
  padding-right: 45px;
  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;
    padding-right: 28px;
  }
}

.answer {
  padding: 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .answer {
    padding: 15px;
    padding-left: 15px;
  }
}
.answer .icon {
  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 {
  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;
}

.caution label {
  background-color: #EAF4FC;
}

.caution .content p {
  padding: 16px 0;
}

.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;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 50px 0 20px;
  }
}
.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 {
  background-color: #ED7782;
  text-align: center;
}
.date .wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .date .wrap {
    max-width: 280px;
  }
}
.date img {
  max-width: 650px;
  margin: 0 auto;
  padding: 15px 0;
}

.details {
  padding: 100px 0;
  background-color: #EAF4FC;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .details {
    padding: 0;
  }
}
.details .wrap {
  max-width: 900px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .details .wrap {
    width: 100%;
  }
}
.details_contents {
  padding: 20px 0 20px;
  background-color: #fff;
  border: 5px solid #023894;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .details_contents {
    padding-bottom: 0;
    border-radius: 0;
    padding-bottom: 30px;
  }
}
.details_contents .container {
  max-width: 730px;
  width: 90%;
  margin: 0 auto;
}
.details_explain {
  margin-bottom: 50px;
}
.details_explain .first {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .details_explain {
    margin-bottom: 30px;
  }
}
.details_txt {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .details_txt {
    margin-bottom: 30px;
  }
}
.details .title {
  background-color: #EAF4FC;
  margin: 0 auto;
  display: block;
}
.details .btn {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  margin-top: 20px;
}
.details .figure {
  margin-bottom: 20px;
}
.details .teiki {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .details .teiki {
    margin-bottom: 30px;
  }
}

.product-details-list {
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .product-details-list {
    margin-top: 20px;
  }
}
.product-details .list-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .product-details .list-item {
    margin-bottom: 20px;
  }
}
.product-details .notice-box {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .product-details .notice-box {
    margin-bottom: 5px;
  }
}
.product-details .notice-icon {
  width: 12px;
  height: 12px;
  margin-right: 8px;
  flex-shrink: 0;
  background-color: #003894;
}
.product-details .notice-text {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .product-details .notice-text {
    font-size: 1.4rem;
  }
}
.product-details .txt {
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .product-details .txt {
    font-size: 1.4rem;
  }
}

.cv {
  padding: 50px 0;
  background-color: #023894;
}
.cv .wrap {
  width: 90%;
  margin: 0 auto;
}
.cv_ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cv_ttl {
    font-size: 2.4rem;
  }
}
.cv_txt {
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cv_txt {
    margin-bottom: 20px;
  }
}
.cv .btn {
  display: block;
  max-width: 480px;
  margin: 0 auto;
}
.cv .btn.serch {
  margin-bottom: 10px;
}
.cv .btn.tell {
  margin-bottom: 5px;
}
.cv .tell_txt {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cv .tell_txt {
    font-size: 1.2rem;
  }
}

.faq {
  background-color: #EAF6FD;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 50px 0;
  }
}
.faq-ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq-ttl {
    font-size: 2.4rem;
  }
}
.faq_btn {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq_btn {
    width: 100%;
    margin-top: 20px;
  }
}

.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;
  }
}

.footer {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  width: 100%;
  background-color: #003894;
  padding-bottom: 110px;
}
.footer .wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
@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: 30px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer_txt {
    font-size: 1.2rem;
    margin-bottom: 20px;
    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;
  }
}/*# sourceMappingURL=styles.css.map */