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

:root {
  /* color */
  --black: #333;
  --gray: #ababab;
  --white: #fff;
  --main: #23adde;
  --sub: #7e1a27;
  --accent: #006463;
  --red: #e9474d;
  --blue: #001952;
  --yellow: #ffff00;
  --linkBlue: #0175c1;
  /* background */
  --bg-red: #f6f4f1;
  --bg-blue: #f8f9fc;
  /* font */
  --font-gothic: YakuHanJP, "游ゴシック体", "Yu Gothic", "YuGothic",
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-serif: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  --font-roman: "Oswald", sans-serif;
  /* other */
  --shadow: drop-shadow(0 3px 6px rgb(0 0 0 / 0.3));
}

body {
  font-family: var(--font-gothic);
  font-feature-settings: "palt";
  line-height: 1;
  color: var(--black);
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 3.8vw;
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  button {
    cursor: pointer;
  }
}

a {
  color: var(--linkBlue);
  cursor: pointer;
}

.m-serif {
  font-family: var(--font-serif);
}

.inner_wrap {
  background: var(--white);
  padding-bottom: 10vw;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .tb {
    display: none;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* btn arw */
a.has_arw {
  position: relative;
}
.e-arw {
  display: block;
  aspect-ratio: 1 / 1;
  width: 15vw;
  background: url(../images/arw_sp.svg) center center / contain;
  position: absolute;
  z-index: 1;
  right: 4.5vw;
}
@media screen and (max-width: 767px) {
  .reuse__head__r .e-arw {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .reuse__head__r .e-arw {
    width: 4.266666667vw;
    right: 20px;
    background: url(../images/arw.svg) center center / contain;
  }
  .e-arw {
    width: 137px;
    right: 30px;
    background: url(../images/arw.svg) center center / contain;
  }
}
/* btn */
.b-btn a {
  color: var(--white);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f48e93, #e9474d 70%);
}
.b-btn a span:not(.e-arw) {
  filter: drop-shadow(1px 2px 0 rgb(0 0 0 / 0.2));
}

.b-cation {
  display: inline-block;
  line-height: 1.5;
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .b-btn a {
    width: 100%;
    height: 25vw;
    border-radius: 100px;
    box-shadow: 0 7px 0 0 rgba(0, 0, 0, 0.2);
    font-size: 6vw;
  }
  .b-btn a img {
    width: 55.12820513vw;
  }
  .b-cation {
    right: 0;
    font-size: 2.3vw;
    padding: 1vw 1vw 2vw;
  }
}
@media screen and (min-width: 768px) {
  .b-btn a {
    justify-content: center;
    height: 150px;
    padding-left: 0;
    font-size: 3.5rem;
    position: relative;
    transition: all 0.5s;
    border-radius: 100px;
    box-shadow: 0 10px 0 0 rgba(0, 0, 0, 0.2);
  }
  .b-btn a:hover {
    filter: drop-shadow(0 3px 15px rgb(0 0 0 / 0.4));
    transform: scale(1.05, 1.05);
  }
  .b-cation {
    left: 0;
    font-size: 1.1rem;
    padding: 0.5em;
  }
}
@media screen and (min-width: 1230px) {
  .b-cation {
    right: 0;
    left: auto;
  }
}

/* caution */
.e-caution {
  font-size: 3.2vw;
  line-height: 1.87;
}
.e-caution p {
  text-align: justify;
}
.e-caution p .e-mark {
  display: inline-block;
  margin-left: -1em;
}
.e-caution.mv__caution {
  color: var(--red);
}

.e-caution.plan__caution {
  color: var(--red);
}

@media screen and (min-width: 768px) {
  .e-caution {
    font-size: 1.3rem;
  }
  .btnBox__com.e-caution p {
    text-align: center;
    font-size: 1.5rem;
  }
}

/* plan */
.plan__mds_en {
  border-bottom: 1px solid var(--main);
}
.plan__mds_en span {
  display: inline-block;
  width: 39.5vw;
  border-bottom: 7px solid var(--main);
  margin-bottom: -4px;
  padding-bottom: 1em;
}
.plan__ttl {
  color: var(--main);
  line-height: 1.6;
  margin-top: 1.5em;
}
.plan__madori .madori {
  position: relative;
}
.plan__madori .madori .plan__num {
  position: absolute;
  z-index: 1;
  background: url(../images/modal-bg.png) center center / contain;
  filter: drop-shadow(0 0 10px rgb(28 28 28 / 0.5));
  cursor: pointer;
  transform-origin: center center;
  opacity: 0;
}
.plan__madori .madori .plan__num.target.play {
  animation: fade 1s ease-out 1 forwards;
}
@media screen and (max-width: 767px) {
  .plan__ttl {
    font-size: 6.5vw;
  }
  .plan__box span {
    display: block;
    font-size: 6vw;
    margin-top: 2em;
  }
  .plan__madori .madori .plan__num {
    width: 12vw;
  }
}
@media screen and (min-width: 768px) {
  .plan__mds_en span {
    width: 200px;
  }
  .plan__ttls {
    padding-bottom: 60px;
  }
  .plan__ttl {
    font-size: 3.4rem;
  }
  .plan__box span {
    font-size: 1.8rem;
  }
  .plan__madori {
    display: flex;
    justify-content: space-around;
    /*
    background: #fff;
    */
    padding-top: 50px;
  }
  .plan__madori .madori .plan__num {
    width: 12%;
  }
  .plan__madori .madori .plan__num.target.play {
    animation: fade 1s ease-out 1 forwards;
  }
  .plan__madori .madori .m-01 .plan__num.target.play {
    animation-delay: 0s;
  }
  .plan__madori .madori .m-02 .plan__num.target.play {
    animation-delay: 0.3s;
  }
  .plan__madori .madori .m-03 .plan__num.target.play {
    animation-delay: 0.6s;
  }
  .plan__madori .madori .m-04 .plan__num.target.play {
    animation-delay: 0.9s;
  }
  .plan__madori .madori .m-05 .plan__num.target.play {
    animation-delay: 1.2s;
  }
}

.price__box {
  text-align: left;
}
.plan__detail,
.plan__stylecaution {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .price__box .price {
    margin: 15vw auto 8vw;
  }
  .plan__caution {
    margin-top: 3vw;
    text-align: justify;
  }
}
@media screen and (min-width: 768px) {
  .price__box {
    display: flex;
    justify-content: space-between;
  }
  .price__box .price {
    width: 40.88888889%;
  }
  .price__feature {
    width: 50.4%;
  }
  .price__feature picture {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    padding: 3vw 0;
  }
}

.basic .inner.plan__point {
  background: #d7eef4;
  margin-top: 5vw;
}

.basic .plan__point_mds {
  text-align: left;
  font-family: var(--font-serif);
}
.plan_tags {
  display: flex;
  flex-wrap: wrap;
}
.plan_tags button {
  background: var(--white);
  color: var(--main);
  font-family: var(--font-serif);
  font-weight: bold;
  padding: 1em 1.2em 0.85em;
  border-radius: 15px;
  margin-right: 10px;
  box-shadow: 3px 3px 0 #65b4b7;
}
@media screen and (max-width: 767px) {
  .plan_tags {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
  .plan_tags button {
    font-size: 4vw;
    margin-bottom: 10px;
  }

  .basic .inner.plan__point {
    margin-top: 5vw;
  }

  .basic .plan__point_mds {
    padding: 15px 15px 0;
    font-size: 4.5vw;
  }
}
@media screen and (min-width: 768px) {
  .basic .inner.plan__point {
    margin-top: 0;
    display: flex;
    padding: 25px 0;
    border-radius: 100px;
  }

  .basic .plan__point_mds {
    padding: 15px 15px 0 30px;
    font-size: 2rem;
    white-space: nowrap;
  }
  .plan_tags button {
    font-size: 1.7rem;
    transition: all 0.5s;
  }
  .plan_tags button:hover {
    box-shadow: 3px 3px 0 #65b77b, -3px -3px 0 #fff;
    background: #ffff99;
  }
}

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

////////////////keyframes

--------------------------------------------------------------------*/
@keyframes slideup {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseMotion {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgba(0, 157, 151, 0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(3, 3);
    background-color: rgba(0, 157, 151, 0);
  }
}

@keyframes slidein {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideinSub {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomout {
  0% {
    opacity: 0;
    transform: scale(1.1, 1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes b-btn {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}

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

////////////////main

--------------------------------------------------------------------*/
.mv {
}

.mvImgBox {
}

.inner {
}

@media screen and (max-width: 767px) {
  .mv {
    background: #fff url("../images/bg_sp.jpg") top / 100% auto no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    background: #fff url("../images/bg_pc.jpg") top / 100% auto no-repeat;
  }
}

/* rogo+cta */
.reuse__head {
  display: flex;
  justify-content: space-between;
}

.reuse__head__l {
}

.mvElem__logo {
  display: block;
}

.mvElem__logo picture {
  display: flex;
}

.reuse__head__r {
}

.reuse__head__r a {
  background: linear-gradient(135deg, #f48e93, #e9474d 70%);
  color: var(--white);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .reuse__head {
    padding-right: 50px;
  }
  .reuse__head__l {
    width: 43.07692308vw;
    height: 50px;
    padding-left: 3.076923077vw;
  }

  .mvElem__logo {
    width: 100%;
    height: 50px;
  }

  .mvElem__logo picture {
    height: 50px;
  }
  .reuse__head__r {
    width: 37.43589744vw;
    height: 50px;
  }
  .reuse__head__r a {
    height: 50px;
    font-size: 3.846153846vw;
  }
}
@media screen and (min-width: 768px) {
  .reuse__head__l {
    width: 16vw;
    min-width: 280px;
    height: auto;
    padding-left: 1.333333333vw;
  }
  .reuse__head__r {
    width: 23.13333333vw;
    min-width: 300px;
    height: 5.133333333vw;
    margin-top: 2.133333333vw;
    margin-right: 2.8vw;
  }
  .mvElem__logo picture {
    height: 72px;
  }
  .reuse__head__r a {
    width: 23.13333333vw;
    min-width: 300px;
    height: 5.133333333vw;
    font-size: 2.2rem;
    border-radius: 10vw;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.2);
  }
}

/* main */
.reuse__main {
}

.reuse__main__wrapper {
  position: relative;
}

.main__msg {
}

.main__box {
  display: flex;
}

.main__box__l {
}

.main__box__l h1 {
  display: block;
}

.main__box__l div {
}

.main__box__r {
}

.main__gaikan {
  display: block;
}

.main__cation {
  text-align: justify;
  color: var(--red);
  line-height: 1.87;
}

@media screen and (max-width: 767px) {
  .main__msg {
    width: 95vw;
    margin-left: auto;
    margin-right: 0;
    margin-top: 5.641025641vw;
  }
  .main__box {
    flex-wrap: wrap;
  }
  .main__box__l {
    order: 2;
    margin: 5.641025641vw auto 0;
    width: 90vw;
  }
  .main__box__l h1 {
    width: 82.05128205vw;
    margin: 0 auto 5.128205128vw;
  }
  .main__box__l div {
  }
  .main__box__r {
    margin-top: 6.666666667vw;
    order: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .main__gaikan {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }

  .main__cation {
    width: 90vw;
    font-size: 3vw;
    margin: 5.641025641vw auto 10vw;
  }
}
@media screen and (min-width: 768px) {
  .reuse__main__wrapper {
    padding-top: 9vw;
  }
  .main__msg {
    position: absolute;
    top: -0.5vw;
    left: 0;
    width: 100vw;
    text-align: left;
    padding-left: 5.2vw;
  }
  .main__msg img {
    width: 61vw;
  }
  .main__box {
    align-items: flex-end;
  }
  .main__box__l {
    width: 41.33333333vw;
  }
  .main__box__l h1 {
    width: 30.66666667vw;
    margin: 0 auto;
  }
  .main__box__l div {
    width: 30vw;
    margin: 0 auto;
  }
  .main__box__r {
    width: 58.66666667vw;
  }

  .main__cation {
    padding: 2.266666667vw 6vw;
    font-size: 1.3rem;
  }
}

/* mvImgMsg */
.mvImgMsg {
  background: var(--white);
}
@media screen and (max-width: 767px) {
  .mvImgMsg {
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .mvImgMsg img {
    width: 95%;
  }
}
@media screen and (min-width: 768px) {
  .mvImgMsg {
    height: 5.666666667vw;
    padding-left: 6.533333333vw;
    display: flex;
  }
  .mvImgMsg img {
    width: 57.66666667vw;
  }
}

/* roop */
.swiper-roop {
  position: relative;
}
.swiper-roop img {
  height: auto;
}
.swiper-roop .swiper-slide {
  aspect-ratio: 290 / 180;
}
@media screen and (min-width: 768px) {
  .swiper-roop .swiper-slide {
    width: 200px;
    min-width: 200px;
  }
}

/* link- */
.link-pet {
  position: absolute;
  right: 0;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 767px) {
  .link-pet {
    width: 40vw;
  }
}
@media screen and (min-width: 768px) {
  .link-pet {
    width: 22.86666667vw;
    top: -35%;
  }
}

/* caution */
.mv__caution {
  text-align: left;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .mv__caution {
    width: calc(100% - 30px);
    font-size: 3vw;
    margin: auto;
    padding: 1.5em 0 2em;
  }
}
@media screen and (min-width: 768px) {
  .mv__caution {
    width: 73vw;
    padding: 1.333333333vw 0 1.333333333vw 6vw;
  }
}

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

////////////////any_custom

--------------------------------------------------------------------*/
.any__custom {
}
.any__custom__mds {
  color: var(--yellow);
  font-weight: bold;
  line-height: 1.5;
}
.any__custom__com {
  background: var(--yellow);
  font-weight: bold;
  width: 90vw;
}
.any__custom__com a {
  display: inline-block;
  background: var(--white);
  color: var(--main);
  font-weight: bold;
  border: 1px solid var(--main);
}
.any__custom__cau {
  width: 90vw;
  background: var(--white);
  text-align: justify;
  line-height: 1.5;
}
.any__custom__cau p {
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  color: var(--red);
  text-align: center;
  font-weight: bold;
}
.any__custom__cau p strong {
  display: block;
}
.any__custom__cau p small {
}
@media screen and (max-width: 767px) {
  .any__custom {
    padding-top: 8.205128205vw;
    background: linear-gradient(to bottom, #23adde 60%, #fff 40%);
  }
  .any__custom__mds {
    font-size: 5.641025641vw;
  }
  .any__custom__com {
    margin: 3vw auto;
    border-radius: 10px;
    padding: 3.846153846vw;
    font-size: 5vw;
  }
  .any__custom__com a {
    font-size: 7.179487179vw;
    padding: 1.538461538vw 4vw;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 3vw;
  }
  .any__custom__com a:first-of-type {
    margin-right: 2vw;
    padding: 1.538461538vw 6vw;
  }
  .any__custom__cau {
    width: 90vw;
    margin: 0 auto;
    border-radius: 10px;
    padding: 3.846153846vw;
    font-size: 3.5vw;
  }
  .any__custom__cau p {
    padding: 3vw 0;
    margin: 5vw auto;
  }
  .any__custom__cau p strong {
    font-size: 5.128205128vw;
    margin-bottom: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .any__custom {
    padding-top: 1.533333333vw;
    background: linear-gradient(to bottom, #23adde 60%, #fff 40%);
  }
  .any__custom__mds {
    font-size: 3rem;
  }
  .any__custom__com {
    max-width: 750px;
    margin: 1vw auto;
    border-radius: 10px;
    padding: 1.5vw;
    font-size: 2.5rem;
  }
  .any__custom__com a {
    font-size: 2.5rem;
    padding: 0.5vw 2vw;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
    margin-right: 1vw;
  }
  .any__custom__cau {
    max-width: 750px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 2vw;
    font-size: 1.5rem;
  }
  .any__custom__cau p {
    padding: 1.5vw 0;
    margin: 1vw auto;
  }
  .any__custom__cau p strong {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}
.custom .any__custom {
  background: #23adde;
}
.any__custom .custome__mds {
  color: var(--white);
}
.any__custom .custome__mds span {
  display: block;
  font-family: var(--font-roman);
}
@media screen and (max-width: 767px) {
  .custom .any__custom {
    padding-bottom: 15vw;
  }
  .any__custom .custome__mds {
    margin-bottom: 8vw;
  }
  .any__custom .custome__mds span {
    margin-top: 0.8em;
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 768px) {
  .custom .any__custom {
    padding-bottom: 3em;
    padding-top: 5vw;
  }
  .any__custom .custome__mds {
    margin-bottom: 0.8em;
  }
  .any__custom .custome__mds span {
    margin-top: 0.8em;
    font-size: 2rem;
  }
}
.any__custom__pit {
  color: var(--white);
  font-weight: bold;
  line-height: 1.5;
}
.any__custom__pit picture {
  width: 90vw;
}
@media screen and (max-width: 767px) {
  .any__custom__pit {
    font-size: 4.5vw;
    margin-top: 5vw;
  }
  .any__custom__pit picture {
    width: 90vw;
    margin: 3vw auto 0;
  }
}
@media screen and (min-width: 768px) {
  .any__custom__pit {
    font-size: 2rem;
    margin-top: 3vw;
  }
  .any__custom__pit picture {
    max-width: 1120px;
    margin: 1.5vw auto 0;
  }
}

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

////////////////menu

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

#js-spNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100dvw;
  height: 100dvh;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: 0.8s all;
}
#js-spNav.open {
  opacity: 1;
  visibility: visible;
}
#js-spNav ul {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#js-spNav li {
  border-top: 1px solid #bdbbb3;
}
#js-spNav li:nth-of-type(n + 7) {
  border-bottom: 1px solid #bdbbb3;
}
#js-spNav a {
  display: block;
  text-align: left;
  color: var(--black);
  padding: 1.5em 1em;
  font-size: 4.186vw;
}
#js-menu {
  position: fixed;
  display: block;
  aspect-ratio: 1/1;
  z-index: 9000;
}
#js-menu.close {
  position: fixed;
  background: url(../images/menu-close.svg) center center / contain no-repeat;
  z-index: 9000;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  #js-spNav ul {
    width: 80%;
    margin-top: 100px;
  }
  #js-spNav li {
    width: calc((100% - 50px) / 2);
  }
  #js-spNav a {
    font-size: 1.8rem;
  }
  #js-menu {
    top: 20px;
    right: 20px;
    opacity: 0;
    width: 70px;
    background: url(../images/menu.svg) center center / contain no-repeat;
    filter: drop-shadow(0 0 5px rgb(0 0 0 / 0.4));
    pointer-events: none;
  }
  #js-menu.target.play {
    animation: fade 0.5s ease-out 1 forwards;
    cursor: pointer;
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  #js-spNav ul {
    width: calc(100% - 30px);
    margin-top: 18vw;
  }
  #js-spNav li {
    width: calc((100% - 20px) / 2);
  }
  #js-menu {
    width: 50px;
    top: 0;
    right: 0;
    background: #fff url(../images/menu.svg) center center / contain no-repeat;
  }
}

body.clip {
  position: fixed;
  width: 100%;
}

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

////////////////pagenav

--------------------------------------------------------------------*/
.b-pageNav {
}
.b-pageNav ul {
  display: flex;
}
.b-pageNav ul li {
  position: relative;
}
.b-pageNav ul li a {
  display: block;
  font-weight: bold;
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .b-pageNav {
    padding: 10vw 5vw;
    margin: 0 auto 10vw;
  }
  .e-mds {
    width: 50vw;
    margin: 0 auto 5vw;
  }
  .b-pageNav ul {
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 3.5vw;
  }
  .b-pageNav ul li {
    width: calc((100% - 2vw) / 2);
    border-top: 1px solid #ccc;
  }
  .b-pageNav ul li:nth-of-type(n + 6) {
    border-bottom: 1px solid #ccc;
  }
  .b-pageNav ul li a {
    padding: 5vw 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .b-pageNav {
    width: 90vw;
    margin: 0 auto 10vw;
  }
  .e-mds {
    width: 30vw;
    margin: 0 auto 1.5vw;
    padding-top: 5vw;
  }
  .b-pageNav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 2rem;
  }
  .b-pageNav ul li {
    width: calc((100% - 4vw) / 3);
    border-top: 1px solid #ccc;
    margin-right: 2vw;
  }
  .b-pageNav ul li:nth-of-type(n + 6) {
    border-bottom: 1px solid #ccc;
  }
  .b-pageNav ul li:nth-of-type(3n) {
    margin-right: 0;
  }
  .b-pageNav ul li a {
    padding: 1.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .b-pageNav {
    display: flex;
    flex-wrap: nowrap;
    width: 90vw;
    margin: 0 auto 10vw;
    max-width: 1200px;
  }
  .e-mds {
    width: 30vw;
    max-width: 180px;
    margin-right: 2vw;
  }
  .b-pageNav ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-size: 1.5rem;
    width: 100%;
  }

  .b-pageNav ul li {
    display: flex;
    align-items: center;
  }

  .b-pageNav ul li a {
    text-decoration: underline;
  }
}

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

////////////////top point1

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

.top_point1 {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

@media screen and (max-width: 767px) {
  .btnGroup__entry.m-top {
    width: calc(100% - 30px);
  }
  .top_point1 {
    width: calc(100% - 30px);
    margin: 8vw auto 18vw;
    padding: 2.5vw 0;
  }
}

@media screen and (min-width: 768px) {
  .top_point1 {
    width: min(80%, 719px);
    margin: 40px auto 100px;
  }
}

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

////////////////basic

--------------------------------------------------------------------*/
.basic {
  padding: 18vw 0;
  border-top: 1px solid #ececec;
}
.basic .inner {
  width: calc(100% - 30px);
  margin: auto;
}
.basic__mds_box span {
  display: block;
  font-family: var(--font-roman);
  color: #887b52;
  margin-top: 0.8em;
}
.basic__mds {
  font-size: 8.8vw;
}
.basic .plan__ttls {
  text-align: left;
  position: relative;
}
.basic .plan__btn {
  display: block;
  position: absolute;
  border-radius: 20px;
  filter: var(--shadow);
}
.basic .price__box .price {
  text-align: center;
  color: var(--main);
  font-size: 5.5vw;
  text-align: justify;
}
.basic .price__box .price p {
  margin-bottom: 0.8em;
}

@media screen and (max-width: 767px) {
  .price {
    background: var(--white);
    padding: 5vw;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  }
  .basic__mds_box span {
    font-size: 4.8vw;
  }
  .basic__mds_box p {
    font-size: 5vw;
    line-height: 1.5;
    margin-top: 1em;
  }
  .basic .plan__ttls {
    margin-top: 15vw;
  }
  .basic .plan__btn {
    top: 0;
    transform: translateY(-30%);
    right: 0;
    width: 30vw;
  }
  /*
  .basic .plan__madori .plan__box:nth-child(3) {
    width: 40%;
    margin-left: auto;
    margin-right: 3%;
  }
  .basic .plan__madori .plan__box:nth-child(3) span {
    width: 100vw;
    margin-left: -30px;
    transform: translateX(-50vw);
  }
  .basic .inner.plan__madori {
    position: relative;
  }
  .basic .inner.plan__madori::after {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: min(13vw, 55px);
    background: url(../images/north.svg) center center / contain no-repeat;
    position: absolute;
    z-index: 1;
    bottom: 5vw;
    left: 1vw;
  }
    */
}
@media screen and (min-width: 768px) {
  .basic {
    padding: 100px 0 0;
  }
  .basic .inner {
    width: 90%;
    max-width: 1120px;
  }
  .basic .inner.plan__madori {
    width: 90%;
    max-width: 1600px;
  }
  .basic__mds_box {
    margin-bottom: 120px;
  }
  .basic__mds {
    font-size: 4.6rem;
  }
  .basic__mds_box span {
    font-size: 2.2rem;
  }
  .basic .plan__ttls {
    margin-top: 80px;
  }
  .basic .plan__btn {
    bottom: 0;
    transform: translateY(-50%);
    right: 0;
    width: 35%;
  }
  .basic .price__box .price {
    font-size: min(2.4vw, 2.6rem);
  }
  .basic .plan__madori .plan__box {
    max-width: 450px;
    position: relative;
  }
  /*
  .basic .plan__madori .plan__box:nth-child(3) {
    max-width: 180px;
  }
  */
}

.basic .m-01 .plan__num {
  top: 62.6344086%;
  left: 36.44444444%;
}
.basic .m-02 .plan__num {
  top: 32.79569892%;
  left: 22.44444444%;
}
.basic .m-03 .plan__num {
  top: 51.34328358%;
  left: 66%;
}
.basic .m-04 .plan__num {
  top: 62.08955224%;
  left: 32%;
}
.basic .m-05 .plan__num {
  top: 62.81407035%;
  left: 38.22222222%;
}
@media screen and (min-width: 768px) {
  .basic .m-05 .plan__num {
    left: 25%;
  }
}

.basic__caution {
  width: calc(100% - 30px);
  margin: 5vw auto 0;
  padding: 0 0 2.5em;
  color: var(--red);
  text-align: justify;
  font-size: 3.2vw;
  line-height: 1.87;
}
@media screen and (min-width: 768px) {
  .basic__caution {
    text-align: center;
    font-size: 1.3rem;
    width: 100%;
    margin: 10px auto 50px;
  }
}

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

////////////////custom

--------------------------------------------------------------------*/
.custom {
  padding-bottom: 18vw;
}
.custom .inner {
  margin: auto;
  background: #f5f2e8;
}
.custom__mds_box {
  color: var(--white);
}
.custom__mds_box span {
  display: block;
  font-family: var(--font-roman);
  color: #f4e9cb;
  margin-top: 1em;
}
.custome__mds,
.custom__mds_box p {
  font-weight: bold;
}
.custome__mds {
  font-size: 8.8vw;
}
.custom__mds_box p {
  color: #fff144;
}
.custom .plan__ttls {
  text-align: left;
  padding-top: 5vw;
}

.custom__style .plan__stylecaution {
  text-align: left;
  line-height: 1.875;
}
.custom__style .plan__stylecaution em {
  background: #f8de96;
  margin-right: 0.3em;
  margin-left: 0.1em;
  padding-left: 0.3em;
}
.custom__point2 {
  filter: var(--shadow);
}
.custom .inner.plan__point {
  background: var(--white);
}
.custom .plan__point_mds {
  text-align: left;
  font-family: var(--font-serif);
}
.custom .plan_tags button {
  background: #fce8df;
}
@media screen and (max-width: 767px) {
  .custom .inner {
    padding: 10vw 15px;
  }
  .custom__mds_box {
    padding-top: 11vw;
    aspect-ratio: 43 /27;
    background: url(../images/custom_mds_sp.png) center top / contain;
    margin-bottom: 5vw;
  }
  .custom__mds_box span {
    font-size: 4.8vw;
  }
  .custom__mds_box p {
    font-size: 5vw;
    line-height: 1.5;
    margin-top: 1em;
  }
  .custom__point2 {
    margin: 12vw auto 6vw;
  }
  /*
  .custom .plan__madori .plan__box:nth-of-type(2) {
    position: relative;
  }
  .custom .plan__madori .plan__box:nth-of-type(2)::after {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: min(13vw, 55px);
    background: url(../images/north.svg) center center / contain no-repeat;
    position: absolute;
    z-index: 1;
    bottom: 2vw;
    left: 1vw;
  }
    */
  .custom .inner.plan__point {
    margin-top: 5vw;
  }
  .custom .plan__point_mds {
    padding: 15px 15px 0;
    font-size: 4.5vw;
  }
}
@media screen and (min-width: 768px) {
  .custom {
    padding-bottom: 100px;
  }
  .custom .inner.plan__madori {
    max-width: 1600px;
  }
  .custom__mds_box {
    background: var(--sub);
    position: relative;
    margin-bottom: 63px;
  }
  .custom__mds_box::after {
    content: "";
    display: block;
    aspect-ratio: 1120 / 303;
    width: 100%;
    max-width: 1120px;
    background: url(../images/custom_mds_pc.png) center top / contain;
    position: absolute;
    left: 50%;
    top: 0;
    /*
    bottom: -63px;
    */
    transform: translateX(-50%);
  }
  .custom__mds_box .inner {
    position: relative;
    z-index: 1;
    padding-top: min(50px);
    padding-bottom: min(50px);
  }
  .custome__mds {
    font-size: 4.6rem;
  }
  .custom__mds_box span {
    font-size: 2.2rem;
  }
  .custom__mds_box p {
    font-size: 2.4rem;
    margin-top: min(30px);
  }
  .custom .plan__ttls {
    padding-top: 30px;
  }
  .custom .plan__madori .plan__box {
    max-width: 450px;
    position: relative;
  }
  .custom__style {
    display: flex;
    margin-top: 100px !important;
  }
  .custom__style .plan__stylecaution {
    width: min(600px);
    min-width: min(58%, 600px);
    margin-left: 40px;
  }
  .custom .inner.plan__point {
    margin-top: 0;
    display: flex;
    padding: 25px;
    justify-content: flex-end;
    margin-bottom: 20px;
    border-radius: 100px;
  }
  .custom .plan__point_mds {
    padding: 15px 15px 0;
    font-size: 2rem;
    white-space: nowrap;
  }
  .custom .inner.plan_tags {
    width: auto;
    max-width: none;
    margin: 0;
  }
  .custom .plan_tags button {
    font-size: 1.7rem;
    transition: all 0.5s;
  }

  .custom .plan_tags button:hover {
    box-shadow: -3px -3px 0 #fce8df, 3px 3px 0 #b77165;
    background: #fff;
  }
}

#custom1 .m-01 .plan__num {
  top: 1.928374656%;
  left: 61.11111111%;
}
#custom1 .m-02 .plan__num {
  top: 60.05509642%;
  left: 46.22222222%;
}
#custom1 .m-03 .plan__num {
  top: 39.1184573%;
  left: 34.22222222%;
}
#custom1 .m-04 .plan__num {
  top: 12.22826087%;
  left: 84.22222222%;
}
#custom1 .m-05 .plan__num {
  top: 53.80434783%;
  left: 20.88888889%;
}

