@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");

body {
  margin: 0 !important;
  font-family: 'Inter', sans-serif;
  position: relative;
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* ページ内リンクのズレ調整 */
section,
[id] {
  scroll-margin-top: 100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.8;
}

button#cn-accept-cookie {
  margin-top: 10px !important;
  padding: 10px 30px !important;
  font-size: 15px !important;
}

strong {
  font-weight: bold;
}

:root {
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-bg: 18px;
  --font-size-l: 23px;
  --font-size-sl: 30px;
  --font-size-xl: 40px;
  --font-size-xl-en: 38px;
}


.wave-wrapper {
  position: absolute;
  overflow: hidden;
}

.wave-anim {
  width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  /* 初期状態：右側100%隠す */
  transition:
    opacity 0.4s ease-out,
    clip-path 0.8s ease-out 0.5s;
}

.wave-anim.animate {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  /* アニメ後：全表示 */
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

/* Common */
.common-sp-none {
  display: block;
}

.common-pc-none {
  display: none;
}

/* バナー */
.common-banner {
  display: flex;
}

.common-banner-box {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 120px 20px 0;
}

.common-banner-box img {
  width: 100%;
  object-fit: contain;
}


/* 光エフェクトを付けるクラス */
.shine-effect {
  position: relative;
  overflow: hidden;
}

/* 光の筋 */
.shine-effect::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -60%;
  width: 40%;
  height: 160%;
  transform: rotate(20deg);

  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0) 100%);

  filter: blur(1px);
  opacity: 0.9;

  animation: shineMove 1.5s linear infinite;
  pointer-events: none;
}

@keyframes shineMove {
  0% {
    left: -60%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    left: 120%;
    opacity: 1;
  }

  41% {
    opacity: 0;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}


@media(max-width:500px) {
  .common-sp-none {
    display: none;
  }

  .common-pc-none {
    display: block;
  }
}

/* セクションタイトル */
.section-header {
  margin-bottom: 50px;
  display: flex;
}


.sec-ttl-en {
  font-weight: 800;
  margin-bottom: 15px;
  display: block;
  color: #000;
}

.ttl-subtitle {
  color: #333;
  font-weight: 600;
  display: inline-block;
}


.title-block {
  display: inline-block;
}

.subtitle {
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.subtitle::after {
  content: "";
  display: block;
  width: 80px;
  /* 線の長さ（調整可） */
  height: 4px;
  /* 線の太さ */
  margin-top: 15px;
  background: linear-gradient(to right, #00c3a5, #2e6cf6);
  /* グラデーション */
  border-radius: 2px;
}

/* アニメーション */
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease 0.5s;
}

.fade-left.is-show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.5s;
}

.fade-right.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* Header */
.pc-size-container {
  display: flex;
  width: 100%;
  height: auto;
  background: #fff;
}

.pc-size-content {
  margin: auto;
  max-width: 1440px;
  height: auto;
  background: #fff;
  width: 100%;
  position: relative;
  z-index: 9999;
}

.logo-txt {
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.header-logo {
  max-width: 30px;
  object-fit: contain;
  margin-right: 5px;
}

.site-header {
  width: 100%;
  background-color: #ffffffce;
  border-radius: 40px;
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  z-index: 99999;
  max-width: 1400px;
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.logo a {
  font-size: var(--font-size-l);
  color: #009a53;
  font-weight: bold;
  display: flex;
  align-items: end;
  gap: 5px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-rt-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: normal;
  font-size: var(--font-size-md);
  transition: 0.3s;
  padding: 5px 0;

  transition: 0.3s;
  cursor: pointer;
}

.main-nav a:hover {
  color: #009A53;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.btn-outline,
.btn-filled {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: var(--font-size-md);
  font-weight: normal;
  text-decoration: none;
}

.btn-outline {
  color: #009a53;
  border: 1.8px solid #009a53;
  background-color: #fff;
  font-weight: bold;
}

.btn-outline:hover {
  color: #fff;
  border: 1.8px solid #009a53;
  background-color: #009a53;
}

.btn-filled {
  background-color: #009a53;
  border: 1.8px solid #009a53;
  color: #fff;
  font-weight: bold;
}

.btn-filled:hover {
  background-color: #fff;
  color: #009a53;
}

.btn-outline:hover,
.btn-filled:hover {
  transition: 0.3s ease;
}

/* PCではスマホメニューを非表示 */
.mobile-menu-btn,
.mobile-menu-wrap {
  display: none;
}

/* Footer */
/* ===== フッター全体 ===== */
.footer-section {
  background-color: #009A53;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 80px 10px;
}

/* ===== 背景の丸画像（仮） ===== */
.footer-bg-circle {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #8ccf8c 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
}

.footer-bg-circle-rt {
  bottom: -200px;
  right: -200px;
  left: auto;
  top: auto;

  width: 500px;
  height: 500px;
}

/* ===== コンテンツ全体 ===== */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

/* ===== 左側ロゴ・住所 ===== */
.footer-brand {
  flex: 1;
  min-width: 220px;
}

.footer-bland-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-bland-box img {
  object-fit: cover;
}


.footer-logo-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.footer-logo-box a {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: end;
  color: #fff;
  text-decoration: underline;
}

.footer-logo-box img {
  max-width: 50px;
}

.footer-logo-txt {
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}

.footer-address {
  font-size: var(--font-size-md);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-address-txt {
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* ===== リンクエリア ===== */
.footer-links {
  display: flex;
  flex: 3;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-col {
  min-width: 200px;
}

.footer-col h3 {
  font-size: var(--font-size-md);
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  gap: 10px;
}

/* 矢印 */
.footer-col .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #00c27a;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-weight: bold;
  font-size: var(--font-size-md);
  transition: transform 0.3s ease;
}

.footer-col .arrow img {
  width: 15px;
}

.footer-link {
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: color .3s ease;
  padding-bottom: 3px;
  margin-bottom: 5px;
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
  text-decoration: none;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.footer-col li {
  font-size: var(--font-size-md);
  line-height: 1.6;
  opacity: 0.9;
}

.footer-col li a {
  color: #fff;
  text-decoration: none;
}

/* ===== フッター下部コピーライト ===== */
.footer-bottom {
  text-align: right;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: var(--font-size-md);
  color: rgba(255, 255, 255, 0.8);
}



/* タブレット */
@media (max-width: 1100px) {
  :root {
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 16px;
    --font-size-bg: 18px;
    --font-size-l: 21px;
    --font-size-sl: 28px;
    --font-size-xl: 38px;
    --font-size-xl-en: 36px;
  }

  .site-header {
    top: 10px;
  }

  .header-rt-box {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    border: none;
    background: transparent;
    z-index: 9999;
  }

  .mobile-menu-btn span {
    display: block;
    width: 32px;
    height: 1px;
    background: #333;
    border-radius: 2px;
    transition: .3s;
  }

  /* ✕ 変形 */
  .mobile-menu-btn.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* スライドメニュー */
  .mobile-menu-wrap {
    display: block;
    position: fixed;
    top: -10px;
    right: -300px;
    /* 非表示位置 */
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 80px 0 40px;
    transition: .4s;
    z-index: 9998;
    box-shadow: -3px 0 12px rgba(0, 0, 0, .15);
    overflow-y: auto;
  }

  nav.mobile-menu-wrap ul {
    margin: 0;
    list-style: none;
  }

  /* 表示状態 */
  .mobile-menu-wrap.is-open {
    right: 0;
  }

  .menu-item {
    border-bottom: 1px solid #eaeaea;
  }

  .mobile-menu-list li a {
    display: block;
    font-weight: bold;
    padding: 16px;
    font-size: 18px;
    color: #000;
    text-decoration: none;
	line-height: 1.6;
  }

  .current-menu-item {
    border-radius: 0;
    padding: 0;
    font-weight: bold;
  }

  .current-menu-item a {
    color: #fff !important;
    background-color: #009a53;
  }

  .common-banner-box {
    padding: 120px 0 0;
  }


  /* フッター */
  .footer-inner {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .footer-section {
    padding: 30px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* SP */
@media (max-width:768px) {
  :root {
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 16px;
    --font-size-bg: 18px;
    --font-size-l: 21px;
    --font-size-sl: 28px;
    --font-size-xl: 32px;
    --font-size-xl-en: 30px;
  }


}

@media (max-width:500px) {
  :root {
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 16px;
    --font-size-bg: 18px;
    --font-size-l: 19px;
    --font-size-sl: 24px;
    --font-size-xl: 32px;
    --font-size-xl-en: 30px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .header-inner,
  .mobile-menu-btn {
    padding: 0;
  }
}

span#cn-notice-text {
  text-align: left;
}

small {
    font-size: 10px;
    font-weight: 500;
}