@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

img {
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 10px;
}
@media (max-width: 1200px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 1.6rem;
  background-color: #fff;
}

main {
  padding-top: 25px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .pc-view {
    display: none !important;
  }
}

.sp-view {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-view {
    display: inline-block !important;
  }
}

.imageblock {
  font-size: 0;
  position: relative;
}

.pcbtn {
  display: none;
}

.margin-top-1 {
  margin-top: -1px;
}

/*-------------------------------
l-main-wrap
-------------------------------*/
.l-main-wrap {
  margin-inline: auto 6rem;
  height: calc(100dvh - 50px);
  max-width: 390px;
  background: #fff;
  position: relative;
  z-index: 10;
  overflow-x: hidden;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .l-main-wrap {
    margin-inline: auto;
    height: 100%;
  }
}

.l-main-wrap::-webkit-scrollbar {
  display: none;
}

/*-------------------------------
c-btn
-------------------------------*/
.c-btn {
  display: inline-block;
  font-size: 0;
  width: 88.06%;
  border-radius: 999px;
  box-shadow: 4px 4px 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.btn1 {
  bottom: 3.6%;
  z-index: 10;
}

.btn2 {
  bottom: 0.7%;
}

.btn3 {
  bottom: 12%;
}

.pcbtn {
  display: inline-block;
  width: 27.1522rem;
  position: fixed;
  bottom: 8rem;
  left: calc(50% + (50% - 19.5rem) / 2 + 19.5rem);
  z-index: 8;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .pcbtn {
    display: none;
  }
}

/*-------------------------------
c-gif1
-------------------------------*/
.c-gif1 {
  display: inline-block;
  width: 74%;
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 11.3%;
}

.c-gif1 img {
  width: 100%;
}

/*-------------------------------
c-logo
-------------------------------*/
.c-logo {
  width: 170px;
  height: auto;
  display: inline-block;
  font-size: 0;
  position: fixed;
  top: 1rem;
  left: 2rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .c-logo {
    display: none;
  }
}

/*-------------------------------
info
-------------------------------*/
.info_wrap {
  padding: 3rem 2rem 4.5rem;
}

.infoac1 {
  margin: 0;
}

.infoac1 > dt {
  background: #0000be;
  cursor: pointer;
  border: 1px solid #1a5087;
  color: #fff;
  position: relative;
  padding: 2rem;
  margin: 0.6rem 0 0;
}

.infoac1 > dt:first-of-type {
  margin-top: 0;
}

.infoac > dt::before,
.infoac > dt::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 12px;
  height: 1px;
  background: #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.2s;
}

.infoac > dt::after {
  transform: translateY(-50%) rotate(90deg);
}

.infoac > dt.clicked::after {
  transform: translateY(-50%) rotate(0deg);
}

.infoac1 > dd {
  display: none;
  margin: 0;
  padding-bottom: 0.6rem;
}

.infoac2 {
  margin: 0;
}

.infoac2 > dt {
  background: #fff;
  cursor: pointer;
  border: 1px solid #1a5087;
  color: #000;
  position: relative;
  padding: 2rem;
  margin: 0;
}

.infoac2 > dt::before,
.infoac2 > dt::after {
  background: #000;
}

.infoac2 > dd {
  display: none;
  margin: 0;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #1a5087;
  border-width: 0 1px 1px;
}

.infoac2 > dt.clicked {
  border-width: 1px 1px 0;
}

.info_txt1 {
  font-weight: 500;
  font-size: 1.4rem;
  background: #82919f;
  color: #fff;
  padding: 0 1.3rem;
  margin-bottom: 1rem;
}

.info_txt2 {
  font-size: 1.2rem;
  padding: 0 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.info_map iframe {
  width: 100%;
}

/*-------------------------------
p-ac1
-------------------------------*/
.p-ac1 {
  margin-top: 4rem;
  padding-inline: 1.5rem;
  text-align: center;
}

.p-ac1__item {
  border: 1px solid #0000be;
  box-shadow: 2px 2px 2px rgba(118, 118, 119, 0.5);
  margin: 0 0 1.6rem;
}

.p-ac1__item-heading {
  padding: 1.5rem 0.6rem;
  font-size: 2rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #fff;
  position: relative;
  background: #0000be;
  cursor: pointer;
}

.p-ac1__item-heading::before,
.p-ac1__item-heading::after {
  content: "";
  display: inline-block;
  background: #fff;
  position: absolute;
  width: 1.5rem;
  height: 0.2rem;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.p-ac1__item-heading::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-ac1__item-heading.clicked::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-ac1__item-content {
  font-size: 0;
  display: none;
}

/*-------------------------------
p-ac2
-------------------------------*/
.p-ac2 {
  padding: 0 1.5rem 0;
}

.p-ac2__item {
  border: 1px solid #000;
  margin: 0 0 1.6rem;
  padding: 0 1.5rem;
}

.p-ac2__item-heading {
  position: relative;
  padding: 1.4rem 2rem 1.4rem 4rem;
  cursor: pointer;
}

.p-ac2__item-heading::before,
.p-ac2__item-heading::after {
  content: "";
  display: inline-block;
  background: #000;
  position: absolute;
  width: 1.3rem;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.p-ac2__item-heading::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-ac2__item-heading.clicked::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-ac2__item-heading p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.71;
}

.p-ac2__item-heading img {
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 2.5rem;
}

.p-ac2__item-content {
  display: none;
  border-top: 1px solid #000;
  position: relative;
  padding: 1.6rem 2rem 1.6rem 4rem;
}

.p-ac2__item-content p {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.71;
}

.p-ac2__item-content img {
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 2.5rem;
}

/*-------------------------------
p-dummy
-------------------------------*/
/*-------------------------------
p-footerblock
-------------------------------*/
.p-footerblock {
  padding-bottom: 80px;
  background: #0e233e;
}

/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  min-height: calc(100dvh - 6rem);
  background: #1a5087;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 100%;
  }
}

.p-fv__btn {
  width: 100%;
  font-size: 0;
  bottom: 0.5%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

/*-------------------------------
p-pc-bg
-------------------------------*/
.p-pc-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../images/bg.webp) center/cover no-repeat;
}

.p-pc-bg::before {
  content: "";
  width: 100vw;
  min-width: 1440px;
  height: 100dvh;
  min-height: 100dvh;
  position: absolute;
  top: 50%;
  left: calc(50% - 221px);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: url(../images/bg-player.webp) center/cover no-repeat;
}
@media screen and (max-width: 1440px) {
  .p-pc-bg::before {
    left: calc(50% - clamp(10.4rem, -24.5412rem + 31.7647vw, 21.2rem));
  }
}
@media screen and (max-width: 1100px) {
  .p-pc-bg::before {
    display: none;
  }
}

.p-pc-bg__title {
  width: 37.7083333333%;
  max-width: 54.3rem;
  position: fixed;
  top: 50%;
  left: calc((100% - 400px + 19%) / 2);
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-pc-bg__title {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .p-pc-bg__title {
    left: calc((100% - 400px) / 2);
  }
}

.p-pc-bg__title img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 558/244;
}

/*-------------------------------
p-review
-------------------------------*/
.review_wrap {
  position: absolute;
  width: 100%;
  top: 28%;
  left: 0;
}

/*-------------------------------
p-slider slick
-------------------------------*/
.slider_wrap {
  padding-bottom: 5%;
}

.slick-dots {
  bottom: -3.5rem;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button::before {
  display: none;
}

.slick-dots li button {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: calc(infinity * 1px);
  background: #ebebeb;
  padding: 0;
  margin: 0;
}

.slick-dots li.slick-active button {
  background: #c5c5c5;
}

/*-------------------------------
p-slider2
-------------------------------*/
.p-slider2_wrap {
  position: absolute;
  width: 100%;
  bottom: 50.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.p-slider2 .slick-dots li button {
  background: #808080;
}

.p-slider2 .slick-dots li.slick-active button {
  background: #fff;
}

.p-slider2_wrap .p-slider2_image.slick-slide {
  padding-inline: 0.4%;
}

/*-------------------------------
p-tab
-------------------------------*/
.tabarea_btn {
  font-size: 0;
  width: 50%;
}

.tab_off {
  cursor: pointer;
}

.tabarea_btn img.-off {
  display: none;
}

.tab_off img.-on {
  display: none;
}

.tab_off img.-off {
  display: inline;
}

.tab_cts_off img {
  display: none;
}

.tabarea_cts {
  font-size: 0;
}

/*-------------------------------
section3
-------------------------------*/
.section3 {
  position: relative;
}

/*-------------------------------
section4
-------------------------------*/
.section4 {
  position: relative;
}

.section4__review {
  position: absolute;
  width: 100%;
  top: 44.5%;
  left: 0;
}

/*-------------------------------
section6
-------------------------------*/
.section6 {
  padding-block: 4rem 3rem;
  background-color: #e6e9ec;
}

.section6__img {
  margin-inline: auto;
  width: 25.5rem;
}

/*-------------------------------
section7
-------------------------------*/
.section7 {
  padding-block: 4rem 3rem;
}

.section7__img {
  margin-inline: auto;
  width: 18.5rem;
}

/*-------------------------------
section9
-------------------------------*/
.section9 {
  padding-top: 4rem;
}

/*-------------------------------
tabarea
-------------------------------*/
.tabarea_btn {
  font-size: 0;
  width: 50%;
}

.tab_off {
  cursor: pointer;
}

.tabarea_btn img.-off {
  display: none;
}

.tab_off img.-on {
  display: none;
}

.tab_off img.-off {
  display: inline;
}

.tab_cts_off img {
  display: none;
}

.tabarea_cts {
  font-size: 0;
}

/*-------------------------------
spbtn
-------------------------------*/
.spbtn {
  display: none;
  transition: none;
}
@media screen and (max-width: 767px) {
  .spbtn {
    display: inline-block;
    font-size: 0;
    position: fixed;
    bottom: 0;
    width: 50%;
    z-index: 99;
    max-width: 195px;
    transition: none;
  }
  .spbtn1 {
    left: 50%;
    transform: translateX(-100%);
  }
  .spbtn2 {
    left: 50%;
  }
}