#hiraya .m-01 .plan__num {
  top: 41.43646409%;
  left: 23.55555556%;
}
#hiraya .m-02 .plan__num {
  top: 3.038674033%;
  left: 79.33333333%;
}
#hiraya .m-03 .plan__num {
  top: 79.00552486%;
  left: 64.88888889%;
}

/*-- 改造プラン複数掲載 --*/
.custom__box {
}
.custom__box#hiraya {
  border-top: 20px solid var(--white);
}
.custom_mds {
  font-family: var(--font-serif);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .custom_mds {
    margin-top: 5.5vw;
    text-align: left;
    font-size: 6.8vw;
  }
}
@media screen and (min-width: 768px) {
  .custom__box .plan__madori {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* background: #fff; */
    padding-top: 50px;
  }
  .custom__box div:first-of-type {
    width: 100%;
  }
  .custom__box div:first-of-type h3 {
    max-width: 660px;
    margin: 0 auto;
  }
  .custom__box div:first-of-type .plan__caution {
    max-width: 660px;
    margin: 2vw auto;
    text-align: justify;
  }
  .custom_mds {
    font-size: 3rem;
    margin-bottom: 3vw;
  }
}
/*--------------------------------------------------------------------

////////////////collection

--------------------------------------------------------------------*/
.collection {
  background: var(--black);
  color: var(--white);
  padding: 18vw 0;
}
.collection__mds {
  width: 55.81vw;
  margin: auto;
  margin-bottom: 10vw;
}
.collection .inner {
  width: 90vw;
  margin: auto;
}
.collection .e-caution {
  text-align: left;
  margin-top: 1em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .collection {
    margin-top: 15vw;
  }
  .collection__pc {
    display: none;
  }
  .collection .inner1,
  .collection .inner2 {
    display: flex;
  }
  .collection .inner1 {
    margin-bottom: 0.7vw;
  }
  .collection .inner1 .left {
    margin-right: 0.7vw;
  }
  .collection .inner1 .right .m-02 {
    margin-bottom: 0.7vw;
  }
  .collection .inner2 {
    justify-content: space-between;
  }
  .collection .inner2 .e-item {
    width: calc((100% - 0.7vw) / 2);
  }
  .collection + .btnGroup__entry {
    padding: 18vw 0 0;
  }
  .collection + .btnGroup__entry + .b-movie {
    padding-bottom: 18vw;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .collection {
    margin-top: 10vw;
    padding: 100px 0;
  }
  .collection__mds {
    width: 240px;
    margin-bottom: 50px;
  }
  .collection .inner {
    width: 90%;
    max-width: 1120px;
  }
  .collection__sp {
    display: none;
  }
  .collection + .btnGroup__entry {
    padding: 100px 0 0;
  }
  .collection + .btnGroup__entry + .b-movie {
    padding-bottom: 150px;
    margin-bottom: 0;
  }
  .collection .e-caution p {
    display: inline-block;
  }
}

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

////////////////reuseheim

--------------------------------------------------------------------*/
.reuseheim {
  background: rgb(166 186 169 / 0.3);
  padding: 18vw 0;
  position: relative;
}
.reuseheim::before {
  content: "";
  display: block;
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  background: url(../images/about_bg_sp.jpg) center center / cover;
}
.webp .reuseheim::before {
  background-image: url(../images/about_bg_sp.webp);
}
.reuseheim__mds {
  width: 95%;
  margin: auto;
  padding: 10vw 0 7vw;
}
.reuseheim .inner {
  width: calc(100% - 30px);
  margin: auto;
  background: #fff;
  padding: 0 6vw 6vw;
}
.reuseheim .b-img {
  margin-top: 5vw;
}
.reuseheim .b-img2 {
  margin-top: 10vw;
}
.reuseheim p {
  line-height: 1.66;
}
@media screen and (max-width: 767px) {
  .reuseheim p {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .reuseheim::before {
    background-image: url(../images/about_bg_pc.jpg);
  }
  .webp .reuseheim::before {
    background-image: url(../images/about_bg_pc.webp);
  }
  .reuseheim {
    padding: 100px 0;
  }
  .reuseheim .inner {
    width: 90%;
    max-width: 1120px;
    padding: 0 70px 70px;
  }
  .reuseheim__mds {
    width: 383px;
    padding: 90px 0 30px;
  }
  .reuseheim .b-img {
    margin-top: 35px;
  }
  .reuseheim .b-img2 {
    margin-top: 90px;
  }
}

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

////////////////UNIT

--------------------------------------------------------------------*/
.unit {
  padding: 18vw 0;
  text-align: left;
  border-bottom: 1px solid #ececec;
}
.unit__mds {
  width: 85.6%;
  max-width: 486px;
  margin: auto;
  margin-bottom: 10vw;
}
.unit__lead {
  color: var(--blue);
  text-align: center;
  line-height: 1.82;
  font-size: 5.11vw;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.b-unitContent .b-txts {
  width: calc(100% - 30px);
  margin: auto;
}
.unit__ttl {
  color: var(--blue);
  font-weight: bold;
  text-align: center;
  font-size: 4.1vw;
  line-height: 2.6;
  margin: 7vw auto 4.5vw;
}
.unit__ttl span {
  display: inline-block;
  border-bottom: 5px solid #d8c9ac;
  line-height: 1.5;
  padding: 0 0.3em;
}
.unit__text {
  line-height: 1.89;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .unit {
    padding: 100px 0;
  }
  .unit__mds {
    margin-bottom: 40px;
  }
  .unit__lead {
    font-size: 3.2rem;
    line-height: 1.46;
  }
  .b-unitContent .b-txts {
    width: 90%;
    max-width: 950px;
  }
  .unit__ttl {
    font-size: 2.3rem;
    margin: 50px auto 25px;
  }
  .unit__text {
    font-size: 1.8rem;
    padding: 0 2.2em;
  }
  .b-unitContent .b-panels {
    max-width: 1120px;
  }
}

.b-unitContent .b-panels {
  width: calc(100% - 90px);
  margin: auto;
}
.b-unitContent dt {
  margin-bottom: 0.9em;
  text-align: center;
  font-weight: bold;
  color: var(--blue);
  position: relative;
  letter-spacing: 0.1em;
}
.b-unitContent dt::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  margin: 0 auto 0.8em;
  background-size: contain;
}
.b-unitContent .b-item:nth-child(1) dt::before {
  background-image: url(../images/unit_num01.svg);
}
.b-unitContent .b-item:nth-child(2) dt::before {
  background-image: url(../images/unit_num02.svg);
}
.b-unitContent .b-item:nth-child(3) dt::before {
  background-image: url(../images/unit_num03.svg);
}
.b-unitContent dd {
  background: var(--blue);
  color: #fff;
  line-height: 1.875;
  filter: var(--shadow);
}

.b-unitContent .b-panels {
  position: relative;
}
.b-unitContent .b-panels::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: var(--bg-blue);
  position: absolute;
  top: 50%;
  left: 50%;
}
.b-unitContent .b-item {
  position: relative;
  z-index: 1;
}
.b-unitContent picture {
  position: relative;
}
.b-unitContent picture::before {
  content: "image";
  font-size: 0.7em;
  position: absolute;
  right: 0.8em;
  bottom: 0.1em;
}
.b-unitContent figcaption {
  padding: 2em;
  text-align: justify;
}
.b-unitContent .b-item:nth-child(3) picture::before {
  content: "2022年2月撮影";
}
@media screen and (min-width: 768px) {
  .b-unitContent .b-panels {
    width: 90%;
    max-width: 1120px;
    margin-top: 80px;
  }
  .b-unitContent dt::before {
    width: 55px;
  }
  .b-unitContent .b-item {
    width: 450px;
    margin: auto;
  }
  .b-unitContent dt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1000px) {
  .b-unitContent .b-panels::before {
    height: 90%;
    transform: translate(-50vw, -47%) skewy(25deg);
  }
}
@media screen and (max-width: 767px) {
  .b-unitContent .b-panels {
    margin-top: 80px;
  }
  .b-unitContent .b-panels::before {
    height: 87%;
    transform: translate(-50vw, -50%) skewy(35deg);
  }
  .b-unitContent dt::before {
    width: 10.23vw;
  }
  .b-unitContent .b-item {
    margin: auto;
  }
  .b-unitContent .b-item + .b-item {
    margin-top: 10vw;
  }
  .b-unitContent dt {
    font-size: 6.5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .b-unitContent .b-item + .b-item {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .b-unitContent .b-panels {
    display: flex;
    justify-content: space-between;
  }
  .b-unitContent .b-panels::before {
    height: 72%;
    transform: translate(-50vw, -47%) skewy(12deg);
  }
  .b-unitContent .b-item {
    width: calc(91% / 3);
  }
  .b-unitContent dl:nth-of-type(1) {
    margin-top: 0;
  }
  .b-unitContent dl:nth-of-type(2) {
    margin-top: 84px;
  }
  .b-unitContent dl:nth-of-type(3) {
    margin-top: 168px;
  }
  .b-unitContent dd {
    min-height: 440px;
  }
}

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

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

.qa {
  padding: 18vw 0;
  text-align: left;
}

.qa__mds {
  margin-bottom: 10vw;
  text-align: center;
  font-size: 6.3vw;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.qa__box {
  width: calc(100% - 30px);
  max-width: 1050px;
  margin: auto;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 5px;
  filter: drop-shadow(0 5px 10px rgb(0 0 0 / 0.05));
}
.qa__box__q {
  color: var(--blue);
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.8em;
  margin-bottom: 0.8em;
}
.qa__box__q,
.qa__box__a em {
  line-height: 1.5;
}
.qa__box__a p {
  line-height: 1.67;
}
.qa__box__a em {
  color: var(--red);
  margin-bottom: 0.5em;
}
.qa__box__q,
.qa__box__a em {
  display: block;
  position: relative;
  font-family: var(--font-serif);
  font-weight: bold;
}
.qa__box__q::before,
.qa__box__a em::before {
  content: "";
  display: block;
  aspect-ratio: 1/ 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -0.15em;
  left: 0;
}
.qa__box:nth-of-type(1) .qa__box__q::before {
  background-image: url(../images/faq_q1.png);
}
.qa__box:nth-of-type(2) .qa__box__q::before {
  background-image: url(../images/faq_q2.png);
}
.qa__box:nth-of-type(3) .qa__box__q::before {
  background-image: url(../images/faq_q3.png);
}
.qa__box .qa__box__a em::before {
  background-image: url(../images/faq_qa.png);
}
.qa__cau {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .qa__box {
    padding: max(6.98vw, 30px);
  }
  .qa__box + .qa__box {
    margin-top: 30px;
  }
  .qa__box__q,
  .qa__box__a em {
    font-size: 4.8vw;
  }
  .qa__box__q,
  .qa__box__a em {
    padding-left: min(16.28vw, 70px);
  }
  .qa__box__q::before,
  .qa__box__a em::before {
    width: 8.8vw;
  }
  .qa__cau {
    font-size: 3.5vw;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .qa {
    padding: 100px 0;
  }
  .qa__mds {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .qa__box {
    width: 90%;
    padding: 30px;
  }
  .qa__box + .qa__box {
    margin-top: 40px;
  }
  .qa__box__q,
  .qa__box__a em {
    font-size: 2.2rem;
  }
  .qa__box__q,
  .qa__box__a em,
  .qa__box__a p {
    padding-left: 70px;
  }
  .qa__box__q::before,
  .qa__box__a em::before {
    width: 36px;
  }
  .qa__cau {
    width: 90%;
    max-width: 1050px;
    margin: 30px auto 0;
    text-align: right;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .qa__mds {
    font-size: 3.5rem;
  }
}
/*--------------------------------------------------------------------

////////////////MAIN

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

.schedule {
  padding: 18vw 0;
  background: var(--bg-blue);
  text-align: left;
}

.schedule__mds {
  margin-bottom: 10vw;
  text-align: center;
  font-size: 6.3vw;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.schedule .content-area {
  max-width: 1120px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .schedule .content-area {
    width: calc(100% - 15px);
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .schedule {
    padding: 100px 0;
  }
  .schedule__mds {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .schedule .content-area {
    width: 90%;
  }
}

@media screen and (min-width: 1024px) {
  .schedule__mds {
    font-size: 3.5rem;
  }
}

.schedule__box {
  margin: auto;
}

@media screen and (max-width: 767px) {
  .schedule__box {
    width: calc(100% - 30px);
    border: 1px solid #ececec;
    border-radius: 5px;
    filter: drop-shadow(0 5px 10px rgb(0 0 0 / 0.05));
    margin-bottom: 10vw;
  }
}

@media screen and (min-width: 768px) {
  .schedule__box {
    width: calc(100% - 30px);
    max-width: 1100px;
    filter: drop-shadow(0 5px 10px rgb(0 0 0 / 0.3));
  }
}

/* flow */
.schedule .b-flow .b-item {
  line-height: 1.5;
}
.schedule .b-flow .b-item dt {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: 0.8em;
}
.schedule .b-flow em {
  display: block;
  color: var(--red);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.3em;
}
.schedule .b-flow em small {
  display: block;
}
@media screen and (max-width: 1000px) {
  .schedule .b-flow .b-item {
    position: relative;
  }
  .schedule .b-flow .b-item:not(:last-child)::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #bdbbb3;
    position: absolute;
  }
  .schedule .b-flow .b-item dt {
    line-height: 1;
    padding: 1em 0;
    background: linear-gradient(0, #cccde0, #f8f9fc);
    position: relative;
  }
  .schedule .b-flow .b-item dt br,
  .schedule .b-flow .b-item em br {
    display: none;
  }
  /* icon */
  .schedule .b-flow .b-item dt::before {
    content: "";
    display: block;
    aspect-ratio: 1/1;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .schedule .b-flow .b-item:nth-child(1) dt::before {
    background-image: url(../images/flow_01.svg);
  }
  .schedule .b-flow .b-item:nth-child(2) dt::before {
    background-image: url(../images/flow_02.svg);
  }
  .schedule .b-flow .b-item:nth-child(3) dt::before {
    background-image: url(../images/flow_03.svg);
  }
  .schedule .b-flow .b-item:nth-child(4) dt::before {
    background-image: url(../images/flow_04.svg);
  }
  .schedule .b-flow .b-item:nth-child(5) dt::before {
    background-image: url(../images/flow_05.svg);
  }
  .schedule .b-flow .b-item:nth-child(6) dt::before {
    background-image: url(../images/flow_06.svg);
  }
}
@media screen and (max-width: 767px) {
  .schedule .b-flow .b-item:not(:last-child) {
    min-height: 40vw;
  }
  .schedule .b-flow .b-item::before {
    left: 12vw;
  }
  .schedule .b-flow .b-item dt {
    margin-left: 12vw;
    padding: 1.2em 1em 1.2em 15vw;
    font-size: 4.2vw;
  }
  .schedule .b-flow .b-item dt::before {
    width: 24vw;
    left: -12vw;
  }
  .schedule .b-flow .b-item dd {
    padding-left: 27vw;
    padding-bottom: 2em;
  }
  .schedule .b-flow .b-item dd,
  .schedule .content-area .e-caution {
    padding-right: 1em;
  }
  .schedule .b-flow .b-item em {
    font-size: 4.8vw;
  }
  .schedule .b-flow em small {
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .schedule .b-flow .b-item {
    min-height: 130px;
  }
  .schedule .b-flow .b-item::before {
    left: 50px;
  }
  .schedule .b-flow .b-item dt {
    margin-left: 50px;
    padding-left: 65px;
  }
  .schedule .b-flow .b-item dt::before {
    width: 100px;
    left: -50px;
  }
  .schedule .b-flow .b-item dd {
    padding-left: 115px;
    padding-bottom: 2em;
  }
  .schedule .content-area .e-caution {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .schedule .b-flow .b-item dt {
    font-size: 1.8rem;
  }
  .schedule .b-flow .b-item em {
    font-size: 2rem;
  }
  .schedule .b-flow em small {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1001px) {
  .schedule .content-area::before {
    content: "";
    display: block;
    aspect-ratio: 1120 / 220;
    width: 100%;
    background: url(../images/flow_pc.png) left top / contain no-repeat;
  }
  .schedule .b-flow {
    display: flex;
    margin-bottom: 35px;
  }
  .schedule .b-flow .b-item {
    width: calc(100% / 6);
  }
  .schedule .b-flow .b-item dt {
    aspect-ratio: 182 / 88;
    margin-top: -50%;
    justify-content: center;
    font-size: min(1.6vw, 1.8rem);
  }
  .schedule .b-flow dd {
    padding: 0 0.5em;
    font-size: min(1.2vw, 1.6rem);
  }
  .schedule .b-flow em {
    font-size: min(1.5vw, 2rem);
  }
  /*
  .schedule .b-flow .b-item:nth-child(2) em,
  .schedule .b-flow .b-item:nth-child(3) dd {
    text-align: center;
  }
    */
  .schedule .b-flow .b-item:nth-child(2) dt,
  .schedule .b-flow .b-item:nth-child(3) dt {
    padding-left: 1em;
  }
  .schedule .b-flow .b-item:nth-child(6) dt {
    transform: translateX(-0.4em);
  }
  .schedule .b-flow .b-item:nth-child(6) em {
    text-align: center;
    padding-right: 1em;
  }
}

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

////////////////MAIN

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

.important {
  padding: 18vw 0;
}

.important__mds {
  text-align: center;
  font-size: 6.3vw;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.important__mds small {
  color: var(--red);
  display: block;
  font-size: 4.3vw;
}

.important__box {
  width: calc(100% - 30px);
  margin: 5vw auto;
}

.impBox {
  font-size: 3.8vw;
  text-align: justify;
  margin: 0 auto 5vw;
  line-height: 1.5;
  letter-spacing: -0.5px;
}

.impBox em {
  color: #ff0000;
}

.impBox sub {
  font-size: 70%;
}

@media screen and (min-width: 768px) {
  .important {
    padding: 100px 0;
  }
  .important__mds {
    font-size: 3rem;
  }

  .important__mds small {
    font-size: 2rem;
  }

  .important__box {
    width: 90%;
    max-width: 960px;
    margin: 35px auto 95px;
  }

  .impBox {
    font-size: 15px;
    line-height: 2;
    margin: 0 auto 50px;
  }
}

@media screen and (min-width: 1024px) {
  .important__mds {
    font-size: 3.5rem;
  }
}

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

////////////////WEB

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

.btnGroup {
  padding: 18vw 15px;
  background: linear-gradient(155deg, #0075c2, #2ad8ff);
}
.btnGroup__entry,
.btnGroup__exh {
  margin: auto;
}
.btnBox__btnlimit {
  margin: auto;
  margin-bottom: 3.58974359vw;
  width: 56.66666667vw;
}
.btnGroup__exh {
  margin-top: 20vw;
}
.btnGroup__entry .btnBox__com {
  line-height: 1.87;
  text-align: left;
  margin-top: 1.2em;
}
.btnGroup .btnGroup__entry .btnBox__com {
  color: var(--white);
}
.btnBox__btnExh {
  display: block;
  aspect-ratio: 720 / 400;
  background: url(../images/bnr_ft.png) center center / contain;
  font-family: var(--font-serif);
  color: var(--black);
  font-weight: bold;
  position: relative;
  top: 0;
  filter: var(--shadow);
  transition: 0.3s all;
}
.btnGroup__exh__mds {
  color: var(--white);
  font-size: 6.51vw;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 7vw;
  position: relative;
}
.btnGroup__exh__mds::before,
.btnGroup__exh__mds::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  width: 1px;
  height: 3.5em;
  background-color: var(--white);
}
.btnGroup__exh__mds::before {
  left: 1.4em;
  transform: rotate(-35deg);
}
.btnGroup__exh__mds::after {
  right: 1.4em;
  transform: rotate(35deg);
}

.btnBox__btnExh__mds {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 5vw;
  bottom: 0.8em;
}
.btnBox__btnExh .e-arw {
  background-image: url(../images/arw2.svg);
}

@media screen and (max-width: 767px) {
  .btnBox__btnExh .e-arw {
    width: 14vw;
    background-position: right;
    background-size: 140%;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .btnGroup {
    padding: 80px 0;
  }
  .btnGroup__entry {
    width: min(80%, 950px);
  }
  .btnBox__btnlimit {
    max-width: 580px;
    margin-top: 75px;
    margin-bottom: 25px;
  }
  .btnGroup__exh__mds {
    font-size: 3.4rem;
    margin-bottom: 45px;
  }
  .btnGroup__exh__mds::before,
  .btnGroup__exh__mds::after {
    height: 1.5em;
    bottom: -0.1em;
  }
  .btnGroup__exh__mds::before {
    left: 0.8em;
    transform: rotate(-45deg);
  }
  .btnGroup__exh__mds::after {
    right: 0.8em;
    transform: rotate(45deg);
  }
  .btnGroup__exh {
    width: min(80%, 720px);
    margin-top: 80px;
  }
  .btnBox__btnExh__mds {
    font-size: 2.8rem;
    bottom: 1.3em;
  }
  .btnBox__btnExh:hover {
    top: -8px;
  }
  .btnBox__btnExh .e-arw {
    bottom: -0.85em;
  }
}

@media screen and (max-width: 767px) {
  .btnGroup .b-btn a {
    width: 100%;
    height: 25vw;
    background: #ffe402;
    border-radius: 100px;
    box-shadow: 0 7px 0 0 rgba(0, 0, 0, 0.2);
    color: var(--black);
  }
}

@media screen and (min-width: 768px) {
  .btnGroup .b-btn a {
    background: #ffe402;
    color: var(--black);
  }
}

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

////////////////中部 inq

--------------------------------------------------------------------*/
.inq {
  color: var(--white);
  background: var(--black);
}

.inq__ttl {
  color: var(--white);
  font-weight: bold;
}

.inq__link {
  width: 90%;
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: bold;
}

.inq__cau {
  width: 90%;
  margin: 1.5em auto;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .inq {
    padding: 15vw 5vw;
  }

  .inq__ttl {
    font-size: 5vw;
  }

  .inq__link {
    font-size: 4.5vw;
    border-radius: 25px;
    height: 50px;
    margin: 1.5em auto;
  }

  .inq__cau {
    font-size: 3.5vw;
  }
}

@media screen and (min-width: 768px) {
  .inq {
    padding: 60px 0;
  }

  .inq__ttl {
    font-size: 3.2rem;
  }

  .inq__link {
    width: min(80%, 550px);
    font-size: 2.8rem;
    border-radius: 35px;
    height: 70px;
    margin: 1.2em auto;
  }

  .inq__cau {
    font-size: 15px;
  }
}

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

////////////////FOOTER

--------------------------------------------------------------------*/
.footer {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 80px 0;
  margin-top: 7em;
}

@media screen and (min-width: 768px) {
  .footer {
    max-width: 1145px;
    padding: 3em 0 200px 0;
  }
}

.footer__box {
  display: inline-block;
}

.footer__box__logo {
  display: block;
  width: 50%;
  margin: 1.5em auto;
}

@media screen and (min-width: 768px) {
  .footer__box__logo {
    width: 300px;
  }
}

.footer__box__nav {
  width: 85%;
  margin: 0 auto;
  border-bottom: solid 1px #ccc;
  padding-bottom: 0.5em;
}

@media screen and (min-width: 768px) {
  .footer__box__nav {
    margin: 0 auto 1em auto;
    width: 90%;
    max-width: 1145px;
    display: flex;
    justify-content: space-between;
  }
}

.footer__box__nav__li {
  display: inline-block;
  margin-bottom: 0.5em;
}

.footer__box__nav__li > a {
  font-size: 1.2rem;
  color: var(--black);
  position: relative;
  padding-left: 12px;
}

.footer__box__nav__li > a::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px var(--black);
  border-right: solid 1px var(--black);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 50%;
  left: 0;
  margin-top: -3px;
}

.footer__box__add {
  font-size: 1.2rem;
  margin-bottom: 2.5em;
  margin-top: 1.5em;
  line-height: 1.8;
}

.footer__box__add > span {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .footer__box__add {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .footer__box__nav__li > a {
    font-size: 1.5rem;
  }
}

.footer__box__cr {
  font-size: 1.2rem;
  margin: 0;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__box__cr {
    font-size: 1.2rem;
    margin: 0 auto 1.5em auto;
    position: relative;
    width: 85%;
  }
}

.footer__box__logo2 {
  width: 80px;
  margin: 1.5em auto 0 auto;
}

@media screen and (min-width: 768px) {
  .footer__box__logo2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    margin: 0;
  }
}

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

modal

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

#wrap {
  position: relative;
  overflow-x: hidden;
}
#modalBg {
  width: 100dvw;
  height: 100dvh;
  background: rgb(28 28 28 / 0.8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}
#aria-point,
#aria-point2,
#aria-point3,
#aria-collection {
  display: block;
  width: 100dvw;
  max-width: 800px;
  /*
  max-height: 75dvh;
    */
  padding: 20px 20px 20px;
  background: #fff;
  border: 0;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}
#aria-point figure,
#aria-point2 figure,
#aria-point3 figure {
  margin: 0;
}
#aria-collection {
  padding: 0;
  max-height: unset;
  background: none;
}
.b-modalInner {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #aria-point,
  #aria-point2,
  #aria-point3 {
    padding-left: 3px;
    padding-right: 3px;
  }
  #aria-point figure,
  #aria-point2 figure,
  #aria-point3 figure {
    padding-left: min(7vw, 80px);
    padding-right: min(7vw, 80px);
  }
}
#aria-point2 .e-caution {
  transform: translateY(100%);
  text-align: left;
  color: #fff;
  margin-top: 1.5em;
}
#aria-point3 .e-caution {
  transform: translateY(100%);
  text-align: left;
  color: #fff;
  margin-top: 1.5em;
}

/* close */
.b-modal .e-close,
.b-modal .e-close span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-modal .e-close {
  width: 40px;
  background: var(--enColor);
  aspect-ratio: 1;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  /*
  transform: translateY(-100%);
    */
  padding: 0;
  cursor: pointer;
}
.b-modal .e-close span {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  opacity: 0.5;
}
.b-modal .e-close span::before,
.b-modal .e-close span::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #666;
  position: absolute;
  top: 50%;
  left: 50%;
}
.b-modal .e-close span::before {
  transform: translate(-50%) rotate(45deg);
}
.b-modal .e-close span::after {
  transform: translate(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .b-modal .e-close {
    transform: translateY(-100%);
  }
  .b-modal .e-close span::before,
  .b-modal .e-close span::after {
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .b-modal .e-close {
    right: 10px;
    top: 10px;
  }
}
@media (min-width: 768px) and (max-height: 600px) {
  #aria-point,
  #aria-point2,
  #aria-point3,
  #aria-collection {
    max-width: 530px;
  }
}

/* open
-----------------------------------------------------------*/
#wrap.open #modalBg,
#wrap.open #basic.active #aria-point2,
#wrap.open #custom1.active #aria-point,
#wrap.open #hiraya.active #aria-point3,
#wrap.open #collection.active #aria-collection {
  opacity: 1;
  visibility: visible;
}

/* figure .b-pointDetail
-----------------------------------------------------------*/
.b-pointDetail {
  padding: 0 0 30px;
}
#aria-collection .b-pointDetail {
  padding-bottom: 0;
}

.b-pointDetail .b-detailInner {
  /*
  max-height: calc(75dvh - 80px - 60px);
  overflow-y: scroll;
    */
  scrollbar-width: thin;
  font-family: var(--font-serif);
  text-align: left;
}
.b-pointDetail .b-detailInner.photo-sp {
  max-height: none;
}
.b-pointDetail figcaption {
  margin-bottom: 15px;
}
.b-pointDetail dt,
.b-pointDetail dt .e-num,
.b-pointDetail dd {
  display: flex;
}
.b-pointDetail dt .b-num,
.b-pointDetail dd .e-floor {
  width: 80px;
  min-width: 80px;
  position: relative;
}
.b-pointDetail dt {
  align-items: center;
  font-size: min(30px);
}
.b-pointDetail dt .e-num {
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: 1.5em;
  min-width: 1.5em;
  background: var(--black);
  color: var(--enColor);
}
.b-pointDetail dd {
  margin-top: 20px;
  font-size: 20px;
}
.b-pointDetail dd .e-floor {
  font-size: 24px;
}
.b-pointDetail .b-txts {
  width: 100%;
  margin: 0;
  line-height: 1.5;
}
.b-pointDetail dd .e-floor::after {
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: rgb(0 0 0 / 0.4);
  position: absolute;
  top: 0.4em;
  transform-origin: right top;
  transform: rotate(45deg);
}
.b-pointDetail dd .e-floor.no::after {
  content: none;
}
.b-pointDetail dd .e-floor.none::after {
  background: var(--white);
}
.b-pointDetail dd .e-caution {
  margin-top: 1em;
}
.b-pointDetail dd .e-cautionMark {
  transform: translateY(-0.4em);
  font-size: 0.6em;
  margin-left: 0.2em;
}

/* content: "image";
-----------------------------------------------------------*/
.b-pointDetail.m-09 picture {
  position: relative;
}
.b-pointDetail.m-09 picture::before {
  content: "image";
  font-size: 0.7em;
  position: absolute;
  right: 0.8em;
  bottom: 0.8em;
  z-index: 1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .b-pointDetail dt .b-num,
  .b-pointDetail dd .e-floor {
    width: 50px;
    min-width: 50px;
  }
  .b-pointDetail dt {
    font-size: 24px;
  }
  .b-pointDetail dd {
    margin-top: 20px;
    font-size: 16px;
  }
  .b-pointDetail dd .e-floor {
    font-size: 20px;
  }
  .b-pointDetail dd .e-floor.no {
    font-size: 12px;
  }
  .b-pointDetail dd .e-floor::after {
    height: 50px;
    right: 1em;
  }
  .b-pointDetail dd .e-caution {
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .b-pointDetail .b-detailInner {
    padding: 0 60px;
  }
  .b-pointDetail dt .b-num,
  .b-pointDetail dd .e-floor {
    width: 80px;
    min-width: 80px;
    margin-right: 40px;
  }
  .b-pointDetail dt {
    font-size: 30px;
  }
  .b-pointDetail dd {
    margin-top: 20px;
    font-size: 20px;
  }
  .b-pointDetail dd .e-floor {
    font-size: 24px;
  }
  .b-pointDetail dd .e-floor::after {
    height: 80px;
    right: 1em;
  }
  .b-pointDetail dd .e-caution {
    font-size: 14px;
  }
  .b-pointDetail dt .e-num {
    width: 80px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--black);
  aspect-ratio: 1 / 1;
  width: min(8vw, 45px);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  aspect-ratio: 1 / 1;
  width: 100%;
  transform-origin: center center;
  font-size: 0;
}
.swiper-button-next::after {
  border-right: 2px solid var(--black);
  border-top: 2px solid var(--black);
  transform: translateX(-2px) rotate(45deg);
}
.swiper-button-prev::after {
  border-left: 2px solid var(--black);
  border-top: 2px solid var(--black);
  transform: translateX(2px) rotate(-45deg);
}
.swiper-pagination-bullet-active {
  background: var(--main);
}
.swiper-button-disabled {
  opacity: 0 !important;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
}
@media screen and (max-width: 767px) {
  /* 11/14修正　他のファイルにも反映必要 
    .swiper-button-next,
  .swiper-button-prev {
   display:none;
  }
   */
  /* ------▼11/14修正　他のファイルにも反映必要 ----- */
  .swiper-button-next,
  .swiper-button-prev {
    width: 15px;
  }
  #aria-collection .swiper-button-next,
  #aria-collection .swiper-button-prev {
    width: 30px;
  }
  .swiper-button-next {
    right: 2vw;
  }
  .swiper-button-prev {
    left: 2vw;
  }
  /* ------▲11/14修正　他のファイルにも反映必要 ----- */
}
@media print, screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 55px;
  }
}

/* 24.09.12 sekine */
.swiper-wrapper {
  transition-timing-function: linear;
}

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

////////////////　固定FOOTER

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

.fixedFooter {
  display: none;
  opacity: 0;
  padding: 0 2%;
  width: 100%;
  z-index: 10000;
  position: fixed;
  left: 0;
  bottom: 0;
}

.fixedFooter.play {
  animation: slideup 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.5s 1 forwards;
  display: block;
}

.fixedFooter--sub {
  display: none;
}

.footerBtn {
  display: block;
  height: 70px;
  width: 100%;
  position: relative;
}

.footerBtn--onPC {
  display: none;
}

.footerBtn--sub {
  display: none;
}

.footerBtn--onSP {
  color: var(--white);
  position: relative;
  background: linear-gradient(135deg, #f48e93, #e9474d 70%);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 5.5vw;
  height: 70px;
  width: 100%;
  font-weight: bold;
  padding: 0 5vw 0 10vw;
  border-right: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-top: 1px solid var(--white);
  filter: drop-shadow(0 0 5px rgb(28 28 28 / 0.5));
}

.footerBtn--onSP::after {
  content: "";
  background: url(../images/icon_arrow_w_pc.svg) no-repeat;
  display: inline-block;
  height: 5px;
  width: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.footerBtn--onSP img {
  width: 85%;
}

@media screen and (min-width: 768px) {
  .fixedFooter {
    padding: 10px;
    right: 0;
    left: auto;
    bottom: 0;
    width: 250px;
  }

  .footerBtn {
    display: block;
    height: auto;
    width: 100%;
  }

  .footerBtn--onSP {
    display: none;
  }

  .footerBtn--onPC {
    display: block;
    width: 100%;

    filter: drop-shadow(0 0 5px rgb(255 255 255 / 0.5))
      drop-shadow(0 0 5px rgb(255 255 255 / 0.8))
      drop-shadow(0 0 5px rgb(255 255 255 / 0.8));
  }

  .footerBtn--onPC img {
    width: 100%;
  }

  .fixedFooter--sub {
    display: none;
    opacity: 0;
    width: 350px;
    height: 100px;
    padding: 10px 0 10px 10px;
    z-index: 10000;
    position: fixed;
    right: 0;
    bottom: 0;
  }

  .fixedFooter--sub.play {
    animation: slideup 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.5s 1 forwards;
    display: block;
  }

  .footerBtn--sub {
    position: relative;
    background: linear-gradient(135deg, #f48e93, #e9474d 70%);
    padding: 15px 0;
    letter-spacing: 1px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    display: block;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    filter: drop-shadow(0 3px 0 rgb(0 0 0 / 0.5));
  }

  .footerBtn--sub img {
    width: 80%;
  }

  .footerBtn--sub span {
    position: relative;
    display: inline-block;
  }

  .footerBtn--btn {
    background: #3e4e57;
    width: 30px;
    height: 30px;
    border: 1px solid var(--black);
    border-radius: 15px;
    background: var(--white);
    position: absolute;
    top: 0;
    right: 2px;
    z-index: 10001;
  }

  .footerBtn--btn::before {
    content: "";
    position: absolute;
    background: var(--black);
    right: 46%;
    top: 50%;
    width: 1px;
    height: 15px;
    transform: translate(-50%, -50%) rotateZ(45deg);
  }

  .footerBtn--btn::after {
    content: "";
    position: absolute;
    background: var(--black);
    right: 46%;
    top: 50%;
    width: 1px;
    height: 15px;
    transform: translate(-50%, -50%) rotateZ(-45deg);
  }
}

@media screen and (min-width: 1024px) {
  .fixedFooter {
    width: 300px;
  }
}

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

動画

---------------------------------------------*/
/*-- movie --*/
.movie {
  width: 90vw;
  margin: 0 auto;
}
.movie__mds {
  font-weight: bold;
}
.movie__box {
}
@media screen and (max-width: 767px) {
  .movie {
    margin-top: 8vw;
  }
  .movie__mds {
    font-size: 4.5vw;
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 768px) {
  .movie {
    margin-top: 3vw;
    max-width: 1120px;
  }
  .movie__mds {
    font-size: 2.2rem;
  }
}
.block__video {
  aspect-ratio: 16 / 9;
  margin: 0 auto 35px;
}
.block__video iframe {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .block__video {
    width: 100dvw;
    margin-left: 50%;
    transform: translateX(-50vw);
  }
}
@media (min-width: 768px) {
  .block__video {
    width: 100%;
  }
}

.e-caution p.start {
  color: var(--red);
  font-weight: bold;
  text-align: center;
}
.mvImgBox p.start {
  color: var(--red);
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  padding: 10px 0;
  border: 2px solid var(--red);
}
.btnGroup .e-caution p.start {
  color: var(--yellow);
}
@media (max-width: 767px) {
  .e-caution p.start,
  .mvImgBox p.start {
    font-size: 5.2vw;
  }
}
@media (min-width: 768px) {
  .e-caution p.start,
  .mvImgBox p.start {
    font-size: 3rem;
  }
}
