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

kv

------------------------------------------- */
.top-kv {
  position: relative;
}
.top-kv::before {
  content: "";
  width: 100%;
  height: 20rem;
  background: linear-gradient(to bottom, #000, transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  opacity: 0.4;
}
.top-kv .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 17rem;
}
.top-kv .wrap img {
  display: block;
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translate(-50%, 0);
  z-index: 3;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1rem;
}
.scroll::after {
  content: "";
  width: 0.1rem;
  height: 6rem;
  background: #fff;
  margin-top: 0.7rem;
  animation: scroll infinite 1s;
}

@keyframes scroll {
  0% {
    transform: scale(1, 1);
    transform-origin: bottom;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: bottom;
  }
}
#main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#main,
.CMS-NOT-EDITABLE-AREA {
  height: 100vh;
}

@media screen and (max-width: 768px) {
  #main,
  .CMS-NOT-EDITABLE-AREA {
    height: 52rem;
  }
}
/* -------------------------------------------

about

------------------------------------------- */
.top-about {
  background: #f7f7f7;
  position: relative;
  padding: 8rem 0;
}
.top-about > * {
  position: relative;
  z-index: 10;
}
.top-about::before {
  content: "";
  width: 100%;
  height: 20rem;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}

.top-about .wrap > div {
  margin-bottom: 6rem;
  padding: 0 2rem;
}

.top-about h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .top-about {
    padding: 8rem 3rem;
  }
  .top-about::before {
    height: 14rem;
  }
  .top-about .wrap > div {
    margin-bottom: 3rem;
    padding: 0;
  }
  .top-about h2 {
    font-size: 2.2rem;
  }
}
/* -------------------------------------------

concept

------------------------------------------- */
.top-concept {
  padding: 8rem 0;
}

.top-concept ul {
  margin-bottom: 8rem;
}

.top-concept ul li:not(:last-child) {
  margin-bottom: 8rem;
}

.top-concept ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-concept ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
.top-concept ul li:nth-child(odd) > div {
  padding-left: 4rem;
}
.top-concept ul li:nth-child(even) > div {
  padding-right: 4rem;
}
.top-concept ul li > * {
  width: 48%;
}

.top-concept h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.top-concept h3 > i {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 500;
}
.top-concept h3 > i::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #ef006d;
  margin-right: 0.6rem;
  border-radius: 50%;
}
.top-concept h3 > span {
  font-size: 1.8rem;
  line-height: 1.6;
}

.top-concept p {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .top-concept {
    padding: 4rem 3rem 8rem 3em;
  }
  .top-concept ul {
    margin-bottom: 5rem;
  }
  .top-concept ul li:not(:last-child) {
    margin-bottom: 5rem;
  }
  .top-concept ul li {
    display: block;
  }
  .top-concept ul li:nth-child(odd) > div {
    padding-left: 0;
  }
  .top-concept ul li:nth-child(even) > div {
    padding-right: 0;
  }
  .top-concept ul li > * {
    width: 100%;
  }
  .top-concept figure {
    margin-bottom: 2.5rem;
  }
  .top-concept h3 {
    margin-bottom: 2rem;
  }
  .top-concept h3 > i {
    margin-bottom: 1rem;
  }
  .top-concept h3 > span {
    font-size: 2rem;
    line-height: 1.5;
  }
}
/* -------------------------------------------

menu

------------------------------------------- */
.top-menu {
  padding-bottom: 10rem;
}

.top-menu ul {
  margin-bottom: 8rem;
}

