@charset "UTF-8";
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
@keyframes trainAnime {
  0% {
    transform: rotate(10deg) translate(-110%, -30%);
  }
  100% {
    transform: rotate(10deg) translate(0%, 0%);
  }
}
@keyframes trainAnime_sp {
  0% {
    transform: rotate(10deg) translate(-110%, -30%);
  }
  100% {
    transform: rotate(10deg) translate(-46%, -10%);
  }
}
@keyframes rotate-once01 {
  0% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(-2deg) translateY(-3%); /* 最終状態 */
  }
}
@keyframes rotate-once02 {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(2deg) translateY(-1%); /* 最終状態 */
  }
}
@keyframes rotate-once03 {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(6deg) translateY(-18%); /* 最終状態 */
  }
}
@keyframes slide-left {
  /* 初期位置 */
  from {
    transform: translateX(0%);
  }
  /* 終了位置 */
  to {
    transform: translateX(-100.7%);
  }
}
.p-mv {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid var(--white);
  aspect-ratio: 2/1.25;
}
.p-mv::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20px;
  background-color: var(--maincol);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.p-mv__textArea {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: var(--m100);
  padding-left: var(--m70);
}
.p-mv__textArea__catch {
  font-size: var(--fs28_50);
  color: #4AA1A8;
  font-weight: 600;
  margin-bottom: var(--m40);
}
.p-mv__textArea__text {
  font-size: var(--fs16_18);
  line-height: 2;
}
.p-mv__bg {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-mv__bg__inner.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-mv__bg__wave {
  width: 129.4%;
  aspect-ratio: 1864/344;
  margin: 0 auto;
  background: url(/images/common/main_wave.svg) center/100% no-repeat;
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: -1;
  transform: translateX(calc(50% - 8vw));
}
.p-mv__bg__image {
  position: absolute;
}
.p-mv__bg__image.logo {
  width: min(13.33%, 192px);
  bottom: min(23vw, 333px);
  right: 17.3%;
  z-index: -1;
}
.p-mv__bg__image.station01 {
  width: min(16.94%, 244px);
  bottom: min(8.6vw, 124px);
  left: 12.8%;
  transform: rotate(-1deg);
}
.p-mv__bg__image.station02 {
  width: min(12.91%, 186px);
  bottom: min(18.9vw, 272px);
  right: 37.1%;
  transform: rotate(-17deg);
}
.p-mv__bg__image.bill01 {
  width: min(17.08%, 246px);
  bottom: min(18.7vw, 270px);
  right: calc(min(6.3%, 90.72px) * -1);
  transform: rotate(9deg);
  z-index: -2;
}
.p-mv__bg__image.bill02 {
  width: min(17.91%, 258px);
  bottom: min(7.4vw, 106px);
  left: 1.3%;
  z-index: -2;
}
.p-mv__bg__image.family01 {
  width: min(10.277%, 148px);
  bottom: min(15.2vw, 218px);
  right: 23.7%;
}
.p-mv__bg__image.family02 {
  width: min(7.847%, 113px);
  bottom: min(3.9vw, 56px);
  left: 42.5%;
}
.p-mv__bg__image.man01 {
  width: min(4.51%, 65px);
  bottom: min(2.6vw, 37px);
  right: 19.5%;
}
.p-mv__bg__image.man02 {
  width: min(3.61%, 52px);
  bottom: min(0.6vw, 9px);
  right: 42.2%;
}
.p-mv__bg__image.woman01 {
  width: min(3.4%, 49px);
  bottom: min(10.1vw, 145px);
  left: 37.4%;
}
.p-mv__bg__image.woman02 {
  width: min(4.9%, 72px);
  bottom: min(2.7vw, 39px);
  right: 31%;
}
.p-mv__bg__image.woman03 {
  width: min(2.7%, 39px);
  bottom: min(0.8vw, 12px);
  left: 30.3%;
}
.p-mv__bg__image.shop {
  width: min(9.65%, 139px);
  bottom: min(8.2vw, 118px);
  right: 5.7%;
}

.p-concept {
  padding-top: var(--m40);
  padding-bottom: var(--m55);
  margin-bottom: var(--m160);
  background-color: var(--maincol);
  position: relative;
  z-index: 1;
}
.p-concept::before {
  content: "";
  display: inline-block;
  width: 100%;
  aspect-ratio: 1444/106;
  background: var(--maincol);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(99%);
  -webkit-mask-image: url("/images/top/concept_bottom.svg");
  mask-image: url("/images/top/concept_bottom.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
.p-concept__catch {
  display: flex;
  flex-direction: row-reverse;
  grid-gap: 7px;
  margin-bottom: var(--m140);
}
.p-concept__catch__text {
  font-size: var(--fs22_40);
  writing-mode: vertical-rl;
  font-weight: 500;
  background-color: var(--white);
  border: 1px solid var(--mainblack);
  height: -moz-fit-content;
  height: fit-content;
}
.p-concept__catch__text .val {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}
.p-concept__textArea {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
.p-concept__textArea__text {
  display: flex;
  grid-gap: var(--m30);
  flex-direction: row-reverse;
}
.p-concept__textArea__text__line {
  font-size: var(--fs14_18);
  writing-mode: vertical-rl;
  font-weight: 500;
  display: block;
  text-shadow: 0 0px 5px rgba(255, 255, 255, .5);
  /* background-color: rgba(95, 193, 199, .75);
  padding: 1em 0; */
}
.p-concept__textArea .c-title__en__text {
  text-align: right;
  line-height: 1;
  display: block;
  font-size: var(--fs64_130);
  color: var(--white);
  text-shadow: 1px 1px 0 var(--mainblack), -1px -1px 0 var(--mainblack), -1px 1px 0 var(--mainblack), 1px -1px 0 var(--mainblack), 0px 1px 0 var(--mainblack), -1px 0 var(--mainblack), -1px 0 0 var(--mainblack), 1px 0 0 var(--mainblack);
}
.p-concept__textArea .c-title::after {
  content: "";
  display: inline-block;
  width: min(7.36vw, 106px);
  aspect-ratio: 106/149;
  background: url(/images/common/ill_man_set01.svg) center/100% no-repeat;
  position: absolute;
  bottom: -2%;
  left: 11%;
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}
.p-concept__bg {
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: -1;
  top: var(--m70);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
}
.p-concept__slider {
  width: 30.2%;
}
.p-concept__slide {
  border-radius: 10px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-concept__illust {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(99%);
}
.p-concept__illust__inner {
  display: flex;
  grid-gap: 2px;
  width: -moz-fit-content;
  width: fit-content;
  transform: rotate(10deg) translate(-110%, -30%);
}
.p-concept__illust__inner.anime {
  animation-name: trainAnime;
  animation-duration: 3s; /* 実行時間 */
  animation-timing-function: ease-out; /* 緩急 */
  animation-iteration-count: 1; /* 実行回数: 1回 */
  animation-fill-mode: forwards; /* これが最後の状態を保持する設定 */
}
.p-concept__illust__inner.anime::before {
  animation-name: rotate-once03;
}
.p-concept__illust__inner.anime::after {
  animation-name: rotate-once01;
}
.p-concept__illust__inner::before, .p-concept__illust__inner::after {
  content: "";
  display: inline-block;
  width: max(100px, 9.86vw);
  aspect-ratio: 422/166;
  background: url(/images/common/ill_train.svg) center/100% no-repeat;
  animation-duration: 3s; /* 実行時間 */
  animation-timing-function: ease-out; /* 緩急 */
  animation-iteration-count: 1; /* 実行回数: 1回 */
  animation-fill-mode: forwards; /* これが最後の状態を保持する設定 */
}
.p-concept__illust__train {
  width: max(100px, 9.86vw);
  aspect-ratio: 422/166;
  background: url(/images/common/ill_train.svg) center/100% no-repeat;
}
.p-concept__illust__train.anime {
  animation-name: rotate-once02;
  animation-duration: 3s; /* 実行時間 */
  animation-timing-function: ease-out; /* 緩急 */
  animation-iteration-count: 1; /* 実行回数: 1回 */
  animation-fill-mode: forwards; /* これが最後の状態を保持する設定 */
}
.p-concept .c-button{
  max-width: 300px;
  margin: var(--m30) auto 0;
}

.p-property {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
  margin-bottom: var(--m50);
}
.p-property__inner {
  width: 90%;
  max-width: 1440px;
  border-left: 1px solid var(--mainblack);
  border-right: 1px solid var(--mainblack);
  margin: 0 auto;
  padding-top: var(--m50);
  padding-bottom: var(--m35);
  position: relative;
}
.p-property .c-title {
  text-align: center;
  margin-bottom: var(--m45);
}
.p-property__list {
  border-top: 1px solid var(--mainblack);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--m30);
}
.p-property__box {
  width: 33.3333333333%;
  border-bottom: 1px solid var(--mainblack);
  position: relative;
}
.p-property__box:not(:nth-of-type(3n)) {
  border-right: 1px solid var(--mainblack);
}
.p-property__box__link {
  padding: var(--m30);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.p-property__box__textArea {
  width: 100%;
}
.p-property__box__textArea__category {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  padding: 3px 1em 5px;
  border: 1px solid var(--mainblack);
  border-radius: 100vw;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--m14);
  background-color: var(--white);
}
.p-property__box__textArea__title {
  font-size: var(--fs14_16);
  font-weight: 500;
  min-height: 3em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--mainblack);
  margin-bottom: var(--m12px);
}
.p-property__box__textArea__access {
  font-size: var(--fs14_16);
  font-weight: 500;
}
.p-property__box__newIcon {
  display: flex;
  align-items: flex-start;
  padding-top: 0.5em;
  justify-content: center;
  font-size: var(--fs12);
  font-weight: 400;
  color: #fff;
  width: 35px;
  aspect-ratio: 36/36.3177;
  background: url(/images/common/flag01.svg) center/cover no-repeat;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.p-property__box__imageArea {
  margin-bottom: var(--m25);
  position: relative;
}
.p-property__box__imageArea__image {
  aspect-ratio: 358/268;
  overflow: hidden;
}
.p-property__box__imageArea__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.p-property__box__imageArea__caption {
  font-size: var(--fs12);
  writing-mode: vertical-rl;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-110%, -50%);
}
.p-property__illust {
  content: "";
  display: inline-block;
  aspect-ratio: 122/109;
  width: 15%;
  max-width: 144px;
  background: url(/images/common/ill_house02.svg) center/cover no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-30%, 5%);
}
.p-property .c-button {
  max-width: 250px;
  margin: 0 auto;
}

.p-cvArea__title {
  position: relative;
}
.p-cvArea__title::after {
  content: "";
  display: inline-block;
  width: 20%;
  max-width: 87px;
  aspect-ratio: 87/130;
  background: url(/images/common/ill_family02.svg) center/cover no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translate(calc(min(5vw, 30px) * -1), var(--m50)) scaleX(-1);
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}

.p-works {
  border-top: 1px solid var(--mainblack);
  padding: var(--m50) 0;
}
.p-works__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.p-works__title {
  width: 15.76%;
  padding-right: var(--m40);
  border-right: 1px solid var(--mainblack);
}
.p-works__title::after {
  content: "";
  display: inline-block;
  width: 45%;
  max-width: 121px;
  aspect-ratio: 121/220;
  background: url(/images/common/ill_man_set02.svg) center/cover no-repeat;
  position: absolute;
  bottom: 0;
  right: var(--m40);
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}
.p-works__contetns {
  width: 84.24%;
  padding-left: min(7vw, 100px);
}
.p-works__slider {
  overflow: hidden;
  margin-bottom: var(--m35);
  padding-bottom: 1rem;
}
.p-works__slide__link {
  display: flex;
  align-items: flex-start;
}
.p-works__slide__title {
  font-size: var(--fs18_26);
  writing-mode: vertical-rl;
  text-orientation: upright; /* ←日本語（カナ含む）を基本“縦に立てる” */
  -webkit-text-orientation: upright; /* iOS対策 */
  border: 1px solid var(--mainblack);
  border-right: unset;
  padding: 5px 2px 10px;
}
.p-works__slide__contetns {
  border: 1px solid var(--mainblack);
  position: relative;
}
.p-works__slide__contetns::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  margin-left: auto;
  background: url(/images/common/arrow_works.svg) center/39% no-repeat, linear-gradient(to bottom, var(--accentcol), var(--accentcol));
}
.p-works__slide__image {
  margin: var(--m40) var(--m40) var(--m20);
  aspect-ratio: 317/398;
  overflow: hidden;
}
.p-works__slide__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.p-works__slide__text {
  font-size: var(--fs14_16);
  padding-left: var(--m40);
}
.p-works__cvArea {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-right: 5vw;
}
.p-works__cvArea__slideParts {
  display: flex;
  align-items: center;
  grid-gap: var(--m30);
}
.p-works__cvArea__buttonFlex {
  display: flex;
  justify-content: flex-end;
  grid-gap: 10px;
}
.p-works__cvArea__buttonFlex .c-button {
  max-width: 288px;
}

.p-topics {
  border-top: 1px solid var(--mainblack);
  padding: var(--m50) 0;
}
.p-topics__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.p-topics__title {
  width: 15.76%;
  padding-right: var(--m40);
  border-right: 1px solid var(--mainblack);
}
.p-topics__contetns {
  width: 84.24%;
  padding-left: min(7vw, 100px);
  padding-right: 5vw;
}
.p-topics__contetns .c-button {
  margin-left: auto;
  max-width: 250px;
}

.p-otherArea {
  border-top: 1px solid var(--mainblack);
  padding: var(--m60) 0;
}
.p-otherArea__inner {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  grid-gap: var(--m60) 0;
}
.p-otherArea__box {
  width: 48.61%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: var(--m45);
  border-radius: var(--m20);
  background-color: var(--maincol);
  border: 1px solid var(--mainblack);
}
.p-otherArea__box .c-title {
  padding: 0;
  margin: 0;
  border: unset;
}
.p-otherArea__box .c-title__en {
  text-align: left;
  line-height: 1;
  display: block;
  font-size: var(--fs36_75);
  color: var(--white);
  text-shadow: 1px 1px 0 var(--mainblack), -1px -1px 0 var(--mainblack), -1px 1px 0 var(--mainblack), 1px -1px 0 var(--mainblack), 0px 1px 0 var(--mainblack), -1px 0 var(--mainblack), -1px 0 0 var(--mainblack), 1px 0 0 var(--mainblack);
}
.p-otherArea__box .c-title__jp {
  font-size: var(--fs18_22);
}
.p-otherArea__shop .c-title {
  width: 30%;
}
.p-otherArea__shop__contents {
  width: 69%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-otherArea__shop__contents::after {
  content: "";
  display: inline-block;
  width: 25%;
  aspect-ratio: 97/112;
  background: url(/images/common/ill_house.svg) center/cover no-repeat;
}
.p-otherArea__shop__textArea {
  width: calc(75% - var(--m20));
  height: 100%;
}
.p-otherArea__shop__info:not(:last-of-type) {
  margin-bottom: var(--m16);
}
.p-otherArea__shop__info * {
  font-size: var(--fs14_16);
  color: var(--white);
  font-weight: 400;
}
.p-otherArea__shop__info span {
  display: block;
}
.p-otherArea__staff {
  align-items: center;
}
.p-otherArea__staff__contents {
  width: 76.78%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.p-otherArea__staff__contents::after {
  content: "";
  display: inline-block;
  width: 30%;
  max-width: 126px;
  aspect-ratio: 126/156;
  background: url(/images/common/ill_man_set03.svg) center/cover no-repeat;
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}
.p-otherArea__staff__textArea {
  width: 70%;
}
.p-otherArea__staff__textArea__text {
  font-size: var(--fs14_16);
  color: #fff;
  margin-bottom: var(--m30);
}

.p-sponsor {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
  padding: var(--m60) 0;
}
.p-sponsor__inner.wrapper {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-sponsor__left {
  width: 48%;
  max-width: 480px;
}
.p-sponsor__left .c-title {
  margin-bottom: var(--m30);
}
.p-sponsor__right {
  width: 52%;
  max-width: 510px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-sponsor__right::before {
  content: "";
  display: inline-block;
  width: 30.27%;
  aspect-ratio: 152/151;
  background: url(/images/common/ill_family01.svg) center/100% no-repeat;
  animation-name: bounce;
  animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
  animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
  animation-iteration-count: infinite; /* 無限に繰り返す */
  animation-direction: alternate; /* 往復アニメーション */
}
.p-sponsor__list {
  width: 64%;
}
.p-sponsor__banner:not(:last-of-type) {
  margin-bottom: var(--m16);
}
.p-sponsor__text {
  font-size: var(--fs14_16);
}

.p-textSlider {
  overflow: hidden;
}
.p-textSlider__inner {
  display: flex;
  grid-gap: 1em;
  animation-name: slide-left;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.p-textSlider__text {
  font-size: 6.8vw;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
  text-shadow: 1px 1px 0 var(--mainblack), -1px -1px 0 var(--mainblack), -1px 1px 0 var(--mainblack), 1px -1px 0 var(--mainblack), 0px 1px 0 var(--mainblack), -1px 0 var(--mainblack), -1px 0 0 var(--mainblack), 1px 0 0 var(--mainblack);
  white-space: nowrap;
}

.p-loadAnime {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed !important;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: 100000;
  transition: all 0.5s;
}
.p-loadAnime.complate {
  animation: disnone 1s 0s linear forwards;
}
.p-loadAnime.opacity {
  background: unset;
}
.p-loadAnime.opacity .p-loadAnime__inner {
  display: none;
}
.p-loadAnime.reload {
  display: none !important;
  z-index: -100 !important;
  transform: translateX(-500%) !important;
  opacity: 0 !important;
}
.p-loadAnime__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #fff;
}
.p-loadAnime__inner {
  width: 50%;
  max-width: 700px;
  opacity: 0;
  position: relative;
  z-index: 2;
}
.p-loadAnime__inner.load {
  opacity: 1;
}
.p-loadAnime__inner.load.complate {
  transition: all 0.5s;
  opacity: 0;
}
.p-loadAnime__inner .cls-1 {
  fill: var(--maincol);
}

@keyframes disnone {
  0% {
    display: flex;
    z-index: 100000;
    transform: translateX(0%);
    opacity: 1;
  }
  99% {
    display: flex;
    z-index: 100000;
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    display: none;
    z-index: -100;
    transform: translateX(-500%);
    opacity: 0;
  }
}
/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (min-width: 769px) {
  .p-mv{
    max-height: clamp(490px,50.877vw,725px);
  }
  .p-property__box__link:hover .p-property__box__imageArea__image img {
    transform: scale(1.1);
  }
}
@media all and (min-width: 1440px) {
  .p-mv__bg__wave {
    width: 1864px;
    transform: translateX(calc(50% + clamp(-8vw, -8vw + (100vw - 1440px) / 424px * 8vw, 0vw)));
  }
  .p-mv__bg__image.logo {
    bottom: clamp(17vw, 23vw - (100vw - 1440px) / 424px * 6vw, 23vw);
  }
  .p-mv__bg__image.station02 {
    bottom: clamp(13vw, 18.9vw - (100vw - 1440px) / 424px * 5.9vw, 18.9vw);
  }
}
@media all and (min-width: 1600px) {
  .p-works__cvArea {
    margin-right: calc((100vw - 1440px) / 2);
  }
  .p-topics__contetns {
    padding-right: calc((100vw - 1440px) / 2);
  }
}
@media all and (min-width: 1864px) {
  .p-mv__bg__wave {
    width: 100vw;
    transform: translateX(calc(50% + 0vw));
  }
}
@media all and (min-width: 768px) and (max-width: 1600px) {
  .p-concept__textArea__text__line {
    transform: translateY(1.5em);
  }
}
@media all and (max-width: 1024px) {
  .p-textSlider__inner {
    animation-duration: 10s;
  }
  .p-textSlider__text {
    font-size: 10.132vw;
  }
}
@media all and (max-width: 890px) {
  .p-otherArea__shop,
  .p-otherArea__staff {
    width: 100%;
  }
  .p-otherArea__shop .c-title,
  .p-otherArea__staff .c-title {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media all and (max-width: 767px) {
  .p-mv {
    border-bottom: unset;
  }
  .p-mv__textArea {
    padding: 0;
  }
  .p-mv__textArea__catch {
    text-align: center;
  }
  .p-mv__textArea__text {
    text-align: center;
  }
  .p-concept__catch {
    justify-content: center;
  }
  .p-concept__catch__text {
    padding: 3px 0;
  }
  .p-concept__textArea {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-concept__textArea__text {
    flex-wrap: wrap;
    grid-gap: var(--m30) 0;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: flex-end;
  }
  .p-concept__textArea__text__line {
    writing-mode: unset;
    text-shadow: unset;
    background-color: unset;
    padding: 0;
  }
  .p-concept__textArea .c-title {
    margin-bottom: 30px;
  }
  .p-concept__textArea .c-title__en__text {
    text-align: left;
  }
  .p-concept__textArea .c-title::after {
    left: unset;
    right: 0;
  }
  .p-concept__bg {
    top: calc(var(--fs22_40) * 3);
  }
  .p-property__inner {
    padding-bottom: 0;
  }
  .p-property__box {
    width: 50%;
  }
  .p-property__box:not(:nth-of-type(3n)) {
    border-right: unset;
  }
  .p-property__box:nth-of-type(odd) {
    border-right: 1px solid var(--mainblack);
  }
  .p-property__illust {
    width: 30%;
    position: static;
    transform: unset;
    margin: var(--m50) auto 0;
    display: block;
  }
  .p-works__title {
    width: 22%;
  }
  .p-works__title::after {
    content: "";
    display: inline-block;
    width: 45%;
    max-width: 121px;
    aspect-ratio: 121/220;
    background: url(/images/common/ill_man_set02.svg) center/cover no-repeat;
    position: absolute;
    bottom: 0;
    right: var(--m40);
    animation-name: bounce;
    animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
    animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
    animation-iteration-count: infinite; /* 無限に繰り返す */
    animation-direction: alternate; /* 往復アニメーション */
  }
  .p-works__contetns {
    width: 78%;
  }
  .p-works__cvArea {
    grid-gap: var(--m40);
  }
  .p-works__cvArea__slideParts {
    margin-left: auto;
  }
  .p-works__cvArea__buttonFlex {
    flex-wrap: wrap;
    margin-left: auto;
  }
  .p-works__cvArea__buttonFlex .c-button {
    max-width: unset;
    width: 100%;
  }
  .p-topics__title {
    width: 22%;
  }
  .p-topics__contetns {
    width: 78%;
  }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
@media all and (max-width: 600px) {
  .p-mv {
    aspect-ratio: unset;
    max-height: unset;
  }
  .p-mv__textArea {
    margin-bottom: 20px;
  }
  .p-mv__bg {
    position: relative;
    width: 100%;
    height: auto;
    z-index: -1;
  }
  .p-mv__bg::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 50vw;
    background-color: var(--maincol);
  }
  .p-mv__bg__inner.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .p-mv__bg__wave {
    order: 2;
    position: static;
    width: 215%;
    aspect-ratio: 300/55;
    transform: translate(-45%, 0);
  }
  .p-mv__bg__image.logo {
    order: 1;
    position: static;
    width: 44%;
    margin: 0 9% -4% auto;
  }
  .p-mv__bg__image.station01 {
    width: 64%;
    left: 3vw;
    bottom: unset;
    top: 48vw;
  }
  .p-mv__bg__image.station02 {
    width: 40%;
    bottom: unset;
    right: 43%;
    transform: unset;
    top: 85vw;
  }
  .p-mv__bg__image.family01 {
    width: 30%;
    bottom: unset;
    top: 14vw;
    right: unset;
    left: 5vw;
  }
  .p-mv__bg__image.family02 {
    width: 24%;
    bottom: unset;
    left: unset;
    right: 16vw;
    top: 63vw;
  }
  .p-mv__bg__image.woman01 {
    width: 13.866%;
    left: unset;
    bottom: unset;
    top: 26vw;
    right: 8vw;
  }
  .p-mv__bg__image.woman03 {
    width: 9%;
    transform: scaleX(-1);
    bottom: unset;
    top: 63vw;
    left: 7vw;
  }
  .p-concept__catch {
    margin-bottom: 50vw;
  }
  .p-concept__textArea .c-title {
    width: 100%;
  }
  .p-concept__textArea .c-title::after {
    width: 82px;
    bottom: -10%;
  }
  .p-concept__slider {
    width: 90%;
    margin: 0 auto;
  }
  .p-concept__illust__inner.anime {
    animation-name: trainAnime_sp;
  }
  .p-property__box {
    width: 100%;
  }
  .p-property__box:nth-of-type(odd) {
    border-right: unset;
    background-color: var(--maincol_opa);
  }
  .p-cvArea__title::after {
    transform: scaleX(-1);
  }
  .p-works__title {
    padding-right: 5px;
  }
  .p-works__title::after {
    width: 80%;
    right: 5px;
  }
  .p-works__contetns {
    padding-left: 10px;
  }
  .p-works__cvArea__buttonFlex {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
  }
  .p-works__slide__title{
    font-family: "Noto Sans JP", sans-serif;
  }
  .p-topics__title {
    padding-right: 5px;
  }
  .p-topics__contetns {
    padding-left: 10px;
  }
  .p-otherArea__box .c-title.val {
    width: 100%;
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .p-otherArea__box .c-title.val .c-title__en {
    writing-mode: unset;
    font-size: 44px;
  }
  .p-otherArea__box .c-title.val .c-title__en__text {
    font-size: 44px;
    display: inline-block;
  }
  .p-otherArea__box .c-title.val .c-title__jp {
    margin-bottom: 0;
    writing-mode: unset;
  }
  .p-otherArea__shop .c-title.val::after {
    content: "";
    display: inline-block;
    width: 20%;
    aspect-ratio: 97/112;
    background: url(/images/common/ill_house.svg) center/cover no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .p-otherArea__shop__contents {
    width: 100%;
  }
  .p-otherArea__shop__contents::after {
    content: unset;
  }
  .p-otherArea__shop__textArea {
    width: 100%;
  }
  .p-otherArea__shop__info__address__add span {
    display: inline-block;
  }
  .p-otherArea__shop__info__address__add span:last-of-type {
    margin-left: 1em;
  }
  .p-otherArea__staff .c-title.val::after {
    content: "";
    display: inline-block;
    width: 20%;
    max-width: 126px;
    aspect-ratio: 126/156;
    background: url(/images/common/ill_man_set03.svg) center/cover no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    animation-name: bounce;
    animation-duration: 1.25s; /* 1秒で1回ぴょんぴょん */
    animation-timing-function: ease-in-out; /* 滑らかに加速・減速 */
    animation-iteration-count: infinite; /* 無限に繰り返す */
    animation-direction: alternate; /* 往復アニメーション */
  }
  .p-otherArea__staff__contents {
    width: 100%;
  }
  .p-otherArea__staff__contents::after {
    content: unset;
  }
  .p-otherArea__staff__textArea {
    width: 100%;
  }
  .p-sponsor__left {
    width: 100%;
  }
  .p-sponsor__left .c-title {
    justify-content: center;
    text-align: center;
  }
  .p-sponsor__right {
    width: 100%;
  }
  .p-textSlider__inner {
    animation-duration: 5s;
  }
  .p-textSlider__text {
    font-size: 20.132vw;
  }
}