/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box; /* レイアウトを容易にする */
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: underline;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure {
  margin: 0;
  padding: 0;
}

/* ページ全体の基本フォントと背景色 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1b2b54;
  background-color: #fff;
  font-weight: 500;
}
.button a {
  display: block;
  width: 564px;
  max-width: 100%;
  text-align: center;
  padding: 24px 20px;
  margin: auto;
  font-size: 25px;
  border-radius: 12px;
  line-height: 1;
  font-weight: bold;
  box-shadow: 0 8px 0 0 #1b2b54;
  transition: all 0.2s;
  text-decoration: none;
}
.button a:hover {
  box-shadow: 0 0px 0 0 #1b2b54;
  transform: translateY(8px);
}

.button.--blue a {
  background: #0084cd;
  color: #fff;
}

.button.--white a {
  background: #fff;
  color: #0084cd;
}

@media (max-width: 767px) {
  .button a {
    font-size: 20px;
  }
}

.tokuten {
  margin: auto;
  background: #e5f1f9;
  position: relative;
  overflow: hidden;
}
.tokuten::before {
  content: "";
  background: url(../images/tokuten_bg_parts01.svg) no-repeat;
  width: 25%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -5%;
}
.tokuten::after {
  content: "";
  background: url(../images/tokuten_bg_parts02.svg) no-repeat;
  background-position: bottom;
  width: 25%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: -5%;
}
.tokuten__inner {
  max-width: 1080px;
  margin: auto;
  padding: 80px 20px;
  z-index: 1;
  position: relative;
}
.tokuten__title {
  zoom: 0.5;
  margin-bottom: 40px;
}
.tokuten__title img {
  margin: auto;
}
.tokuten__description {
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.8;
}
.tokuten__description .note {
  font-size: 10px;
}
.tokuten__description__note {
  font-size: 8px;
  margin-bottom: 60px;
  text-align: center;
}

.tokuten__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tokuten__list__item {
  width: calc((100% - 40px) / 2);
}

.tokuten__list__item.item03 {
  width: 100%;
}
@media (max-width: 767px) {
  .tokuten::before {
    width: 100%;
    background-size: 50% auto;
    background-position: left;
    top: -45%;
  }
  .tokuten::after {
    width: 100%;
    background-size: 50% auto;
    background-position: right;
    bottom: -42%;
  }
  .tokuten__description {
    font-size: 14px;
  }
  .tokuten__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .tokuten__list__item {
    width: 100%;
    max-width: 380px;
  }
}

.way {
  margin: auto;
  background: #c1e9fe url(../images/way_bg.png) no-repeat;
  background-size: cover;
}
.way__inner {
  max-width: 1080px;
  margin: auto;
  padding: 80px 20px;
}
.way__title {
  zoom: 0.5;
  margin-bottom: 80px;
}
.way__title img {
  margin: auto;
}

.way__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.way__list__item {
  width: calc((100% - 40px) / 2);
  position: relative;
}

.way__list__item.item03 {
  width: 100%;
}
.way__list__item .button {
  position: absolute;
  left: 9%;
  top: 64%;
  width: 42%;
}
.way__list__item .button a {
  display: block;
  width: 100%;
  background: #0084cd;
  color: #fff;
  text-align: center;
  padding: 16px 12px;
  margin: auto;
  font-size: min(16px, 1.4vw);
  border-radius: 8px;
  line-height: 1;
  font-weight: bold;
  box-shadow: 0 4px 0 0 #1b2b54;
  transition: all 0.2s;
  text-decoration: none;
}
.way__list__item .button a:hover {
  box-shadow: 0 0px 0 0 #1b2b54;
  transform: translateY(4px);
}
@media (max-width: 767px) {
  .way__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .way__list__item {
    width: 100%;
    max-width: 380px;
  }
  .way__list__item .button {
    left: 7%;
    width: 48%;
  }
  .way__list__item .button a {
    font-size: min(14px, 3.2vw);
    padding: 12px;
  }
}

.store {
  margin: auto;
  background: #ffffff url(../images/store_bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.store__inner {
  max-width: 1080px;
  margin: auto;
  padding: 60px 20px;
}
.store__title {
  zoom: 0.5;
  margin-bottom: 80px;
}
.store__title img {
  margin: auto;
}
@media (max-width: 767px) {
  .store {
    background: #ffffff url(../images/store_bg_sp.png) no-repeat;
    background-position: center 4%;
  }
}

.suits {
  margin: auto;
  background: url(../images/suits_bg.jpg) no-repeat;
  background-size: cover;
}
.suits__inner {
  max-width: 1080px;
  margin: auto;
  padding: 80px 20px;
}
.suits__title {
  zoom: 0.5;
  margin-bottom: 80px;
}
.suits__title img {
  margin: auto;
}
.suits__description {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  line-height: 1.8;
}
.suits__banner {
  margin-bottom: 60px;
}
.suits__banner img {
  zoom: 0.5;
  margin: auto;
}
.suits__cm__title {
  margin-top: 80px;
  margin-bottom: 40px;
}
.suits__cm__title img {
  zoom: 0.5;
  margin: auto;
}
.suits__cm__movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 697px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.suits__cm__movie iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 767px) {
  .suits__description {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .suits__banner {
    margin-bottom: 32px;
  }
}

.unicari {
  margin: auto;
  background: #f4faff url(../images/unicari_bg.png) no-repeat;
  background-size: cover;
}
.unicari__inner {
  max-width: 1080px;
  margin: auto;
  padding: 80px 20px;
}
.unicari__title {
  zoom: 0.5;
  margin-bottom: 80px;
}
.unicari__title img {
  margin: auto;
}
.unicari__description {
  text-align: center;
  margin-bottom: 40px;
  color: #1b2b54;
  line-height: 1.8;
}
.unicari__banner {
  margin-bottom: 60px;
}
.unicari__banner img {
  zoom: 0.5;
  margin: auto;
}
@media (max-width: 767px) {
  .unicari__description {
    font-size: 14px;
  }
  .unicari__banner {
    margin-bottom: 40px;
  }
}
.footer {
  width: 100%;
}
.footer__inner {
  max-width: 1080px;
  margin: auto;
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.footer__logo img {
  margin: auto;
  width: 220px;
}
.footer__copyright {
  margin-top: 40px;
  color: #787878;
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 180px;
  }
}

.sp {
  display: none;
}
.pc {
  display: block;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
