@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* 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;
}

/* 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;
  }
}
/*-------------------------------
inner
-------------------------------*/
/*-------------------------------
余白
-------------------------------*/
/*-------------------------------
フォント
-------------------------------*/
/*-------------------------------
ベースフォントサイズ
-------------------------------*/
/*-------------------------------
Color
-------------------------------*/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
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: #333;
  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;
}

/*-------------------------------
c-btn
-------------------------------*/
.c-btn {
  display: inline-block;
  font-size: 0;
  width: 36rem;
  border-radius: 999px;
  box-shadow: 0.4rem 0.4rem 0.3rem rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.btn1 {
  bottom: 5%;
}

.btn2-1 {
  bottom: 9%;
}

.btn2-2 {
  bottom: 4%;
}

.btn3 {
  bottom: 16%;
}

.btn4 {
  bottom: 15%;
}

.a_btn {
  width: 92.3%;
  font-size: 0;
  bottom: 3%;
  z-index: 5;
  cursor: pointer;
}

.spbtn {
  display: none;
}
@media screen and (max-width: 767px) {
  .spbtn {
    transition: none;
    font-size: 0;
    position: fixed;
    right: 0;
    bottom: 1.5rem;
    width: 5rem;
    z-index: 99;
  }
}

/*-------------------------------
c-gif1
-------------------------------*/
.c-gif1 {
  display: inline-block;
  width: 54%;
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 12.2%;
}

.c-gif1 img {
  width: 100%;
}

/*-------------------------------
c-logo
-------------------------------*/
.c-logo {
  display: inline-block;
  font-size: 0;
  width: 170px;
  position: fixed;
  z-index: 3;
  left: 20px;
  top: 10px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-logo {
    display: none;
  }
}

/*-------------------------------
info
-------------------------------*/
.info_wrap {
  padding: 0 20px 45px;
}

.infoac1 {
  margin: 0;
}

.infoac1 > dt {
  background: #0000be;
  cursor: pointer;
  border: 1px solid #1a5087;
  color: #fff;
  position: relative;
  padding: 20px 20px 20px 20px;
  margin: 6px 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%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.2s;
}

.infoac > dt::after {
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
}

.infoac > dt.clicked::after {
  transform: translateY(-50%) rotate(0deg);
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
}

.infoac1 > dd {
  display: none;
  margin: 0;
  padding: 0 0 6px;
}

.infoac2 {
  margin: 0;
}

.infoac2 > dt {
  background: #fff;
  cursor: pointer;
  border: 1px solid #1a5087;
  color: #000;
  position: relative;
  padding: 20px 20px 20px 20px;
  margin: 0;
}

.infoac2 > dt::before,
.infoac2 > dt::after {
  background: #000;
}

.infoac2 > dd {
  display: none;
  margin: 0;
  background: #fff;
  padding: 15px;
  border: 1px solid #1a5087;
  border-width: 0 1px 1px;
}

.infoac2 > dt.clicked {
  border-width: 1px 1px 0;
}

.info_txt1 {
  font-weight: 500;
  font-size: 14px;
  background: #82919f;
  color: #fff;
  padding: 0 13px;
  margin-bottom: 10px;
}

.info_txt2 {
  font-size: 12px;
  padding: 0 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.info_map iframe {
  width: 100%;
}

/*-------------------------------
p-ac1
-------------------------------*/
.p-ac1 {
  padding: 0 1.5rem 4rem;
  text-align: center;
}

.p-ac1__item {
  border: 1px solid #7442d7;
  box-shadow: 2px 2px 2px rgba(118, 118, 119, 0.5);
  margin: 0 0 1.6rem;
}

.p-ac1__item-heading {
  position: relative;
  background: #7442d7;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.18em;
  padding: 0.8rem 0.6rem;
  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
-------------------------------*/
.ac2_wrap {
  padding: 0 1.5rem 0;
}

.ac2 {
  border: 1px solid #000;
  margin: 0 0 1.6rem;
  padding: 0 1.5rem;
}

.ac2_dt {
  position: relative;
  padding: 1.4rem 2rem 1.4rem 4rem;
  cursor: pointer;
}

.ac2_dt::before,
.ac2_dt::after {
  content: "";
  display: inline-block;
  background: #000;
  position: absolute;
  width: 1.3rem;
  height: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.ac2_dt::after {
  transform: translateY(-50%) rotate(90deg);
}

.ac2_dt.clicked::after {
  transform: translateY(-50%) rotate(0deg);
}

.ac2_dt p {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.71;
}

.ac2_dt img {
  position: absolute;
  left: 0;
  top: 1.3rem;
  width: 2.5rem;
}

.ac2_dd {
  display: none;
  border-top: 1px solid #808080;
  position: relative;
  padding: 1.6rem 0 1.6rem 4rem;
}

.ac2_dd p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.71;
}

p.ac2_dd_txt1 {
  margin: 1.8rem 0 0;
  font-size: 1.2rem;
}

.ac2_dd img {
  position: absolute;
  left: 0;
  top: 1.6rem;
  width: 2.5rem;
}

/*-------------------------------
p-anq-lp
-------------------------------*/
.p-anq-lp {
  margin: 0 8% 0 auto;
  max-width: 390px;
  height: calc(100dvh - 6rem);
  background: #fff;
  scrollbar-width: none;
  position: relative;
  z-index: 5;
  overflow: hidden;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-anq-lp {
    margin: 0 auto;
    height: 100dvh;
  }
}

.p-anq-lp::-webkit-scrollbar {
  display: none;
}

/*-------------------------------
p-anq
-------------------------------*/
.p-anq,
.p-anq__wrap,
.main_content {
  display: none;
}

.p-anq {
  background-color: #062340;
}

.p-anq__wrap {
  min-height: calc(100dvh - 5rem);
}
@media screen and (max-width: 767px) {
  .p-anq__wrap {
    min-height: 100dvh;
  }
}

.p-anq__list {
  padding: 0 3.84%;
  list-style: none;
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
}

.p-anq__list li {
  font-size: 2.2rem;
  text-align: center;
  cursor: pointer;
  color: #040000;
  border: 3px solid #7442d7;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55em 0;
  background: #fff;
  margin: 0 0 0.5em;
}

.p-anq__list li.active {
  background: #7442d7;
  color: #fff;
}

.p-anq__list1 {
  top: 88%;
}

.p-anq__list2 {
  top: 88%;
}

.p-anq__list3 {
  top: 54%;
}

.p-anq__list3 li {
  font-size: 1.9rem;
  padding: 0.75em 0;
}

/*-------------------------------
p-dummy
-------------------------------*/
/*-------------------------------
p-fv
-------------------------------*/
.p-fv {
  min-height: calc(100dvh - 6rem);
  background: #062340;
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 100%;
  }
}

.p-fv__btn {
  width: 100%;
  font-size: 0;
  bottom: 1%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

/*-------------------------------
p-nav-ham
-------------------------------*/
.p-nav-ham {
  position: fixed;
  top: 0;
  right: 0;
  width: 6.4rem;
  height: 5.3rem;
  cursor: pointer;
  z-index: 100;
  background: #000;
  z-index: 60;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-nav-ham {
    display: block;
  }
}

.p-nav-ham span {
  display: block;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  transition: transform 0.5s, opacity 0.5s, width 0.3s;
  border-radius: 9999px;
  left: 2.2rem;
}

.p-nav-ham span:nth-child(1) {
  top: 2rem;
}

.p-nav-ham span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
}

.p-nav-ham span:nth-child(3) {
  bottom: 2rem;
}

.open .p-nav-ham {
  /*position: fixed;*/
}

.open .p-nav-ham span {
  background-color: #fff;
}

.open .p-nav-ham span:nth-child(1) {
  transform: translateY(0.55rem) rotate(45deg);
}

.open .p-nav-ham span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  opacity: 0;
}

.open .p-nav-ham span:nth-child(3) {
  transform: translateY(-prem(5.5)) rotate(-45deg);
}

/*-------------------------------
p-pc-bg
-------------------------------*/
.p-pc-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../images/bg.jpg) center/cover no-repeat;
  left: 0;
  top: 0;
}