.top-menu ul li {
  padding-bottom: 8rem;
  padding-left: calc((100% - 88rem) / 2);
  padding-right: calc((100% - 88rem) / 2);
  position: relative;
  display: flex;
  align-items: center;
}
.top-menu ul li > * {
  width: 50%;
  position: relative;
  z-index: 10;
}
.top-menu ul li > div {
  padding: 0 3rem;
}
.top-menu ul li:first-child {
  padding-top: 8rem;
  background: #f7f7f7;
}
.top-menu ul li:last-child {
  padding-bottom: 0;
}
.top-menu ul li:nth-child(3) {
  background: #f7f7f7;
}
.top-menu ul li:nth-child(odd) {
  flex-direction: row-reverse;
}
.top-menu ul li:nth-child(2)::before, .top-menu ul li:nth-child(3)::before, .top-menu ul li:nth-child(4)::before {
  content: "";
  width: 100%;
  height: 8rem;
  position: absolute;
  left: 0;
  top: 0;
}
.top-menu ul li:nth-child(2)::before, .top-menu ul li:nth-child(4)::before {
  background: #f7f7f7;
}
.top-menu ul li:nth-child(3)::before {
  background: #fff;
}
.top-menu ul li figure span {
  position: absolute;
}
.top-menu ul li .txt-1 {
  right: -3rem;
  bottom: -4rem;
  width: 24rem;
}
.top-menu ul li .txt-2 {
  left: -4rem;
  bottom: -1.3rem;
  width: 20rem;
}
.top-menu ul li .txt-3 {
  right: -3rem;
  bottom: -1rem;
  width: 17rem;
}
.top-menu ul li .txt-4 {
  left: -3rem;
  bottom: -1rem;
  width: 19rem;
}

.top-menu p {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .top-menu {
    padding-bottom: 10rem;
  }
  .top-menu ul {
    margin-bottom: 8rem;
  }
  .top-menu ul li {
    padding-bottom: 6rem;
    padding-left: 3rem;
    padding-right: 3rem;
    display: block;
  }
  .top-menu ul li > * {
    width: 100%;
    position: relative;
    z-index: 10;
  }
  .top-menu ul li > div {
    margin-top: 3rem;
    padding: 0;
  }
  .top-menu ul li:first-child {
    padding-top: 6rem;
    background: #f7f7f7;
  }
  .top-menu ul li:last-child {
    padding-bottom: 0;
  }
  .top-menu ul li .txt-1 {
    right: -2.5rem;
  }
  .top-menu ul li .txt-2 {
    left: -2.5rem;
  }
  .top-menu ul li .txt-3 {
    right: -2.5rem;
  }
  .top-menu ul li .txt-4 {
    left: -2.5rem;
  }
  .top-menu h2 {
    margin-bottom: 5.5rem;
  }
}
/* -------------------------------------------

gallery

------------------------------------------- */
.top-gallery figure {
  padding: 0 0.25rem;
}

#loopslider,
#loopslider2 {
  margin: 0 auto;
  width: 100%;
  height: 180px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

#loopslider2 {
  margin: 0 auto 6rem auto;
}

#loopslider ul,
#loopslider2 ul {
  height: 180px;
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

#loopslider ul li,
#loopslider2 ul li {
  width: 240px;
  height: 180px;
  float: left;
  display: inline;
  overflow: hidden;
}

#loopslider ul:after,
#loopslider2 ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}

#loopslider ul,
#loopslider2 ul {
  display: inline-block;
  overflow: hidden;
}

#loopslider img,
#loopslider2 img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}

#loopslider {
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  #loopslider,
  #loopslider2 {
    height: 160px;
  }
  #loopslider ul,
  #loopslider2 ul {
    height: 160px;
  }
  #loopslider ul li,
  #loopslider2 ul li {
    width: 200px;
    height: 160px;
  }
  #loopslider img,
  #loopslider2 img {
    height: 160px;
  }
}
/* -------------------------------------------

faq

------------------------------------------- */
.top-faq {
  padding: 10rem 0;
}

@media screen and (max-width: 768px) {
  .top-faq {
    padding: 8rem 3rem;
  }
}
.faq-ttl {
  display: flex;
  align-items: center;
  line-height: 1.4;
  padding: 1rem 6rem 1.2rem 2rem;
  position: relative;
  transition: all 0.3s;
  font-weight: 500;
}
.faq-ttl i {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0.5rem;
  top: calc(50% - 0.75rem);
}
.faq-ttl i::before, .faq-ttl i::after {
  content: "";
  background: #a5a5a5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq-ttl i::before {
  width: 100%;
  height: 0.2rem;
}
.faq-ttl i::after {
  width: 0.2rem;
  height: 100%;
  transition: all 0.3s;
}
.faq-ttl.open i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-ttl:hover {
  cursor: pointer;
}

