@charset "UTF-8";
/****************************
変数設定
******************************/
:root {
  --vh: 100vh;
  --blue: #7bb0b3;
  --green: #1b7544;
  --yellowgreen: #8ea800;
  --orange: #df684d;
  --red: #d80000;
  --beige: #f6f2e3;
  --yellow: #f6dd00;
  --gray: #ece7e7;
  --font_100: clamp(6rem, 4.545rem + 4.545vw, 10rem);
  --font_76: clamp(3rem, 1.327rem + 5.227vw, 7.6rem);
  --font_60: clamp(2.6rem, 1.364rem + 3.864vw, 6rem);
  --font_34: clamp(2rem, 1.491rem + 1.591vw, 3.4rem);
  --font_24: clamp(1.6rem, 1.309rem + 0.909vw, 2.4rem);
  --font_20: clamp(1.5rem, 1.318rem + 0.568vw, 2rem);
  --font_18: clamp(1.6rem, 1.527rem + 0.227vw, 1.8rem);
  --font_16: clamp(1.4rem, 1.327rem + 0.227vw, 1.6rem);
  --font_15: clamp(1.3rem, 1.227rem + 0.227vw, 1.5rem);
  --font_14: clamp(1.2rem, 1.127rem + 0.227vw, 1.4rem);
  --font_13: clamp(1.1rem, 1.027rem + 0.227vw, 1.3rem);
  --font_12: clamp(1rem, 0.927rem + 0.227vw, 1.2rem);
  --font_10: clamp(0.8rem, 0.727rem + 0.227vw, 1rem);
}
/****************************
基本設定
******************************/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
body {
  color: #333333;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
  font-weight: 400;
  font-size: var(--font_18);
  letter-spacing: 0.1rem;
  line-height: 1.7;
  text-align: center;
  font-feature-settings: "palt"; /*自動カーニング*/
  background: #fdfafa;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
html,
body {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
}
main,
header,
nav {
  /*   overflow-x: hidden; */
  position: relative;
  z-index: 2;
}
a {
  text-decoration: none;
  color: #333;
}
p {
  text-align: justify;
}
ul,
ol {
  list-style-type: none;
  padding: 0;
}
address {
  font-style: normal;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
}
iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.uppercase {
  /*小文字を大文字に変換*/
  text-transform: uppercase;
}
/****************************
loading
******************************/
/* ローディング中、全体を透明に（ロゴは除く） */
html.loading-active body > *:not(.loading) {
  opacity: 0;
  pointer-events: none;
}

/* 通常状態（loading-activeが外れたあと）はフェードイン */
body > *:not(.loading) {
  opacity: 1;
  transition: opacity 0.8s ease;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #fdfafa;
  display: none;
  align-items: center;
  justify-content: center;
}
.loading.is-active {
  display: flex;
  animation: fadeOut 0.8s 1.2s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.3s forwards;
  width: 260px;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
  }
}
/****************************
title
******************************/
.c-title {
  text-align: left;
  line-height: 1.2;
}
.c-title__main {
  font-size: var(--font_16);
  color: var(--yellowgreen);
}
.c-title__sub {
  font-family: "Luckiest Guy", cursive;
  font-size: var(--font_100);
  font-weight: bold;
  color: var(--green);
  line-height: 1;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.textanimation span {
  display: inline-block;
}
.textanimation span span {
  display: inline-flex;
  transform: translateY(100%);
  opacity: 0;
  vertical-align: bottom;
  line-height: 1;
}
/* アニメーションは .in-view が付いた時のみ */
.textanimation.in-view span span {
  animation: showTextFromBottom 0.5s forwards;
}
/*下層hero-are*/
.c-page-title__sub {
  font-size: var(--font_100);
  font-family: "Luckiest Guy", cursive;
  font-weight: bold;
  letter-spacing: 0.5rem;
  line-height: 1;
  text-align: center;
}
.c-page-title__main {
  font-size: var(--font_24);
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 1260px) {
  .c-page-title_notes .c-page-title__sub {
    font-size: var(--font_76);
  }
  .c-page-title_notes .c-page-title__main {
    font-size: var(--font_16);
  }
}
/****************************
追従ボタン
******************************/
.floating-buttons {
  position: fixed;
  right: 0;
  top: 15%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease;
}
.floating-buttons.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.floating-button {
  color: #fff;
  padding: 20px 14px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: var(--font_12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  line-height: 1.5;
  transition: background-color 0.3s ease;
}
.floating-button__reserve {
  background-color: var(--orange);
}
.floating-button__contact {
  background-color: var(--blue);
}
.floating-button__reserve:hover {
  background-color: #c8543c;
}
.floating-button__contact:hover {
  background-color: #659ca0;
}
@media screen and (max-width: 768px) {
  .floating-buttons {
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    width: 100%;
  }
  .floating-button {
    flex: 1;
    border-radius: 0;
    padding: 12px 10px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  .floating-buttons img {
    width: 24px;
  }
}
/****************************
banner
******************************/
.c-banner {
  margin-top: 60px;
}
.c-banner img {
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
}
.c-banner a:hover img {
  box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.7);
  transform: scale(1.02);
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-banner {
    width: 90%;
    margin: 30px auto 0;
  }
}
/****************************
header
******************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  height: 80px;
}
.header-logo img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}
/*----- ハンバーガーメニュー-----*/
.header-nav-list {
  display: none;
}
#header img {
  width: 90px;
  height: 90px;
  padding-top: 5px;
  transition: 0.5s ease;
}
#header.scroll-nav img {
  width: 70px;
  height: 70px;
  transition: 0.5s ease;
}
/*------ボタンのstyle---------*/
#nav-toggle {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#nav-toggle > div {
  position: relative;
  width: 40px;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
