@charset "UTF-8";
/* CSS Document */
/*
Theme Name: original-thema_grow-hp-blue
*/

/*=============================
全ページ共通要素
=============================*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  overscroll-behavior: none;
}
html {
  font-family: "Noto Serif JP", serif;
  font-size: min(4vw, 16px);
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
  scrollbar-width: none;
}
body {
  color: #333;
  /* text-align: center; */
  line-height: 2;
  background-color: #fff;
  margin: 0;
}
main {
  /* max-width: var(--content-max-width); */
  margin: 0 auto;
}
ul li {
  list-style: none;
}
a {
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
a:hover {
  opacity: 0.5;
}
button {
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 401px) {
  .is_sp {
    display: none;
  }
}
.bold {
  font-weight: bold;
}
:root {
  --content-max-width: 1200px;
  --pc-content-width: calc((100% - var(--content-max-width)) / 2);
  --pc-max-width: calc((100% - 2500px) / 2);
}
/*=============================
ヘッダー
=============================*/
.header#navArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}
.header .header__inner {
  width: 100%;
  max-width: var(--content-max-width);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: min(3vw, 15px);
  margin: 0 auto;
}
#navArea h1 {
  width: min(30vw, 200px);
}
#navArea h1 a {
  display: block;
  width: 100%;
}
#navArea h1 .logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
  vertical-align: bottom;
}
/*=============================
ハンバーガーメニュー
https://125naroom.com/web/2958
#btn07
=============================*/
/* ハンバーガーボタンの位置とサイズ */
.btn-trigger {
  width: min(10vw, 60px);
  aspect-ratio: 1;
  cursor: pointer;
  padding: min(1vw, 5px);
  border-radius: min(5vw, 10px);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 150;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - min(3vw, 15px));
  height: min(1vw, 2px);
  background-color: #000;
  margin: 0 auto;
}
.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
/* 閉じてる時のハンバーガーのバーの位置 */
.btn-trigger span:nth-of-type(1) {
  top: min(3vw, 15px);
}
.btn-trigger span:nth-of-type(2) {
  top: calc(50% - min(0.5vw, 1px));
  transform: translateY(-50% + min(0.5vw, 1px));
}
.btn-trigger span:nth-of-type(3) {
  bottom: min(3vw, 15px);
}
/* 開いた時のハンバーガーのバーの位置 */
#btn07.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#btn07.active span:nth-of-type(2) {
  opacity: 0;
}
#btn07.active span:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (min-width: 851px) {
  .btn-trigger {
    display: none;
  }
}
/*========================
開いた時のメニューデザイン
=========================*/
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 60vw;
  max-width: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  z-index: 100;
  opacity: 0;
}
.open nav {
  right: 0;
  opacity: 1;
}
nav .inner {
  padding: min(15vw, 75px) min(5vw, 25px) min(5vw, 25px);
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li:last-child {
  border-bottom: none;
}
nav .inner ul li a {
  display: block;
  color: #000;
  font-size: min(3vw, 14px);
  font-weight: bold;
  text-decoration: none;
  transition-duration: 0.2s;
  padding: 1em;
}
nav .inner ul li a.icon {
  padding: 15px;
}
nav .inner ul li a:hover {
  background: rgba(255, 255, 255, 0.5);
}
/* nav .inner ul li a img.sns {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: bottom;
} */
/*========================
#mask （開いた時に
画面クリックでも閉じれるように）
=========================*/
#mask {
  display: none;
  transition: all 0.5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}
/*========================
PC用メニュー
=========================*/
@media (min-width: 851px) {
  #navArea {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 100;
    margin: 0 auto;
  }
  .header .header__inner {
    padding: 0;
    padding-left: min(3vw, 15px);
  }
  nav .inner {
    padding: 0;
  }
  nav {
    position: static;
    width: auto;
    max-width: none;
    overflow: auto;
    transition: none;
    background: none;
    backdrop-filter: none;
    opacity: 1;
  }
  nav .inner ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  nav .inner ul li {
    border: none;
  }
  nav .inner ul li.top {
    display: none;
  }
  nav .inner ul li a {
    padding: min(10vw, 25px) min(20vw, 40px);
  }
  nav .inner ul li a.icon {
    padding: 0 0 0 15px;
  }
}
/*=============================
下層ページ共通
=============================*/
main.lower-page__main {
  min-height: calc(100vh - 108px);
  padding: min(30vw, 80px) 0 0;
}
main.lower-page__main::before,
main.lower-page__main::after,
.lower-page__main .lower-page__main-bgfilter::before {
  content: "";
  width: 100%;
  /* max-width: var(--content-max-width); */
  height: 49%;
  position: fixed;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  z-index: -2;
}
main.lower-page__main::before {
  top: 0;
  background-image: url("./assets/images/lower-page-bg-top.webp");
  background-position: top;
}
main.lower-page__main::after {
  bottom: 0;
  background-image: url("./assets/images/lower-page-bg-bottom.webp");
  background-position: bottom;
}
.lower-page__main .lower-page__main-bgfilter::before {
  height: 100%;
  top: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1),
    /* rgba(255, 255, 255, 1), */ rgba(255, 255, 255, 0)
  );
  z-index: -1;
}
.lower-page__main .lower-page__section {
  width: 100%;
  max-width: var(--content-max-width);
  padding: min(5vw, 15px);
  margin: 0 auto min(15vw, 45px);
}
.lower-page__main .lower-page__title {
  font-size: min(15vw, 50px);
  line-height: 1.2;
  border-bottom: 1px solid #333;
  margin-bottom: min(15vw, 45px);
}
.lower-page__main .lower-page__section-title {
  font-size: min(12.5vw, 40px);
}
.lower-page__main .lower-page__section-text {
  text-align: center;
  font-size: min(5vw, 16px);
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.5);
  /* 方眼紙模様のスタイルここから */
  background-image:
    linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      rgba(240, 240, 240, 0.5) calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      rgba(240, 240, 240, 0.5) calc(100% - 1px)
    );
  background-size: 15px 15px;
  background-repeat: repeat;
  background-position: center center;
  /* 方眼紙模様のスタイルここまで */
  border: 0.5px solid #333;
  border-radius: min(10px, 5vw);
  padding: min(5vw, 10px);
}
/*=============================
PC用サイドの画像表示
=============================*/
/* .pc-side__left,
.pc-side__right {
  display: none;
}
@media (min-width: 1201px) {
  .pc-side__left,
  .pc-side__right {
    position: fixed;
    top: 0;
    display: block;
    width: calc(((100% - var(--content-max-width))) / 2);
    height: 100%;
    background-size: cover;
    background-position: bottom;
    z-index: -1;
  }
  .pc-side__left {
    left: 0;
    background-image: url("./assets/images/pc-side-left.webp");
    border-right: 1px solid #000;
  }
  .pc-side__right {
    right: 0;
    background-image: url("./assets/images/pc-side-right.webp");
    border-left: 1px solid #000;
  }
  .pc-side__filter {
    position: fixed;
    top: 0;
    width: calc(((100% - var(--content-max-width)) - 2px) / 2);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }
} */
/*----------------------------------
  footer
----------------------------------*/
footer {
  width: 100%;
  /* max-width: var(--content-max-width); */
  background-image: url("./assets/images/footer-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.footer__filter {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}
.footer__inner {
  width: 100%;
  max-width: var(--content-max-width);
  padding: min(10vw, 20px) min(5vw, 15px) min(5vw, 10px);
  margin: 0 auto;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  margin-bottom: min(5vw, 20px);
}
.footer__container h2 {
  width: 45%;
}
.footer__container h2 a {
  display: block;
  width: fit-content;
  color: #888888;
  font-size: min(10vw, 80px);
  line-height: 1;
}
.footer__container .contact__lead {
  width: 55%;
  max-width: 550px;
  font-size: min(2.5vw, 12.5px);
  line-height: 1.3;
  padding: min(2vw, 10px);
  background-color: rgba(255, 255, 255, 0.5);
  border: 0.5px solid #333;
  border-radius: min(2vw, 5px);
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* margin-bottom: min(10vw, 30px); */
}
.footer__menu li {
  margin: 0 0 min(5vw, 20px);
}
.footer__menu li a {
  display: block;
  font-size: min(3vw, 15px);
  line-height: 1.5;
  padding: 0 min(5vw, 20px);
}
.footer__menu li a:first-child {
  padding-left: 0;
}
.footer__menu li.instagram a {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("./assets/images/menu-Instagram_Glyph_Black.png"); /* 画像パス */
  background-size: contain;
  text-indent: -9999px; /* テキストを隠す場合 */
}
.footer__menu li a img.sns {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: bottom;
}
.footer-menu_sp ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
footer small {
  display: block;
  text-align: center;
  font-size: min(3vw, 14px);
}
@media (min-width: 851px) {
  .footer__menu li {
    margin: 0 min(5vw, 10px) min(5vw, 20px);
  }
}
