@charset "utf-8";

@media screen and (max-width: 768px) {

/*-------------------------------------ユーティリティ-------------------------------------*/
.pc-only,
.pcOnly {
  display: none !important;
}
.sp-only,
.spOnly {
  display: block !important;
}
html {
  position: relative;
  font-size: 50% !important;   /* SP時のrem基準を50%に */
  min-height: 100%;
}
body {
  position: relative;
  min-width: auto !important;   /* PC の 1240px 制約を解除 */
  height: 100%;
  min-height: 100%;
}

/*-------------------------------------ラッパー-------------------------------------*/
.wrap {
  width: 100%;
}
.content {
  width: 100%;
  max-width: 100% !important;
  padding: 0 15px;
}

/*-------------------------------------固定要素-------------------------------------*/
/* TOPへボタン */
.button-page-top {
  position: fixed;
  z-index: 100;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: var(--color-green);
  border-radius: 50%;
  cursor: pointer;
  text-indent: -9999px;
}
.button-page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translate(-50%, -30%) rotate(-45deg);
}

/*-------------------------------------SPヘッダー（ハンバーガーボタン）-------------------------------------*/
#sp-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: 54px;
  height: 54px;
  background-color: transparent;
  display: block !important;
}
#sp-header .menu-trigger-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  padding: 15px 13px;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-green-dark) 100%);
  z-index: 1500;
  cursor: pointer;
  transition: 0.3s;
}
#sp-header .menu-trigger {
  position: relative;
  width: 26px;
  height: 22px;
  margin: 1px 0;
}
#sp-header .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.4s;
}
#sp-header .menu-trigger span:nth-of-type(1) { top: 0; }
#sp-header .menu-trigger span:nth-of-type(2) { top: 10px; }
#sp-header .menu-trigger span:nth-of-type(3) { bottom: 0; }
#sp-header .menu-trigger-box.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(10px) rotate(-315deg);
}
#sp-header .menu-trigger-box.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
#sp-header .menu-trigger-box.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-10px) rotate(315deg);
}

/*-------------------------------------ハンバーガーメニュー（スライドイン）-------------------------------------*/
#hamburger {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  text-align: center;
  background: linear-gradient(180deg, #FDECEC 0%, #FDF4F4 40%, #F0F8F0 100%);
  z-index: 100;
  transition: 0.5s;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  display: block !important;
}
body.menu-open #hamburger {
  right: 0;
  pointer-events: auto;
  opacity: 1;
}
#hamburger .sp-nav {
  padding: 80px 30px 40px;
}
#hamburger .sp-nav > ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
#hamburger .sp-nav > ul > li {
  width: 100%;
  border-bottom: 1px dotted rgba(28, 94, 51, 0.35);
}
#hamburger .sp-nav > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 20px 15px 18px;
  color: var(--color-green-dark);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
#hamburger .sp-nav > ul > li > a .sp-nav-en {
  display: block;
  font-family: "Damion", cursive;
  font-weight: 400;
  transform: rotate(-5deg);
  transform-origin: left center;
  font-size: 16px;
  color: var(--color-pink);
  letter-spacing: 0.1em;
  margin: 0;
  padding-top: 6px;
}

/*-------------------------------------ヘッダー（SP時は簡素・fixed）-------------------------------------*/
header.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 54px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(28, 94, 51, 0.1);
}
.header .wrap {
  padding: 0;
}
.header .content {
  width: 100%;
  max-width: 100% !important;
  height: 54px;
  padding: 0 60px 0 15px;
  display: flex;
  align-items: center;
}
.header .box-outer {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .g-nav,
.header .btn-pill {
  display: none !important;
}
.header .box-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .logo-mark {
  width: 55px;
  flex-shrink: 0;
}
.header .logo-text .tag-line {
  font-size: 1.4rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  line-height: 1;
}
.header .logo-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/*-------------------------------------body 全体オフセット（fixed header 分）-------------------------------------*/
body {
  padding-top: 54px;
}

/*-------------------------------------フッター（お問い合わせ含む）-------------------------------------*/
/* お問い合わせセクション */
.footer-contact {
  padding: 60px 0 140px;
  background:
    url('../images/footer_contact_back_01.png') no-repeat top center / 100% auto,
    url('../images/footer_contact_back_02.png') no-repeat bottom center / auto 220px,
    linear-gradient(180deg, #FFFFFF 0%, #FDF4F0 100%);
}
.footer-contact .wrap,
.footer-contact .content {
  width: 100%;
  max-width: none !important;
  padding: 0;
}
.footer-contact .content {
  padding: 0 15px;
}
.footer-contact .h2-outer {
  text-align: center;
  margin-bottom: 15px;
  display: block;
}
.footer-contact .h2-outer h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-green-dark);
  display: inline-block;
  margin-right: 8px;
}
.footer-contact .h2-outer .eng {
  font-family: "Damion", cursive;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-5deg);
  transform-origin: left center;
  font-size: 20px;
  color: var(--color-pink);
  display: inline-block;
}
.footer-contact .lead {
  text-align: center;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}
.footer-contact .box-outer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
}
.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 75px;
  padding: 0 20px;
  background: var(--color-white);
  border: 2px solid var(--color-green-dark);
  border-radius: 15px;
  color: var(--color-text);
}
.contact-btn .icon {
  flex-shrink: 0;
  width: 40px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-btn-mail .icon {
  height: 50px;
  width: 40px;
}
.contact-btn .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-btn .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.contact-btn-tel .tel {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--color-green-dark);
  letter-spacing: 0.1em;
  line-height: 1.1;
  white-space: nowrap;
}
.contact-btn-tel .body {
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  width: max-content;
  transform: translate(-50%, -50%);
  align-items: center;
}
.contact-btn-tel .hours {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 12px;
  opacity: 0.75;
  position: relative;
  left: 0.5em;
  white-space: nowrap;
}
.contact-btn-mail .text {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-dark);
  font-feature-settings: "palt" 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.contact-btn-mail .body {
  position: absolute;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  align-items: center;
}
.contact-btn .arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--color-green-dark);
}

/* 上部イラスト帯 */
.footer-illust {
  display: none;
}
.footer-illust img {
  width: 100%;
  height: auto;
  display: block;
}

/* 下部 暗緑ナビ帯 */
.footer-nav-band {
  background: transparent;
  color: var(--color-white);
  padding: 0;
  margin-top: -18vw;
  position: relative;
  z-index: 2;
}
.footer-nav-band .wrap {
  width: 100%;
  padding: 25vw 0 30px;
  background:
    url('../images/footer_back_01.png') no-repeat top center / 100% auto,
    linear-gradient(#1C5E33, #1C5E33) no-repeat 0 calc(100vw / 3.75 - var(--wave-fill-overlap)) / 100% calc(100% - 100vw / 3.75 + var(--wave-fill-overlap));
}
.footer-nav-band .content {
  width: 100%;
  max-width: 100% !important;
  padding: 0 15px;
  box-sizing: border-box;
}
.footer-nav-band .box-outer {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* 左：会社情報 */
.footer .box-company-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 70px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-name .tag-line {
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  color: var(--color-white);
}
.footer-name .company-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-white);
  margin-bottom: 15px;
}
.footer .box-company-info .address {
  padding-left: 0;
  font-size: 12px;
  line-height: 1.9;
  color: var(--color-white);
  text-align: center;
}
.footer .box-company-info .address span {
  display: block;
}
.footer .box-company-info .address a {
  color: var(--color-white);
}

/* 右：ナビ area */
.footer .box-nav-area {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}
.footer-nav ul {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}
.footer-nav li {
  width: 100%;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}
.footer-nav li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 5px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  position: relative;
}
.footer-nav li a::after {
  content: "›";
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.6;
}
.footer-nav.nav-roll-ready a {
  height: auto;
  line-height: 1.4;
  overflow: visible;
  color: var(--color-white) !important;
}
.footer-nav.nav-roll-ready a::before {
  display: none;
}
.footer-nav.nav-roll-ready a::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: auto 10px auto auto;
  top: 50%;
  width: auto;
  height: auto;
  transform: translateY(-50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--color-white);
  opacity: 0.6;
  pointer-events: none;
}
.footer-nav li a::before,
.footer-nav.nav-roll-ready a::before {
  content: none !important;
  display: none !important;
}
.footer-nav-sub {
  margin-top: 20px;
}
.footer-nav-sub ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 0;
  margin-top: 0;
}
.footer-nav-sub li {
  font-size: 12px;
  color: var(--color-white);
}
.footer-nav-sub li + li::before {
  content: "｜";
  margin-right: 10px;
  opacity: 0.5;
}
.footer .credit {
  font-size: 11px;
  color: var(--color-white);
  opacity: 0.9;
  margin-top: 10px;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

}  /* @media (max-width: 768px) */