/* トップページ以外の全ページで背景白に */
body:not(.home) #nav-toggle span {
  background: #fff;
}
#nav-toggle span:nth-child(1) {
  top: -12px;
}
#nav-toggle span:nth-child(2) {
  top: 0;
}
#nav-toggle span:nth-child(3) {
  top: 12px;
}
/*------ボタン押下時のstyle--------*/
.open #nav-toggle span {
  background: #333 !important;
}
.open #nav-toggle span:nth-child(1) {
  top: 0;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 0;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 0;
  transform: rotate(-45deg);
}
#nav-toggle {
  position: static;
  cursor: pointer;
  z-index: 1000;
}
body.open #nav-toggle {
  position: fixed;
  top: 16px;
  right: 20px;
}
/*------menu open 時のstyle--------*/
#gloval-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 33.33%;
  height: 100vh;
  overflow-y: auto;
  background: var(--beige);
  color: #333;
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 70px 20px 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#gloval-nav nav {
  width: 80%;
  max-width: 480px;
}
#gloval-nav a {
  display: block;
  color: #333;
  font-weight: bold;
  padding: 10px 0;
  transition: color 0.6s ease;
  border-radius: 20px;
}
#gloval-nav a:hover {
  opacity: 0.6;
  transition: 0.6s ease;
}
#gloval-nav .contact-reserve__block,
#gloval-nav .contact-inquiry__block {
  margin: 20px 0;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.contact-banner__block img {
  border-radius: 20px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
#gloval-nav .c-contactTitle__main {
  font-size: var(--font_20);
}
#gloval-nav .c-contactTitle__sub {
  margin-bottom: 10px;
}
.simple-nav-link {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 66.67%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  /* 背景はスクロールできるので、overflowの制御は不要 */
}
/* open */
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
.open #menu-overlay {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1260px) {
  #gloval-nav {
    width: 50%;
  }
  #menu-overlay {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .l-header {
    height: 60px;
  }
  .header-logo img {
    width: 150px;
  }
  #nav-toggle {
    top: 5px !important;
  }
  #nav-toggle > div {
    position: relative;
    width: 32px;
  }
  #nav-toggle span:nth-child(1) {
    top: -10px;
  }
  #nav-toggle span:nth-child(2) {
    top: 0;
  }
  #nav-toggle span:nth-child(3) {
    top: 10px;
  }
  #gloval-nav {
    width: 100%;
  }
  #gloval-nav a {
    padding: 2px 0;
  }
  #gloval-nav .contact-reserve__block,
  #gloval-nav .contact-inquiry__block {
    margin: 16px 0;
  }
  #menu-overlay {
    width: 0;
  }
  .open {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
  }
}
/****************************
footer > contact
******************************/
.contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 120px;
  row-gap: 30px;
  margin-top: 120px;
}
.contact-content a {
  color: #fff;
  width: 50%;
  border-radius: 10px;
  padding: 40px 0;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
}
.contact-reserve__block {
  background: var(--orange);
}
.contact-inquiry__block {
  background: var(--blue);
}
.contact-content a:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.c-contactTitle__main {
  font-size: var(--font_24);
}
.c-contactTitle__sub {
  color: var(--yellow);
  text-align: center;
}
@media (max-width: 1024px) {
  .contact-content {
    column-gap: 60px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  .contact-content a {
    width: 90%;
  }
}
/****************************
footer
******************************/
.c-footer {
  padding-top: 120px;
}
.c-footer__main {
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
  padding-bottom: 60px;
}
.c-footer__main .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 400px;
}

.c-footer__main-left {
  text-align: left;
}
.c-footer__main-right {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.c-footer__company {
  font-size: var(--font_20);
  margin-top: 10px;
}
.c-footer__address {
  font-size: var(--font_14);
  line-height: 1.4;
  margin-top: 5px;
}
.c-footer__address a {
  color: #fff;
}
.c-footer__bottom {
  background: #333;
  color: #fff;
  font-size: var(--font_12);
}
.c-footer__bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.c-footer__bottom a {
  color: #fff;
}
@media (max-width: 768px) {
  .c-footer {
    padding-top: 80px;
  }
  .c-footer__main .inner {
    height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    row-gap: 20px;
  }
  .c-footer__main {
    background-image: url(../images/footer_sp-bg.png);
    background-position: top;
    padding-bottom: 30px;
  }
  .footer-logo img {
    width: 180px;
  }
  .c-footer__bottom .inner {
    flex-direction: column;
    justify-content: center;
  }
  .c-footer__main-right a img {
    width: 30px;
  }
}
/****************************
back to top
******************************/
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 120px;
  height: 120px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top__svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: rotateText 10s linear infinite;
}
.back-to-top__svg text,
.back-to-top__icon {
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 11px;
  transition: color 0.4s ease, fill 0.4s ease, mix-blend-mode 0.4s ease;
  color: black;
  fill: black;
  mix-blend-mode: normal;
}
.back-to-top__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}
/* hero-img上にいるときだけ白く */
.back-to-top.on-hero-img .back-to-top__svg text,
.back-to-top.on-hero-img .back-to-top__icon {
  color: white;
  fill: white;
  mix-blend-mode: difference;
}
/* メインビジュアルなどのレイヤー構造維持 */
.hero {
  position: relative;
  isolation: isolate;
  z-index: 0;
}
@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .back-to-top {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  .back-to-top__icon {
    font-size: 12px;
  }
  .back-to-top__svg text {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
