@charset "UTF-8";
/* 共通部分 base + components + utils をまとめる */
/* CSS Document */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}

/* ベース */
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  text-align: justify;
  word-break: break-all;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333;
}

p,
dd,
li {
  margin: 0;
}
@media screen and (max-width: 767px) {
  p,
  dd,
  li {
    line-height: 1.75em;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55% !important;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 60% !important;
  }
}
/*a関係*/
a {
  text-decoration: none; /* 常時下線なし */
  color: inherit; /* 親要素の文字色を継承 */
}

a:hover,
a:focus {
  text-decoration: none; /* ホバー・フォーカス時も下線なし */
  outline: auto; /* キーボード操作時にフォーカスを可視化 */
}

a:active {
  text-decoration: none; /* クリック中も下線なし */
}

/* row gutter 上書き */
.row {
  --bs-gutter-x: 1.5rem;
}

/* 全体ボックスサイズ統一 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Page Top */
#page-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================
	Drawer Menu (BEM + Sass)
	テンプレート用
	========================================= */
/* カラー変数 */
.drawer__button {
  position: relative;
  width: 70px;
  height: 70px;
  background: #b4b4b4;
  border: none;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s ease;
}
.drawer__button:hover {
  background-color: #999;
}
.drawer__button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.5rem;
  height: 1.5px;
  background-color: #fff;
  transform: translateX(-50%);
}
.drawer__button span:first-child {
  transform: translate(-50%, calc(-50% - 1rem));
  transition: transform 0.3s ease;
}
.drawer__button span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button span:last-child {
  transform: translate(-50%, calc(-50% + 1rem));
  transition: transform 0.3s ease;
}
.drawer__button--active {
  background: transparent;
}
.drawer__button--active:hover {
  background: transparent;
}
.drawer__button--active span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button--active span:nth-child(2) {
  opacity: 0;
}
.drawer__button--active span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.drawer__nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s ease;
}
.drawer__nav--active {
  pointer-events: auto;
}
.drawer__nav--active::before {
  opacity: 1;
}
.drawer__nav--active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__inner {
  position: relative;
  width: 60%;
  height: 100%;
  background-color: #3b3b3b;
  margin-left: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 7rem;
}
@media screen and (max-width: 991px) {
  .drawer__nav__inner {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .drawer__nav__inner {
    width: 60%;
  }
}
@media screen and (max-width: 575px) {
  .drawer__nav__inner {
    width: 70%;
    padding: 7rem 5rem 5rem;
  }
}
.drawer__nav__inner__menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .drawer__nav__inner__menu-container {
    gap: 0;
  }
}
.drawer__nav__inner__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .drawer__nav__inner__menu {
    flex: none;
    width: 100%;
    text-align: left;
    margin-bottom: 1rem;
  }
}
.drawer__nav__inner__menu > li {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .drawer__nav__inner__menu > li {
    margin-bottom: 1.5rem;
  }
}
.drawer__nav__inner__menu li {
  position: relative;
}
.drawer__nav__inner__menu li a {
  display: block;
  padding: 0.2rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.drawer__nav__inner__menu li a:hover {
  color: #ff7e00;
}
.drawer__nav__inner__menu li .arrow {
  position: relative;
  border-bottom: 1px solid #fff;
  font-weight: 500;
  padding: 0.75rem 4rem 0.75rem 0;
}
.drawer__nav__inner__menu li .arrow::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.drawer__nav__inner__menu li .arrow::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
}
.drawer__nav__inner__menu li .arrow:hover::after {
  transform: translate(6px, -50%);
}
.drawer__nav__inner__menu li .arrow:hover::before {
  transform: translate(6px, -50%) rotate(45deg);
}
.drawer__nav__inner__menu li.has-sub > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__nav__inner__menu li.has-sub .drawer__nav__inner__menu--sub {
  /* サブメニューは常時表示 */
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 0;
}
.drawer__nav__inner__menu li.has-sub .drawer__nav__inner__menu--sub li {
  border: none;
}
.drawer__nav__inner__menu li.has-sub .drawer__nav__inner__menu--sub li a {
  font-size: 1.4rem;
  padding: 0.2rem 0;
}

/* =========================================
	bodyスクロール禁止（メニュー開時）
========================================= */
body.drawer-open {
  height: 100%;
  overflow: hidden;
}

/* =========================================
   _inview.scss
   Inview Animation (Sass版)
   JS依存なし（IntersectionObserver前提）
   ========================================= */
.js-inview {
  will-change: opacity, transform;
}

.inview {
  opacity: 0;
}

.inview.is-inview {
  opacity: 1;
}

.inview--fade {
  transition: opacity 0.8s ease;
}

.inview--up {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inview--up.is-inview {
  transform: translateY(0);
}

.inview--fade-up {
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inview--fade-up.is-inview {
  transform: translateY(0);
}

.inview--zoom {
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inview--zoom.is-inview {
  transform: scale(1);
}

.inview--left {
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inview--left.is-inview {
  transform: translateX(0);
}

.inview--right {
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.inview--right.is-inview {
  transform: translateX(0);
}

::-moz-selection {
  color: #fff;
  background-color: #9e4e01;
}

::selection {
  color: #fff;
  background-color: #9e4e01;
}

::-moz-selection {
  background: #9e4e01;
  color: #fff;
}

html {
  scroll-padding-top: 100px;
}

a {
  transition: 0.3s ease;
}

a:hover,
a:focus {
  outline: none;
}

.main-title {
  font-weight: 400;
  line-height: 2.25em;
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .main-title {
    line-height: 2em;
    margin-bottom: 1rem;
  }
}
.main-title span {
  font-size: 4rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ff7e00;
}
@media screen and (max-width: 767px) {
  .main-title span {
    font-size: 3.5rem;
  }
}

#wrapper {
  background-image: linear-gradient(90deg, #262626, #3f3f3f);
  color: #fff;
  letter-spacing: 0.05em;
}

section {
  margin-bottom: 10rem;
}
@media screen and (max-width: 1199px) {
  section {
    margin-bottom: 9rem;
  }
}
@media screen and (max-width: 991px) {
  section {
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 767px) {
  section {
    margin-bottom: 5rem;
  }
}

.header-img {
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 7rem;
  background-size: cover;
  background-position: center;
  margin-top: -70px;
}
@media screen and (max-width: 575px) {
  .header-img {
    height: 270px;
    margin-bottom: 5rem;
  }
}
.header-img h1 {
  position: absolute;
  bottom: -23px;
  margin: 0;
  line-height: 1.2;
  font-size: 1.6rem;
}
@media screen and (max-width: 1199px) {
  .header-img h1 {
    bottom: -19px;
  }
}
@media screen and (max-width: 991px) {
  .header-img h1 {
    bottom: -17px;
  }
}
@media screen and (max-width: 575px) {
  .header-img h1 {
    bottom: -15px;
  }
}
.header-img h1 span {
  font-size: 7rem;
  font-family: "Syncopate", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 1199px) {
  .header-img h1 span {
    font-size: 6rem;
  }
}
@media screen and (max-width: 575px) {
  .header-img h1 span {
    font-size: 5rem;
  }
}

.site-header {
  position: relative;
  z-index: 500;
  position: sticky;
  top: 0;
  background: transparent; /* ← ここ重要 */
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0));
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 4rem;
  gap: 2rem;
}
@media screen and (max-width: 575px) {
  .site-header .header-inner {
    padding-left: 2rem;
  }
}
.site-header .site-logo {
  margin: 0;
}
.site-header .site-logo img {
  width: 250px;
  height: auto;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
}
.site-header .header-actions .mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #ff7e00; /* オレンジ */
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.site-header .header-actions .mail-button:hover, .site-header .header-actions .mail-button:focus-visible {
  background-color: #d9690d;
}

footer #access {
  margin-bottom: 0;
}
footer #access .access-text .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer #access .access-text .container {
    flex-direction: column;
    align-items: start;
  }
}
footer #access .access-text .container h3 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  footer #access .access-text .container h3 {
    margin-bottom: 1rem;
  }
}
footer #access .access-text .container p span {
  font-weight: 600;
}
footer #access .gmap iframe {
  display: block;
  width: 100%;
  height: 350px;
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 991px) {
  footer #access .gmap iframe {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  footer #access .gmap iframe {
    height: 270px;
  }
}
@media screen and (max-width: 575px) {
  footer #access .gmap iframe {
    height: 250px;
  }
}
footer .footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 575px) {
  footer .footer-contact {
    grid-template-columns: 1fr;
  }
}
footer .footer-contact .footer-contact-left,
footer .footer-contact .footer-contact-right {
  text-align: center;
  padding: 5rem 0 4rem;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-left,
  footer .footer-contact .footer-contact-right {
    padding: 4rem 0 3rem;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-contact .footer-contact-left,
  footer .footer-contact .footer-contact-right {
    padding: 3rem 0 2rem;
  }
}
footer .footer-contact .footer-contact-left h5,
footer .footer-contact .footer-contact-right h5 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-left h5,
  footer .footer-contact .footer-contact-right h5 {
    font-size: 1.8rem;
  }
}
footer .footer-contact .footer-contact-left {
  background-color: #4d4d4d;
}
footer .footer-contact .footer-contact-left a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-left a {
    font-size: 3.5rem;
    letter-spacing: 0;
  }
}
footer .footer-contact .footer-contact-left a i {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-left a i {
    font-size: 2.8rem;
  }
}
footer .footer-contact .footer-contact-right {
  background-color: #555;
}
footer .footer-contact .footer-contact-right p {
  margin-bottom: 2rem;
}
footer .footer-contact .footer-contact-right a {
  display: inline-block;
  background-color: #ff7e00;
  padding: 1rem 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-right a {
    padding: 1.5rem 2rem;
    letter-spacing: 0;
  }
}
footer .footer-contact .footer-contact-right a::after {
  background: #d9690d;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
footer .footer-contact .footer-contact-right a:hover::after {
  transform: scale(1, 1);
}
footer .footer-contact .footer-contact-right a img {
  width: 35px;
  height: auto;
  margin-right: 1rem;
  transform: translateY(-1px);
}
@media screen and (max-width: 767px) {
  footer .footer-contact .footer-contact-right a img {
    width: 30px;
  }
}
footer .footer-main {
  padding: 3rem 0;
}
footer .footer-main .footer-main-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  footer .footer-main .footer-main-top {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-main .footer-main-top {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
footer .footer-main .footer-main-top .site-logo {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-main-top .site-logo {
    width: 270px;
  }
}
footer .footer-main .footer-main-top .footer-menu {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 991px) {
  footer .footer-main .footer-main-top .footer-menu {
    gap: 3rem;
  }
}
@media screen and (max-width: 575px) {
  footer .footer-main .footer-main-top .footer-menu {
    flex-direction: column;
    gap: 1rem;
  }
}
footer .footer-main .footer-main-top .footer-menu ul {
  list-style: none;
  font-size: 1.4rem;
  padding: 0;
}
footer .footer-main .footer-main-top .footer-menu ul li a {
  transition: 0.3s ease;
}
footer .footer-main .footer-main-top .footer-menu ul li a:hover {
  color: #ff7e00;
}
footer .footer-main .footer-main-top .footer-menu ul .menu-main {
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding: 0 0 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  footer .footer-main .footer-main-top .footer-menu ul .menu-main {
    font-size: 1.6rem;
  }
}
footer .footer-main .footer-main-top .footer-menu ul .menu-sub {
  font-weight: 300;
  border: none;
}
@media screen and (max-width: 575px) {
  footer .footer-main .footer-main-top .footer-menu ul .menu-sub {
    font-size: 1.6rem;
    padding: 0.35rem 0;
  }
}
footer .footer-main .footer-main-bottom .footer-main-bottom-left .senshin-link {
  background: linear-gradient(90deg, rgb(126, 220, 255) 0%, rgb(65, 139, 233) 100%);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.5rem 3rem;
  color: #333;
  font-weight: 400;
  transition: 0.3s ease;
}
footer .footer-main .footer-main-bottom .footer-main-bottom-left .senshin-link:hover {
  opacity: 0.8;
}
footer .footer-main .footer-main-bottom .footer-main-bottom-left .senshin-link img {
  margin-right: 0.75rem;
}
footer .footer-main .footer-main-bottom .footer-main-bottom-left p {
  font-size: 1.2rem;
}

/* トップへ戻るボタン */
#page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;
}
#page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease;
}
#page-top a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(1px) rotate(-45deg);
}
#page-top a:hover {
  opacity: 0.8;
}/*# sourceMappingURL=common.css.map */