@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;700&display=swap');
*/

html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
}

p,a {
  font-family: "NotoSansJp", sans-serif;
}


html {
  font-size: 100%;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
	display: block;
}

:root {
	--color-scheme: #f9f9f9;
	--breakpoint-sm: 576px;
}

h2, h3, h4, h5 {
  margin-top: 0;
  margin-bottom: .5rem
}

h2 {
  font-size: 2rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

div {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

em {
	font-weight: 600;
}


dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

a,a:hover {
  text-decoration: none;
  color: #000;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0 0 1rem;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

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

.box {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.wide {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.scroll-vis-ani {
  opacity: 0;
  transform: translateX(-20px);
  transition: transform 1s, opacity 1s;
}

.scroll-vis-ani.visible {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width:1250px) {

}

@media screen and (max-width:950px) {

}

@media screen and (max-width:750px) {

}

.header {
  width: 100%;
  height: 5.375rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.rms {
  position: absolute;
  width: 8rem;
  top: .8rem;
  left: 1.15rem;
  transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.header-inner {
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rms-icon {
  background-image: url(/img/logo.svg);
  display: block;
  width: 100%;
  height: 72px;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.menuselectnav {
  position: relative;
}

.menuselectnav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-width: 52rem;
  height: 5.375rem;
  margin-right: 3.5rem;
  margin-bottom: 0;
  gap: 2rem;
}

.menuselectnav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.menuselectnav-label {
  font-size: .8rem;
}

.menuselectnav-label {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  letter-spacing: .15rem;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.menuselectnav-label:nth-of-type(2) {
  font-size: .6rem;
}

/* メニューホバー */

.menuselectnav-itemlist {
  position: relative;
  height: 100%;
}

.menuselectnav-itemlist .menuselectnav-link::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #816d51;
  bottom: -6px;
  transform: scale(0, 1);
  transition: transform .3s;
  transform-origin: right top;
}

.menuselectnav-itemlist .menuselectnav-link:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
  top: 0;
}

.menuselect-hover {
  cursor: pointer;
  position: relative;
}

.submenuselect {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s ease-in-out;
  transition-duration: 200ms;
  background-color: #fff;
  position: absolute;
  width: 170px;
}

.menuselectnav-itemlist:hover,
.menuselect-hover:hover + .submenuselect,
.submenuselect:hover {
  visibility: visible;
  opacity: 1;
}

.submenuselectnav-link {
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .085rem;
}

.submenuselectnav-itemlist {
  padding: .6rem 1rem;
}

.submenuselectnav-itemlist:nth-of-type(1) {
  margin-top: 0;
}


.slick-slide.slick-current.slick-active div {
  transform: scale(1.1);
}

/* fv */

.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.fv::after {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 40rem;
  width: 40%;
  height: 100%;
  background: url(/img/fv-bg.jpg);
  background-size: cover;
  content: "";
  z-index: -1;
}

.fv-container {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  padding-top: 5.375rem;
  padding-left: 10%;
  padding-bottom: 5.375rem;
}

.fv-slide {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  overflow: hidden;
  position: relative;
}

.fv-slide .slick-list,
.fv-slide .slick-track,
.fv-slider-img > div {
  position: relative;
  height: 100%;
}

.fv-slider-img.slider-bg-1 > div {
  background-image: url(/img/mv1_sp.jpg);
  background-size: cover;
}

.fv-slider-img.slider-bg-2 > div {
  background-image: url(/img/mv2_sp.png);
  background-size: cover;
}

.fv-slider-img.slider-bg-3 > div {
  background-image: url(/img/mv1_sp.jpg);
  background-size: cover;
}

.fv-slider-img.slider-bg-4 > div {
  background-image: url(/img/mv2_sp.png);
  background-size: cover;
}


.fv-slide .scale-up {
  animation: scaleUp 6s linear forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.slick-slide img {
  width: 100%;
  height: 100%;
  visibility: hidden;
}

.slide-count {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: .15rem;
}

.fv-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 10%;
  display: flex;
  align-items: center;
  z-index: 99;
}

.dots-container {
  margin-left: 2rem;
  height: 1.45rem;
}

.slick-dots {
  display: flex;
  justify-self: center;
  bottom: inherit;
}

.slick-dots li button {
  border: 0;
  background: rgba(0, 0, 0, 0);
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: rgba(0, 0, 0, 0);
  padding: .5rem;
  cursor: pointer;
}

.slick-dots li button:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  border: 1px solid #ded7cc;
  border-radius: 1rem;
}

.slick-dots li.slick-active button::before {
  background: #816d51;
  border: 1px solid #816d51;
}

.fv-ber {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translate(-50%, 5%);
  transform: translate(-50%, 5%);
}

.fv-ber span {
  font-size: .8rem;
  transform: rotate(-90deg);
  display: block;
  letter-spacing: .15rem;
  width: 100%;
  text-align: center;
}

.fvーscroll {
  position: absolute;
  right: -6.5rem;
  bottom: 12rem;
  z-index: 4;
  line-height: 1;
  overflow: hidden;
  transform: rotate(90deg);
  padding-right: 10rem;
  backface-visibility: hidden;
}

.fvーscroll::before {
  position: absolute;
  top: .6rem;
  right: .5rem;
  width: 5rem;
  height: 1px;
  background: #000;
  content: "";
  -webkit-animation: arrow 1.5s ease 0s infinite normal;
  animation: arrow 1.5s ease 0s infinite normal;
}

@-webkit-keyframes arrow {
  0% {
      right: 4rem
  }

  100% {
      right: -6rem
  }
}

@keyframes arrow {
  0% {
      right: 4rem
  }

  100% {
      right: -6rem
  }
}

.fvーscroll span {
  color: #000;
  font-size: .8rem;
  letter-spacing: .4em;
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: 800;
}

/* menu */

.menu {
  padding-top: 80px;
}

.campaign {
  max-width: 780px;
}

.menu-contents {
  margin-top: 80px;
}

.menu-contents > h2,
.menu-contents > p {
  text-align: center;
}

.item-cont {
  margin-top: 60px;
  position: relative;
}

.item-cont::before {
  content: "";
}

.item-menu-cont {
  width: 100%;
  max-width: 1120px;
  padding: 2.25rem 0 0 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  column-gap: 35px;
  row-gap: 35px;
}

.item-menu-cont .item-list {
  width: 100%;
  max-width: 350px;
  height: 200px;
  overflow: hidden;
  display: block;
  position: relative;
  transition: .4s;
}

.item-menu-cont .item-list::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -99;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
  transition: 0.3s ease-in-out;
}

.item-menu-cont .item-list:hover:before {
  opacity: 0;
}

.item-menu-cont .item-list picture {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
  transition: .4s;
}

.item-menu-cont .item-list:hover picture {
  transform: scale(1.1);
}

.item-menu-cont .item-list a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: 0.3s ease-in-out;
  flex-wrap: wrap;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  letter-spacing: .15rem;
  transition: .4s;
}

.animate-me {
  position: relative;
}

.animate-me::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .5;
  transform: translateX(0);
  transition: transform 1s ease-out;
}

.animate-me.in-view::before {
  transform: translateX(100%);
}

.set-menu {
  margin: 3rem auto;
  text-align: center;
}


.about {
  padding-top: 120px;
  background-color: rgb(190 195 198 / 20%);
}

.about-contents > h2,
.about-contents > p {
  text-align: center;
}

.about-reviews {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.about-reviews a {
  display: block;
}

.about-reviews a img {
  transition: .4s;
}

.about-reviews a:hover img {
  transform: scale(1.1);
}

.message {
  position: relative;
  padding-top: 100px;
}

.message-contents {
  background-image: url(/img/bg.jpg);
  background-size: cover;
  padding: 3rem 0;
  transform: skewY(-1.5deg);
}

.message-contents::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 0;
  opacity: .7;
}

.message-contents p {
  position: relative;
  font-size: 1rem;
  color: #fff;
  line-height: 1.8;
  z-index: 1;
  transform: skewY(1.5deg);
  letter-spacing: .15rem;
}

.reason {
  padding-top: 150px;
}

.reason-contents > h2,
.reason-contents > p {
  text-align: center;
}

.reason-contents .reason-choosing:nth-of-type(2) .flex {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.reason-choosing {
  position: relative;
  padding-top: 100px;
  z-index: 1;
}

.reason-choosing::before {
  content: '';
  position: absolute;
  left: 0;
  background-image: url(/img/bg2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-100%);
  transition: transform 1s;
  z-index: -1;
}


.reason-contents .reason-choosing:nth-of-type(1)::before {
  top: 10%;
  width: 35%;
  max-width: 1920px;
  height: 110%;
  background-position: -300px;
}

.reason-contents .reason-choosing:nth-of-type(2)::before {
  top: 30%;
  width: 35%;
  max-width: 1920px;
  height: 100%;
  background-position: -350px;
}

.reason-contents .reason-choosing:nth-of-type(3)::before {
  top: 25%;
  width: 35%;
  max-width: 1920px;
  height: 100%;
  background-position: -320px;
}

.reason-choosing:nth-of-type(2)::before {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.reason-choosing.visible::before {
  transform: translateX(0);
}


.reason-choosing .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reason-choosing .flex > picture,
.reason-choosing .flex > p {
  width: 50%;
}

.reason-choosing .flex > picture {
  padding: 0 2rem;
}

.reason-choosing .flex > p {
  padding: 0 5rem;
  line-height: 1.85;
}


.access {
  padding-top: 250px;
}

.access-contents > h2,
.access-contents > p {
  text-align: center;
}

.access-reviews {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  overflow: hidden;
}

.access-reviews a {
  display: block;
}

.access-reviews a img {
  transition: .4s;
}

.access-reviews a:hover img {
  transform: scale(1.1);
}

.banner-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.5rem;
}

.banner-contents a {
  position: relative;
  display: block;
}

.banner-contents a span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .15rem;
}


.cva {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0 / 50%);
}

.cva-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 1300px;
  margin: 0 auto;
}

.cva-area span {
  color: #fff;
  margin-right: 2rem;
}

.cva-area ul {
  display: flex;
  justify-content: center;
  margin-bottom: auto;
  padding: 1.45rem 0;
}

.cva-area li {
  margin-right: 2rem;
}

footer {
  background: #000;
}

footer a {
  color: #fff;
}

footer nav {
  display: flex;
  margin: 0 2rem;
  padding: 2rem 0;
}

footer nav > ul:nth-of-type(1) {
  margin-right: 2rem;
}

footer nav > ul {
  margin-right: 4rem;
}

footer nav > ul li:nth-of-type(1) {
  margin-bottom: 1rem;
}

footer nav > ul ul li {
  margin-bottom: .25rem!important;
}

footer p {
  text-align: center;
  color: #fff;
  font-size: .65rem;
  padding: 1rem 0;
  margin-bottom: auto;
}

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

.sns li {
  margin: 0 1rem;
}

.sns li:nth-of-type(1) img {
  filter: brightness(0) saturate(100%) invert(81%) sepia(44%) saturate(2%) hue-rotate(124deg) brightness(117%) contrast(101%);
}

.sns img {
  width: 45px;
}


footer .rms-icon {
  background-image: url(/img/logo.svg);
  display: block;
  width: 100%;
  height: 72px;
  background-size: auto 100%;
  filter: brightness(0) saturate(100%) invert(81%) sepia(44%) saturate(2%) hue-rotate(124deg) brightness(117%) contrast(101%);
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2.5rem;
}