@charset "UTF-8";
/* ----- break point ----- */
/* ----- container width ----- */
/* ----- margin-top/bottom ----- */
/* ----- padding-top/bottom ----- */
/* ----- font-size ----- */
/* ----- line-height, letter-spacing ----- */
/* ----- box-shadow, border-radius ----- */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
.js-x-scroll {
  cursor: grab;
}

/* -------------------------------------------- */
/* ----------------- タイトル用明朝体 --------------- */
/* -------------------------------------------- */
@font-face {
  font-family: "ttl";
  src: url("../fonts/TsukuhouShogoMin-OFL.otf") format("opentype"), url("../fonts/TsukuhouShogoMin-OFL.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* -------------------------------------------- */
/* ----------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
/* ----------------------- fadein animation ----------------------- */
/* ------------------- infinite slide animation ------------------- */
@keyframes infinite-slide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes infinite-slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ------------------------ delay animation ------------------------ */
.--delay1 {
  transition-delay: 0.1s;
}

.--delay2 {
  transition-delay: 0.2s;
}

.--delay3 {
  transition-delay: 0.5s;
}

.--delay4 {
  transition-delay: 0.4s;
}

.--delay5 {
  transition-delay: 0.5s;
}

.--delay6 {
  transition-delay: 0.6s;
}

.--delay7 {
  transition-delay: 0.7s;
}

.--delay8 {
  transition-delay: 0.8s;
}

.--delay9 {
  transition-delay: 0.9s;
}

.--delay10 {
  transition-delay: 1s;
}

.--delay11 {
  transition-delay: 1.1s;
}

.--delay12 {
  transition-delay: 1.2s;
}

.--delay13 {
  transition-delay: 1.5s;
}

.--delay14 {
  transition-delay: 1.4s;
}

.--delay15 {
  transition-delay: 1.5s;
}

.--delay16 {
  transition-delay: 1.6s;
}

.--delay17 {
  transition-delay: 1.7s;
}

.--delay18 {
  transition-delay: 1.8s;
}

.--delay19 {
  transition-delay: 1.9s;
}

.--delay20 {
  transition-delay: 2s;
}

.fix {
  width: 100%;
  height: 100%;
  position: fixed;
}

html {
  background-color: #fff;
  scroll-behavior: smooth;
  padding-top: env(safe-area-inset-top);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: env(safe-area-inset-top);
}

body.noscroll {
  overflow: hidden;
  height: 100%;
  position: fixed;
  width: 100%;
}

.br-sp {
  display: none;
}
@media only screen and (max-width: 799px) {
  .br-sp {
    display: block;
  }
}

.only-sp {
  display: none !important;
}
@media only screen and (max-width: 799px) {
  .only-sp {
    display: block;
  }
}

.head_menu {
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 9999;
  width: 100vw;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
@media only screen and (max-width: 799px) {
  .head_menu {
    height: 80px;
    justify-content: space-between;
  }
}
.head_menu .logo img {
  width: 300px;
  height: 90px;
}
@media only screen and (max-width: 799px) {
  .head_menu .logo img {
    width: 200px;
    height: 70px;
  }
}
.head_menu .ham {
  position: absolute;
  top: 0;
  right: 40px;
  width: 90px;
  height: 90px;
  z-index: 10000;
  cursor: pointer;
}
@media only screen and (max-width: 799px) {
  .head_menu .ham {
    position: relative;
    top: 0;
    width: 50px;
    height: 50px;
  }
}
.head_menu .ham span:nth-child(1) {
  width: 70px;
  height: 3px;
  position: absolute;
  top: 40px;
  left: 10px;
  background: #474646;
}
@media only screen and (max-width: 799px) {
  .head_menu .ham span:nth-child(1) {
    width: 40px;
    height: 2px;
    top: 20px;
  }
}
.head_menu .ham.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 40px;
  transition: all 0.5s ease;
  width: 50px;
}
@media only screen and (max-width: 799px) {
  .head_menu .ham.open span:nth-child(1) {
    top: 25px;
  }
}
.head_menu .ham span:nth-child(2) {
  width: 70px;
  height: 3px;
  position: absolute;
  top: 50px;
  left: 10px;
  background: #474646;
}
@media only screen and (max-width: 799px) {
  .head_menu .ham span:nth-child(2) {
    width: 40px;
    height: 2px;
    top: 30px;
  }
}
.head_menu .ham.open span:nth-child(2) {
  transform: rotate(-45deg);
  top: 40px;
  transition: all 0.5s ease;
  width: 50px;
}
@media only screen and (max-width: 799px) {
  .head_menu .ham.open span:nth-child(2) {
    top: 25px;
  }
}

.menu {
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}
@media only screen and (max-width: 799px) {
  .menu {
    width: 80vw;
  }
}
.menu.open {
  transform: translateX(0) !important;
}
.menu a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-size: 25px;
  margin: 0 20px;
  color: #fff;
}
.menu .tel {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
}
.menu .tel a {
  text-decoration: none;
  color: #fff;
}

.footer {
  height: 50vh;
  width: 100vw;
  position: relative;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 799px) {
  .footer {
    display: flex;
    align-items: center;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(2, 173, 194, 0.5) 100%);
  z-index: 99;
  pointer-events: none;
}
.footer .bg_footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
}
.footer .bg_footer img {
  width: 100%;
  height: 50vh;
}
.footer .contact-box {
  display: block;
  position: relative;
  z-index: 99;
  top: calc(50% - 125px);
  left: calc(50% - 200px);
  width: 400px;
  height: 250px;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
}
@media only screen and (max-width: 799px) {
  .footer .contact-box {
    width: 90vw;
    inset: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
  }
}
.footer .contact-box .contact-title {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
  font-family: ttl;
}
.footer .contact-box .contact-text {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #666;
  font-family: ttl;
}
.footer .contact-box .contact-phone {
  display: inline-block;
  font-size: 1.25rem;
  color: #fff;
  background-color: #F85301;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.footer .contact-box .contact-phone:hover {
  background-color: #357ab8;
}
.footer .contact-box .fa-brands {
  font-size: 60px;
  color: #B7251E;
  margin-top: 20px;
}
.footer .copyright {
  position: absolute;
  z-index: 99;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-family: ttl;
  font-size: 20px;
}
@media only screen and (max-width: 799px) {
  .footer .copyright {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */