@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@0100..900&display=swap");
.anim {
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim--slow {
  animation-duration: 2s !important;
}

.anim--delay {
  animation-delay: 0.5s !important;
}

.anim-hide {
  opacity: 0;
}

.anim-fadeIn {
  opacity: 0;
}
.anim-fadeIn.onAnim {
  animation: fadeIn 2s ease 0s 1 alternate forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeUp {
  opacity: 0;
}
.anim-fadeUp.onAnim {
  animation: fadeUp 2s ease 0s 1 alternate forwards;
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeLeft.onAnim {
  animation: fadeLeft 2s ease 0s 1 alternate forwards;
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.anim-fadeRight.onAnim {
  animation: fadeRight 2s ease 0s 1 alternate forwards;
}

.mainHeader {
  position: fixed;
  top: 0;
  background-color: #676360;
  background: linear-gradient(#676360 0%, #4d4a47 100%);
  right: 0;
  height: 100vh;
  width: 100%;
  z-index: 990;
  opacity: 0;
  transform: translateX(-102%);
  transition: opacity 0.4s ease 0s, transform 0s ease 0.4s;
  color: #fff;
}
.mainHeader.active {
  transition: opacity 0.4s ease 0s, transform 0s ease 0s;
  opacity: 1;
  transform: translateX(0%);
}
.mainHeader__inner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  z-index: 10;
  overflow: auto;
}
@media all and (max-width: 640px) {
  .mainHeader__inner {
    flex-direction: column-reverse;
  }
}
.mainHeader__left {
  display: flex;
  align-items: center;
  padding-right: 8%;
  justify-content: flex-end;
  width: 50%;
  flex-shrink: 0;
  position: relative;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media all and (max-width: 640px) {
  .mainHeader__left {
    width: 100%;
    justify-content: center;
    padding: 1.875rem 1.25rem 3.125rem;
  }
}
.mainHeader__left:after {
  content: "";
  width: 0.0625rem;
  height: 70vh;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: #fff;
}
@media all and (max-width: 640px) {
  .mainHeader__left:after {
    height: 0.0625rem;
    top: 0;
    right: 50%;
    translate: 50% 0;
    width: 90vw;
  }
}
.mainHeader__left__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 16.6875rem;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 800px) {
  .mainHeader__left__inner {
    max-width: 14.375rem;
  }
}
@media all and (max-width: 640px) {
  .mainHeader__left__inner {
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.mainHeader__logo {
  width: 100%;
  margin-bottom: 3.75rem;
}
@media all and (max-width: 640px) {
  .mainHeader__logo {
    width: 11.25rem;
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
.mainHeader__logo img {
  width: 100%;
}
@media all and (max-width: 640px) {
  .mainHeader__logo img {
    width: 11.25rem;
  }
}
.mainHeader__logo a {
  display: block;
  transition: opacity 0.3s ease 0s;
}
@media (hover: none) {
  .mainHeader__logo a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .mainHeader__logo a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.mainHeader__logo a:active {
  opacity: 0.8;
  text-decoration: none;
}
.mainHeader__address {
  width: 100%;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .mainHeader__address {
    width: auto;
    margin-bottom: 0;
  }
}
.mainHeader__insta {
  width: 2.125rem;
}
.mainHeader__insta img {
  width: 100%;
}
.mainHeader__nav {
  width: 50%;
  flex-shrink: 0;
  padding-left: 8%;
  padding-right: 2%;
  display: flex;
  align-items: flex-start;
}
@media all and (max-width: 640px) {
  .mainHeader__nav {
    width: 100%;
    flex: 1;
    flex-shrink: 1;
  }
}

.gNav {
  margin: auto 0;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.gNav__mainNav {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.gNav__mainNav a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.2;
  gap: 0.3125rem;
  transition: all 0.2s ease 0s;
}
.gNav__mainNav a:hover {
  text-decoration: none;
}
.gNav__mainNav a:before {
  content: "";
  width: 0.625rem;
  height: 0.0625rem;
  background-color: #fff;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  transition: all 0.2s ease 0s;
  transform-origin: right center;
}
.gNav__mainNav a:before:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .gNav__mainNav a:hover {
    opacity: 0.8;
  }
  .gNav__mainNav a:hover:before {
    scale: 0.7 1;
  }
}
.gNav__mainNav a:active {
  opacity: 0.8;
}
.gNav__mainNav a:active:before {
  scale: 0.7 1;
}
.gNav__mainNav a .ja {
  font-size: 0.6875rem;
}

.spBT {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: fixed;
  top: 2.5rem;
  right: 3.75rem;
  z-index: 999;
  background-color: #fff;
  border-radius: 0.375rem;
  padding: 0;
  transition: all 1s ease 0s;
}
@media all and (min-width: 1025px) {
  .spBT.scrolled:not(.active) {
    translate: 6.875rem 0;
  }
}
@media all and (max-width: 1024px) {
  .spBT.scrolled {
    background-color: #000;
    top: 1.25rem;
    right: 1.875rem;
  }
  .spBT.scrolled .spBT__barWrap:after {
    background-color: #fff;
  }
  .spBT.scrolled .spBT__barWrap span {
    background-color: #fff;
  }
}
@media all and (max-width: 640px) {
  .spBT.scrolled {
    top: 0.9375rem;
    right: 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .spBT {
    top: 1.25rem;
    right: 1.25rem;
  }
}
.spBT__barWrap {
  position: relative;
  display: block;
  width: 60%;
  height: 0.125rem;
}
.spBT__barWrap:after {
  content: "";
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: #000;
  transition: all 0.2s ease 0s;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  translate: 0 0.5rem;
}
.spBT__barWrap:after:hover {
  text-decoration: none;
}
.spBT__barWrap span {
  height: 0.125rem;
  background-color: #000;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease 0s;
}
.spBT__barWrap span:hover {
  text-decoration: none;
}
.spBT__barWrap span:first-child {
  translate: 0 -0.4375rem;
}
.spBT__barWrap span:nth-child(2) {
  width: 75%;
}
.spBT__barWrap span:last-child {
  translate: 0 0.4375rem;
  width: 50%;
}
.spBT.active {
  background-color: #fff;
}
.spBT.active .spBT__barWrap:after {
  opacity: 0;
}
.spBT.active .spBT__barWrap span {
  background-color: #000;
}
.spBT.active .spBT__barWrap span:first-child {
  translate: 0 0;
  rotate: 45deg;
}
.spBT.active .spBT__barWrap span:nth-child(2) {
  opacity: 0;
}
.spBT.active .spBT__barWrap span:last-child {
  translate: 0 0;
  rotate: -45deg;
  width: 100%;
}

.fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 2.5rem;
  width: 100%;
}
@media all and (max-width: 640px) {
  .fixedHeader {
    padding: 0 1.25rem;
  }
}
.fixedHeader__inner {
  max-width: 72.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
@media all and (max-width: 640px) {
  .fixedHeader__inner {
    height: 4.375rem;
  }
}
.fixedHeader__logo {
  width: 8.375rem;
  filter: invert(1);
}
@media all and (max-width: 640px) {
  .fixedHeader__logo {
    width: 7.4375rem;
  }
}
.fixedHeader__nav {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media all and (max-width: 1024px) {
  .fixedHeader__nav {
    display: none;
  }
}
.fixedHeader__list {
  display: flex;
  gap: 1.25rem;
  line-height: 1.2;
}
.fixedHeader__list a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.2;
  gap: 0.3125rem;
  color: #000;
  transition: all 0.2s ease 0s;
}
.fixedHeader__list a:hover {
  text-decoration: none;
}
.fixedHeader__list a:before {
  content: "";
  width: 0.625rem;
  height: 0.0625rem;
  background-color: #000;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  transition: all 0.2s ease 0s;
  transform-origin: right center;
}
.fixedHeader__list a:before:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .fixedHeader__list a:hover {
    color: #676360;
  }
  .fixedHeader__list a:hover:before {
    scale: 0.7 1;
    background-color: #676360;
  }
}
.fixedHeader__list a:active {
  color: #676360;
}
.fixedHeader__list a:active:before {
  scale: 0.7 1;
  background-color: #676360;
}
.fixedHeader__list a .ja {
  font-size: 0.6875rem;
  color: #676360;
}
.fixedHeader__insta {
  width: 2.125rem;
  flex-shrink: 0;
}
.fixedHeader__insta img {
  width: 100%;
}

.scroll-target {
  position: relative;
  z-index: 250;
  background-color: #fff;
}

.pageLogo {
  position: fixed;
  top: 2.5rem;
  left: 3.75rem;
  z-index: 350;
  width: 9.875rem;
  transition: all 1.8s ease 0s;
}
@media all and (max-width: 1024px) {
  .pageLogo {
    left: 2.5rem;
  }
}
@media all and (max-width: 640px) {
  .pageLogo {
    top: 1.5625rem;
    left: 1.5625rem;
    width: 6.25rem;
  }
}
.pageLogo.scrolled {
  translate: -200% 0;
}

a {
  color: #000;
}
@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

a[rel="noreferrer noopener"] {
  text-decoration: underline;
}

html {
  font-size: 16px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
@media all and (max-width: 640px) {
  html {
    font-size: 4.1024vw;
  }
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  color: #000;
  overscroll-behavior: none;
  background-color: #fff;
}
body.hide {
  overflow: hidden;
}
body figure {
  margin: 0;
}
@media all and (max-width: 640px) {
  body {
    font-size: 4.1024vw !important;
  }
}

img {
  height: auto;
}

.roboto {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.bold {
  font-weight: bold;
}

button,
select {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

.o_sp {
  display: none !important;
}

.o_sp2 {
  display: none !important;
}

.hiddenBox {
  overflow: hidden;
}

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

.text-right {
  text-align: right;
}

@media all and (min-width: 641px) {
  .text-right-pc {
    text-align: right;
  }
}

@media all and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}
@media all and (max-width: 1180px) {
  .o_large {
    display: none !important;
  }
}

@media all and (max-width: 1024px) {
  .o_pc {
    display: none !important;
  }
}

@media all and (max-width: 640px) {
  .o_sp {
    display: block !important;
  }
}
@media all and (max-width: 560px) {
  .o_sp2 {
    display: block !important;
  }
  .no_sp2 {
    display: none !important;
  }
}
.br {
  display: none;
}
@media all and (min-width: 1025px) {
  .br.pc {
    display: inline;
  }
}
@media all and (max-width: 1180px) and (min-width: 1025px) {
  .br.pc2 {
    display: inline;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .br.tab {
    display: inline;
  }
}
@media all and (max-width: 640px) {
  .br.sp {
    display: inline;
  }
}

.color-key {
  color: #676360;
}

.color-white {
  color: #fff;
}

.pt-lg {
  padding-top: 7.5rem;
}
@media all and (max-width: 1024px) {
  .pt-lg {
    padding-top: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pt-lg {
    padding-top: 5rem;
  }
}

.pb-lg {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .pb-lg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pb-lg {
    padding-bottom: 5rem;
  }
}

.pb-hg {
  padding-bottom: 8.75rem;
}
@media all and (max-width: 1024px) {
  .pb-hg {
    padding-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .pb-hg {
    padding-bottom: 5rem;
  }
}

.mb-min {
  margin-bottom: 1.25rem;
}

.mb-sml {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 1.875rem;
}

.mb40 {
  margin-bottom: 2.5rem;
}

.mb60 {
  margin-bottom: 3.75rem;
}

.mb-md {
  margin-bottom: 3.75rem;
}
@media all and (max-width: 640px) {
  .mb-md {
    margin-bottom: 2.5rem;
  }
}

.mb-lg {
  margin-bottom: 5rem;
}
@media all and (max-width: 1024px) {
  .mb-lg {
    margin-bottom: 3.75rem;
  }
}

.mt-lg {
  margin-top: 5rem;
}
@media all and (max-width: 1024px) {
  .mt-lg {
    margin-top: 3.75rem;
  }
}

.mb-hg {
  margin-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .mb-hg {
    margin-bottom: 6.25rem;
  }
}
@media all and (max-width: 640px) {
  .mb-hg {
    margin-bottom: 5rem;
  }
}

@media all and (min-width: 801px) {
  .anim--pcDelay1 {
    animation-delay: 0.5s !important;
  }
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrollText {
  display: flex;
  position: relative;
  margin: auto;
  height: 7.375rem;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  transition: all 1s ease 0s;
  margin-top: -0.3125rem;
}
.scrollText:hover {
  text-decoration: none;
}
.scrollText.reverse .scrollText__text > * {
  animation: scroll-text 18s infinite linear reverse;
}
.scrollText__text {
  display: flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  white-space: nowrap;
  transition: all 4s ease;
}
.scrollText__text > * {
  animation: scroll-text 30s infinite linear;
  width: auto;
}
@media all and (max-width: 640px) {
  .scrollText__text > * {
    animation: scroll-text 40s infinite linear;
  }
}
.scrollText__text span {
  margin: 0;
  line-height: 0.85;
  color: rgb(255, 255, 255);
  display: block;
  transition: all 2s ease;
  height: 100%;
  padding-right: 2.5rem;
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  display: flex;
}
.scrollText__text span img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
}

.inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}
@media all and (max-width: 1024px) {
  .inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .inner {
    padding-left: 5.128vw;
    padding-right: 5.128vw;
  }
}

.inner-box {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.bg-grad {
  background: linear-gradient(#676360 0%, #4d4a47 100%);
}

.bg-gray {
  background-color: #f8f6f4;
}

.max800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fz14 {
  font-size: 0.875em;
}

.fz16 {
  font-size: 1rem !important;
}

.fz20 {
  font-size: 1.25em;
}

.commonHeading {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  letter-spacing: 0.1em;
}
.commonHeading .ja {
  font-weight: 500;
  font-size: 1.125rem;
  padding-bottom: 1em;
  position: relative;
  margin-bottom: 1em;
}
.commonHeading .ja:after {
  content: "";
  width: 3.125rem;
  height: 0.1875rem;
  background-color: #676360;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  transition: all 1s ease 0.5s;
  scale: 0 1;
}
.commonHeading .en {
  font-size: 0.6875rem;
  transition: all 1s ease 1s;
  opacity: 0;
}
.commonHeading--white .ja:after {
  background-color: #fff;
}
.commonHeading.onAnim .ja:after {
  scale: 1;
}
.commonHeading.onAnim .en {
  opacity: 1;
}

.commonHeading2 {
  font-size: 1.5rem;
  border-left: 0.5rem solid #676360;
  padding-left: 0.625rem;
}
@media all and (max-width: 640px) {
  .commonHeading2 {
    font-size: 1.25rem;
  }
}

.commonHeading3 {
  border-left: 0.25rem solid #676360;
  padding-left: 1.25rem;
  font-weight: 500;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.sp-flex-end {
  display: flex;
  justify-content: flex-start;
}
@media all and (max-width: 640px) {
  .sp-flex-end {
    justify-content: flex-end;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
}

.commonBT {
  appearance: none;
  border: 0;
  background-image: none;
  border-radius: 5em;
  transition: all 0.2s ease 0s;
  min-width: 12.5rem;
  padding: 0.625rem 1.25rem;
  position: relative;
  line-height: 1.4;
  color: currentColor;
  font-size: 0.875rem;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75em;
  border: 0.0625rem solid #676360;
}
.commonBT:hover {
  text-decoration: none;
}
.commonBT--white {
  border-color: #fff;
}
.commonBT--icon {
  padding: 0.3125rem 1.875rem;
}
.commonBT--icon .text {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.commonBT--icon .icon {
  width: 1.75rem;
}
@media (hover: hover) {
  .commonBT:hover {
    font-weight: bold;
  }
  .commonBT:hover .bar:after {
    left: calc(100% - 0.3125rem);
  }
}
.commonBT:active {
  font-weight: bold;
}
.commonBT:active .bar:after {
  left: calc(100% - 0.3125rem);
}
.commonBT .bar {
  position: relative;
  width: 1.875rem;
  height: 0.3125rem;
  transition: all 0.2s ease 0s;
}
.commonBT .bar:hover {
  text-decoration: none;
}
.commonBT .bar:before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  width: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: currentColor;
}
.commonBT .bar:after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: currentColor;
  margin-left: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.2s ease 0s;
}
.commonBT .bar:after:hover {
  text-decoration: none;
}

.layout-column2 {
  display: flex;
  gap: 2.5rem 2.5rem;
}
@media all and (min-width: 641px) {
  .layout-column2.reverse {
    flex-direction: row-reverse;
  }
}
.layout-column2__img {
  flex: 1;
  flex-shrink: 0;
}
.layout-column2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  flex-shrink: 0;
}
@media all and (max-width: 640px) {
  .layout-column2 {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-fv {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 55vw;
  overflow: hidden;
}
@media all and (min-width: 641px) {
  .top-fv {
    max-height: 90vw;
  }
}
@media all and (max-width: 640px) {
  .top-fv {
    min-height: 130vw;
  }
}
.top-fv:before {
  content: "";
  width: calc(100% - 1.25rem);
  height: calc(100% - 1.25rem);
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.625rem;
  z-index: 5;
  transition: all 1.25s ease 0.25s;
  opacity: 0;
}
.top-fv.onAnim:before {
  opacity: 1;
}
.top-fv.onAnim .top-fv__logo {
  opacity: 1;
  translate: 0 0;
}
.top-fv.onAnim .top-fv__lead {
  opacity: 1;
  translate: 0 0;
}
.top-fv.onAnim .top-fv__nav__item {
  opacity: 1;
  translate: 0 0;
}
.top-fv__slide {
  height: 100%;
}
.top-fv .swiper {
  height: 100%;
}
.top-fv .swiper-wrapper {
  pointer-events: none;
  height: 100%;
}
.top-fv .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.top-fv .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-fv__main {
  position: absolute;
  z-index: 15;
  top: 20%;
  left: 3.75rem;
  color: #fff;
}
@media all and (max-width: 640px) {
  .top-fv__main {
    left: 1.875rem;
    top: 30%;
  }
}
.top-fv__logo {
  width: 19.75rem;
  margin-bottom: 2.5rem;
  transition: all 1.25s ease 0.75s;
  opacity: 0;
  translate: -6.25rem 0;
}
@media all and (max-width: 1024px) {
  .top-fv__logo {
    width: 15rem;
  }
}
@media all and (max-width: 640px) {
  .top-fv__logo {
    width: 12.375rem;
    margin-bottom: 1.25rem;
  }
}
.top-fv__logo img {
  width: 100%;
}
.top-fv__lead {
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  transition: all 1.25s ease 1s;
  opacity: 0;
  translate: -6.25rem 0;
  line-height: 1.6;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-fv__lead {
    font-size: 1.125rem;
  }
}
.top-fv__nav {
  position: absolute;
  z-index: 15;
  bottom: 1.875rem;
  right: 1.875rem;
  display: flex;
  flex-direction: column;
  width: 11.25rem;
  gap: 0.625rem;
}
.top-fv__nav__item {
  transition: all 1.25s ease 1.25s;
  opacity: 0;
  translate: 6.25rem 0;
}
.top-fv__nav__item:last-child {
  transition: all 1.25s ease 1.5s;
}
.top-fv__nav a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.2s ease 0s;
  gap: 0.5rem;
  border: 0.0625rem solid #fff;
  border-radius: 0.375rem;
  padding: 0.9375rem 0.625rem 0.75rem;
  line-height: 1.2;
}
.top-fv__nav a:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .top-fv__nav a:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  .top-fv__nav a:hover .en path {
    fill: #fff;
  }
}
.top-fv__nav a:active {
  background-color: rgba(255, 255, 255, 0.4);
}
.top-fv__nav a:active .en path {
  fill: #fff;
}
.top-fv__nav a .en {
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  height: 1.25rem;
  width: 100%;
}
.top-fv__nav a .en svg {
  display: block;
  margin: 0 auto;
  height: 100%;
  width: auto;
}
.top-fv__nav a .en path {
  transition: all 0.2s ease 0s;
}
.top-fv__nav a .en path:hover {
  text-decoration: none;
}
.top-fv__nav a .ja {
  font-size: 0.6875rem;
}
.top-fv__scroll {
  position: absolute;
  z-index: 15;
  bottom: 1.875rem;
  left: 3.75rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1;
}
@media all and (max-width: 640px) {
  .top-fv__scroll {
    left: 1.875rem;
  }
}
.top-fv__scroll:hover {
  text-decoration: none;
}
.top-fv__scroll .text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.top-fv__scroll .bar {
  height: 4.0625rem;
  width: 0.0625rem;
  position: relative;
}
.top-fv__scroll .bar:before {
  content: "";
  width: 100%;
  height: 97%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollLine 2s infinite;
}
.top-fv__scroll .bar:after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  border-radius: 50%;
}

@keyframes scrollLine {
  0% {
    scale: 1 0;
    transform-origin: top;
  }
  30% {
    scale: 1 1;
    transform-origin: top;
  }
  50% {
    scale: 1 1;
    transform-origin: bottom;
  }
  80% {
    scale: 1 0;
    transform-origin: bottom;
  }
  90% {
    scale: 1 0;
    transform-origin: top;
  }
  100% {
    scale: 1 0;
    transform-origin: top;
  }
}
.top-lead {
  padding: 10.625rem 0 1.25rem;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .top-lead {
    padding-top: 7.5rem;
  }
}
@media all and (max-width: 640px) {
  .top-lead {
    padding-top: 5.625rem;
  }
}
@media all and (max-width: 640px) {
  .top-lead__heading {
    max-width: 19.8125rem;
  }
}
.top-lead__lead {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
@media all and (max-width: 800px) {
  .top-lead__lead {
    margin-bottom: 3.75rem;
  }
}
.top-lead__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media all and (max-width: 800px) {
  .top-lead__box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.top-lead__box__heading {
  line-height: 2;
}
.top-lead .scrollText {
  height: 6.625rem;
  margin-top: 6.25rem;
}
@media all and (max-width: 640px) {
  .top-lead .scrollText {
    margin-top: 5rem;
  }
}
.top-lead .scrollText span {
  padding: 0;
}
.top-lead .scrollText__text img {
  scale: 1 0.9;
}

.top-img {
  height: 30rem;
}
@media all and (max-width: 640px) {
  .top-img {
    height: 18.75rem;
  }
}
.top-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top-room {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 640px) {
  .top-room {
    padding-bottom: 5rem;
  }
}
.top-room .scrollText {
  margin-bottom: 5.625rem;
  margin-top: -1rem;
}
@media all and (max-width: 640px) {
  .top-room .scrollText {
    margin-bottom: 3.75rem;
  }
}

.top-proposal {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 640px) {
  .top-proposal {
    padding-bottom: 5rem;
  }
}
.top-proposal .scrollText {
  margin-bottom: 5.625rem;
}
@media all and (max-width: 640px) {
  .top-proposal .scrollText {
    margin-bottom: 3.75rem;
  }
}
.top-building {
  padding-bottom: 7.5rem;
}
@media all and (max-width: 640px) {
  .top-building {
    padding-bottom: 5rem;
  }
}
.top-building .scrollText {
  margin-bottom: 5.625rem;
}
@media all and (max-width: 640px) {
  .top-building .scrollText {
    margin-bottom: 3.75rem;
  }
}
.top-useful {
  padding: 7.5rem 0;
  color: #fff;
}
@media all and (max-width: 640px) {
  .top-useful {
    padding: 5rem 0;
  }
}
.top-useful__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 0 2.5rem;
  margin-bottom: 7.5rem;
}
@media all and (max-width: 1024px) {
  .top-useful__list {
    margin-bottom: 5rem;
  }
}
@media all and (max-width: 800px) {
  .top-useful__list {
    grid-template-columns: 1fr;
    margin-bottom: 3.75rem;
  }
}
.top-useful__list__item:first-child {
  grid-column: 1;
  grid-row: 1/span 4;
}
@media all and (max-width: 800px) {
  .top-useful__list__item:first-child {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 2.5rem;
  }
}
.top-useful__list__item:first-child .link {
  color: #fff;
}
@media (hover: none) {
  .top-useful__list__item:first-child .link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-useful__list__item:first-child .link:hover {
    text-decoration: none;
  }
  .top-useful__list__item:first-child .link:hover img {
    scale: 1.15;
  }
}
.top-useful__list__item:first-child .link:active {
  text-decoration: none;
}
.top-useful__list__item:first-child .link:active img {
  scale: 1.15;
}
.top-useful__list__item:first-child .content {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.top-useful__list__item:first-child .title {
  line-height: 2;
  min-height: 4em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-useful__list__item:first-child .date {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.2;
}
.top-useful__list__item:first-child .img {
  overflow: hidden;
  flex-shrink: 0;
  aspect-ratio: 16/9;
}
.top-useful__list__item:first-child .img img {
  transition: all 0.2s ease 0s;
  width: 100%;
  height: 100%;
}
.top-useful__list__item:first-child .img img:hover {
  text-decoration: none;
}
.top-useful__list__item:nth-child(n+2) {
  grid-column: 2;
  margin-bottom: 1.25rem;
}
@media all and (max-width: 800px) {
  .top-useful__list__item:nth-child(n+2) {
    grid-column: 1;
  }
}
.top-useful__list__item:nth-child(n+2):last-child {
  margin-bottom: 0;
}
.top-useful__list__item:nth-child(n+2) .link {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 1.25rem;
}
@media (hover: none) {
  .top-useful__list__item:nth-child(n+2) .link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-useful__list__item:nth-child(n+2) .link:hover {
    text-decoration: none;
  }
  .top-useful__list__item:nth-child(n+2) .link:hover img {
    scale: 1.15;
  }
}
.top-useful__list__item:nth-child(n+2) .link:active {
  text-decoration: none;
}
.top-useful__list__item:nth-child(n+2) .link:active img {
  scale: 1.15;
}
.top-useful__list__item:nth-child(n+2) .title {
  font-size: 0.875rem;
  line-height: 1.75;
  min-height: 3.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-useful__list__item:nth-child(n+2) .date {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
.top-useful__list__item:nth-child(n+2) .img {
  overflow: hidden;
  width: 30%;
  flex-shrink: 0;
  aspect-ratio: 16/9;
}
@media all and (max-width: 800px) {
  .top-useful__list__item:nth-child(n+2) .img {
    width: 42.25%;
  }
}
.top-useful__list__item:nth-child(n+2) .img img {
  transition: all 0.2s ease 0s;
  width: 100%;
  height: 100%;
}
.top-useful__list__item:nth-child(n+2) .img img:hover {
  text-decoration: none;
}
.top-useful__nav {
  display: flex;
  gap: 2.5rem;
}
@media all and (max-width: 800px) {
  .top-useful__nav {
    flex-direction: column;
  }
}
.top-useful__nav a {
  flex: 1;
  flex-shrink: 0;
  position: relative;
}
.top-useful__nav a:after {
  content: "";
  z-index: 3;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
}
@media (hover: none) {
  .top-useful__nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .top-useful__nav a:hover {
    text-decoration: none;
  }
  .top-useful__nav a:hover img {
    scale: 1.1;
  }
  .top-useful__nav a:hover .bar:after {
    left: calc(100% - 0.3125rem);
  }
}
.top-useful__nav a:active {
  text-decoration: none;
}
.top-useful__nav a:active img {
  scale: 1.1;
}
.top-useful__nav a:active .bar:after {
  left: calc(100% - 0.3125rem);
}
.top-useful__nav .img {
  overflow: hidden;
}
.top-useful__nav .img img {
  transition: all 0.2s ease 0s;
  width: 100%;
}
.top-useful__nav .img img:hover {
  text-decoration: none;
}
.top-useful__nav .text {
  z-index: 10;
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: #fff;
  gap: 0.625rem;
}
.top-useful__nav .text .en {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.top-useful__nav .icon {
  width: 4.375rem;
  height: 2.5rem;
  border: 0.0625rem solid #fff;
  border-radius: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 10;
}
.top-useful__nav .icon .bar {
  position: relative;
  height: 0.0625rem;
  width: 1.875rem;
  background-color: #fff;
}
.top-useful__nav .icon .bar:after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.2s ease 0s;
}
.top-useful__nav .icon .bar:after:hover {
  text-decoration: none;
}

.top-features__box {
  padding: 5rem 1.875rem;
}
@media all and (max-width: 640px) {
  .top-features__box {
    padding: 3.75rem 1.25rem;
  }
}
.top-features__points {
  display: flex;
}
@media all and (max-width: 1024px) {
  .top-features__points {
    flex-direction: column;
  }
}
.top-features__points__item {
  flex: 1;
  flex-shrink: 0;
  padding: 0 1.875rem;
  position: relative;
}
@media all and (max-width: 1024px) {
  .top-features__points__item {
    padding: 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width: 640px) {
  .top-features__points__item {
    grid-template-columns: 1fr;
  }
}
.top-features__points__item:before {
  content: "";
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 1024px) {
  .top-features__points__item:before {
    width: 100%;
    height: 0.0625rem;
    background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.top-features__points__item:last-child:after {
  content: "";
  width: 0.0625rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 1024px) {
  .top-features__points__item:last-child:after {
    width: 100%;
    height: 0.0625rem;
    top: auto;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}
.top-features__points__label {
  color: #676360;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  font-size: 1.625rem;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__label {
    grid-column: 1/3;
  }
}
.top-features__points__label span {
  letter-spacing: 0.1em;
}
.top-features__points__label strong {
  font-size: 2.3076923077em;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__img {
    grid-row: 2/4;
    margin-right: 1.25rem;
  }
}
@media all and (max-width: 1024px) {
  .top-features__points__img img {
    width: 100%;
  }
}
.top-features__points__heading {
  font-size: 1.875rem;
  font-weight: 900;
  margin: 0.5em 0;
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__heading {
    margin-top: 0;
    grid-column: 2/3;
  }
}
@media all and (max-width: 1024px) and (min-width: 641px) {
  .top-features__points__text {
    grid-column: 2/3;
  }
}

.top-merit {
  position: relative;
}
.top-merit__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.75rem 2.5rem;
}
@media all and (max-width: 640px) {
  .top-merit__list {
    gap: 2.5rem;
    flex-direction: column;
  }
}
.top-merit__list__item {
  padding: 1.875rem 1.875rem 2.5rem;
}
@media all and (min-width: 641px) {
  .top-merit__list__item {
    width: calc(50% - 1.25rem);
    max-width: 31.125rem;
    flex-shrink: 0;
  }
}
@media all and (max-width: 640px) {
  .top-merit__list__item {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.top-merit__list__heading {
  font-weight: 900;
  font-size: 1.875rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media all and (max-width: 1024px) {
  .top-merit__list__heading {
    font-size: 1.375rem;
  }
}
@media all and (max-width: 640px) {
  .top-merit__list__heading {
    font-size: 1.875rem;
  }
}

.top-columnWrap {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 800px) {
  .top-columnWrap {
    gap: 1.625rem;
    flex-direction: column;
  }
}
.top-columnWrap__first {
  flex: 1;
}
.top-columnWrap__first__link {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease 0s;
}
.top-columnWrap__first__link:hover {
  text-decoration: none;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__link {
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
  }
}
.top-columnWrap__first__link:hover {
  color: #4F6D9D;
}
.top-columnWrap__first__link:hover img {
  scale: 1.05;
}
.top-columnWrap__first__img {
  aspect-ratio: 1/0.5627;
  overflow: hidden;
}
@media all and (min-width: 801px) {
  .top-columnWrap__first__img {
    margin-bottom: 0.625rem;
  }
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__img {
    flex: 0.45;
  }
}
.top-columnWrap__first__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.top-columnWrap__first__img img:hover {
  text-decoration: none;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first__content {
    flex: 0.55;
    display: flex;
    flex-direction: column;
  }
}
.top-columnWrap__first__date {
  font-size: 0.75rem;
  color: #8e8e8e;
  margin-bottom: 0.75em;
}
@media all and (min-width: 801px) {
  .top-columnWrap__first__date {
    font-size: 0.875rem;
    text-align: right;
  }
}
.top-columnWrap__first__title {
  display: -webkit-box;
  line-height: 1.75;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-columnWrap__first .label-more {
  margin-top: 0.625rem;
}
@media all and (max-width: 800px) {
  .top-columnWrap__first .label-more {
    display: none;
  }
}
.top-columnWrap__side {
  width: 23.875rem;
  padding-left: 1.875rem;
  position: relative;
}
@media all and (max-width: 800px) {
  .top-columnWrap__side {
    padding-left: 0;
    width: 100%;
  }
}
@media all and (min-width: 801px) {
  .top-columnWrap__side:before {
    content: "";
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(to bottom, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  }
}

.room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem 1.875rem;
}
@media all and (max-width: 800px) {
  .room-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 640px) {
  .room-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media all and (min-width: 801px) {
  .room-list__item:nth-child(2n) {
    animation-delay: 0.3s !important;
  }
  .room-list__item:nth-child(3n) {
    animation-delay: 0.6s !important;
  }
}
@media all and (min-width: 641px) {
  .room-list__item:nth-child(2n) {
    animation-delay: 0.3s !important;
  }
}
.room-list__link {
  display: flex;
  flex-direction: column;
}
@media (hover: none) {
  .room-list__link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .room-list__link:hover {
    text-decoration: none;
  }
  .room-list__link:hover .room-list__img img {
    scale: 1.125;
  }
}
.room-list__link:active {
  text-decoration: none;
}
.room-list__link:active .room-list__img img {
  scale: 1.125;
}
.room-list__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.room-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.room-list__img img:hover {
  text-decoration: none;
}
.room-list__header {
  margin: 0.625rem 0;
  display: flex;
  gap: 1.25rem;
  line-height: 1.4;
}
@media all and (max-width: 640px) {
  .room-list__header {
    margin: 1.25rem 0;
  }
}
.room-list__statusWrap {
  flex-shrink: 0;
}
.room-list__status {
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
  background-color: #676360;
  border-radius: 0.375rem;
  padding: 0.4em 0.75em;
}
.room-list__status.available {
  background-color: #1758BF;
}
.room-list__status.not_available {
  background-color: #e20000;
}
.room-list__openRooms {
  font-size: 0.75rem;
  padding-top: 0.45em;
}
.room-list__title {
  font-size: 0.875rem;
  line-height: 1.75;
  max-height: 3.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.625rem;
}
.room-list__keyword {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.4;
  color: #980100;
}

.room-single__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.9375rem;
}
.room-single__header__title {
  width: 100%;
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  font-weight: 500;
  font-size: 1.125rem;
}
.room-single__header__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.room-single__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}
.room-single__summary .item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.room-single__summary .item dt {
  border: 0.0625rem solid #000;
  padding: 0 0.5em;
}
.room-single__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
}
@media all and (max-width: 1024px) {
  .room-single__gallery {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media all and (max-width: 640px) {
  .room-single__gallery {
    grid-template-columns: 1fr;
  }
}
.room-single__gallery__mainWrap {
  width: 100%;
}
.room-single__gallery__main {
  width: 100%;
}
.room-single__gallery__main .swiper-wrapper {
  width: 100%;
  max-width: 100% !important;
}
.room-single__gallery__main .swiper-slide {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 1/1;
}
.room-single__gallery__main .swiper-slide img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.room-single__gallery__arrows {
  position: relative;
  display: flex;
  margin-top: 1.25rem;
  justify-content: flex-end;
  gap: 1.25rem;
}
.room-single__gallery__prev, .room-single__gallery__next {
  all: unset;
  width: 0.75rem;
  height: 0.875rem;
  position: relative;
}
.room-single__gallery__prev:after, .room-single__gallery__next:after {
  content: "";
  position: absolute;
  background-color: #676360;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.room-single__gallery__prev:after {
  scale: -1 1;
}
.room-single__gallery__thumbs {
  width: 100%;
}
.room-single__gallery__thumbs .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
  gap: 0.625rem;
  width: 100%;
  height: auto;
}
@media all and (max-width: 640px) {
  .room-single__gallery__thumbs .swiper-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
  }
}
.room-single__gallery__thumbs .swiper-slide {
  height: auto;
  aspect-ratio: 1/1;
}
.room-single__gallery__thumbs .thumb {
  transition: all 0.2s ease 0s;
}
.room-single__gallery__thumbs .thumb:hover {
  text-decoration: none;
}
.room-single__gallery__thumbs .thumb.current {
  border: 0.125rem solid #808080;
}
.room-single__gallery__thumbs img {
  width: 100%;
  object-fit: cover;
}
.room-single__infoWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media all and (max-width: 640px) {
  .room-single__infoWrap {
    grid-template-columns: 1fr;
  }
}
.room-single__infoList {
  font-size: 0.875rem;
}
.room-single__infoList .row {
  display: flex;
  padding: 1.5625rem 0;
  position: relative;
}
@media all and (max-width: 640px) {
  .room-single__infoList .row {
    flex-direction: column;
  }
}
.room-single__infoList .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.room-single__infoList .row:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.room-single__infoList dt {
  width: 4.375rem;
  flex-shrink: 0;
  padding: 0 1em 0 0;
  position: relative;
}
.room-single__infoList dt:after {
  content: ":";
  right: 0;
  position: absolute;
}
@media all and (max-width: 640px) {
  .room-single__infoList dt {
    font-weight: bold;
    width: 100%;
  }
  .room-single__infoList dt:after {
    display: none;
  }
}
.room-single__infoList dd {
  padding-left: 1em;
}
@media all and (max-width: 640px) {
  .room-single__infoList dd {
    padding-left: 0;
  }
}
.room-single__mapWrap {
  position: relative;
  height: 22.5rem;
}
@media all and (max-width: 640px) {
  .room-single__mapWrap {
    height: 12.5rem;
  }
}
.room-single__mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pageHeader {
  color: #fff;
  position: relative;
  height: 25rem;
  display: flex;
}
@media all and (max-width: 640px) {
  .pageHeader {
    height: 17.5rem;
  }
}
.pageHeader:before {
  content: "";
  width: calc(100% - 1.25rem);
  height: calc(100% - 1.25rem);
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.625rem;
  z-index: 5;
  transition: all 1.25s ease 0.25s;
  opacity: 0;
}
.pageHeader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}
.pageHeader__title {
  height: 3.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: all 1.25s ease 0.75s;
  opacity: 0;
}
.pageHeader__title.large {
  height: 4rem;
}
.pageHeader__title img {
  height: 100%;
  width: auto;
}
.pageHeader.onAnim:before {
  opacity: 1;
}
.pageHeader.onAnim .pageHeader__title {
  opacity: 1;
}
.pageHeader__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.pageHeader__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.bread-crumb {
  font-size: 0.75rem;
  line-height: 1.4;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 0.625rem;
  gap: 0.5em 0;
}
.bread-crumb li {
  display: flex;
  align-items: center;
}
.bread-crumb .arrow {
  margin: 0 0.3em;
}

.page-lead {
  max-width: 51.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.page-lead__heading {
  font-size: 1.5rem;
}
@media all and (min-width: 1025px) {
  .page-lead__heading {
    text-align: center;
  }
}
@media all and (max-width: 640px) {
  .page-lead__heading {
    font-size: 1.25rem;
  }
}

.page-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}
@media all and (max-width: 1024px) {
  .page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem 1.25rem;
  }
}
@media all and (max-width: 640px) {
  .page-nav {
    gap: 0.625rem 0.75rem;
    font-size: 0.75rem;
  }
}
.page-nav a {
  line-height: 1.4;
  padding: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  border-radius: 6em;
  border: 0.0625rem solid #989898;
  transition: all 0.2s ease 0s;
}
.page-nav a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .page-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .page-nav a:hover {
    background-color: #F8F8F8;
  }
}
.page-nav a:active {
  background-color: #F8F8F8;
}

.page-foot-link {
  padding: 1.875rem;
  border: 0.0625rem solid #E0E0E0;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  transition: all 0.2s ease 0s;
}
.page-foot-link:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .page-foot-link {
    padding: 1.25rem;
    flex-direction: column;
  }
}
@media (hover: none) {
  .page-foot-link {
    transition: none !important;
  }
}
@media (hover: hover) {
  .page-foot-link:hover {
    background-color: #f8f8f8;
  }
  .page-foot-link:hover img {
    scale: 1.05;
  }
}
.page-foot-link:active {
  background-color: #f8f8f8;
}
.page-foot-link:active img {
  scale: 1.05;
}
.page-foot-link__img {
  flex-shrink: 0;
  overflow: hidden;
}
@media all and (min-width: 641px) {
  .page-foot-link__img {
    width: 15.625rem;
  }
}
.page-foot-link__img img {
  width: 100%;
  transition: all 0.2s ease 0s;
}
.page-foot-link__img img:hover {
  text-decoration: none;
}
.page-foot-link__content {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.page-foot-link__heading {
  display: flex;
  align-items: baseline;
  line-height: 1.4;
  gap: 0.75em;
  flex-wrap: wrap;
}
.page-foot-link__heading .ja {
  font-size: 1.125rem;
}
.page-foot-link__heading .en {
  font-size: 0.6875rem;
}
.page-foot-link__text {
  font-size: 0.875rem;
}

.info-table {
  max-width: 57.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
}
.info-table__row {
  display: flex;
  padding: 1.5625rem 0;
  position: relative;
}
@media all and (max-width: 640px) {
  .info-table__row {
    flex-direction: column;
  }
}
.info-table__row.no-pb {
  padding-bottom: 0;
}
.info-table__row.no-pt {
  padding-top: 0;
}
.info-table__row.no-pt:before {
  display: none;
}
@media all and (max-width: 640px) {
  .info-table__row.no-pt {
    padding-top: 1.25rem;
  }
}
.info-table__row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.info-table__row:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.info-table__dt {
  width: 12.5rem;
  flex-shrink: 0;
  padding: 0 1em;
  position: relative;
}
.info-table__dt:after {
  content: ":";
  right: 0;
  position: absolute;
}
@media all and (max-width: 1024px) {
  .info-table__dt {
    width: 9.375rem;
  }
}
@media all and (max-width: 640px) {
  .info-table__dt {
    font-weight: bold;
    width: 100%;
  }
  .info-table__dt:after {
    display: none;
  }
}
.info-table__dd {
  padding-left: 2em;
}
@media all and (max-width: 640px) {
  .info-table__dd {
    padding-left: 1em;
  }
}

.mapWrap {
  position: relative;
  height: 26.875rem;
}
@media all and (max-width: 1024px) {
  .mapWrap {
    height: 20rem;
  }
}
@media all and (max-width: 640px) {
  .mapWrap {
    height: 15.625rem;
  }
}
.mapWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pager {
  margin-top: 5rem;
}
@media all and (max-width: 640px) {
  .pager {
    margin-top: 3.75rem;
  }
}
.pager .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pager .nav-links .prev {
  display: none;
}
.pager .nav-links .next {
  display: none;
}
.pager .nav-links a {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  color: #676360;
  border-radius: 0.375rem;
  border: 0.0625rem solid #676360;
  transition: all 0.2s ease 0s;
}
.pager .nav-links a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .pager .nav-links a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .pager .nav-links a:hover {
    background-color: #F8F8F8;
  }
}
.pager .nav-links a:active {
  background-color: #F8F8F8;
}
.pager .nav-links span.current {
  background-color: #fff;
  min-width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.3em;
  font-size: 0.875rem;
  background-color: #676360;
  color: #fff;
  border-radius: 0.375rem;
}

.singleContent .wp-block-heading {
  font-size: 1.125rem;
  margin-bottom: 1em;
  font-weight: bold;
}
.singleContent strong {
  color: #fff;
  font-weight: bold;
  background-color: #898989;
}
.singleContent em {
  font-size: 0.8125rem;
  color: #6a6a6a;
}
.singleContent a {
  text-decoration: underline;
}
.singleContent a:hover {
  text-decoration: none;
}
.singleContent p {
  margin-bottom: 2.5rem;
}
.singleContent p:last-child {
  margin-bottom: 0;
}

.postlist-child {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.postlist-child__link {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.2s ease 0s;
}
.postlist-child__link:hover {
  text-decoration: none;
}
.postlist-child__link:hover {
  color: #4F6D9D;
}
.postlist-child__link:hover img {
  scale: 1.05;
}
.postlist-child__img {
  flex: 0.45;
  aspect-ratio: 1/0.6;
  overflow: hidden;
}
.postlist-child__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.postlist-child__img img:hover {
  text-decoration: none;
}
.postlist-child__content {
  flex: 0.55;
  display: flex;
  flex-direction: column;
}
.postlist-child__date {
  line-height: 1.2;
  font-size: 0.875rem;
  color: #8e8e8e;
  margin-bottom: 0.5em;
}
.postlist-child__title {
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
}

.reportSingle {
  padding: 2.5rem 2.5rem 3.75rem;
}
@media all and (max-width: 640px) {
  .reportSingle {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.reportSingle__header {
  padding-bottom: 3.75rem;
  margin-bottom: 3.75rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 640px) {
  .reportSingle__header {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    flex-direction: column;
    gap: 1.25rem;
  }
}
.reportSingle__header:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.reportSingle__header__img {
  width: 60%;
}
@media all and (max-width: 640px) {
  .reportSingle__header__img {
    width: 100%;
  }
}
.reportSingle__header__content {
  width: 37.5%;
  max-width: 21.5625rem;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 640px) {
  .reportSingle__header__content {
    width: 100%;
    max-width: 100%;
  }
}
.reportSingle__header__content .area {
  display: block;
  color: #8e8e8e;
  font-size: 0.875rem;
  margin-bottom: 1.25em;
}
.reportSingle__header__content .shop {
  display: flex;
  align-items: baseline;
  gap: 0.75em;
  flex-wrap: wrap;
}
.reportSingle__header__content .shop .shop_name {
  color: #676360;
  font-weight: 900;
  font-size: 1.25rem;
}
.reportSingle__header__content .shop .branch_name {
  font-size: 0.875rem;
}
.reportSingle__header__content .name {
  font-weight: 900;
  font-size: 1.25rem;
}

.wp-block-columns {
  margin-bottom: 2.5rem;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}

.proposal-list__item {
  position: relative;
  padding: 7.5rem 0;
}
@media all and (max-width: 1024px) {
  .proposal-list__item {
    padding: 6.25rem 0;
  }
}
@media all and (max-width: 640px) {
  .proposal-list__item {
    padding: 4.375rem 0;
  }
}
.proposal-list__item.onAnim:before, .proposal-list__item.onAnim:after {
  opacity: 1 !important;
}
.proposal-list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  transition: all 0.2s ease 0s;
  opacity: 0;
}
.proposal-list__item:before:hover {
  text-decoration: none;
}
.proposal-list__item:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  transition: all 0.2s ease 0s;
  opacity: 0;
}
.proposal-list__item:last-child:after:hover {
  text-decoration: none;
}

.useful-nav {
  display: flex;
  gap: 2.5rem;
  padding-bottom: 5rem;
  position: relative;
}
.useful-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 800px) {
  .useful-nav {
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 3.125rem;
  }
}

.useful-navBT {
  display: flex;
  align-items: center;
  border-radius: 0.5em;
  padding: 1em 1.5em;
  border: 0.0625rem solid #676360;
  transition: all 0.2s ease 0s;
  flex: 1;
  justify-content: space-between;
  gap: 1em;
  line-height: 1.4;
  font-size: 1.25rem;
}
.useful-navBT:hover {
  text-decoration: none;
}
@media all and (max-width: 640px) {
  .useful-navBT {
    font-size: 1rem;
  }
}
@media (hover: none) {
  .useful-navBT {
    transition: none !important;
  }
}
@media (hover: hover) {
  .useful-navBT:hover {
    font-weight: bold;
    background-color: #f8f8f8;
  }
  .useful-navBT:hover .bar:after {
    left: calc(100% - 0.3125rem);
  }
}
.useful-navBT:active {
  font-weight: bold;
  background-color: #f8f8f8;
}
.useful-navBT:active .bar:after {
  left: calc(100% - 0.3125rem);
}
.useful-navBT .main {
  display: flex;
  align-items: center;
  gap: 1em;
}
.useful-navBT .icon {
  width: 2em;
}
.useful-navBT .icon img {
  width: 100%;
}
.useful-navBT .bar {
  position: relative;
  width: 1.875rem;
  height: 0.3125rem;
  transition: all 0.2s ease 0s;
}
.useful-navBT .bar:hover {
  text-decoration: none;
}
.useful-navBT .bar:before {
  content: "";
  position: absolute;
  height: 0.0625rem;
  width: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  background-color: currentColor;
}
.useful-navBT .bar:after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: currentColor;
  margin-left: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  transition: all 0.2s ease 0s;
}
.useful-navBT .bar:after:hover {
  text-decoration: none;
}

.flowWrap {
  display: flex;
  flex-direction: column;
}

.flow-list {
  display: contents;
}
.flow-list__item {
  position: relative;
  padding: 7.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1.875rem;
}
@media all and (max-width: 1024px) {
  .flow-list__item {
    padding: 6.25rem 0;
  }
}
@media all and (max-width: 800px) {
  .flow-list__item {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 640px) {
  .flow-list__item {
    padding: 4.375rem 0;
  }
}
.flow-list__item:first-child {
  order: -1;
  padding-top: 0;
  padding-bottom: 5rem;
}
.flow-list__item:first-child:before {
  display: none;
}
@media all and (max-width: 640px) {
  .flow-list__item:first-child {
    padding-bottom: 4.375rem;
  }
}
.flow-list__item.onAnim:before, .flow-list__item.onAnim:after {
  opacity: 1 !important;
}
.flow-list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  transition: all 0.2s ease 0s;
  opacity: 0;
}
.flow-list__item:before:hover {
  text-decoration: none;
}
.flow-list__item:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
  transition: all 0.2s ease 0s;
  opacity: 0;
}
.flow-list__item:last-child:after:hover {
  text-decoration: none;
}
.flow-list__imgWrap {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 20.375rem;
}
@media all and (max-width: 1024px) {
  .flow-list__imgWrap {
    width: 30%;
  }
}
@media all and (max-width: 800px) {
  .flow-list__imgWrap {
    width: 100%;
  }
}
.flow-list__imgWrap img {
  width: 100%;
}
.flow-list__content {
  flex: 1;
}
@media all and (min-width: 801px) {
  .flow-list__content {
    padding-top: 0.9375rem;
  }
}
.flow-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
.flow-list__header .num {
  line-height: 0.8;
  font-weight: 900;
  font-size: 4.125rem;
  color: #676360;
  position: relative;
  -webkit-text-stroke: 0.140625rem #676360;
}
.flow-list__header .num span {
  color: #fff;
  -webkit-text-stroke: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 3;
}
@media all and (max-width: 640px) {
  .flow-list__header .num {
    font-size: 3.375rem;
  }
}
.flow-list__btWrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.25rem;
}
@media all and (max-width: 640px) {
  .flow-list__btWrap {
    flex-direction: column;
  }
}

.terms-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(3.125rem, 1fr));
  gap: 1.5rem;
  font-size: 0.875rem;
  position: sticky;
  top: 7.5rem;
  z-index: 30;
}
@media all and (max-width: 1024px) {
  .terms-nav {
    display: grid;
    gap: 0.625rem 0.9375rem;
  }
}
@media all and (max-width: 640px) {
  .terms-nav {
    gap: 0.625rem 0.75rem;
    font-size: 0.75rem;
    top: 5.625rem;
  }
}
.terms-nav a {
  line-height: 1.4;
  padding: 0.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  border-radius: 6em;
  border: 0.0625rem solid #989898;
  background-color: #fff;
  transition: all 0.2s ease 0s;
}
.terms-nav a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .terms-nav a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .terms-nav a:hover {
    background-color: #F8F8F8;
  }
}
.terms-nav a:active {
  background-color: #F8F8F8;
}

.termsWrap {
  padding-top: 2.5rem;
  position: relative;
}
.termsWrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}

.terms-section {
  padding-top: 2.5rem;
}
.terms-section__heading {
  line-height: 1;
  margin-bottom: 2.5rem;
  padding-left: 0.4em;
  font-size: 0.875rem;
}
.terms-section__heading strong {
  font-size: 3.125rem;
  margin-right: 0.1em;
}
.terms-section .row {
  display: flex;
  align-items: flex-start;
  padding: 1.875rem 0;
  position: relative;
}
@media all and (max-width: 800px) {
  .terms-section .row {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.terms-section .row:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.terms-section .row:last-child:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
.terms-section .row dt {
  flex-shrink: 0;
  width: 15.625rem;
  padding-right: 1em;
  font-weight: bold;
  padding-left: 1em;
  border-left: 0.25rem solid #676360;
  line-height: 1.5;
  margin-top: 0.25em;
}
.terms-section .row dd {
  flex: 1;
}
.terms-section .row dd a {
  color: #676360;
  text-decoration: underline;
}
.terms-section .row dd a:hover {
  text-decoration: none;
}

.column-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media all and (max-width: 1024px) {
  .column-list {
    gap: 3.75rem;
  }
}
@media all and (max-width: 640px) {
  .column-list {
    gap: 2.5rem;
  }
}
.column-list__item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media all and (max-width: 1024px) {
  .column-list__item {
    gap: 1.875rem;
  }
}
@media all and (max-width: 640px) {
  .column-list__item {
    flex-direction: column;
    align-items: normal;
    gap: 1.25rem;
  }
}
.column-list__img {
  width: 20.375rem;
  overflow: hidden;
  flex-shrink: 0;
}
@media all and (max-width: 1024px) {
  .column-list__img {
    width: 30%;
  }
}
@media all and (max-width: 640px) {
  .column-list__img {
    width: 100%;
  }
}
.column-list__img a {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
}
@media (hover: none) {
  .column-list__img a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .column-list__img a:hover img {
    scale: 1.1;
  }
}
.column-list__img a:active img {
  scale: 1.1;
}
.column-list__img a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.column-list__img a img:hover {
  text-decoration: none;
}
.column-list__content {
  display: flex;
  flex-direction: column;
}
.column-list__date {
  color: #acacac;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.75em;
}
.column-list__title {
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2.5rem;
}
@media all and (min-width: 641px) {
  .column-list__title {
    min-height: 4em;
  }
}
@media all and (max-width: 640px) {
  .column-list__title {
    margin-bottom: 1.25rem;
  }
}

.column-singleWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media all and (max-width: 800px) {
  .column-singleWrap {
    flex-direction: column;
  }
}
.column-singleWrap__main {
  width: 67%;
  padding-right: 2.5rem;
  position: relative;
}
.column-singleWrap__main:after {
  content: "";
  width: 0.0625rem;
  background-color: #E0E0E0;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
}
@media all and (max-width: 800px) {
  .column-singleWrap__main {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2.5rem;
  }
  .column-singleWrap__main:after {
    display: none;
  }
}
.column-singleWrap__side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.column-singleWrap__sideSection .commonHeading {
  position: relative;
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
}
.column-singleWrap__sideSection .commonHeading:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #707070 0, #707070 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}

.columnSingle__header {
  position: relative;
  display: flex;
  flex-direction: column;
}
.columnSingle__header .date {
  display: block;
  color: #ACACAC;
  font-size: 0.875rem;
  margin-top: 1em;
}
.columnSingle__header .title {
  font-size: 1.5rem;
}
.columnSingle__header__img {
  width: 100%;
  margin-top: 2.5rem;
}
@media all and (max-width: 640px) {
  .columnSingle__header__img {
    margin-top: 1.875rem;
  }
}
.columnSingle__header__img img {
  width: 100%;
}

.about-nav {
  display: flex;
  gap: 2.5rem;
  padding-bottom: 5rem;
  position: relative;
}
.about-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background: repeating-linear-gradient(to right, #6c6c6c 0px, #6c6c6c 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 1024px) {
  .about-nav {
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 3.125rem;
  }
}

.about-message {
  padding-bottom: 1.25rem;
}
.about-message__box {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media all and (max-width: 640px) {
  .about-message__box {
    flex-direction: column-reverse;
  }
}
.about-message__img {
  flex-shrink: 0;
}
@media all and (min-width: 641px) {
  .about-message__img {
    width: 32%;
  }
}
@media all and (max-width: 640px) {
  .about-message__img {
    width: 60%;
    margin: 0 auto;
  }
}
.about-message .scrollText {
  height: 6.625rem;
  margin-top: 6.25rem;
  filter: brightness(0.65);
}
@media all and (max-width: 640px) {
  .about-message .scrollText {
    margin-top: 5rem;
  }
}
.about-message .scrollText span {
  padding: 0;
}
.about-message .scrollText__text img {
  scale: 1 0.9;
}

.about-history {
  position: relative;
  padding: 3.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.about-history:before {
  content: "";
  height: 100%;
  width: 0.0625rem;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  background-color: #E0E0E0;
  transform-origin: top center;
  transition: all 2s ease 0s;
  scale: 1 0;
}
@media all and (max-width: 800px) {
  .about-history:before {
    translate: 0;
    left: 0.625rem;
  }
}
.about-history.onAnim:before {
  scale: 1;
}
.about-history__item {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}
@media all and (max-width: 800px) {
  .about-history__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-history__time {
  width: 50%;
  font-size: 1.125rem;
  font-weight: 900;
  color: #555;
  display: flex;
  justify-content: flex-end;
  padding-right: 10%;
  position: relative;
  line-height: 1.4;
}
@media all and (max-width: 800px) {
  .about-history__time {
    width: 100%;
    padding-right: 0;
    justify-content: flex-start;
    padding-left: 1.875rem;
  }
}
.about-history__time:after {
  content: "";
  top: 50%;
  right: 0;
  width: 0.3125rem;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  translate: 50% -50%;
}
@media all and (max-width: 800px) {
  .about-history__time:after {
    right: auto;
    left: 0.625rem;
    translate: -50% -50%;
  }
}
.about-history__time .in {
  position: relative;
}
.about-history__time .stroke {
  -webkit-text-stroke: #fff 0.125rem;
}
.about-history__time .color {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
}
.about-history__time .year {
  font-size: 2.2222222222em;
}
.about-history__time .month {
  font-size: 1.3333333333em;
}
.about-history__content {
  width: 50%;
  padding-left: 10%;
}
@media all and (max-width: 800px) {
  .about-history__content {
    width: 100%;
    padding-left: 1.875rem;
  }
}

.recruit-box {
  border: 0.0625rem solid #E0E0E0;
  padding: 3.75rem;
}
@media all and (max-width: 640px) {
  .recruit-box {
    padding: 1.875rem 1.25rem;
  }
}
.recruit-box--empty {
  min-height: 20.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .recruit-box--empty {
    text-align: left;
    min-height: 17.5rem;
  }
}

.recruit-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.recruit-list__heading {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}
@media all and (max-width: 1024px) {
  .recruit-list {
    gap: 3.75rem;
  }
}

.privacy-wrap {
  border: 0.0625rem solid #E0E0E0;
  padding: 3.75rem;
  font-size: 0.875rem;
}
@media all and (max-width: 640px) {
  .privacy-wrap {
    padding: 1.875rem 1.25rem;
  }
}
.privacy-wrap h2,
.privacy-wrap h3,
.privacy-wrap h4 {
  line-height: 2;
}
.privacy-wrap ul {
  margin-bottom: 2em;
}
.privacy-wrap p {
  margin-bottom: 2em;
}
.privacy-wrap p:last-child {
  margin-bottom: 0;
}

.formContainer {
  border: 0.0625rem solid #E0E0E0;
  padding: 3.75rem;
}
@media all and (max-width: 640px) {
  .formContainer {
    padding: 1.875rem 1.25rem;
  }
}

.formWrap {
  max-width: 46.25rem;
  margin: 0 auto;
  font-size: 0.875rem;
}
.formWrap__row {
  margin-top: 2.5rem;
  position: relative;
}
.formWrap__row:first-child {
  margin-top: 0;
}
@media all and (max-width: 800px) {
  .formWrap__row {
    margin-top: 1.875rem;
  }
}
.formWrap__row.column2 {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media all and (min-width: 801px) {
  .formWrap__row.column2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.formWrap__item {
  display: flex;
  gap: 1em;
  flex-direction: column;
}
.formWrap__label {
  flex-shrink: 0;
  min-width: 8em;
}
@media all and (min-width: 641px) {
  .formWrap__label {
    padding-top: 0.5em;
  }
}
.formWrap__label .req_label {
  color: #f70000;
}
.formWrap__parts {
  flex: 1;
}
.formWrap input[type=text],
.formWrap input[type=email],
.formWrap input[type=tel],
.formWrap textarea,
.formWrap select {
  margin: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1rem;
  padding: 0.75em 1.25em;
  border: 0.0625rem solid #adadad;
  border-radius: 0.625rem;
  width: 100%;
  display: block;
  background-color: #fafafa;
}
.formWrap select {
  background-image: url(../images/common/select_arrow.svg);
  background-position: right 1.25em center;
  background-repeat: no-repeat;
  padding-right: 2.5em;
}
.formWrap .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 0.625rem 1.25rem;
  padding-top: 0.65em;
}
.formWrap .wpcf7-radio label {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}
.formWrap .wpcf7-radio label input[type=radio] {
  display: none;
}
.formWrap .wpcf7-radio label input[type=radio]:checked + span:before {
  opacity: 1;
}
.formWrap .wpcf7-radio label span {
  padding-left: 1.875rem;
  position: relative;
  display: block;
}
.formWrap .wpcf7-radio label span:after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #adadad;
  background-color: #fafafa;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.formWrap .wpcf7-radio label span:before {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  left: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  background-color: #4F6D9D;
  border-radius: 50%;
  opacity: 0;
  z-index: 5;
}
.formWrap textarea {
  padding: 1em 1.5em;
}
.formWrap textarea.short {
  height: 6.6em;
}
@media all and (max-width: 640px) {
  .formWrap textarea.short {
    height: 9em;
  }
}
.formWrap__acceptance {
  display: flex;
  padding: 3.75rem 0 0;
  position: relative;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media all and (min-width: 641px) {
  .formWrap__acceptance .wpcf7-form-control-wrap {
    min-width: 25.625rem;
  }
}
@media all and (max-width: 640px) {
  .formWrap__acceptance .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.formWrap__acceptance a {
  text-decoration: underline;
  color: #676360;
}
.formWrap__acceptance a:hover {
  text-decoration: none;
}
.formWrap__acceptance:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, #676767 0, #676767 0.0625rem, transparent 0.0625rem, transparent 0.25rem);
}
@media all and (max-width: 640px) {
  .formWrap__acceptance {
    padding: 1.875rem 0;
  }
}
.formWrap__acceptance label {
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1.5;
}
.formWrap__acceptance label input[type=checkbox] {
  display: none;
}
.formWrap__acceptance label input[type=checkbox]:checked + span:before {
  opacity: 1;
}
.formWrap__acceptance label span {
  padding-left: 1.875rem;
  position: relative;
  display: block;
}
.formWrap__acceptance label span:after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #adadad;
  background-color: #fafafa;
  border-radius: 50%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.formWrap__acceptance label span:before {
  content: "";
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  left: 0.25rem;
  top: 50%;
  translate: 0 -50%;
  background-color: #4F6D9D;
  border-radius: 50%;
  opacity: 0;
  z-index: 5;
}
@media all and (max-width: 640px) {
  .formWrap__acceptance label {
    font-size: 3.0768vw;
  }
}
.formWrap__btWrap {
  display: flex;
  justify-content: center;
  margin-top: 3.75rem;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.formWrap__btWrap .commonBT {
  font-size: 1rem;
}
.formWrap__btWrap .wpcf7-previous {
  min-width: 6em;
  border: 0;
  border-radius: 2em;
  padding: 0.5em;
  background-color: #DBDBDB;
  cursor: pointer;
  appearance: none;
}
.formWrap .wpcf7-not-valid-tip {
  color: #f00;
  font-weight: bold;
  text-align: right;
}
.formWrap .wpcf7-list-item {
  margin: 0;
}

.wpcf7-response-output {
  border: 0 !important;
  background-color: #4F6D9D;
  color: #fff !important;
  font-weight: bold;
  line-height: 1.5;
  padding: 1.5em !important;
}
@media all and (max-width: 640px) {
  .wpcf7-response-output {
    font-size: 3.0768vw;
  }
}

.confirm-hidden {
  display: none !important;
}

.recruit-link {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/common/recruit_bg.webp);
  padding: 7.5rem 0;
  color: #fff;
}
@media all and (max-width: 1024px) {
  .recruit-link {
    padding: 6.25rem 0;
  }
}
@media all and (max-width: 640px) {
  .recruit-link {
    padding: 2.5rem 0;
  }
}
.recruit-link__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media all and (max-width: 800px) {
  .recruit-link__inner {
    flex-direction: column;
    align-items: normal;
    gap: 2.5rem;
  }
}
.recruit-link__heading {
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.1em;
}
.recruit-link__lead {
  font-weight: 600;
}

.foot-column {
  background-color: #f8f6f4;
}
.foot-column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media all and (max-width: 800px) {
  .foot-column__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.foot-column__list__item {
  display: flex;
  flex-direction: column;
}
.foot-column__list__img {
  position: relative;
}
.foot-column__list__img a {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: all 0.2s ease 0s;
}
.foot-column__list__img a:hover {
  text-decoration: none;
}
@media (hover: none) {
  .foot-column__list__img a {
    transition: none !important;
  }
}
@media (hover: hover) {
  .foot-column__list__img a:hover img {
    scale: 1.1;
  }
}
.foot-column__list__img a:active img {
  scale: 1.1;
}
.foot-column__list__img a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.foot-column__list__img a img:hover {
  text-decoration: none;
}
.foot-column__list__date {
  color: #acacac;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
  margin-top: 0.75em;
}
.foot-column__list__title {
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mainFooter {
  background-color: #333;
  color: #fff;
  padding: 7.5rem 0;
  position: relative;
  z-index: 10;
}
@media all and (max-width: 1024px) {
  .mainFooter {
    padding: 6.25rem 0;
  }
}
.mainFooter a {
  color: #fff;
}
.mainFooter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mainFooter__logo {
  width: 8.375rem;
}
.mainFooter__logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.mainFooter__address {
  font-size: 0.875rem;
}
.mainFooter__insta {
  width: 2.125rem;
  filter: invert(1) brightness(1.2);
}
.mainFooter__insta img {
  width: 100%;
}
.mainFooter__scroll {
  position: absolute;
  z-index: 15;
  bottom: 1.25rem;
  right: 3.75rem;
  color: #fff;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  color: #fff;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1;
}
@media all and (max-width: 640px) {
  .mainFooter__scroll {
    right: 1.25rem;
  }
}
.mainFooter__scroll:hover {
  text-decoration: none;
}
.mainFooter__scroll .text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.mainFooter__scroll .bar {
  height: 4.0625rem;
  width: 0.0625rem;
  position: relative;
}
.mainFooter__scroll .bar:before {
  content: "";
  width: 100%;
  height: 97%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  animation: scrollLine 2s infinite reverse;
}
.mainFooter__scroll .bar:after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  border-radius: 50%;
}

.subFooter {
  padding: 1.25rem 0;
  line-height: 1.4;
}
@media all and (max-width: 640px) {
  .subFooter {
    padding: 0;
  }
}
@media all and (max-width: 640px) {
  .subFooter .inner {
    padding: 0;
  }
}
.subFooter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
@media all and (max-width: 640px) {
  .subFooter__inner {
    flex-direction: column;
  }
}
.subFooter__nav {
  display: flex;
  gap: 1.875rem;
}
@media all and (max-width: 640px) {
  .subFooter__nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.9375rem;
    padding: 2.5rem 1.25rem;
  }
}
.subFooter__nav a {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.subFooter__nav a:before {
  content: "";
  width: 1em;
  height: 0.0625rem;
  background-color: #000;
}
@media all and (max-width: 640px) {
  .subFooter__credit {
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: #333;
    width: 100%;
  }
}