@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* main
---------------------------------------------------------------------------- */
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-weight: 300;
  color: #00001D;
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: #2c6cd6;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
}

* {
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1280px) and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  width: 100%;
  overflow: hidden;
}

/*------------- .l-content -------------*/
.l-content {
  max-width: 120rem;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-content {
    padding-inline: 5.3333333333vw;
  }
}
/*------------- .l-footer -------------*/
.l-footer {
  width: 100%;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
}

.l-footer-copyright {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3125;
  letter-spacing: 0.06em;
  font-weight: 300;
  color: #B5B5B6;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-footer {
    height: 8.5333333333vw;
  }
  .l-footer-copyright {
    font-size: 3.2vw;
    line-height: 1.25;
  }
}
/* 共通パーツ調整
---------------------------------------------------------------------------- */
/*------------- .m-btn -------------*/
.m-btn {
  width: 100%;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  border-radius: 5rem;
  font-size: 2.4rem;
  line-height: 2.2083333333;
  letter-spacing: 0.16em;
  font-weight: 300;
  background-color: #fff;
  color: #00001D;
  position: relative;
}

.m-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  width: 3.2rem;
  aspect-ratio: 32/8;
  border-bottom: 0.2rem solid currentColor;
  border-right: 0.2rem solid currentColor;
  -webkit-transform: translateY(-50%) skew(45deg);
          transform: translateY(-50%) skew(45deg);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.m-btn:hover::after {
  -webkit-transform: translateY(-50%) skew(45deg) translateX(1rem);
          transform: translateY(-50%) skew(45deg) translateX(1rem);
}

.m-btn._black {
  background-color: #00001D;
  color: #fff;
}

.m-btn._black::after {
  top: 45%;
  width: 1.5rem;
  aspect-ratio: 1/1;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.m-btn._black:hover::after {
  -webkit-transform: translateY(-50%) translateY(0.5rem) rotate(45deg);
          transform: translateY(-50%) translateY(0.5rem) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .m-btn {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    height: 14.4vw;
    font-size: 4.2666666667vw;
    line-height: 2.1875;
    padding-inline: 9.3333333333vw;
    padding-top: 0.5333333333vw;
  }
  .m-btn::after {
    right: 5.3333333333vw;
    width: 5.6vw;
    border-width: 1px;
  }
  .m-btn:hover::after {
    -webkit-transform: translateY(-50%) skew(45deg) translateX(1.3333333333vw);
            transform: translateY(-50%) skew(45deg) translateX(1.3333333333vw);
  }
  .m-btn._black::after {
    width: 2.6666666667vw;
  }
  .m-btn._black:hover::after {
    -webkit-transform: translateY(-50%) translateY(1.3333333333vw) rotate(45deg);
            transform: translateY(-50%) translateY(1.3333333333vw) rotate(45deg);
  }
}
/*------------- .m-ttlBox -------------*/
.m-ttlBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-ttlBox.box--01 {
  gap: 2.2rem;
}

.m-ttlBox.box--02 {
  gap: 3.8rem;
}

.m-ttlBox-sub {
  font-size: 2.4rem;
  line-height: 2.2083333333;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.m-ttlBox-sub::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.m-ttlBox-sub.sub--01::before {
  background-image: url(./../images/icn_ttl_bottom01.svg);
}

.m-ttlBox-sub.sub--02::before {
  background-image: url(./../images/icn_ttl_bottom02.svg);
}

@media screen and (max-width: 767px) {
  .m-ttlBox.box--01,
  .m-ttlBox.box--02 {
    gap: 4vw;
  }
  .m-ttlBox-sub {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
  }
  .m-ttlBox-sub::before {
    bottom: -1.8666666667vw;
    height: 2.6666666667vw;
  }
}
/*------------- .m-ttl01 -------------*/
.m-ttl01 {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 5.6rem;
  line-height: 1.3214285714;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.m-ttl01 span {
  font-size: 4rem;
}

.m-ttl01._information {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .m-ttl01 {
    font-size: 7.4666666667vw;
    line-height: 1.3214285714;
  }
  .m-ttl01._trial {
    font-size: 6.6666666667vw;
    line-height: 1.44;
  }
  .m-ttl01 span {
    font-size: 4.2666666667vw;
  }
  .m-ttl01._information {
    text-align: center;
  }
}
/*------------- .m-accordion -------------*/
.m-accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}

.m-accordion-item {
  background-color: #00001D;
}

.m-accordion-item summary::-webkit-details-marker {
  display: none;
}

.m-accordion-title {
  cursor: pointer;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.22em;
  font-weight: 300;
  width: 100%;
  min-height: 8.8rem;
  background-color: #B5B5B5;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 2rem;
  padding-inline: 9.5rem 11rem;
  position: relative;
}

.m-accordion-title::before {
  content: "Q";
  position: absolute;
  top: 3.4rem;
  left: 3.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 300;
}

.m-accordion-item[open] .m-accordion-icon::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}

.m-accordion-icon {
  display: inline-block;
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
}

.m-accordion-icon::before,
.m-accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00001D;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.m-accordion-icon::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.m-accordion-icon::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.m-accordion-content {
  will-change: max-height, opacity;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
  position: relative;
}

.m-accordion-content::before {
  content: "A";
  position: absolute;
  top: 3.4rem;
  left: 3.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
}

.m-accordion-content p {
  font-size: 1.6rem;
  line-height: 1.5625;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  padding-block: 3rem 3.3rem;
  padding-inline: 9.5rem 8rem;
}

@media screen and (max-width: 767px) {
  .m-accordion {
    gap: 10.6666666667vw;
  }
  .m-accordion-title {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    min-height: 15.2vw;
    padding-block: 4.2666666667vw;
    padding-inline: 12.8vw 5.3333333333vw;
  }
  .m-accordion-title::before {
    top: 4vw;
    left: 4vw;
    -webkit-transform: initial;
            transform: initial;
    font-size: 5.3333333333vw;
    line-height: 1.35;
  }
  .m-accordion-icon {
    right: 4vw;
    width: 4vw;
    height: 4vw;
  }
  .m-accordion-content::before {
    top: 4vw;
    left: 4vw;
    font-size: 5.3333333333vw;
    line-height: 1.35;
  }
  .m-accordion-content p {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    padding-block: 4vw 1.3333333333vw;
    padding-inline: 12.8vw 0;
  }
}
/*------------- .ib -------------*/
.ib {
  display: inline-block;
}

/* p-mv
---------------------------------------------------------------------------- */
.p-mv {
  padding-block: 18rem 10rem;
  position: relative;
}

.p-mv-bg-swiper {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.swiper-slide-img {
  width: 100%;
  height: 100%;
}

.swiper-slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-mv-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-mv-img {
  width: 69rem;
  aspect-ratio: 690/75;
}

.p-mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-mv-txtSmall {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 2.6rem;
  line-height: 1.3076923077;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: 4.2rem;
}

.p-mv-read {
  font-size: 4.5rem;
  line-height: 2.2;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: 8rem;
}

.p-mv-read .ls {
  letter-spacing: -1em;
}

.p-mv-txt {
  font-size: 3.5rem;
  line-height: 1.6571428571;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: 1.2rem;
}

.p-mv-txt span {
  font-size: 2.7rem;
}

.p-mv-img,
.p-mv-txtSmall,
.p-mv-read,
.p-mv-txt {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

.wf-active .p-mv-img,
.wf-active .p-mv-txtSmall,
.wf-active .p-mv-read,
.wf-active .p-mv-txt {
  opacity: 1;
}

.p-mv-buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6rem;
  margin-top: 10.2rem;
}

.p-mv-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .p-mv {
    padding-block: 21.3333333333vw 16vw;
  }
  .p-mv-img {
    width: 74.6666666667vw;
    aspect-ratio: 280/31;
  }
  .p-mv-txtSmall {
    font-size: 3.7333333333vw;
    line-height: 1.3571428571;
    margin-top: 5.3333333333vw;
  }
  .p-mv-read {
    font-size: 4.8vw;
    line-height: 2.2222222222;
    margin-top: 14.6666666667vw;
  }
  .p-mv-txt {
    font-size: 5.3333333333vw;
    line-height: 1.7;
    margin-top: 4.8vw;
  }
  .p-mv-txt span {
    font-size: 4.2666666667vw;
  }
  .p-mv-buttonArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    margin-top: 29.3333333333vw;
  }
}
/* p-bg
---------------------------------------------------------------------------- */
.p-bg {
  position: relative;
}

.p-bg::before,
.p-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
}

.p-bg::before {
  z-index: -1;
  aspect-ratio: 1920/870;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../images/bg_bg_pc.png);
}

.p-bg::after {
  z-index: -2;
  height: 100%;
  background-color: #00001D;
}

@media screen and (max-width: 767px) {
  .p-bg::before {
    aspect-ratio: 375/409;
    background-image: url(./../images/bg_bg_sp.png);
  }
}
/* p-concept
---------------------------------------------------------------------------- */
.p-concept {
  padding-block: 16.3rem 9.5rem;
}

.p-concept-txt {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .p-concept {
    padding-block: 16vw 12.6666666667vw;
  }
  .p-concept-txt {
    font-size: 3.7333333333vw;
    line-height: 2.2857142857;
    margin-top: 5.8666666667vw;
  }
}
/* p-trial
---------------------------------------------------------------------------- */
.p-trial {
  padding-top: 9.5rem;
}

.p-trial-box {
  width: 74.3rem;
  padding-block: 3.5rem 2.5rem;
  padding-inline: 2rem;
  border: 1px solid #fff;
  position: relative;
  margin-inline: auto;
  margin-top: 8rem;
}

.p-trial-box::before,
.p-trial-box::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 2.2rem;
  aspect-ratio: 1/1;
  background-color: #00001D;
}

.p-trial-box::before {
  top: -2px;
  left: -2px;
}

.p-trial-box::after {
  bottom: -2px;
  right: -2px;
}

.p-trial-box-txt01 {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.p-trial-box-txt02 {
  font-size: 3.5rem;
  line-height: 2.2;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
}

.p-trial-box-txt02 .fzLarge {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 5.8rem;
  line-height: 1.3103448276;
  font-weight: 500;
}

.p-trial-box-txt02 .fzSmall {
  font-size: 3.1rem;
  line-height: 2.1935483871;
}

.p-trial-txt {
  font-size: 1.8rem;
  line-height: 1.9444444444;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-top: 3rem;
}

.p-trial-buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6rem;
  margin-top: 6.2rem;
}

.p-trial-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .p-trial {
    padding-top: 12.6666666667vw;
  }
  .p-trial-box {
    width: 100%;
    padding-block: 2.6666666667vw 1.8666666667vw;
    padding-inline: 5.3333333333vw;
    margin-top: 10.6666666667vw;
  }
  .p-trial-box::before,
  .p-trial-box::after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
  .p-trial-box-txt01 {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
  }
  .p-trial-box-txt02,
  .p-trial-box-txt02 .fzSmall {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
  }
  .p-trial-box-txt02 .fzLarge {
    font-size: 6.6666666667vw;
    line-height: 1.32;
    letter-spacing: 0.1em;
  }
  .p-trial-txt {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    text-align: left;
    margin-top: 6.6666666667vw;
  }
  .p-trial-buttonArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    margin-top: 8.5333333333vw;
  }
}
/* p-facility
---------------------------------------------------------------------------- */
.p-facility {
  padding-block: 18.2rem 9.75rem;
}

