@charset "UTF-8";
/*-------------------------------

	Foundation

-------------------------------*/
@media only screen and (min-width: 421px) {
  /* sp-size */
}
@media only screen and (min-width: 821px) {
  /* tablet-size */
}
@media only screen and (min-width: 1100px) {
  /* small-large-size */
}
@media only screen and (min-width: 1450px) {
  /* middle-size */
}
@media only screen and (min-width: 1920px) {
  /* pc-size */
}
html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "Overpass", "Noto Sans JP", sans-serif;
  color: #231815;
  font-weight: 400;
  line-height: 1.88;
  font-style: normal;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  body {
    font-size: 1.6rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

*:focus {
  outline: none;
}

p,
ul li,
ol li {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}

picture,
img {
  display: block;
}

img {
  width: 100%;
}

b,
strong {
  font-weight: 700;
}

/*-------------------------------

	Layout

-------------------------------*/
/*
* wrapper
*/
.l-base {
  margin-left: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 1920px) {
  .l-base {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*-------------------------------

	Object

-------------------------------*/
/*---------- Component ----------*/
.c-btn {
  display: inline-block;
  font-weight: bold;
  margin: 0;
  padding: 0.8rem 1.3rem;
  border-radius: 0.8rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: 1px solid #f3982d;
  background: #fff;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: center;
  line-height: 1.3;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .c-btn {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 821px) {
  .c-btn {
    padding: 1rem 2rem;
  }
}
.c-btn {
  transition: opacity linear 0.3s;
}
.c-btn:hover {
  opacity: 0.7;
}
.c-btn.-wide {
  width: 30rem;
  padding-left: 0;
  padding-right: 0;
}
.c-btn.-orange {
  color: #f3982d;
  border-color: #f3982d;
}
.c-btn.-blue {
  color: #00b9ef;
  border-color: #00b9ef;
}

.c-ttl {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  width: 24.6rem;
  gap: 0 1rem;
  border-radius: 2.8rem;
  letter-spacing: 0.1em;
  box-shadow: 0 0 5px #fff;
  font-size: 1.6rem;
}
@media only screen and (min-width: 821px) {
  .c-ttl {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 821px) {
  .c-ttl {
    height: 5rem;
    width: 35.5rem;
    gap: 0 2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .c-ttl {
    height: 5.6rem;
    width: 41.6rem;
  }
}
.c-ttl span {
  display: inline-block;
  position: relative;
}
.c-ttl span::before {
  content: "";
  left: -3rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 821px) {
  .c-ttl span::before {
    left: -4rem;
  }
}
.c-ttl.-orange {
  background: #f3982d;
}
.c-ttl.-orange span::before {
  background-image: url("../img/icon_sun.svg");
  width: 2.2rem;
  height: 2.2rem;
}
.c-ttl.-blue {
  background: #00b9ef;
}
.c-ttl.-blue span::before {
  background-image: url("../img/icon_moon.svg");
  width: 2rem;
  height: 2rem;
}

/*---------- Project ----------*/
.p-contA {
  position: relative;
  overflow: hidden;
}
.p-contA__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 821px) {
  .p-contA__frame {
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-contA.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.p-contB {
  width: 100%;
  margin: 0 auto;
  z-index: 200;
  position: relative;
}
@media only screen and (min-width: 821px) {
  .p-contB {
    width: 45rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB {
    width: 54rem;
  }
}
.p-contB__inner {
  margin-top: 100vh;
}
.p-contB__section:not(:first-of-type) {
  margin-top: 32rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__section:not(:first-of-type) {
    margin-top: 48rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB__section:not(:first-of-type) {
    margin-top: 64rem;
  }
}
.p-contB__type01 {
  background: #fff;
  border-radius: 2rem;
  text-align: center;
  overflow: hidden;
  padding: 2rem 2rem 4rem;
}
.p-contB__type01__h1 {
  line-height: 1.3;
  margin: 1.5rem 0;
  font-size: 3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__h1 {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type01__h1 {
    font-size: 3.8rem;
  }
}
.p-contB__type01__txt {
  width: 88%;
  line-height: 1.7;
  margin: 0 auto;
  font-size: 1.5rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__txt {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type01__txt {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__txt {
    line-height: 1.8;
  }
}
.p-contB__type02 {
  text-align: center;
  background: #fff;
  border-radius: 2rem;
  margin-top: 2rem;
  padding: 4rem 0 6rem;
}
.p-contB__type02__list {
  margin-top: 2rem;
}
.p-contB__type02__list:not(:last-of-type) {
  margin-bottom: 8rem;
}
.p-contB__type02__list li + li {
  margin-top: 3.5rem;
}
.p-contB__type02__h1 {
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__h1 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__h1 {
    font-size: 2.8rem;
  }
}
.p-contB__type02__txt1 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt1 {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__txt1 {
    font-size: 1.8rem;
  }
}
.p-contB__type02__txt-img {
  width: 8.8rem;
  margin: 0 auto;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt-img {
    width: 10.8rem;
  }
}
.p-contB__type02__h2 {
  text-align: center;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__h2 {
    font-size: 3.2rem;
  }
}
.p-contB__type02__txt2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt2 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__txt2 {
    font-size: 1.6rem;
  }
}
.p-contB__type02__thumb {
  width: 77%;
  margin: 0 auto;
}
.p-contB__type03 {
  background: #fff;
  border-radius: 2rem;
  border: 2rem solid #fff;
  padding: 3rem 0;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03 {
    padding: 5rem 0 3rem;
  }
}
.p-contB__type03__img-txt {
  height: 5rem;
  width: auto;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__img-txt {
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__img-txt {
    height: 6rem;
  }
}
.p-contB__type03__h1 {
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 3.7rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h1 {
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h1 {
    font-size: 4.8rem;
  }
}
.p-contB__type03__item {
  position: relative;
  margin-top: 2rem;
}
.p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
  left: 41%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
    left: 42%;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
    left: 50%;
  }
}
.p-contB__type03__item:nth-of-type(odd) .c-btn {
  margin-left: -2rem;
}
.p-contB__type03__item:nth-of-type(even) .p-contB__type03__thumb, .p-contB__type03__item.-rev .p-contB__type03__thumb {
  margin-left: auto;
}
.p-contB__type03__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type03__item.-rev .p-contB__type03__box {
  left: 5%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type03__item.-rev .p-contB__type03__box {
    left: 7%;
  }
}
.p-contB__type03__box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-contB__type03__box.-tour {
  left: 54% !important;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__box.-tour {
    left: 60% !important;
  }
}
.p-contB__type03__h2 {
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-contB__type03__h2::before {
  content: "";
  position: absolute;
  width: 13.6rem;
  height: 1px;
  bottom: 0;
  left: -1.5rem;
}
.p-contB__type03__h2.-orange {
  color: #f3982d;
}
.p-contB__type03__h2.-orange::before {
  background: #f3982d;
}
.p-contB__type03__h2.-blue {
  color: #00b9ef;
}
.p-contB__type03__h2.-blue::before {
  background: #00b9ef;
}
.p-contB__type03__h2.-tour {
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2.-tour {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2.-tour {
    font-size: 2.5rem;
  }
}
.p-contB__type03__h2 small {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 small {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 small {
    font-size: 1.8rem;
  }
}
.p-contB__type03__h2 .small {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 .small {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 .small {
    font-size: 2.1rem;
  }
}
.p-contB__type03__txt {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__txt {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__txt {
    font-size: 1.6rem;
  }
}
.p-contB__type03__thumb {
  width: 55%;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__thumb {
    width: 64%;
  }
}
.p-contB__type03__note {
  background: #f3982d;
  color: #fff;
  position: absolute;
  bottom: -2rem;
  right: 0;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  line-height: 1.3;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__note {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__note {
    padding: 1rem 1rem 1rem 2rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB__type03__note {
    bottom: 0;
  }
}
.p-contB__type03__note.-rev {
  right: auto;
  left: 0;
  border-radius: 0 0.8rem 0.8rem 0;
}
.p-contB__type04 {
  background: #fff;
  border-radius: 2rem;
  padding: 5rem 0;
  text-align: center;
}
.p-contB__type04__thumb {
  width: calc(100% - 4rem);
  margin: -6rem auto 0;
}
.p-contB__type04__txt {
  text-align: center;
  margin: 5.5rem 0 4.5rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type04__txt {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type04__txt {
    font-size: 1.6rem;
  }
}
.p-contB__type05 {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 0 1rem;
  text-align: center;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05 {
    padding: 3rem 0 1rem;
  }
}
.p-contB__type05__txt1 {
  text-align: center;
  margin: 0 0 2rem;
  font-weight: 800;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt1 {
    font-size: 1.6rem;
  }
}
.p-contB__type05__txt2 {
  margin: 2rem 11%;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt2 {
    font-size: 1.6rem;
  }
}
.p-contB__type05__txt2 em {
  font-style: normal;
  font-size: 1.6rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt2 em {
    font-size: 2rem;
  }
}
.p-contB__type05__btn-box {
  margin-top: 3rem;
}
.p-contB__type05__btn-box .c-btn + .c-btn {
  margin-top: 3rem;
}
.p-contB__type06 {
  position: relative;
  padding: 9.7rem 0;
}
.p-contB__type06__thumb01, .p-contB__type06__thumb02 {
  position: absolute;
  width: 45%;
}
.p-contB__type06__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem 0;
  position: relative;
}
.p-contB__type06.-pattern01 .p-contB__type06__thumb01 {
  top: 0;
  right: 0;
}
.p-contB__type06.-pattern01 .p-contB__type06__thumb02 {
  bottom: 0;
  left: 0;
}
.p-contB__type06.-pattern02 .p-contB__type06__thumb01 {
  top: 0;
  left: 0;
}
.p-contB__type06.-pattern02 .p-contB__type06__thumb02 {
  bottom: 0;
  right: 0;
}
.p-contB__ftr {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 0;
  text-align: center;
}
@media only screen and (min-width: 821px) {
  .p-contB__ftr {
    padding: 6rem 0;
  }
}
.p-contB__ftr__cr {
  text-align: center;
  margin-top: 5rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__ftr__cr {
    font-size: 1.6rem;
  }
}

.p-fv {
  position: relative;
}
@media only screen and (min-width: 1920px) {
  .p-fv {
    height: 100vh;
  }
}
.p-fv__img {
  display: flex;
  height: 100svh;
}
.p-fv__img picture {
  width: 50%;
  height: 100svh;
}
.p-fv__img picture img {
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv__img picture:first-of-type img {
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media only screen and (min-width: 821px) {
  .p-fv__img picture:first-of-type img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
.p-fv__img picture:last-of-type img {
  -o-object-position: left bottom;
     object-position: left bottom;
}
@media only screen and (min-width: 821px) {
  .p-fv__img picture:last-of-type img {
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}
.p-fv__center-logo {
  bottom: 0;
  width: 62%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 821px) {
  .p-fv__center-logo {
    width: 28%;
  }
}
.p-fv__logo {
  position: absolute;
  left: 3%;
  width: 17%;
  z-index: 2;
  top: 4vh;
}
@media only screen and (min-width: 821px) {
  .p-fv__logo {
    left: 6.5%;
    width: 10%;
    top: 8vh;
  }
}
.p-fv__logo a {
  transition: opacity linear 0.3s;
}
.p-fv__logo a:hover {
  opacity: 0.7;
}
.p-fv__logo.right {
  right: 4.5%;
  left: auto;
}
@media only screen and (min-width: 821px) {
  .p-fv__logo.right {
    top: 8vh;
  }
}
.p-fv__txt {
  position: absolute;
  left: 50%;
  top: 10vh;
  width: 27%;
  z-index: 2;
  transform: translateX(-50%);
  filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.6));
}
@media only screen and (min-width: 821px) {
  .p-fv__txt {
    width: 42%;
    top: 18vh;
    transform: translateX(0);
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1100px) {
  .p-fv__txt {
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-sv {
  position: relative;
  background: url("../img/2ndview_bg_sp.webp") no-repeat center/cover;
  height: 100vh;
}
@media only screen and (min-width: 821px) {
  .p-sv {
    aspect-ratio: 1920/1500;
    height: auto;
    background-image: url("../img/2ndview_bg_pc.webp");
  }
}
.p-sv__ftr {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.p-sv__ftr-sp {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 821px) {
  .p-sv__ftr-sp {
    display: none;
  }
}
.p-sv__txt {
  width: 25%;
  z-index: 4;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 821px) {
  .p-sv__txt {
    width: 11%;
  }
}
@media only screen and (min-width: 1450px) {
  .p-sv__txt {
    width: 21.2rem;
  }
}
.p-sv__video-box {
  display: none;
}
@media only screen and (min-width: 821px) {
  .p-sv__video-box {
    display: block;
    opacity: 0;
    position: absolute;
    left: 0;
    height: auto;
    width: min(100%, 1920px);
    margin: 0 auto;
    aspect-ratio: 1920/1500;
    z-index: 3;
    transition: opacity 0.3s;
  }
}
.p-sv__video-box.fixed-center {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(100%, 1920px);
  transform: translate(-50%, 0);
  height: 100%;
}
@media only screen and (min-width: 821px) {
  .p-sv__video-box.fixed-center {
    height: auto;
  }
}
.p-sv__video-box.active {
  opacity: 1;
}
.p-sv__video {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0px 0px 10px rgb(255, 255, 255));
  aspect-ratio: 1/1;
}
.p-sv__video-svg {
  width: 100%;
  height: auto;
  display: block;
}
.p-sv__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-sv__video svg {
  width: 0;
  height: 0;
}
.p-sv__video .video-wrapper {
  animation: floatScale 6s ease-in-out infinite;
  aspect-ratio: 640/426;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  overflow: hidden;
}
.p-sv__video.-a {
  left: 5%;
  top: -1%;
  width: 41%;
}
.p-sv__video.-a .video-wrapper {
  -webkit-mask-image: url(../img/movie_mask_a.svg);
          mask-image: url(../img/movie_mask_a.svg);
  -webkit-mask-size: 99%;
          mask-size: 99%;
}
.p-sv__video.-b {
  right: -3%;
  top: -12%;
  width: 58%;
}
.p-sv__video.-b .video-wrapper {
  -webkit-mask-image: url(../img/movie_mask_b.svg);
          mask-image: url(../img/movie_mask_b.svg);
}
.p-sv__video.-c {
  left: -18%;
  bottom: -14%;
  width: 71%;
}
.p-sv__video.-c .video-wrapper {
  -webkit-mask-image: url(../img/movie_mask_c.svg);
          mask-image: url(../img/movie_mask_c.svg);
  animation: floatScale 6s ease-in-out infinite;
}
.p-sv__video.-c video {
  height: 70%;
  left: 25%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 70%;
  transform: translateY(35%);
}
.p-sv__video.-d {
  right: 0%;
  bottom: -14%;
  width: 63%;
}
.p-sv__video.-d .video-wrapper {
  -webkit-mask-image: url(../img/movie_mask_d.svg);
          mask-image: url(../img/movie_mask_d.svg);
}
.p-sv__img01 {
  position: absolute;
  left: 76%;
  top: 20%;
  width: 28%;
}
@media only screen and (min-width: 821px) {
  .p-sv__img01 {
    left: 79%;
    top: 14%;
    width: 20%;
  }
}
.p-sv__img02 {
  position: absolute;
  right: 49%;
  bottom: 12%;
  width: 43%;
}
@media only screen and (min-width: 821px) {
  .p-sv__img02 {
    right: 57%;
    bottom: 11%;
    width: 27%;
  }
}

@media (max-width: 840px) {
  .p-sv {
    position: relative;
    z-index: 1;
  }
  .p-sv-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .p-sv-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .p-sv-bg-layer.is-active {
    opacity: 1;
    z-index: 1;
  }
  .fixed-bottom-img {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 10000;
    pointer-events: none;
    display: block;
  }
}
@keyframes floatScale {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.02) rotate(0.5deg);
  }
  50% {
    transform: scale(0.98) rotate(-0.5deg);
  }
  75% {
    transform: scale(1.01) rotate(0deg);
  }
}
@keyframes floatScale-scaled {
  0%, 100% {
    transform: scale(0.9) rotate(0deg);
  }
  25% {
    transform: scale(0.92) rotate(0.5deg);
  }
  50% {
    transform: scale(0.88) rotate(-0.5deg);
  }
  75% {
    transform: scale(0.91) rotate(0deg);
  }
}
.p-menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  aspect-ratio: 12/10;
  width: 13%;
  z-index: 999;
  display: none;
}
@media only screen and (min-width: 821px) {
  .p-menu-btn {
    width: 6%;
  }
}
.p-menu-btn__box {
  background: #231815;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.p-menu-btn__box img {
  width: 50%;
  margin-top: 10%;
}
.p-menu-btn__bar {
  width: 53%;
  aspect-ratio: 64/20;
  position: relative;
}
.p-menu-btn__bar span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  transition: transform 0.3s;
}
.p-menu-btn__bar span:first-of-type {
  top: 0;
  left: 0;
}
.p-menu-btn__bar span:last-of-type {
  bottom: 0;
  left: 0;
}

.p-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3rem;
}
@media only screen and (min-width: 821px) {
  .p-info {
    gap: 0 4rem;
  }
}
.p-info li a {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  transition: opacity linear 0.3s;
}
.p-info li a:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 821px) {
  .p-info li a {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-info li img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

/* modal */
.pop-btn {
  margin: 0.5rem;
}

.pop-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  touch-action: none;
}

.pop-modal__container {
  width: min(80%, 80rem);
  position: relative;
  background: #fff;
  box-shadow: 1.2rem 1.2rem 1.2rem rgba(243, 152, 45, 0.3);
  overflow: hidden;
}
.pop-modal__container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1rem solid #f3982d;
}

.pop-modal__inner {
  position: relative;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pop-modal__inner::before, .pop-modal__inner::after {
  content: "";
  position: absolute;
  left: 0rem;
  width: 100%;
  height: 100%;
}
.pop-modal__inner::before {
  top: 0rem;
  background: url("../img/popup/frame_top.svg") no-repeat center top/100% auto;
}
.pop-modal__inner::after {
  bottom: 0rem;
  background: url("../img/popup/frame_bottom.svg") no-repeat center bottom/100% auto;
}

.pop-modal__header {
  position: relative;
}
.pop-modal__header__ttl {
  position: absolute;
  left: 2rem;
  top: 3rem;
  width: 3rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__header__ttl {
    left: 6rem;
    top: 8rem;
    width: 6rem;
  }
}

.pop-modal__close {
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../img/popup/close_button.svg") no-repeat center/contain;
  margin: 1rem 1rem 0 auto;
  position: relative;
  z-index: 2;
  display: block;
  transition: opacity linear 0.3s;
}
.pop-modal__close:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 821px) {
  .pop-modal__close {
    width: 7.2rem;
    height: 7.2rem;
    margin: 4rem 4rem 0 auto;
  }
}

.pop-modal__content-menu {
  overflow-y: auto;
  padding: 3.5rem 0 9rem;
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6117647059);
  width: calc(100% - 2rem);
  margin: 1rem auto;
}

.pop-modal {
  display: none;
}

.pop-modal.is-open {
  display: block;
}

.pop-modal__menu-list {
  margin-top: 2rem;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list {
    margin-top: 4rem;
    margin-bottom: 6rem;
  }
}
.pop-modal__menu-list a {
  color: inherit;
  display: inline-block;
  line-height: 1.2;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 6px #fff);
  transition: opacity linear 0.3s;
}
.pop-modal__menu-list a:hover {
  opacity: 0.7;
}
.pop-modal__menu-list button {
  color: inherit;
  display: inline-block;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 6px #fff);
  transition: opacity linear 0.3s;
}
.pop-modal__menu-list button:hover {
  opacity: 0.7;
}
.pop-modal__menu-list > li {
  text-align: center;
}
.pop-modal__menu-list > li + li {
  margin-top: 4rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li + li {
    margin-top: 5rem;
  }
}
.pop-modal__menu-list > li > a {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 900;
  line-height: 1.2;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 6px #fff);
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li > a {
    font-size: 4rem;
  }
}
.pop-modal__menu-list > li > a small {
  display: block;
  color: #231815;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li > a small {
    font-size: 1.3rem;
  }
}
.pop-modal__menu-list > li ul {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li ul {
    margin-top: 2.5rem;
  }
}
.pop-modal__menu-list > li ul li {
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 900;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li ul li {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-list > li ul li {
    margin-top: 1.5rem;
  }
}
.pop-modal__menu-list > li ul li button {
  font-weight: inherit;
  font-size: inherit;
}
.pop-modal__menu-list.-orange {
  color: #f3982d;
}
.pop-modal__menu-list.-blue {
  color: #00b9ef;
}

.pop-modal__pass-btn {
  display: block;
  width: 21.2rem;
  background: #fff;
  border-radius: 2rem;
  margin: 0 auto;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 6px #fff);
  transition: opacity linear 0.3s;
}
.pop-modal__pass-btn:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 821px) {
  .pop-modal__pass-btn {
    border-radius: 4rem;
    width: 35.2rem;
  }
}
.pop-modal__pass-btn + .pop-modal__pass-btn {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__pass-btn + .pop-modal__pass-btn {
    margin-top: 3rem;
  }
}

.pop-modal__pass-btn-box {
  margin-bottom: 7rem;
  text-align: center;
}

.pop-modal__menu-info__ttl {
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-info__ttl {
    font-size: 1.7rem;
  }
}
.pop-modal__menu-info__link {
  padding: 0.7rem 4.4rem;
  border: 1px solid #231815;
  border-radius: 0.8rem;
  display: inline-block;
  color: #231815;
  margin-bottom: 3.5rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__menu-info__link {
    font-size: 1.4rem;
  }
}
.pop-modal__menu-info__link {
  transition: opacity linear 0.3s;
}
.pop-modal__menu-info__link:hover {
  opacity: 0.7;
}

.pop-modal__detail {
  overflow-y: auto;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem 5%;
  background-color: rgba(255, 255, 255, 0.6117647059);
  width: calc(100% - 2rem);
  margin: 1rem auto;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail {
    padding: 8rem 18%;
  }
}
.pop-modal__detail__txt1 {
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__txt1 {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__txt1 {
    margin-bottom: 2rem;
  }
}
.pop-modal__detail__h1 {
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  position: relative;
  font-size: 2.2rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h1 {
    font-size: 3.8rem;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h1 {
    margin-bottom: 3.5rem;
  }
}
.pop-modal__detail__h1 small {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h1 small {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h1.-bar {
    margin-bottom: 5.5rem;
  }
}
.pop-modal__detail__h1.-bar::before {
  content: "";
  width: 22rem;
  height: 0.2rem;
  bottom: -1rem;
  background: #f3982d;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h1.-bar::before {
    width: 41.1rem;
    height: 0.4rem;
  }
}
.pop-modal__detail__h2 {
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 5.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h2 {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h2 {
    margin-bottom: 3rem;
  }
}
.pop-modal__detail__thumb {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__thumb {
    margin-bottom: 3rem;
  }
}
.pop-modal__detail__table {
  margin: 4rem 0 2rem;
  width: 100%;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__table {
    margin: 4rem 0;
  }
}
.pop-modal__detail__table th,
.pop-modal__detail__table td {
  text-align: left;
  vertical-align: top;
  padding: 0.5rem 0;
}
.pop-modal__detail__table th {
  white-space: nowrap;
  font-weight: normal;
  position: relative;
  width: 7em;
  padding-right: 1.5em;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.pop-modal__detail__table th::after {
  content: "：";
  position: absolute;
  right: 0;
}
.pop-modal__detail__table td {
  width: 100%;
  padding-left: 1.5rem;
}
.pop-modal__detail__table td a {
  transition: opacity linear 0.3s;
}
.pop-modal__detail__table td a:hover {
  opacity: 0.7;
}
.pop-modal__detail__btn {
  display: block;
  padding: 0.8rem;
  border-radius: 0.8rem;
  background: #fff;
  border: 1px solid #f3982d;
  transition: opacity linear 0.3s;
  font-size: 1.2rem;
}
.pop-modal__detail__btn:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__btn {
    font-size: 1.4rem;
  }
}
.pop-modal__detail__btn.-orange {
  border-color: #f3982d;
  color: #f3982d;
}
.pop-modal__detail__btn.-bule {
  border-color: #00b9ef;
  color: #00b9ef;
}
.pop-modal__detail__btn.-black {
  border-color: #231815;
  color: #231815;
  text-align: center;
  margin-top: 4rem;
  font-weight: bold;
  padding: 0.3rem;
  font-size: 1.6rem;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__btn.-black {
    font-size: 1.8rem;
  }
}

.p-contB {
  width: 100%;
  margin: 0 auto;
  z-index: 200;
  position: relative;
}
@media only screen and (min-width: 821px) {
  .p-contB {
    width: 45rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB {
    width: 54rem;
  }
}
.p-contB__inner {
  margin-top: 100vh;
}
.p-contB__section:not(:first-of-type) {
  margin-top: 32rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__section:not(:first-of-type) {
    margin-top: 48rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB__section:not(:first-of-type) {
    margin-top: 64rem;
  }
}
.p-contB__type01 {
  background: #fff;
  border-radius: 2rem;
  text-align: center;
  overflow: hidden;
  padding: 2rem 2rem 4rem;
}
.p-contB__type01__h1 {
  line-height: 1.3;
  margin: 1.5rem 0;
  font-size: 3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__h1 {
    font-size: 3.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type01__h1 {
    font-size: 3.8rem;
  }
}
.p-contB__type01__txt {
  width: 88%;
  line-height: 1.7;
  margin: 0 auto;
  font-size: 1.5rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__txt {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type01__txt {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type01__txt {
    line-height: 1.8;
  }
}
.p-contB__type02 {
  text-align: center;
  background: #fff;
  border-radius: 2rem;
  margin-top: 2rem;
  padding: 4rem 0 6rem;
}
.p-contB__type02__list {
  margin-top: 2rem;
}
.p-contB__type02__list:not(:last-of-type) {
  margin-bottom: 8rem;
}
.p-contB__type02__list li + li {
  margin-top: 3.5rem;
}
.p-contB__type02__h1 {
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__h1 {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__h1 {
    font-size: 2.8rem;
  }
}
.p-contB__type02__txt1 {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt1 {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__txt1 {
    font-size: 1.8rem;
  }
}
.p-contB__type02__txt-img {
  width: 8.8rem;
  margin: 0 auto;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt-img {
    width: 10.8rem;
  }
}
.p-contB__type02__h2 {
  text-align: center;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__h2 {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__h2 {
    font-size: 3.2rem;
  }
}
.p-contB__type02__txt2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type02__txt2 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type02__txt2 {
    font-size: 1.6rem;
  }
}
.p-contB__type02__thumb {
  width: 77%;
  margin: 0 auto;
}
.p-contB__type03 {
  background: #fff;
  border-radius: 2rem;
  border: 2rem solid #fff;
  padding: 3rem 0;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03 {
    padding: 5rem 0 3rem;
  }
}
.p-contB__type03__img-txt {
  height: 5rem;
  width: auto;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__img-txt {
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__img-txt {
    height: 6rem;
  }
}
.p-contB__type03__h1 {
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 3.7rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h1 {
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h1 {
    font-size: 4.8rem;
  }
}
.p-contB__type03__item {
  position: relative;
  margin-top: 2rem;
}
.p-contB__type03__item.hihi {
  margin-top: 4rem;
}
.p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
  left: 48%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
    left: 52%;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box {
    left: 53%;
  }
}
.p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box.loves {
  left: 51%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box.loves {
    left: 52%;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__item:nth-of-type(odd) .p-contB__type03__box.loves {
    left: 53%;
  }
}
.p-contB__type03__item:nth-of-type(odd) .c-btn {
  margin-left: -2rem;
}
.p-contB__type03__item:nth-of-type(even) .p-contB__type03__thumb, .p-contB__type03__item.-rev .p-contB__type03__thumb {
  margin-left: auto;
}
.p-contB__type03__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type03__item.-rev .p-contB__type03__box {
  left: 5%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type03__item.-rev .p-contB__type03__box {
    left: 7%;
  }
}
.p-contB__type03__box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-contB__type03__box.-tour {
  left: 54% !important;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__box.-tour {
    left: 60% !important;
  }
}
.p-contB__type03__h2 {
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 {
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-contB__type03__h2::before {
  content: "";
  position: absolute;
  width: 13.6rem;
  height: 1px;
  bottom: 0;
  left: -1.5rem;
}
.p-contB__type03__h2.-orange {
  color: #f3982d;
}
.p-contB__type03__h2.-orange::before {
  background: #f3982d;
}
.p-contB__type03__h2.-blue {
  color: #00b9ef;
}
.p-contB__type03__h2.-blue::before {
  background: #00b9ef;
}
.p-contB__type03__h2.-tour {
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2.-tour {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2.-tour {
    font-size: 2.5rem;
  }
}
.p-contB__type03__h2 small {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 small {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 small {
    font-size: 1.8rem;
  }
}
.p-contB__type03__h2 .small {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__h2 .small {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__h2 .small {
    font-size: 2.1rem;
  }
}
.p-contB__type03__txt {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__txt {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__txt {
    font-size: 1.6rem;
  }
}
.p-contB__type03__thumb {
  width: 55%;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type03__thumb {
    width: 64%;
  }
}
.p-contB__type03__note {
  background: #00c4da;
  color: #fff;
  position: absolute;
  bottom: -2rem;
  right: 0;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  line-height: normal;
  padding: 0.35rem 0.5rem;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__note {
    padding: 0.35rem 0.75rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB__type03__note {
    bottom: 0;
  }
}
.p-contB__type03__note.-rev {
  right: auto;
  left: 0;
  border-radius: 0 0.8rem 0.8rem 0;
}
.p-contB__type03__note .bl-txt {
  font-weight: 800;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type03__note .bl-txt {
    font-size: 1.25rem;
  }
}
.p-contB__type04 {
  background: #fff;
  border-radius: 2rem;
  padding: 5rem 0;
  text-align: center;
}
.p-contB__type04__thumb {
  width: calc(100% - 4rem);
  margin: -10rem auto 0;
}
.p-contB__type04__txt {
  text-align: justify;
  width: 75%;
  margin: 2rem auto 2rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type04__txt {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type04__txt {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type04__txt {
    margin: 2rem auto 3rem;
  }
}
.p-contB__type05 {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 0 1rem;
  text-align: center;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05 {
    padding: 3rem 0 1rem;
  }
}
.p-contB__type05__txt1 {
  text-align: center;
  margin: 0 0 2rem;
  font-weight: 800;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt1 {
    font-size: 1.6rem;
  }
}
.p-contB__type05__txt2 {
  margin: 2rem 11%;
  font-size: 1.3rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt2 {
    font-size: 1.6rem;
  }
}
.p-contB__type05__txt2 em {
  font-style: normal;
  font-size: 1.6rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type05__txt2 em {
    font-size: 2rem;
  }
}
.p-contB__type05__btn-box {
  margin-top: 3rem;
}
.p-contB__type05__btn-box .c-btn + .c-btn {
  margin-top: 3rem;
}
.p-contB__type06 {
  position: relative;
  padding: 21rem 0 0rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type06 {
    padding: 27rem 0 0rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type06 {
    padding: 27rem 0 0rem;
  }
}
.p-contB__type06__thumb01, .p-contB__type06__thumb02 {
  position: absolute;
  width: 53%;
}
.p-contB__type06__thumb02 {
  position: absolute;
  width: 42%;
}
.p-contB__type06__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem 0;
  position: relative;
}
.p-contB__type06.-pattern01 .p-contB__type06__thumb01 {
  top: 0rem;
  right: 0;
}
.p-contB__type06.-pattern01 .p-contB__type06__thumb02 {
  top: 4rem;
  left: 0;
}
.p-contB__type06.-pattern02 .p-contB__type06__thumb01 {
  top: -4rem;
  left: 0;
}
.p-contB__type06.-pattern02 .p-contB__type06__thumb02 {
  top: 3rem;
  right: 0;
}
.p-contB__type07 {
  background: #fff;
  border-radius: 2rem;
  border: 2rem solid #fff;
  padding: 3rem 0;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07 {
    padding: 5rem 0 3rem;
  }
}
.p-contB__type07__img-txt {
  height: 5rem;
  width: auto;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__img-txt {
    height: 5.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__img-txt {
    height: 6rem;
  }
}
.p-contB__type07__h1 {
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: 3.7rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h1 {
    font-size: 4.2rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__h1 {
    font-size: 4.8rem;
  }
}
.p-contB__type07__item {
  position: relative;
  margin-top: 4rem;
  border-top: 2px solid #f3982d;
  padding-top: 4rem;
  background-image: linear-gradient(0deg, #ffffff 28%, rgba(92, 217, 255, 0.2235294118));
}
.p-contB__type07__item:nth-of-type(odd) .p-contB__type03__box {
  left: 41%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__item:nth-of-type(odd) .p-contB__type03__box {
    left: 42%;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__item:nth-of-type(odd) .p-contB__type03__box {
    left: 53%;
  }
}
.p-contB__type07__item:nth-of-type(odd) .c-btn {
  margin-left: -2rem;
}
.p-contB__type07__item:nth-of-type(even) .p-contB__type03__thumb, .p-contB__type07__item.-rev .p-contB__type03__thumb {
  margin-left: auto;
}
.p-contB__type07__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type07__item.-rev .p-contB__type03__box {
  left: 5%;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__item:nth-of-type(even) .p-contB__type03__box, .p-contB__type07__item.-rev .p-contB__type03__box {
    left: 7%;
  }
}
.p-contB__type07__box.-tour {
  left: 54% !important;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__box.-tour {
    left: 60% !important;
  }
}
.p-contB__type07__h2 {
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  position: relative;
  padding-bottom: 0.25rem;
  margin-bottom: 0;
  font-size: 2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h2 {
    font-size: 2.6rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__h2 {
    font-size: 3.2rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h2 {
    padding-bottom: 0.5rem;
    margin-bottom: 0;
  }
}
.p-contB__type07__h2.-orange {
  color: #f3982d;
}
.p-contB__type07__h2.-orange::before {
  background: #f3982d;
}
.p-contB__type07__h2.-blue {
  color: #00b9ef;
}
.p-contB__type07__h2.-blue::before {
  background: #00b9ef;
}
.p-contB__type07__h2.-tour {
  font-size: 1.6rem;
  text-align: center;
  color: #02adc1;
  letter-spacing: 0rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h2.-tour {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__h2.-tour {
    font-size: 2rem;
  }
}
.p-contB__type07__h2 small {
  display: block;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h2 small {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__h2 small {
    font-size: 1.8rem;
  }
}
.p-contB__type07__h2 .small {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__h2 .small {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__h2 .small {
    font-size: 2.1rem;
  }
}
.p-contB__type07__txt {
  width: 80%;
  margin: 0 auto 1.5rem;
  font-size: 1.2rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__txt {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__txt {
    font-size: 1.6rem;
  }
}
.p-contB__type07__thumb {
  width: 75%;
  margin: 0 auto 10px;
  border-radius: 30px;
}
@media only screen and (min-width: 1450px) {
  .p-contB__type07__thumb {
    width: 64%;
  }
}
.p-contB__type07__note {
  background: #f3982d;
  color: #fff;
  position: absolute;
  bottom: -2rem;
  right: 0;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
  line-height: 1.3;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__note {
    font-size: 1.2rem;
  }
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__note {
    padding: 1rem 1rem 1rem 2rem;
  }
}
@media only screen and (min-width: 1100px) {
  .p-contB__type07__note {
    bottom: 0;
  }
}
.p-contB__type07__note.-rev {
  right: auto;
  left: 0;
  border-radius: 0 0.8rem 0.8rem 0;
}
.p-contB__type07__note .bl-txt {
  font-weight: 800;
  font-size: 1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__type07__note .bl-txt {
    font-size: 1.3rem;
  }
}
.p-contB__ftr {
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 0 6rem;
  text-align: center;
}
@media only screen and (min-width: 821px) {
  .p-contB__ftr {
    padding: 6rem 0;
  }
}
.p-contB__ftr__cr {
  text-align: center;
  margin-top: 5rem;
  font-size: 1.1rem;
}
@media only screen and (min-width: 821px) {
  .p-contB__ftr__cr {
    font-size: 1.6rem;
  }
}

.pop-modal__detail__h2 .min {
  font-size: 14px;
  display: block;
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail__h2 .min {
    font-size: 18px;
  }
}

.btn-set {
  margin: 0 auto;
  text-align: center;
  display: block;
}

.anb-color {
  color: #02adc1;
}

.c-btn.-kawa {
  color: #02adc1;
  border-color: #02adc1;
}

.pcdis {
  display: block !important;
}

@media (max-width: 768px) {
  .pcdis {
    display: none !important;
  }
}
.pcdis2 {
  display: fixed !important;
}

@media (max-width: 768px) {
  .pcdis {
    display: none !important;
  }
}
.spdis {
  display: none !important;
}

@media (max-width: 768px) {
  .spdis {
    display: block !important;
  }
}
.pop-bg-w .pop_tit {
  font-family: var(--f-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  text-align: center;
}

.pop-bg-w .pop_tit span {
  font-size: 16px;
}

.pop-bg-w .pop_txt {
  font-family: var(--f-jp);
  font-size: 17px;
  margin-bottom: 1rem;
}

.pop-bg-w .pop_txt span {
  background: linear-gradient(transparent 70%, rgba(255, 242, 0, 0.8941176471) 10%);
}

.pop-bg-w .pop-img {
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
}

.pop-bg-w .pop-txtbox {
  width: 100%;
  height: auto;
  margin: 20px auto 0;
  font-family: var(--f-jp);
  font-size: 12px;
  letter-spacing: 0;
  color: #555;
}

.pop-bg-w .pop-txt {
  text-align: justify;
  padding: 0 0.5rem;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em;
}

@media (min-width: 820px) {
  .pop-bg-w .pop-txtbox {
    width: 90%;
    max-width: 760px;
    font-size: 15px;
    margin: 20px auto 0;
  }
}
@media only screen and (min-width: 821px) {
  .pop-modal__detail {
    padding: 5rem 10%;
  }
}
.c-btn, .c-ttl span, bl-txt, .pop-modal__detail__btn, .pop-modal__menu-info__link {
  font-family: "BIZ UDPGothic", sans-serif;
}

/* フッター */
.item_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.item_list .lists {
  width: 100%;
  margin: 0%;
  background-image: linear-gradient(150deg, rgb(63, 76, 137) 20%, rgb(130, 168, 235));
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 46px;
  position: fixed;
  z-index: 201;
  width: 100vw;
  bottom: 0;
  font-family: "BIZ UDPGothic", sans-serif;
}

.item_list .lists:before {
  display: block;
  position: absolute;
  top: 50%;
  right: 3%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: url(../img/icon-arrow-right.svg) no-repeat center/contain;
  content: "";
}

.item_list .lists.half {
  width: 50%;
  margin: 0%;
}

/* .lists.c2{
  background-image: linear-gradient(150deg, rgb(241 154 157) 20%, rgb(244 197 189)); 
    }*/
.lists.c3 {
  background: radial-gradient(ellipse at 50% 50%, rgba(253, 214, 38, 0.75) 0%, rgb(251, 191, 38) 100%), radial-gradient(ellipse at 70% 60%, #f70b85 0%, rgb(224, 205, 96) 90%), radial-gradient(ellipse at 30% 30%, #efd034 0%, rgb(255, 220, 45) 60%);
}

.item_list .lists.c1:before, .item_list .lists.c3:before {
  top: 50%;
  right: 3%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: url(../img/icon-window.svg) no-repeat center/contain;
  content: "";
}

.item_list .lists p {
  color: #fff;
}

@media (max-width: 768px) {
  .item_list {
    /* font-size: 12.5px; */
    /* height: 46px; */
    /* line-height: 1.2; */
  }
  .item_list .lists, .item_list .lists.half {
    width: 100%;
    padding: 3px 0 3px;
  }
  .item_list .lists:before {
    display: block;
    position: absolute;
    top: 50%;
    right: 1%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: url(../img/icon-arrow-right.svg) no-repeat center/contain;
    content: "";
  }
  .item_list .lists.c1:before, .item_list .lists.c3:before {
    width: 12px;
    height: 12px;
    right: 5%;
    transform: translate(-50%, -50%);
    background: url(../img/icon-window.svg) no-repeat center/contain;
    content: "";
    letter-spacing: -1px;
  }
}
.p-fv__logo {
  position: absolute;
  left: 3%;
  width: 22%;
  z-index: 2;
  top: 4vh;
}
@media only screen and (min-width: 821px) {
  .p-fv__logo {
    left: 6.5%;
    width: 10%;
    top: 8vh;
  }
}
.p-fv__logo a {
  transition: opacity linear 0.3s;
}
.p-fv__logo a:hover {
  opacity: 0.7;
}

.p-fv__logo.right {
  right: 2.5%;
  left: auto;
}

span.line {
  background: linear-gradient(transparent 70%, rgba(255, 242, 0, 0.894) 10%);
}

.scroll-in-tag {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.scroll-in-tag.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-in-tag2 {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.scroll-in-tag2.visible {
  opacity: 0.7;
  pointer-events: auto;
}

.animate-after-modal {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.animate-after-modal.fade-in {
  opacity: 1;
}

/*---------- Utility ----------*/
.u-sp {
  display: block;
}
@media only screen and (min-width: 821px) {
  .u-sp {
    display: none;
  }
}

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

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

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

.u-white {
  color: #fff;
}

.u-black {
  color: #231815;
}

.u-orange {
  color: #f3982d;
}

.u-blue {
  color: #00b9ef;
}

.u-tac {
  text-align: center;
}

.u-tar {
  text-align: right !important;
}/*# sourceMappingURL=style_4th.css.map */