.faq-ttl > span:nth-child(1),
.faq-content > span:nth-child(1) {
  font-size: 1.6rem;
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: solid 0.15rem #ef006d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding-left: 0.2rem;
}

.faq-ttl > span:nth-child(1) {
  color: #ef006d;
}

.faq-content > span:nth-child(1) {
  background: #ef006d;
  color: #fff;
}

.faq-ttl > span:nth-child(2) {
  font-size: 1.5rem;
}

.faq-ttl > span:nth-child(2),
.faq-content > span:nth-child(2) {
  width: calc(100% - 4rem);
  padding-left: 1.5rem;
}

.faq-content {
  background: #f7f7f7;
  display: flex;
  padding: 2rem 2rem 2rem 2rem;
}

.faq-content > span:nth-child(2) {
  padding-left: 1.5rem;
  padding-top: 0.65rem;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .faq-ttl {
    padding: 1rem 3.5rem 1.2rem 0;
  }
  .faq-content {
    padding: 2rem 0;
  }
}
/* -------------------------------------------

access

------------------------------------------- */
.top-access {
  padding: 10rem 0;
  background: #f7f7f7;
}
.top-access .wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.top-access .wrap > div:nth-of-type(1) {
  width: 50%;
}
.top-access .wrap > div:nth-of-type(2) {
  width: 45%;
}
.top-access .logo {
  width: 20rem;
  margin-bottom: 2rem;
}
.top-access dl {
  font-family: "Noto Serif JP", serif;
}
.top-access .gmap {
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .top-access {
    padding: 8rem 3rem;
  }
  .top-access .wrap {
    flex-direction: column;
  }
  .top-access .wrap > div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 3rem;
  }
  .top-access .wrap > div:nth-of-type(2) {
    width: 100%;
  }
}
/* -------------------------------------------

instagram

------------------------------------------- */
.top-insta {
  padding: 10rem 0;
}
.top-insta .ttl-wrap {
  display: flex;
  justify-content: center;
}
.top-insta .wrap {
  width: 80rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-insta {
    padding: 8rem 0;
  }
  .top-insta .wrap {
    width: auto;
    padding: 0 3rem;
  }
}
/* cms */
.CMS-INSTAGRAM-LIST {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.CMS-INSTAGRAM-LIST > * {
  width: calc((100% - 4rem) / 3);
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

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

bnr

------------------------------------------- */
.top-bnr {
  margin-bottom: 6rem;
}

.top-bnr a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 20rem;
  background: url(../img/top-bg-1.jpg) no-repeat center/cover;
}
.top-bnr a > span {
  font-weight: bold;
  font-size: 2.2rem;
}
.top-bnr a div {
  position: absolute;
  right: 3.5rem;
  bottom: 3.5rem;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .top-bnr {
    padding: 0 3rem;
  }
  .top-bnr a div {
    right: 3rem;
    bottom: 3rem;
  }
}
/* -------------------------------------------

parallax

------------------------------------------- */
.bg-parallax-1,
.bg-parallax-2,
.bg-parallax-3 {
  width: 100%;
  height: 36rem;
}

.bg-parallax-1 {
  background: url(../img/bg-pa-1.jpg) no-repeat center top/cover;
  background-attachment: fixed;
}

.bg-parallax-2 {
  background: url(../img/bg-pa-2.jpg) no-repeat center top/cover;
  background-attachment: fixed;
}

.bg-parallax-3 {
  background: url(../img/bg-pa-3.jpg) no-repeat center top/cover;
  background-attachment: fixed;
}

@media screen and (max-width: 768px) {
  .bg-parallax-1,
  .bg-parallax-2,
  .bg-parallax-3 {
    height: 30rem;
  }
  .bg-parallax-1 {
    background: url(../img/bg-pa-1-sp.jpg) no-repeat center top/cover;
    background-attachment: fixed;
  }
  .bg-parallax-2 {
    background: url(../img/bg-pa-2-sp.jpg) no-repeat center top/cover;
    background-attachment: fixed;
  }
  .bg-parallax-3 {
    background: url(../img/bg-pa-3-sp.jpg) no-repeat center top/cover;
    background-attachment: fixed;
  }
}/*# sourceMappingURL=style.css.map */