.p-facility-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
  margin-top: 7.7rem;
}

.p-facility-block {
  position: relative;
  height: 35.625vw;
}

.p-facility-block-swiper {
  position: absolute;
  top: 0;
  width: 57.8125vw;
  aspect-ratio: 1110/683;
}

.p-facility-block-swiper._odd {
  left: 0;
}

.p-facility-block-swiper._even {
  right: 0;
}

.p-facility-block-img {
  width: 100%;
  height: 100%;
}

.p-facility-block-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-facility-block-inner {
  width: 100%;
  max-width: 120rem;
  height: inherit;
  margin: auto;
  position: relative;
}

.p-facility-block-wrap {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 58rem;
  padding-block: 8rem 7.7rem;
  background-color: #00001D;
}

.p-facility-block-wrap._odd {
  right: 0;
  padding-left: 10rem;
}

.p-facility-block-wrap._even {
  left: 0;
}

.p-facility-block-ttl {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 4.5rem;
  line-height: 1.5555555556;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
}

.p-facility-block-txt {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  margin-top: 1.8rem;
}

.p-facility-button {
  width: 57rem;
  margin-inline: auto;
  margin-top: 8rem;
}

@media screen and (max-width: 767px) {
  .p-facility {
    padding-block: 26.6666666667vw 12.6666666667vw;
  }
  .p-facility-blocks {
    gap: 16vw;
    margin-top: 10.6666666667vw;
  }
  .p-facility-block {
    height: auto;
  }
  .p-facility-block-swiper {
    position: initial;
    width: 100%;
    aspect-ratio: 375/231;
  }
  .p-facility-block-inner {
    padding-inline: 5.3333333333vw;
    margin-top: 8vw;
  }
  .p-facility-block-wrap {
    width: 100%;
    position: initial;
    padding-block: initial;
  }
  .p-facility-block-wrap._odd {
    padding-left: initial;
  }
  .p-facility-block-ttl {
    font-size: 6.6666666667vw;
    line-height: 1.32;
    text-align: center;
  }
  .p-facility-block-txt {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    letter-spacing: 0.18em;
    text-align: center;
    margin-top: 1.8666666667vw;
  }
  .p-facility-button {
    width: 89.3333333333vw;
    margin-top: 12vw;
  }
}
/* p-trial-tour
---------------------------------------------------------------------------- */
.p-trial-tour {
  padding-top: 9.75rem;
}

.p-trial-tour-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10.5rem;
  margin-top: 4.8rem;
}

.p-trial-tour-block-ttl {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 4.5rem;
  line-height: 1.3333333333;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
  padding-bottom: 1.8rem;
  position: relative;
}

.p-trial-tour-block-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(17.5%, #fff), color-stop(17.5%, #B5B5B6), to(#B5B5B6));
  background-image: linear-gradient(90deg, #fff 0, #fff 17.5%, #B5B5B6 17.5%, #B5B5B6 100%);
  background-repeat: no-repeat;
}

.p-trial-tour-block-ttl span {
  font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.22em;
  margin-left: 3.3rem;
}

.p-trial-tour-block-txt {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  margin-top: 4.5rem;
}

.p-trial-tour-block-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.p-trial-tour-block-items.items--mt01 {
  margin-top: 4rem;
}

.p-trial-tour-block-items.items--mt02 {
  margin-top: 3.7rem;
}

.p-trial-tour-block-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-trial-tour-block-item-ttl {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  width: 18.8rem;
  padding-left: 2.9rem;
  border-right: 1px solid #fff;
  position: relative;
}

.p-trial-tour-block-item-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.4rem;
  aspect-ratio: 1/1;
  background-color: #fff;
}

.p-trial-tour-block-item-txt {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  margin-left: 4rem;
}

.p-trial-tour-block-box {
  padding: 1rem;
  border: 1px solid #fff;
  position: relative;
  margin-top: 5.2rem;
}

.p-trial-tour-block-box::before,
.p-trial-tour-block-box::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 1.5rem;
  aspect-ratio: 1/1;
  background-color: #00001D;
}

.p-trial-tour-block-box::before {
  top: -2px;
  left: -2px;
}

.p-trial-tour-block-box::after {
  bottom: -2px;
  right: -2px;
}

.p-trial-tour-block-box-inner {
  padding-block: 5rem;
  padding-inline: 2rem;
  background-color: #4C4D61;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.p-trial-tour-block-box-txt01 {
  font-size: 2.4rem;
  line-height: 2.2083333333;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
}

.p-trial-tour-block-box-txt02 {
  font-size: 4rem;
  line-height: 2.2;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
}

.p-trial-tour-block-box-txt02 .fzLarge {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 6.5rem;
  line-height: 1.3076923077;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.p-trial-tour-block-box-txt02 .fzSmall {
  font-size: 3.1rem;
  line-height: 2.1935483871;
}

.p-trial-tour-block-lists {
  margin-top: 1.8rem;
}

.p-trial-tour-block-list {
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  padding-left: 1.7em;
  text-indent: -1.7em;
}

.p-trial-tour-block-read {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  margin-top: 3.7rem;
}

.p-trial-tour-block-txtSmall {
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
  margin-top: 1.2rem;
  padding-left: 1.7em;
  text-indent: -1.7em;
}

.p-trial-tour-group-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.p-trial-tour-group-ttl-en {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 3.5rem;
  line-height: 1.3142857143;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: #fff;
}

.p-trial-tour-group-ttl-jp {
  font-size: 1.8rem;
  line-height: 2.2222222222;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
}

.p-trial-tour-group-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
  counter-reset: num;
}

.p-trial-tour-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 6rem;
}

.p-trial-tour-group-item-box {
  width: 14.1rem;
  height: 14.1rem;
  padding: 0.7rem;
  position: relative;
}

.p-trial-tour-group-item-box::before,
.p-trial-tour-group-item-box::after {
  content: "";
  position: absolute;
}

.p-trial-tour-group-item-box::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(./../images/bg_circle.png);
}

.p-trial-tour-group-item:not(:last-child) .p-trial-tour-group-item-box::after {
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1.6rem;
  height: 100%;
  background-color: #4C4D61;
}

.p-trial-tour-group-item-box-txt {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #B5B5B5;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  counter-increment: num;
  text-align: center;
  padding-top: 0.5rem;
}

.p-trial-tour-group-item-box-txt.txt--01 {
  font-size: 2rem;
  line-height: 2.2;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.p-trial-tour-group-item-box-txt.txt--02,
.p-trial-tour-group-item-box-txt.txt--04,
.p-trial-tour-group-item-box-txt.txt--05 {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.p-trial-tour-group-item-box-txt.txt--03 {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.p-trial-tour-group-item-box-txt::before {
  content: counter(num);
  position: absolute;
  top: 0.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-size: 2rem;
  line-height: 1.35;
  letter-spacing: 0.18em;
  font-weight: 300;
}

.p-trial-tour-group-item-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.22em;
  font-weight: 300;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-trial-tour {
    padding-top: 12.6666666667vw;
  }
  .p-trial-tour-container {
    gap: 14.6666666667vw;
    margin-top: 8.8vw;
  }
  .p-trial-tour-block-ttl {
    font-size: 6.6666666667vw;
    line-height: 1.32;
    padding-bottom: 1.8666666667vw;
  }
  .p-trial-tour-block-ttl::after {
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(29.8507462687%, #fff), color-stop(29.8507462687%, #B5B5B6), to(#B5B5B6));
    background-image: linear-gradient(90deg, #fff 0, #fff 29.8507462687%, #B5B5B6 29.8507462687%, #B5B5B6 100%);
  }
  .p-trial-tour-block-ttl span {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
    margin-left: 4vw;
  }
  .p-trial-tour-block-txt {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
    margin-top: 7.2vw;
  }
  .p-trial-tour-block-items {
    gap: 3.7333333333vw;
  }
  .p-trial-tour-block-items.items--mt01 {
    margin-top: 3.4666666667vw;
  }
  .p-trial-tour-block-items.items--mt02 {
    margin-top: 5.8666666667vw;
  }
  .p-trial-tour-block-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-trial-tour-block-item-ttl {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    width: 100%;
    padding-left: 5.8666666667vw;
    border-right: none;
  }
  .p-trial-tour-block-item-ttl::before {
    width: 3.2vw;
  }
  .p-trial-tour-block-item-txt {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
    margin-left: 5.3333333333vw;
  }
  .p-trial-tour-block-box {
    padding: 1.3333333333vw;
    margin-top: 9.3333333333vw;
  }
  .p-trial-tour-block-box::before,
  .p-trial-tour-block-box::after {
    width: 2.6666666667vw;
  }
  .p-trial-tour-block-box-inner {
    padding-block: 3.2vw 2.6666666667vw;
    padding-inline: 5.3333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: initial;
  }
  .p-trial-tour-block-box-txt01 {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
    text-align: center;
  }
  .p-trial-tour-block-box-txt02,
  .p-trial-tour-block-box-txt02 .fzSmall {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
  }
  .p-trial-tour-block-box-txt02 .fzLarge {
    font-size: 7.4666666667vw;
    line-height: 1.3214285714;
  }
  .p-trial-tour-block-lists {
    margin-top: 4vw;
  }
  .p-trial-tour-block-list {
    font-size: 3.2vw;
    line-height: 1.75;
  }
  .p-trial-tour-block-read {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    margin-top: 6.6666666667vw;
  }
  .p-trial-tour-block-txtSmall {
    font-size: 3.2vw;
    line-height: 1.75;
    margin-top: 2.6666666667vw;
  }
  .p-trial-tour-group-ttl {
    gap: 0.5333333333vw;
  }
  .p-trial-tour-group-ttl-en {
    font-size: 5.3333333333vw;
    line-height: 1.35;
  }
  .p-trial-tour-group-ttl-jp {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
  }
  .p-trial-tour-group-items {
    gap: 4.5333333333vw;
    margin-top: 5.3333333333vw;
  }
  .p-trial-tour-group-item {
    gap: 0 3.2vw;
  }
  .p-trial-tour-group-item-box {
    width: 23.2vw;
    height: 23.2vw;
    padding: 0.8vw;
  }
  .p-trial-tour-group-item:not(:last-child) .p-trial-tour-group-item-box::after {
    width: 2.6666666667vw;
  }
  .p-trial-tour-group-item-box-txt {
    padding-top: 1.3333333333vw;
  }
  .p-trial-tour-group-item-box-txt.txt--01 {
    font-size: 2.9333333333vw;
    line-height: 1.9090909091;
    letter-spacing: 0.02em;
  }
  .p-trial-tour-group-item-box-txt.txt--02 {
    font-size: 2.9333333333vw;
    line-height: 1.4545454545;
    letter-spacing: 0.02em;
  }
  .p-trial-tour-group-item-box-txt.txt--03 {
    font-size: 2.9333333333vw;
    line-height: 1.9090909091;
    letter-spacing: 0.02em;
  }
  .p-trial-tour-group-item-box-txt.txt--04,
  .p-trial-tour-group-item-box-txt.txt--05 {
    font-size: 2.9333333333vw;
    line-height: 1.3636363636;
    letter-spacing: normal;
  }
  .p-trial-tour-group-item-box-txt::before {
    top: 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 1.3571428571;
  }
  .p-trial-tour-group-item-txt {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    letter-spacing: 0.18em;
  }
}
/* p-faq
---------------------------------------------------------------------------- */
.p-faq {
  padding-top: 17.8rem;
}

.p-faq-accordion {
  margin-top: 7.8rem;
}

.p-faq-button {
  width: 57rem;
  margin-inline: auto;
  margin-top: 4.7rem;
}

@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 24.5333333333vw;
  }
  .p-faq-accordion {
    margin-top: 10.6666666667vw;
  }
  .p-faq-button {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
/* p-information
---------------------------------------------------------------------------- */
.p-information {
  margin-top: 20rem;
  padding-bottom: 20rem;
}

.p-information-inner {
  position: relative;
  height: 31.25vw;
}

.p-information-map {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 46.3541666667vw;
  aspect-ratio: 890/600;
}

.p-information-map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.p-information-inside {
  width: 100%;
  max-width: 120rem;
  height: 100%;
  margin-inline: auto;
  position: relative;
}

.p-information-inside-wrapper {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 57rem;
}

.p-information-inside-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 4.2rem;
}

.p-information-inside-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 10rem 4rem 1fr;
  grid-template-columns: 10rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4rem;
  padding-bottom: 2rem;
  position: relative;
}

.p-information-inside-item::before,
.p-information-inside-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0.2rem;
}

.p-information-inside-item::before {
  left: 0;
  width: 10rem;
  background-color: #fff;
}

.p-information-inside-item::after {
  right: 0;
  width: calc(100% - 14rem);
  background-color: #B5B5B6;
}

.p-information-inside-item-ttl {
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.13em;
  font-weight: 300;
  color: #fff;
  padding-left: 0.7em;
}

.p-information-inside-item-txt {
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.13em;
  font-weight: 300;
  color: #fff;
  padding-left: 1em;
}

@media screen and (max-width: 767px) {
  .p-information {
    margin-top: initial;
    padding-block: 24vw 26.6666666667vw;
  }
  .p-information-inner {
    height: auto;
    padding-inline: 5.3333333333vw;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-information-map {
    position: initial;
    width: 100%;
    aspect-ratio: 335/207;
    margin-top: 10.6666666667vw;
  }
  .p-information-inside,
  .p-information-inside-wrapper {
    display: contents;
  }
  .p-information-inside-ttl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .p-information-inside-items {
    gap: 3.2vw;
    margin-top: 6.1333333333vw;
  }
  .p-information-inside-item {
    -ms-grid-columns: 21.3333333333vw 4vw 1fr;
    grid-template-columns: 21.3333333333vw 1fr;
    gap: 0 4vw;
    padding-bottom: 2.6666666667vw;
  }
  .p-information-inside-item::before,
  .p-information-inside-item::after {
    height: 1px;
  }
  .p-information-inside-item::before {
    width: 21.3333333333vw;
  }
  .p-information-inside-item::after {
    width: calc(100% - 25.3333333333vw);
  }
  .p-information-inside-item-ttl {
    font-size: 3.7333333333vw;
    line-height: 2.2142857143;
    padding-left: initial;
  }
  .p-information-inside-item-txt {
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
  }
}
/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 767px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* マージン
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 10rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

.ml100 {
  margin-left: 10rem !important;
}

.mr100 {
  margin-right: 10rem !important;
}

.mt95 {
  margin-top: 9.5rem !important;
}

.mb95 {
  margin-bottom: 9.5rem !important;
}

.ml95 {
  margin-left: 9.5rem !important;
}

.mr95 {
  margin-right: 9.5rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.ml90 {
  margin-left: 9rem !important;
}

.mr90 {
  margin-right: 9rem !important;
}

.mt85 {
  margin-top: 8.5rem !important;
}

.mb85 {
  margin-bottom: 8.5rem !important;
}

.ml85 {
  margin-left: 8.5rem !important;
}

.mr85 {
  margin-right: 8.5rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.ml80 {
  margin-left: 8rem !important;
}

.mr80 {
  margin-right: 8rem !important;
}

.mt75 {
  margin-top: 7.5rem !important;
}

.mb75 {
  margin-bottom: 7.5rem !important;
}

.ml75 {
  margin-left: 7.5rem !important;
}

.mr75 {
  margin-right: 7.5rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.ml70 {
  margin-left: 7rem !important;
}

.mr70 {
  margin-right: 7rem !important;
}

.mt65 {
  margin-top: 6.5rem !important;
}

.mb65 {
  margin-bottom: 6.5rem !important;
}

.ml65 {
  margin-left: 6.5rem !important;
}

.mr65 {
  margin-right: 6.5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.ml60 {
  margin-left: 6rem !important;
}

.mr60 {
  margin-right: 6rem !important;
}

.mt55 {
  margin-top: 5.5rem !important;
}

.mb55 {
  margin-bottom: 5.5rem !important;
}

.ml55 {
  margin-left: 5.5rem !important;
}

.mr55 {
  margin-right: 5.5rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.ml50 {
  margin-left: 5rem !important;
}

.mr50 {
  margin-right: 5rem !important;
}

.mt45 {
  margin-top: 4.5rem !important;
}

.mb45 {
  margin-bottom: 4.5rem !important;
}

.ml45 {
  margin-left: 4.5rem !important;
}

.mr45 {
  margin-right: 4.5rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.ml40 {
  margin-left: 4rem !important;
}

.mr40 {
  margin-right: 4rem !important;
}

.mt35 {
  margin-top: 3.5rem !important;
}

.mb35 {
  margin-bottom: 3.5rem !important;
}

.ml35 {
  margin-left: 3.5rem !important;
}

.mr35 {
  margin-right: 3.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.ml30 {
  margin-left: 3rem !important;
}

.mr30 {
  margin-right: 3rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.ml25 {
  margin-left: 2.5rem !important;
}

.mr25 {
  margin-right: 2.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.ml15 {
  margin-left: 1.5rem !important;
}

.mr15 {
  margin-right: 1.5rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mt5 {
  margin-top: 0.5rem !important;
}

.mb5 {
  margin-bottom: 0.5rem !important;
}

.ml5 {
  margin-left: 0.5rem !important;
}

.mr5 {
  margin-right: 0.5rem !important;
}

.mt0 {
  margin-top: 0rem !important;
}

.mb0 {
  margin-bottom: 0rem !important;
}

.ml0 {
  margin-left: 0rem !important;
}

.mr0 {
  margin-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 13.3333333333vw !important;
  }
  .spmb100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .spml100 {
    margin-left: 13.3333333333vw !important;
  }
  .spmr100 {
    margin-right: 13.3333333333vw !important;
  }
  .spmt95 {
    margin-top: 12.6666666667vw !important;
  }
  .spmb95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .spml95 {
    margin-left: 12.6666666667vw !important;
  }
  .spmr95 {
    margin-right: 12.6666666667vw !important;
  }
  .spmt90 {
    margin-top: 12vw !important;
  }
  .spmb90 {
    margin-bottom: 12vw !important;
  }
  .spml90 {
    margin-left: 12vw !important;
  }
  .spmr90 {
    margin-right: 12vw !important;
  }
  .spmt85 {
    margin-top: 11.3333333333vw !important;
  }
  .spmb85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .spml85 {
    margin-left: 11.3333333333vw !important;
  }
  .spmr85 {
    margin-right: 11.3333333333vw !important;
  }
  .spmt80 {
    margin-top: 10.6666666667vw !important;
  }
  .spmb80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .spml80 {
    margin-left: 10.6666666667vw !important;
  }
  .spmr80 {
    margin-right: 10.6666666667vw !important;
  }
  .spmt75 {
    margin-top: 10vw !important;
  }
  .spmb75 {
    margin-bottom: 10vw !important;
  }
  .spml75 {
    margin-left: 10vw !important;
  }
  .spmr75 {
    margin-right: 10vw !important;
  }
  .spmt70 {
    margin-top: 9.3333333333vw !important;
  }
  .spmb70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .spml70 {
    margin-left: 9.3333333333vw !important;
  }
  .spmr70 {
    margin-right: 9.3333333333vw !important;
  }
  .spmt65 {
    margin-top: 8.6666666667vw !important;
  }
  .spmb65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .spml65 {
    margin-left: 8.6666666667vw !important;
  }
  .spmr65 {
    margin-right: 8.6666666667vw !important;
  }
  .spmt60 {
    margin-top: 8vw !important;
  }
  .spmb60 {
    margin-bottom: 8vw !important;
  }
  .spml60 {
    margin-left: 8vw !important;
  }
  .spmr60 {
    margin-right: 8vw !important;
  }
  .spmt55 {
    margin-top: 7.3333333333vw !important;
  }
  .spmb55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .spml55 {
    margin-left: 7.3333333333vw !important;
  }
  .spmr55 {
    margin-right: 7.3333333333vw !important;
  }
  .spmt50 {
    margin-top: 6.6666666667vw !important;
  }
  .spmb50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .spml50 {
    margin-left: 6.6666666667vw !important;
  }
  .spmr50 {
    margin-right: 6.6666666667vw !important;
  }
  .spmt45 {
    margin-top: 6vw !important;
  }
  .spmb45 {
    margin-bottom: 6vw !important;
  }
  .spml45 {
    margin-left: 6vw !important;
  }
  .spmr45 {
    margin-right: 6vw !important;
  }
  .spmt40 {
    margin-top: 5.3333333333vw !important;
  }
  .spmb40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .spml40 {
    margin-left: 5.3333333333vw !important;
  }
  .spmr40 {
    margin-right: 5.3333333333vw !important;
  }
  .spmt35 {
    margin-top: 4.6666666667vw !important;
  }
  .spmb35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .spml35 {
    margin-left: 4.6666666667vw !important;
  }
  .spmr35 {
    margin-right: 4.6666666667vw !important;
  }
  .spmt30 {
    margin-top: 4vw !important;
  }
  .spmb30 {
    margin-bottom: 4vw !important;
  }
  .spml30 {
    margin-left: 4vw !important;
  }
  .spmr30 {
    margin-right: 4vw !important;
  }
  .spmt25 {
    margin-top: 3.3333333333vw !important;
  }
  .spmb25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .spml25 {
    margin-left: 3.3333333333vw !important;
  }
  .spmr25 {
    margin-right: 3.3333333333vw !important;
  }
  .spmt20 {
    margin-top: 2.6666666667vw !important;
  }
  .spmb20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .spml20 {
    margin-left: 2.6666666667vw !important;
  }
  .spmr20 {
    margin-right: 2.6666666667vw !important;
  }
  .spmt15 {
    margin-top: 2vw !important;
  }
  .spmb15 {
    margin-bottom: 2vw !important;
  }
  .spml15 {
    margin-left: 2vw !important;
  }
  .spmr15 {
    margin-right: 2vw !important;
  }
  .spmt10 {
    margin-top: 1.3333333333vw !important;
  }
  .spmb10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .spml10 {
    margin-left: 1.3333333333vw !important;
  }
  .spmr10 {
    margin-right: 1.3333333333vw !important;
  }
  .spmt5 {
    margin-top: 0.6666666667vw !important;
  }
  .spmb5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .spml5 {
    margin-left: 0.6666666667vw !important;
  }
  .spmr5 {
    margin-right: 0.6666666667vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* パディング
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 10rem !important;
}

.pb100 {
  padding-bottom: 10rem !important;
}

.pl100 {
  padding-left: 10rem !important;
}

.pr100 {
  padding-right: 10rem !important;
}

.pt95 {
  padding-top: 9.5rem !important;
}

.pb95 {
  padding-bottom: 9.5rem !important;
}

.pl95 {
  padding-left: 9.5rem !important;
}

.pr95 {
  padding-right: 9.5rem !important;
}

.pt90 {
  padding-top: 9rem !important;
}

.pb90 {
  padding-bottom: 9rem !important;
}

.pl90 {
  padding-left: 9rem !important;
}

.pr90 {
  padding-right: 9rem !important;
}

.pt85 {
  padding-top: 8.5rem !important;
}

.pb85 {
  padding-bottom: 8.5rem !important;
}

.pl85 {
  padding-left: 8.5rem !important;
}

.pr85 {
  padding-right: 8.5rem !important;
}

.pt80 {
  padding-top: 8rem !important;
}

.pb80 {
  padding-bottom: 8rem !important;
}

.pl80 {
  padding-left: 8rem !important;
}

.pr80 {
  padding-right: 8rem !important;
}

.pt75 {
  padding-top: 7.5rem !important;
}

.pb75 {
  padding-bottom: 7.5rem !important;
}

.pl75 {
  padding-left: 7.5rem !important;
}

.pr75 {
  padding-right: 7.5rem !important;
}

.pt70 {
  padding-top: 7rem !important;
}

.pb70 {
  padding-bottom: 7rem !important;
}

.pl70 {
  padding-left: 7rem !important;
}

.pr70 {
  padding-right: 7rem !important;
}

.pt65 {
  padding-top: 6.5rem !important;
}

.pb65 {
  padding-bottom: 6.5rem !important;
}

.pl65 {
  padding-left: 6.5rem !important;
}

.pr65 {
  padding-right: 6.5rem !important;
}

.pt60 {
  padding-top: 6rem !important;
}

.pb60 {
  padding-bottom: 6rem !important;
}

.pl60 {
  padding-left: 6rem !important;
}

.pr60 {
  padding-right: 6rem !important;
}

.pt55 {
  padding-top: 5.5rem !important;
}

.pb55 {
  padding-bottom: 5.5rem !important;
}

.pl55 {
  padding-left: 5.5rem !important;
}

.pr55 {
  padding-right: 5.5rem !important;
}

.pt50 {
  padding-top: 5rem !important;
}

.pb50 {
  padding-bottom: 5rem !important;
}

.pl50 {
  padding-left: 5rem !important;
}

.pr50 {
  padding-right: 5rem !important;
}

.pt45 {
  padding-top: 4.5rem !important;
}

.pb45 {
  padding-bottom: 4.5rem !important;
}

.pl45 {
  padding-left: 4.5rem !important;
}

.pr45 {
  padding-right: 4.5rem !important;
}

.pt40 {
  padding-top: 4rem !important;
}

.pb40 {
  padding-bottom: 4rem !important;
}

.pl40 {
  padding-left: 4rem !important;
}

.pr40 {
  padding-right: 4rem !important;
}

.pt35 {
  padding-top: 3.5rem !important;
}

.pb35 {
  padding-bottom: 3.5rem !important;
}

.pl35 {
  padding-left: 3.5rem !important;
}

.pr35 {
  padding-right: 3.5rem !important;
}

.pt30 {
  padding-top: 3rem !important;
}

.pb30 {
  padding-bottom: 3rem !important;
}

.pl30 {
  padding-left: 3rem !important;
}

.pr30 {
  padding-right: 3rem !important;
}

.pt25 {
  padding-top: 2.5rem !important;
}

.pb25 {
  padding-bottom: 2.5rem !important;
}

.pl25 {
  padding-left: 2.5rem !important;
}

.pr25 {
  padding-right: 2.5rem !important;
}

.pt20 {
  padding-top: 2rem !important;
}

.pb20 {
  padding-bottom: 2rem !important;
}

.pl20 {
  padding-left: 2rem !important;
}

.pr20 {
  padding-right: 2rem !important;
}

.pt15 {
  padding-top: 1.5rem !important;
}

.pb15 {
  padding-bottom: 1.5rem !important;
}

.pl15 {
  padding-left: 1.5rem !important;
}

.pr15 {
  padding-right: 1.5rem !important;
}

.pt10 {
  padding-top: 1rem !important;
}

.pb10 {
  padding-bottom: 1rem !important;
}

.pl10 {
  padding-left: 1rem !important;
}

.pr10 {
  padding-right: 1rem !important;
}

.pt5 {
  padding-top: 0.5rem !important;
}

.pb5 {
  padding-bottom: 0.5rem !important;
}

.pl5 {
  padding-left: 0.5rem !important;
}

.pr5 {
  padding-right: 0.5rem !important;
}

.pt0 {
  padding-top: 0rem !important;
}

.pb0 {
  padding-bottom: 0rem !important;
}

.pl0 {
  padding-left: 0rem !important;
}

.pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 13.3333333333vw !important;
  }
  .sppb100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sppl100 {
    padding-left: 13.3333333333vw !important;
  }
  .sppr100 {
    padding-right: 13.3333333333vw !important;
  }
  .sppt95 {
    padding-top: 12.6666666667vw !important;
  }
  .sppb95 {
    padding-bottom: 12.6666666667vw !important;
  }
  .sppl95 {
    padding-left: 12.6666666667vw !important;
  }
  .sppr95 {
    padding-right: 12.6666666667vw !important;
  }
  .sppt90 {
    padding-top: 12vw !important;
  }
  .sppb90 {
    padding-bottom: 12vw !important;
  }
  .sppl90 {
    padding-left: 12vw !important;
  }
  .sppr90 {
    padding-right: 12vw !important;
  }
  .sppt85 {
    padding-top: 11.3333333333vw !important;
  }
  .sppb85 {
    padding-bottom: 11.3333333333vw !important;
  }
  .sppl85 {
    padding-left: 11.3333333333vw !important;
  }
  .sppr85 {
    padding-right: 11.3333333333vw !important;
  }
  .sppt80 {
    padding-top: 10.6666666667vw !important;
  }
  .sppb80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sppl80 {
    padding-left: 10.6666666667vw !important;
  }
  .sppr80 {
    padding-right: 10.6666666667vw !important;
  }
  .sppt75 {
    padding-top: 10vw !important;
  }
  .sppb75 {
    padding-bottom: 10vw !important;
  }
  .sppl75 {
    padding-left: 10vw !important;
  }
  .sppr75 {
    padding-right: 10vw !important;
  }
  .sppt70 {
    padding-top: 9.3333333333vw !important;
  }
  .sppb70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sppl70 {
    padding-left: 9.3333333333vw !important;
  }
  .sppr70 {
    padding-right: 9.3333333333vw !important;
  }
  .sppt65 {
    padding-top: 8.6666666667vw !important;
  }
  .sppb65 {
    padding-bottom: 8.6666666667vw !important;
  }
  .sppl65 {
    padding-left: 8.6666666667vw !important;
  }
  .sppr65 {
    padding-right: 8.6666666667vw !important;
  }
  .sppt60 {
    padding-top: 8vw !important;
  }
  .sppb60 {
    padding-bottom: 8vw !important;
  }
  .sppl60 {
    padding-left: 8vw !important;
  }
  .sppr60 {
    padding-right: 8vw !important;
  }
  .sppt55 {
    padding-top: 7.3333333333vw !important;
  }
  .sppb55 {
    padding-bottom: 7.3333333333vw !important;
  }
  .sppl55 {
    padding-left: 7.3333333333vw !important;
  }
  .sppr55 {
    padding-right: 7.3333333333vw !important;
  }
  .sppt50 {
    padding-top: 6.6666666667vw !important;
  }
  .sppb50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sppl50 {
    padding-left: 6.6666666667vw !important;
  }
  .sppr50 {
    padding-right: 6.6666666667vw !important;
  }
  .sppt45 {
    padding-top: 6vw !important;
  }
  .sppb45 {
    padding-bottom: 6vw !important;
  }
  .sppl45 {
    padding-left: 6vw !important;
  }
  .sppr45 {
    padding-right: 6vw !important;
  }
  .sppt40 {
    padding-top: 5.3333333333vw !important;
  }
  .sppb40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sppl40 {
    padding-left: 5.3333333333vw !important;
  }
  .sppr40 {
    padding-right: 5.3333333333vw !important;
  }
  .sppt35 {
    padding-top: 4.6666666667vw !important;
  }
  .sppb35 {
    padding-bottom: 4.6666666667vw !important;
  }
  .sppl35 {
    padding-left: 4.6666666667vw !important;
  }
  .sppr35 {
    padding-right: 4.6666666667vw !important;
  }
  .sppt30 {
    padding-top: 4vw !important;
  }
  .sppb30 {
    padding-bottom: 4vw !important;
  }
  .sppl30 {
    padding-left: 4vw !important;
  }
  .sppr30 {
    padding-right: 4vw !important;
  }
  .sppt25 {
    padding-top: 3.3333333333vw !important;
  }
  .sppb25 {
    padding-bottom: 3.3333333333vw !important;
  }
  .sppl25 {
    padding-left: 3.3333333333vw !important;
  }
  .sppr25 {
    padding-right: 3.3333333333vw !important;
  }
  .sppt20 {
    padding-top: 2.6666666667vw !important;
  }
  .sppb20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sppl20 {
    padding-left: 2.6666666667vw !important;
  }
  .sppr20 {
    padding-right: 2.6666666667vw !important;
  }
  .sppt15 {
    padding-top: 2vw !important;
  }
  .sppb15 {
    padding-bottom: 2vw !important;
  }
  .sppl15 {
    padding-left: 2vw !important;
  }
  .sppr15 {
    padding-right: 2vw !important;
  }
  .sppt10 {
    padding-top: 1.3333333333vw !important;
  }
  .sppb10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .sppl10 {
    padding-left: 1.3333333333vw !important;
  }
  .sppr10 {
    padding-right: 1.3333333333vw !important;
  }
  .sppt5 {
    padding-top: 0.6666666667vw !important;
  }
  .sppb5 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sppl5 {
    padding-left: 0.6666666667vw !important;
  }
  .sppr5 {
    padding-right: 0.6666666667vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}
/*# sourceMappingURL=style.css.map */