.p-pc-bg__title {
  width: 26.4516129032%;
  max-width: 32.8rem;
  position: fixed;
  top: 46.3%;
  left: 31%;
  left: calc((100% - 400px - 8%) / 2);
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .p-pc-bg__title {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .p-pc-bg__title {
    left: clamp(27.6rem, -21.7rem + 48.15vw, 38rem);
  }
}

.p-pc-bg__title img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 558/244;
}

/*-------------------------------
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 {
  padding: 1.5rem 0 4rem;
  background: #dfdfdf;
}

.p-slider2 .slick-dots li button {
  background: #acacac;
}

.p-slider2 .slick-dots li.slick-active button {
  background: #236cd8;
}

.p-slider2_image {
  padding: 0 0.5%;
}

/*-------------------------------
p-sp-nav
-------------------------------*/
.p-sp-nav {
  position: fixed;
  background: rgba(0, 247, 244, 0.9);
  top: 5.3rem;
  right: 0;
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 50;
  padding: 3rem 4rem;
}

.open .p-sp-nav {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.open .p-sp-nav-item {
  transform: translateX(0);
}

.p-sp-nav-list {
  padding: 0;
  list-style: none;
}

.p-sp-nav-item {
  position: relative;
}

.p-sp-nav-item::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  opacity: 0;
  left: -1rem;
  top: 0.8rem;
  background: #000;
}

.p-sp-nav-item a {
  padding-block: 1.6rem;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  opacity: 0.6;
  transition: 0.15s;
  display: inline-block;
}

.p-sp-nav-item a:hover,
.p-sp-nav-item.active a {
  opacity: 1;
}

.p-sp-nav-item.active::before {
  opacity: 1;
}

/*-------------------------------
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;
}