@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&family=Zen+Kaku+Gothic+New:wght@300;400&display=swap");

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #594a3d;
  -webkit-font-smoothing: antialiased;
}
h2,
h3 {
  font-weight: normal;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #594a3d;
  transition: all 0.5s;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}
.en {
  font-family: "Montserrat", sans-serif;
}
.ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.w200 {
  font-weight: 200;
}
.w400 {
  font-weight: 400;
}
.attention {
  color: red;
}
main {
  overflow-x: hidden;
}

/* header 
====================================================*/
.header {
  position: relative;
}
.header__ttl__wrapper {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 16px;
}
.header__ttl {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 16px;
}
.header__ttl__sm {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 1px #594a3d;
}

/* header nav */
#g-nav {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f1ece5;
  opacity: 0;
  transition: all 0.5s ease;
  text-align: center;
}

#g-nav {
  overflow: hidden;
}

/* アクティブクラスがついた時の設定 */
#g-nav.panelactive {
  z-index: 999;
  top: 0;
  opacity: 1;
  overflow: hidden;
}

/* nav inner layout */
.g-nav__inner {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
/* list layout */
.g-nav__item {
  color: #594a3d;
  font-size: 1.6rem;
  line-height: 4;
  padding: 10px;
  font-weight: 400;
}
.g-nav__list {
  margin-bottom: 24px;
  width: fit-content;
  margin: auto;
}
.g-nav__sns {
  margin-top: 20px;
}
.g-nav__image {
  display: none;
}

/* header nav button*/
.openbtn {
  position: fixed;
  z-index: 9998;
  top: 16px;
  right: 16px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #594a3d;
  width: 87.5%;
}
.openbtn span:nth-of-type(1) {
  top: 7px;
}
.openbtn span:nth-of-type(2) {
  top: 15px;
}
.openbtn span:nth-of-type(3) {
  top: 23px;
}
.openbtn.is-open span:nth-of-type(1) {
  top: 9px;
  transform: translateY(6px) rotate(-20deg);
  width: 87.5%;
}
.openbtn.is-open span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.is-open span:nth-of-type(3) {
  top: 21px;
  transform: translateY(-6px) rotate(20deg);
  width: 87.5%;
}

@media screen and (min-width: 1200px), print {
  .header__ttl__wrapper {
    top: 16px;
    left: 24px;
  }
  .header__ttl {
    font-size: 20px;
    font-weight: 300;
    line-height: 48px;
  }
  .header__ttl__sm {
    font-size: 14px;
    line-height: 16px;
    padding-left: 16px;
    margin-left: 16px;
  }
  .g-nav__inner {
    display: flex;
  }
  .g-nav__image {
    display: block;
    width: 70%;
  }
  .g-nav__list {
    width: 30%;
  }
  .openbtn {
    top: 24px;
  }
}

/* page header
====================================================*/
.page-header {
  height: 240px;
  display: grid;
  place-content: center;
  color: #fff;
}
.page-header__ttl {
  font-size: 4rem;
  font-weight: 200;
  text-align: center;
}
.page-header__ttl .ja {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (min-width: 768px), print {
  .page-header {
    height: 35vw;
  }
}

/* button 
====================================================*/
.btn {
  position: relative;
  display: block;
  width: 256px;
  padding: 16px 18px;
  margin: 0 auto;
  border: solid 1px #594a3d;
  border-radius: 100vw;
  color: #594a3d;
  font-weight: 400;
  text-align: center;
  transition: all 0.3s;
  box-sizing: border-box;
}
.btn__arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 16px;
  transform: translate(-50%, -50%);
}
.btn:hover {
  border: solid 1px #594a3d;
  background-color: #594a3d;
  color: #fff;
  opacity: 1;
}
.btn__sns {
  padding: 5px 5px 8px;
  width: 106px;
  line-height: normal;
  box-sizing: inherit;
  margin: 0 0;
}
.btn svg path {
  transition: all 0.3s;
}
.btn:hover svg path {
  stroke: #fff;
}
.btn__brown {
  border: solid 1px #594a3d;
  color: #fff;
  background-color: #594a3d;
}
.btn__brown:hover {
  opacity: 0.5;
}

@media screen and (min-width: 1200px), print {
  .btn__sns {
    margin: 0 auto;
  }
}

/* footer
====================================================*/
.contact-area {
  position: relative;
  height: 100vw;
}
.contact-area__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-area__wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.contact-area__title {
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
.contact-area__button {
  position: relative;
  width: 56vw;
  height: 56vw;
  border: solid 1px #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.contact-area__text {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-area__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.contact-area__image img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.9s ease;
}
.contact-area__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.35;
  z-index: 1;
  transition: opacity 0.9s ease;
}
.contact-area__arrow {
  position: absolute;
  bottom: 33%;
  left: 50%;
  transform: translate(-50%, 0);
}
.contact-area a:hover {
  opacity: 1;
}
.contact-area__link:hover img {
  transform: scale(1.05);
}
.contact-area__link:hover .contact-area__image::before {
  opacity: 0.15;
  z-index: 1;
}
@media screen and (min-width: 768px), print {
  .contact-area {
    height: 28vw;
    max-height: 376px;
    max-width: 1200px;
    margin: 0 6.4vw;
  }
  .contact-area__wrapper {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .contact-area__title {
    font-size: 1.6rem;
  }
  .contact-area__title > br {
    display: none;
  }
  .contact-area__button {
    width: 150px;
    height: 150px;
    margin: 0;
  }
  .contact-area__image {
    overflow: hidden;
    border-radius: 10px;
  }
  .contact-area__image img {
    border-radius: 10px;
  }
  .contact-area__image::before {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1200px), print {
  .contact-area {
    margin: 0 auto;
  }
  .contact-area__button {
    width: 210px;
    height: 210px;
    margin: 0;
  }
  .contact-area__title {
    font-size: 2rem;
  }
  .contact-area__text {
    font-size: 2.4rem;
  }
}

.footer__inner {
  background-image: url(/assets/images/common/footer.webp);
  background-position: center;
  background-size: cover;
  padding: 40px 6.4vw 16px;
  position: relative;
}
.footer__ttl {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 24px;
}
.footer-nav {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3;
  margin-bottom: 40px;
}
.footer-nav__list {
  margin-bottom: 24px;
}
.footer-nav__sns {
  margin-bottom: 56px;
}
.nav__sns-item {
  margin-bottom: 16px;
}
.footer__hw-image {
  display: none;
}
.copylight {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
#page_top {
  position: absolute;
  right: 16px;
  bottom: 16px;
  color: #594a3d;
  font-weight: 400;
}

@media screen and (min-width: 768px), print {
  .footer {
    background-image: url(/assets/images/common/footer.webp);
    background-position: center;
    background-size: cover;
    padding: 180px 0 24px;
    position: relative;
    z-index: 0;
  }

  .contact-link {
    max-width: 1200px;
    margin: 0 6.4vw;
  }
  .contact-link__inner {
    width: 100%;
    height: 28vw;
    max-height: 376px;
    border-radius: 10px;
  }
  .contact-link__inner::after {
    border-radius: 10px;
  }
  .contact-link__group {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  .contact-link__button {
    width: 150px;
    height: 150px;
    margin: 0;
  }
  .contact-link__ttl > br {
    display: none;
  }
  .contact-link__ttl {
    width: auto;
    font-size: 1.6rem;
  }
  .contact-link__txt {
    font-size: 1.8rem;
  }
  .footer__inner {
    background-image: none;
    max-width: 1200px;
    padding: 0;
    margin: 72px 6.4vw 0;
  }
  .footer-nav__list,
  .footer-nav__sns {
    display: flex;
  }
  .footer-nav__item {
    margin-right: 32px;
  }
  .nav__sns-item {
    margin-right: 18px;
  }
}

@media screen and (min-width: 1200px), print {
  .footer::before {
    height: 237px;
  }
  .contact-link {
    margin: 0 auto;
  }
  .contact-link__button {
    width: 210px;
    height: 210px;
  }
  .contact-link__ttl {
    font-size: 2rem;
  }
  .contact-link__txt {
    font-size: 2rem;
  }
  .footer__hw-image {
    display: block;
    position: absolute;
    right: 0;
    bottom: 88px;
    width: 220px;
  }
  .footer__inner {
    margin: 154px auto 0;
  }
}

/* footer調整 */
.footer__small .footer__inner {
  margin-top: 0;
}

/* js-blur
====================================================*/
.blur {
  animation-name: blurAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  will-change: animation;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    opacity: 0;
    will-change: filter, transform, opacity;
  }
  to {
    filter: blur(0);
    opacity: 1;
    will-change: filter, transform, opacity;
  }
}
.js-blur {
  opacity: 0;
}

/* delay
====================================================*/
.-delay1 {
  animation-delay: 0.2s;
}
.-delay2 {
  animation-delay: 0.4s;
}
.-delay3 {
  animation-delay: 0.6s;
}
.-delay4 {
  animation-delay: 0.8s;
}
.-delay5 {
  animation-delay: 1s;
}
.-delay6 {
  animation-delay: 1.2s;
}
.-delay7 {
  animation-delay: 1.4s;
}
@media screen and (max-width: 760px), print {
  .contact-area.js-blur {
    opacity: 1;
    animation: none;
    transform: none;
    transition: unset;
  }
}

/* js-slide-in
====================================================*/
.js-slide-in {
  overflow: hidden;
  display: block;
}
.js-slide-in_inner {
  display: block;
}
.downAnime {
  opacity: 0;
}
.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}
@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    filter: blur(10px);
    opacity: 0;
    will-change: filter, transform, opacity;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
    will-change: filter, transform, opacity;
  }
}
.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
}
@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* page transition
====================================================*/
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f4f0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.fadeout::after {
  opacity: 1;
}

