@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.4rem;
  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: 30px;
}
@media screen and (max-width: 768px) {
  .option {
    margin-bottom: 15px;
  }
}

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

.title {
  background-color: #DCEBF8;
  padding: 20px;
  display: block;
  color: #333;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.4rem;
    padding: 15px 7px;
  }
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 36%;
  width: 2px;
  height: 1em;
  background-color: #9D9D9D;
  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: 1.8rem;
}
@media screen and (max-width: 768px) {
  .content p {
    font-size: 1.4rem;
  }
}

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

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

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

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

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

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

.mv {
  background-color: #0092D7;
}
.mv .wrap-14 {
  position: relative;
}
.mv .logo {
  width: 165px;
  position: absolute;
  right: 10%;
  top: 6%;
}
@media screen and (max-width: 768px) {
  .mv .logo {
    width: 120px;
    top: 3%;
    right: 3%;
  }
}
.mv .logo a {
  display: block;
}

.date {
  background-color: #003894;
  text-align: center;
  color: #fff;
  padding: 30px 0;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .date {
    font-size: 1.8rem;
  }
}
.date .btn {
  max-width: 650px;
  margin: 0 auto;
  margin-top: 15px;
}

.campaign {
  background-color: #003894;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .campaign {
    padding-bottom: 50px;
  }
}
.campaign .campaign-list__item {
  width: 100%;
  background-color: #fff;
  padding: 50px;
}
.campaign .campaign-list__item:first-child {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .campaign .campaign-list__item {
    padding: 30px 20px 10px;
  }
}
.campaign .campaign-ttl {
  margin-bottom: 20px;
}
.campaign .wrap {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}
.campaign .campaign-ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .campaign .campaign-ttl {
    margin-bottom: 30px;
  }
}
.campaign .condition-list .condition-ttl:first-child {
  margin-bottom: 20px;
}
.campaign .border {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .campaign .border {
    margin: 20px 0;
  }
}

.example {
  padding: 80px 0;
  background-color: #EAF8FE;
}
@media screen and (max-width: 768px) {
  .example {
    padding: 50px 0;
  }
}
.example-ttl {
  max-width: 600px;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .example-ttl {
    margin-bottom: 30px;
  }
}
.example-img {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .example-img {
    margin-bottom: 40px;
  }
}
.example .list-item:first-child {
  margin-bottom: 20px;
}

.cv {
  background-color: #003894;
  text-align: center;
  padding: 80px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cv {
    padding: 50px 0;
  }
}
.cv .wrap-12 {
  background-color: #fff;
  padding: 40px 50px 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .cv .wrap-12 {
    padding: 30px 20px 10px;
    margin-bottom: 20px;
  }
}
.cv-ttl {
  max-width: 450px;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 40px;
}
.cv .btn-area {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.cv .btn-area-ttl {
  text-align: center;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .cv .btn-area-ttl {
    font-size: 2.2rem;
  }
}
.cv .debut {
  color: #F2944C;
}
.cv .syokai {
  color: #EC6F80;
}
.cv .date-ttl {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .cv .date-ttl {
    font-size: 1.8rem;
  }
}

.tell {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .tell {
    padding: 50px 0;
  }
}
.tell-ttl {
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .tell-ttl {
    margin-bottom: 15px;
  }
}
.tell .tell-btn {
  max-width: 650px;
  margin: 0 auto;
}

.shop {
  padding: 50px 0;
  background-color: #EFEFEF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shop {
    padding: 30px 0;
  }
}
.shop-ttl {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .shop-ttl {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.shop p {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .shop p {
    font-size: 1.4rem;
  }
}
.shop .shop-btn {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .shop .shop-btn {
    max-width: 200px;
    margin-top: 10px;
  }
}

.banner {
  border-bottom: 1px solid #DFDFDF;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 20px 0;
  }
}
.banner a {
  display: block;
  max-width: 650px;
  width: 90%;
  margin: 0 auto;
}

.caution {
  padding: 50px 0;
}
.caution-ttl {
  text-align: center;
  font-size: 3.2rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .caution-ttl {
    font-size: 1.8rem;
  }
}
.caution .list-item {
  margin-bottom: 30px;
}
.caution .notice-box {
  display: flex;
  align-items: center;
  font-family: sans-serif;
  margin-bottom: 10px;
}
.caution .notice-icon {
  width: 12px;
  height: 12px;
  margin-right: 8px;
  flex-shrink: 0;
}
.caution .notice-icon.debut {
  background-color: #F2944C;
}
.caution .notice-icon.shyokai {
  background-color: #EC6F80;
}
.caution .notice-text {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .caution .notice-text {
    font-size: 1.4rem;
  }
}
.caution .txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .caution .txt {
    font-size: 1.4rem;
  }
}

.last-date {
  text-align: right;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .last-date {
    font-size: 1.4rem;
  }
}

.fixed-buttons {
  position: fixed;
  background-color: #003894;
  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 {
    flex-direction: column;
    font-size: 1.8rem;
    height: 60px;
  }
}
.fixed-buttons .btn .small {
  font-size: 1.8rem;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .fixed-buttons .btn .small {
    font-size: 1.2rem;
  }
}
.fixed-buttons .btn::after {
  content: "›"; /* または "＞" */
  font-size: 2rem;
  margin-left: 12px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  .fixed-buttons .btn::after {
    display: none;
  }
}
.fixed-buttons .btn-left {
  background-color: #0096a0; /* ターコイズ */
}
.fixed-buttons .btn-right {
  background-color: #0097e0; /* ブルー */
}

.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: 300px;
  display: block;
  margin-left: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer_logo {
    width: 140px;
  }
}
.footer_txt {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .footer_txt {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }
}
.footer_copy {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer_copy {
    font-size: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */