@charset "UTF-8";
/*--------------------------------------------------------------------
common
--------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "slick", sans-serif;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.container {
  padding: 0 5%;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }
}

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

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

/* =======================================
text
==========================================*/
p {
  font-size: 1.5rem;
}
@media screen and (min-width: 1025px) {
  p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 300px) {
  p {
    font-size: 1.4rem;
  }
}

.caption {
  color: #7d7d7d;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .caption {
    font-size: 1.4rem;
  }
}

.headingText {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .headingText {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 300px) {
  .headingText {
    font-size: 1.5rem;
  }
}

.inner__link {
  color: #65a7e8;
  font-weight: 500;
  border-bottom: 2px solid #65a7e8;
}

.btnWrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn {
  display: block;
  color: #292929;
  font-weight: 500;
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
  padding: 16px 0px;
  background: #ffd13a;
  border-radius: 30px;
  border: 2px solid #ffd13a;
  max-width: 300px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 300px) {
  .btn {
    font-size: 1.4rem;
  }
}
.btn:hover {
  background: #fff;
  transition: all 0.4s ease;
}

.section__txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .section__txt {
    margin-top: 80px;
    text-align: center;
  }
}

h1 {
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (max-width: 300px) {
  h1 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 4rem;
  }
}

.fontSize__large {
  font-size: 2.1rem;
}
@media screen and (min-width: 768px) {
  .fontSize__large {
    font-size: 3.6rem;
  }
}

.sectionTitle {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .sectionTitle {
    font-size: 2.6rem;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .sectionTitle {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 300px) {
  .sectionTitle {
    font-size: 1.6rem;
  }
}

h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 300px) {
  h3 {
    font-size: 1.6rem;
  }
}

.sectionTitle__yellow {
  background: #ffd13a;
  border-radius: 50px;
  padding: 16px;
}

.sectionTitle__white {
  color: #fff;
}

ul li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  ul li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 300px) {
  ul li {
    font-size: 1.3rem;
  }
}
ul .innerIndent {
  padding-left: 2em;
  text-indent: -1em;
}
ul .innerIndent3em {
  padding-left: 3em;
  text-indent: -1em;
}
ul .listNum {
  margin-top: 12px;
}

/*--------------------------------------------------------------------
fv
--------------------------------------------------------------------*/
.fv {
  background: #e4f1ff;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .fv {
    padding-bottom: 240px;
  }
}
.fv::after {
  position: absolute;
  content: url(../../images/fv_bottom_sp.png);
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  vertical-align: middle;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv::after {
    content: url(../../images/fv_bottom.png);
    bottom: -4px;
  }
}
.fv .headerLogo {
  display: flex;
  flex-direction: column;
  justify-content: left;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .fv .headerLogo {
    padding: 40px;
  }
}
.fv .headerLogo__img {
  max-width: 120px;
}
@media screen and (min-width: 768px) {
  .fv .headerLogo__img {
    max-width: 160px;
  }
}
.fv .fvImgWrapper {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv .fvImg {
    max-width: 680px;
  }
}
.fv .yellowLine {
  background: #ffd13a;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 1.4rem;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .fv .yellowLine {
    font-size: 1.8rem;
    padding: 4px 8px;
  }
}

/*--------------------------------------------------------------------
date
--------------------------------------------------------------------*/
.dateBg {
  background: #000d5e;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .dateBg p {
    font-size: 2.6rem;
    font-weight: 500;
  }
}

/*--------------------------------------------------------------------
campaign
--------------------------------------------------------------------*/
.campaign {
  background: #65a7e8;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .campaign {
    padding: 100px 0;
  }
}
.campaign .campaignBg {
  background: #2d4e9a;
  border-radius: 10px;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .campaign .campaignBg {
    padding: 80px 20px;
  }
}
.campaign .innerContainer {
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .campaign .innerContainer {
    max-width: 800px;
    margin: 0 auto;
  }
}
.campaign .campaignDetail, .campaign .campaignDetail__price {
  background: #fff;
  border-radius: 10px;
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  .campaign .campaignDetail, .campaign .campaignDetail__price {
    padding: 20px 24px;
  }
}
.campaign .campaignDetail {
  margin-bottom: 40px;
}
.campaign .campaignHeading {
  text-align: center;
  margin-bottom: 32px;
}
.campaign .campaignHeading p {
  font-size: 20px;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .campaign .campaignHeading p {
    margin-bottom: 0;
  }
}
.campaign .campaignDetail__flex .campaignDetail__img {
  display: none;
}
.campaign .campaignDetail__flex .campaignDetail__sp {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
}
.campaign .campaignDetail__flex .campaignDetail__sp div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.campaign .campaignDetail__flex .campaignDetail__sp p {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.campaign .campaignDetail__flex .campaignDetail__sp .icon_campaign {
  width: 40%;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .campaign .campaignDetail__flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .campaign .campaignDetail__flex .campaignDetail__img {
    display: block;
    width: calc((100% - 20px) / 2);
  }
  .campaign .campaignDetail__flex .campaignDetail__sp {
    display: none;
  }
}
.campaign .campaignDetail__price p {
  margin-bottom: 8px;
}
.campaign .campaignDetail__price table {
  width: 100%;
  font-size: clamp(12px, 2.8vw, 1.8rem);
  word-break: auto-phrase;
}
.campaign .campaignDetail__price table tr th, .campaign .campaignDetail__price table tr td {
  padding: 0.5em;
}
.campaign .campaignDetail__price table tr th {
  background-color: #65a7e8;
  font-weight: 500;
  text-align: center;
}
.campaign .campaignDetail__price table tr td {
  text-align: right;
}
.campaign .campaignDetail__price table tr td span {
  font-size: 0.8em;
  vertical-align: top;
}
.campaign .campaignDetail__price table, .campaign .campaignDetail__price th, .campaign .campaignDetail__price td {
  border-collapse: collapse;
  border: solid 1px #7d7d7d;
}
.campaign .campaignDetail__price small {
  display: block;
  font-size: 1.5rem;
  text-align: right;
}
.campaign .plus {
  text-align: center;
}
.campaign .plus img {
  width: 32px;
  margin: 16px 0;
}
.campaign .dateInner {
  background: #ffd13a;
  border-radius: 50px;
  padding: 8px;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .campaign .dateInner {
    margin: 60px 0;
  }
}
.campaign .dateInner .dateInner__yellow {
  text-align: center;
  font-weight: 500;
}
.campaign .dateInner .dateInner__yellow p {
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .campaign .dateInner .dateInner__yellow p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .campaign .dateInner .dateInner__yellow p {
    font-size: 2.4rem;
  }
}
.campaign .card {
  background: #fff;
  border-radius: 10px;
  padding: 40px 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .campaign .card {
    margin-bottom: 60px;
    padding: 6% 8%;
  }
}
.campaign .card .cardInner {
  max-width: 640px;
  margin: 0 auto;
}
.campaign .caution .cautionInner p {
  color: #fff;
  font-size: 1.6rem;
  margin: 28px 0 8px;
  text-indent: -1em;
  padding-left: 1em;
}
.campaign .caution .cautionInner li {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

/*--------------------------------------------------------------------
setting
--------------------------------------------------------------------*/
.setting {
  padding: 80px 0;
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .setting {
    padding: 100px 0;
  }
}
.setting .headingText {
  text-align: center;
}
.setting li {
  color: #7d7d7d;
}
.setting .settingFlex {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .setting .settingFlex {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: stretch;
    margin-top: 60px;
  }
}
.setting .settingFlex--box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .setting .settingFlex--box {
    width: 48%;
    padding: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .setting .settingFlex--box {
    width: 48%;
    padding: 40px;
  }
}
.setting .settingFlex__gp--link {
  background: #d6d6d6;
  border-radius: 10px;
  padding: 24px;
}
.setting .settingFlex__gp--link p {
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .setting .settingFlex__gp--link p {
    font-size: 1.6rem;
  }
}
.setting .settingFlex__gp--link .settingFlex__gp--linkFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.setting .fontDeco {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .setting .fontDeco {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------------
qp
--------------------------------------------------------------------*/
.quicpay {
  background: #65a7e8;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .quicpay {
    padding: 100px 0;
  }
}
.quicpay .qpFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .quicpay .qpFlex {
    flex-direction: row;
    align-items: stretch;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
.quicpay h3 {
  background: #2d4e9a;
  color: #fff;
  width: 100%;
  border-radius: 10px 10px 0 0;
  padding: 16px 0;
  font-size: 2rem;
}
.quicpay .qpFlexBox {
  background: #fff;
  border-radius: 10px;
}
.quicpay .qpFlexBox__wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 20px;
}
@media screen and (min-width: 768px) {
  .quicpay .qpFlexBox__wrapper {
    padding: 28px;
  }
}
@media screen and (min-width: 1025px) {
  .quicpay .qpFlexBox__wrapper {
    padding: 40px;
  }
}
.quicpay .qpFlexBox__text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.quicpay .qpFlexBox__text .stepNum {
  border: 1px solid #292929;
  padding: 4px 8px;
  font-size: 1.8rem;
}
.quicpay .caption {
  color: #fff;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .quicpay .caption {
    text-align: center;
  }
}
.quicpay .qpBtnFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .quicpay .qpBtnFlex {
    margin-top: 100px;
  }
}
.quicpay .qpBtnFlex p {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .quicpay .qpBtnFlex p {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------------
links
--------------------------------------------------------------------*/
.links {
  background: #2d4e9a;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .links {
    padding: 100px 0;
  }
}
.links .linksFlex {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (min-width: 768px) {
  .links .linksFlex {
    flex-direction: row;
    justify-content: center;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
.links .linksFlex__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 8px;
}
@media screen and (min-width: 768px) {
  .links .linksFlex__box {
    width: 30%;
  }
}
.links .linksFlex__box p {
  color: #fff;
}

/*--------------------------------------------------------------------
trademark
--------------------------------------------------------------------*/
.trademark {
  background: #f2f2f2;
  padding: 20px 0 40px;
  color: #585858;
}
@media screen and (min-width: 768px) {
  .trademark {
    padding: 40px 0 60px;
  }
}
.trademark p {
  font-weight: 500;
  margin: 20px 0 8px;
  font-size: 1.6rem;
}

/*--------------------------------------------------------------------
footer
--------------------------------------------------------------------*/
footer {
  background: #292929;
  color: #fff;
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 60px 0;
  }
}
footer .footermenu {
  padding: 0 7%;
}
@media screen and (min-width: 1025px) {
  footer .footermenu {
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
  }
}
footer .footermenu .footermenu__footerlists {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-bottom: 48px;
  border-bottom: 1px solid #7d7d7d;
}
@media screen and (min-width: 768px) {
  footer .footermenu .footermenu__footerlists {
    margin-bottom: 60px;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}
footer .footermenu a {
  color: #fff;
  font-size: 12px;
}
footer .footermenu .footermenu__footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  footer .footermenu .footermenu__footer-logo {
    margin-top: 60px;
  }
}
footer .footermenu .footermenu__footer-logo .footermenu__footer-logo--img {
  width: 180px;
}
footer .footermenu .footermenu__footer-logo .footermenu__footer-logo--copyright {
  font-size: 10px;
  margin-top: 12px;
}/*# sourceMappingURL=style.css.map */