/* break
====================================================*/
.br-pc {
  display: none;
}
@media screen and (min-width: 768px), print {
  .br-pc {
    display: inline-block;
  }
}

.br-sp {
  display: inline-block;
}
@media screen and (min-width: 768px), print {
  .br-sp {
    display: none;
  }
}

/* Thanks・404
====================================================*/
.simple {
  padding: 100px 0 80px;
}
.simple .container {
  width: 80%;
  margin: 0 auto;
}
.simple h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 24px;
}
.simple p {
  line-height: 1.8;
  margin-bottom: 48px;
}
.thanks-text {
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .simple {
    padding-top: 180px;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .simple .container {
    width: 600px;
  }
  .simple .container br {
    display: inline-block;
  }
  .simple h2 {
    font-size: 3.4rem;
    margin-bottom: 50px;
  }
  .simple p {
    margin-bottom: 56px;
  }
  .simple .notfound-title {
    font-size: 5.6rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
  }
}

/* privacy policy
====================================================*/
.privacy {
  padding: 100px 0;
}
.privacy .container {
  width: 80%;
  margin: 0 auto;
  line-height: 1.7;
}
.privacy__ttl {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
}
.privacy .container p {
  margin-bottom: 30px;
}
.privacy .container .privacy__margin {
  margin-bottom: 10px;
}
.privacy .container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy .container ul {
  margin-bottom: 30px;
}
.privacy .container li {
  list-style: disc;
  list-style-position: inside;
}
.privacy__link {
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .privacy {
    padding: 140px 0;
  }
  .privacy .container {
    width: 800px;
  }
  .privacy__ttl {
    margin-bottom: 64px;
  }
}
