@charset "UTF-8";
/* =========================================================
   common.scss — AWCP 本サイト（全体共通）
   設定は _setting.scss（社内標準 mixin/メディアクエリ ＋ 本サイトトークン）を参照。
   メディアクエリ: @include media1024 / media900 / media640（規約BPと一致）
   ========================================================= */
/* =========================================================
   AWCP 本サイト 固有トークン（プロジェクト追記 / 2026-06-25）
   ※ ここより上は社内標準。以下が本案件の設定。
   ========================================================= */
/* 本サイトは px 基準（規約: body px / 見出し clamp）。社内resetのSP vw可変は無効化 */
/* Gen Interface JP は index.html の CDN <link> で読み込み（@font-face 不要） */
/* =========================================================
   reset（社内標準）
   ========================================================= */
body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p,
table,
th,
td {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
}

body {
  color: #000;
  background-color: #ffffff;
  font-family: "Noto Sans Japanese", serif;
  font-weight: 300;
  line-height: 1.3;
  font-size: 16px;
  -webkit-text-size-adjust: none;
}

dt,
dd,
li,
th,
td,
p {
  line-height: 1.5;
}

/* for IE6 */
* html body {
  font-size: 100%;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

img {
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 16;
}

button {
  cursor: pointer;
}

* {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*                link
======================================================= */
a:link {
  color: #000;
  text-decoration: none;
}

a:visited {
  color: #000;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  a:hover img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0.8;
  }
}
/*                common
======================================================= */
.clear:after {
  content: "";
  display: block;
  clear: both;
}

.clear_both {
  clear: both;
}

.hidden {
  overflow: hidden;
}

/* =========================================================
   base（本サイト上書き）
   ========================================================= */
body {
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: #066191;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* 固定ヘッダーの高さ（コンテンツの上余白・ヒーローの sticky 起点に使用） */
:root {
  --header-h: 120px;
}

@media only screen and (max-width: 900px) {
  :root {
    --header-h: 76px;
  }
}
.home {
  padding-top: var(--header-h);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.2s, color 0.2s, background-color 0.2s;
  transition: opacity 0.2s, color 0.2s, background-color 0.2s;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.85;
  }
}
h1, h2, h3, h4, p {
  margin: 0;
}

.inner {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
}

/* ---- a11y ---- */
.skip_link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #066191;
  color: #fff;
  padding: 8px 16px;
}
.skip_link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid #f4962d;
  outline-offset: 2px;
}

[tabindex="-1"]:focus-visible {
  outline: none;
}

/* =========================================================
   共通セクション見出し
   ========================================================= */
.sec_title {
  font-weight: 400;
  color: #066191;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.sec_title::after {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  background: #f4962d;
  margin-top: 18px;
}

.sec_title_center {
  text-align: center;
}
.sec_title_center::after {
  margin-left: auto;
  margin-right: auto;
}

.nowrap {
  white-space: nowrap;
}

/* =========================================================
   パンくず（全ページ共通・単一クラス）
   ========================================================= */
.breadcrumb {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  padding-top: 18px;
}
@media only screen and (max-width: 900px) {
  .breadcrumb {
    padding-top: 14px;
  }
}

.breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #066191;
  font-size: clamp(11px, 1vw, 12px);
  line-height: 1.5;
}

.breadcrumb_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.breadcrumb_item + .breadcrumb_item::before {
  content: ">";
  margin-right: 6px;
  color: #066191;
  opacity: 0.6;
}
.breadcrumb_item[aria-current=page] {
  opacity: 0.7;
}

a.breadcrumb_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #066191;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
a.breadcrumb_link:link, a.breadcrumb_link:visited {
  color: #066191;
}

@media only screen and (min-width: 1025px) {
  a.breadcrumb_link:hover {
    color: #12a391;
  }
}
.breadcrumb_home {
  width: 14px;
  height: 14px;
  fill: currentColor;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: relative;
  top: -2px;
}

/* =========================================================
   共通ボタン（CTA）
   ========================================================= */
.btn_primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-width: 300px;
  padding: 18px 32px;
  background: #12a391;
  color: #fff;
  border: 2px solid #12a391;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn_primary:link, .btn_primary:visited {
  color: #fff;
}
.btn_primary .btn_primary_arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.btn_primary:hover {
  opacity: 1;
  background: #fff;
  border-color: #12a391;
  color: #12a391;
}
@media only screen and (max-width: 640px) {
  .btn_primary {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    padding: 15px 24px;
  }
}

/* =========================================================
   header
   ========================================================= */
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  padding: 20px 0;
  -webkit-transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: padding 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  transition: padding 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .site_header {
    padding: 10px 0;
  }
}

.site_header.is-compact {
  padding: 8px 0;
  -webkit-box-shadow: 0 2px 14px rgba(6, 97, 145, 0.08);
          box-shadow: 0 2px 14px rgba(6, 97, 145, 0.08);
}

.site_header_inner {
  position: relative;
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.site_logo {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site_logo img {
  width: auto;
  height: 80px;
}
@media only screen and (max-width: 1024px) {
  .site_logo img {
    height: 64px;
  }
}
@media only screen and (max-width: 640px) {
  .site_logo img {
    height: 46px;
  }
}

/* ---- global nav（PC） ---- */
.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 900px) {
  .global_nav {
    display: none;
  }
}

.global_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.global_nav_list a {
  position: relative;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.02em;
  color: #066191;
  padding-bottom: 10px;
}
.global_nav_list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 100%;
  height: 1px;
  background: #066191;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.global_nav_list a:hover {
  opacity: 1;
}
.global_nav_list a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.global_nav_list a[aria-current=page]::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.nav_contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: #066191;
  border: 1.5px solid #066191;
  border-radius: 6px;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15px);
  white-space: nowrap;
}
.nav_contact svg, .nav_contact img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 6px;
  height: auto;
}
.nav_contact:link, .nav_contact:visited {
  color: #066191;
}
.nav_contact:hover {
  opacity: 1;
  background: rgba(77, 180, 214, 0.15);
  border-color: #066191;
  color: #066191;
}

/* ---- hamburger（タブレット以下） ---- */
.nav_toggle {
  display: none;
}
@media only screen and (max-width: 900px) {
  .nav_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid #066191;
    border-radius: 50%;
  }
}
.nav_toggle .nav_toggle_bar {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto;
  background: #066191;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transition: transform 0.35s ease, opacity 0.25s ease, -webkit-transform 0.35s ease;
}
.nav_toggle.is-active .nav_toggle_bar:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}
.nav_toggle.is-active .nav_toggle_bar:nth-child(2) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}

/* ---- 下スクロールで畳む（PC：ロゴ＋ハンバーガーのみ。Figma node 143:2403） ---- */
.site_header.is-compact .global_nav {
  display: none;
}
.site_header.is-compact .nav_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #066191;
  border-radius: 50%;
}
.site_header.is-compact .site_logo img {
  height: 56px;
}

/* ---- ヘッダー スクロールアニメ（動きはCSSキーフレーム／再発火はJSが .hdr_play を付け直して制御・位置は不変） ---- */
@-webkit-keyframes hdr_flag {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-16deg) skewX(8deg);
            transform: rotateY(-16deg) skewX(8deg);
  }
  28% {
    opacity: 1;
    -webkit-transform: rotateY(10deg) skewX(-6deg);
            transform: rotateY(10deg) skewX(-6deg);
  }
  50% {
    -webkit-transform: rotateY(-7deg) skewX(4deg);
            transform: rotateY(-7deg) skewX(4deg);
  }
  72% {
    -webkit-transform: rotateY(4deg) skewX(-2.5deg);
            transform: rotateY(4deg) skewX(-2.5deg);
  }
  88% {
    -webkit-transform: rotateY(-2deg) skewX(1.5deg);
            transform: rotateY(-2deg) skewX(1.5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0) skewX(0);
            transform: rotateY(0) skewX(0);
  }
}
@keyframes hdr_flag {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(-16deg) skewX(8deg);
            transform: rotateY(-16deg) skewX(8deg);
  }
  28% {
    opacity: 1;
    -webkit-transform: rotateY(10deg) skewX(-6deg);
            transform: rotateY(10deg) skewX(-6deg);
  }
  50% {
    -webkit-transform: rotateY(-7deg) skewX(4deg);
            transform: rotateY(-7deg) skewX(4deg);
  }
  72% {
    -webkit-transform: rotateY(4deg) skewX(-2.5deg);
            transform: rotateY(4deg) skewX(-2.5deg);
  }
  88% {
    -webkit-transform: rotateY(-2deg) skewX(1.5deg);
            transform: rotateY(-2deg) skewX(1.5deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0) skewX(0);
            transform: rotateY(0) skewX(0);
  }
}
@-webkit-keyframes g_char_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.38em);
            transform: translateY(0.38em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes g_char_in {
  from {
    opacity: 0;
    -webkit-transform: translateY(0.38em);
            transform: translateY(0.38em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes g_char_out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-0.34em);
            transform: translateY(-0.34em);
  }
}
@keyframes g_char_out {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-0.34em);
            transform: translateY(-0.34em);
  }
}
@-webkit-keyframes g_underline_in {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes g_underline_in {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.global_nav_list li a .g_char {
  display: inline-block;
  will-change: opacity, transform;
}

@media only screen and (min-width: 901px) {
  .site_logo {
    -webkit-perspective: 700px;
            perspective: 700px;
  }
  .site_header.hdr_play .site_logo img {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-animation: hdr_flag 0.72s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
            animation: hdr_flag 0.72s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  }
  .site_header.hdr_play .global_nav_list li a .g_char {
    -webkit-animation: g_char_in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation: g_char_in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
    -webkit-animation-delay: calc(var(--i, 0) * 0.028s);
            animation-delay: calc(var(--i, 0) * 0.028s);
  }
  .site_header.hdr_play .global_nav_list a[aria-current=page]::after {
    -webkit-transform-origin: left center;
            transform-origin: left center;
    -webkit-animation: g_underline_in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
            animation: g_underline_in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
    -webkit-animation-delay: 0.82s;
            animation-delay: 0.82s;
  }
  .site_header.is-leaving .global_nav_list a[aria-current=page]::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.18s ease;
    transition: -webkit-transform 0.18s ease;
    transition: transform 0.18s ease;
    transition: transform 0.18s ease, -webkit-transform 0.18s ease;
  }
  .site_header.is-leaving .global_nav_list li a .g_char {
    -webkit-animation: g_char_out 0.22s ease both;
            animation: g_char_out 0.22s ease both;
    -webkit-animation-delay: calc(var(--i, 0) * 0.013s);
            animation-delay: calc(var(--i, 0) * 0.013s);
  }
  .site_header.hdr_play.is-compact .nav_toggle {
    -webkit-animation: hdr_flag 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
            animation: hdr_flag 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  }
}
/* =========================================================
   卵型画像スライダー（共通コンポーネント / ヒーロー・下層ページ共通）
   - コンテナに1つだけ卵型クリップ（右が丸く・左がとがる）
   - .egg_slide を複数入れるとクロスフェード（common.js）
   - スクロールで border-radius が変化（common.js、reduced-motion で無効）
   ========================================================= */
.egg_slider {
  position: relative;
  width: 100%;
  aspect-ratio: 820/680;
  overflow: hidden;
  border-radius: 47% 62% 62% 47%/55%;
  will-change: transform, border-radius;
}

.egg_slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.4s ease;
  transition: opacity 1.4s ease;
}
.egg_slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.egg_slide.is-active {
  opacity: 1;
}

@-webkit-keyframes link_blob {
  0% {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
  }
  20% {
    border-radius: 44% 56% 50% 50%/62% 44% 56% 38%;
    -webkit-box-shadow: 0 0 0 7px rgba(244, 150, 45, 0.22);
            box-shadow: 0 0 0 7px rgba(244, 150, 45, 0.22);
  }
  40% {
    border-radius: 52% 48% 38% 62%/44% 58% 42% 56%;
    -webkit-box-shadow: 0 0 0 5px rgba(244, 150, 45, 0.36);
            box-shadow: 0 0 0 5px rgba(244, 150, 45, 0.36);
  }
  60% {
    border-radius: 62% 38% 56% 44%/50% 54% 46% 50%;
    -webkit-box-shadow: 0 0 0 8px rgba(244, 150, 45, 0.2);
            box-shadow: 0 0 0 8px rgba(244, 150, 45, 0.2);
  }
  80% {
    border-radius: 44% 56% 60% 40%/54% 44% 56% 46%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.28);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.28);
  }
  100% {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
  }
}

@keyframes link_blob {
  0% {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
  }
  20% {
    border-radius: 44% 56% 50% 50%/62% 44% 56% 38%;
    -webkit-box-shadow: 0 0 0 7px rgba(244, 150, 45, 0.22);
            box-shadow: 0 0 0 7px rgba(244, 150, 45, 0.22);
  }
  40% {
    border-radius: 52% 48% 38% 62%/44% 58% 42% 56%;
    -webkit-box-shadow: 0 0 0 5px rgba(244, 150, 45, 0.36);
            box-shadow: 0 0 0 5px rgba(244, 150, 45, 0.36);
  }
  60% {
    border-radius: 62% 38% 56% 44%/50% 54% 46% 50%;
    -webkit-box-shadow: 0 0 0 8px rgba(244, 150, 45, 0.2);
            box-shadow: 0 0 0 8px rgba(244, 150, 45, 0.2);
  }
  80% {
    border-radius: 44% 56% 60% 40%/54% 44% 56% 46%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.28);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.28);
  }
  100% {
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
            box-shadow: 0 0 0 6px rgba(244, 150, 45, 0.3);
  }
}
/* =========================================================
   pagetop
   ========================================================= */
.pagetop .pagetop_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  float: right;
  color: #066191;
  font-size: clamp(13px, 1.2vw, 16px);
  padding: 16px 4px;
}
.pagetop .pagetop_link:hover {
  opacity: 1;
  color: #f4962d;
}
.pagetop .pagetop_link:hover .pagetop_icon {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: link_blob 2.5s ease-in-out infinite;
          animation: link_blob 2.5s ease-in-out infinite;
}
.pagetop .pagetop_icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -webkit-transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: border-radius 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease, -webkit-transform 0.35s ease, -webkit-box-shadow 0.4s ease;
}
.pagetop::after {
  content: "";
  display: block;
  clear: both;
}
.pagetop {
  margin: 200px 0 14px;
}
@media only screen and (max-width: 900px) {
  .pagetop {
    margin: 120px 0 10px;
  }
}

/* =========================================================
   contact_cta : 今こそ、やさしい選択を広げる一歩を。
   ========================================================= */
.contact_cta {
  position: relative;
  padding: 140px 0 44px;
}
.contact_cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#12a391), color-stop(25%, #f4962d), color-stop(50%, #cd3846), color-stop(75%, #066191));
  background: linear-gradient(to right, #12a391 0% 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%);
}
@media only screen and (max-width: 900px) {
  .contact_cta {
    padding: 90px 0 32px;
  }
}

.contact_cta_box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  background: #f0f5f9;
  border-radius: 18px;
  padding: 44px 0 44px 52px;
  padding-right: 27%;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .contact_cta_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
    padding: 32px 28px;
  }
}

.contact_cta_body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 900px) {
  .contact_cta_body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.contact_cta_title {
  color: #066191;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.4;
  margin-bottom: 12px;
}

.contact_cta_text {
  color: #066191;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
}

.contact_cta_actions {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media only screen and (max-width: 900px) {
  .contact_cta_actions {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 640px) {
  .contact_cta_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.btn_contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  min-width: 220px;
  padding: 12px 22px;
  background: #066191;
  border: 1.5px solid #066191;
  border-radius: 8px;
  color: #fff;
  font-size: clamp(14px, 1.4vw, 18px);
  -webkit-transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn_contact:link, .btn_contact:visited {
  color: #fff;
}
.btn_contact svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.btn_contact:hover {
  opacity: 1;
  background: rgba(77, 180, 214, 0.15);
  border-color: #066191;
  color: #066191;
}
@media only screen and (max-width: 900px) {
  .btn_contact {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.btn_contact_outline {
  background: #fff;
  color: #066191;
  border-color: #066191;
}
.btn_contact_outline:link, .btn_contact_outline:visited {
  color: #066191;
}
.btn_contact_outline:hover {
  background: rgba(77, 180, 214, 0.15);
  border-color: #066191;
  color: #066191;
}

.contact_cta_photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 26%;
  margin: 0;
}
.contact_cta_photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact_cta_photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f0f5f9), color-stop(1%, #f0f5f9), color-stop(20%, rgba(240, 245, 249, 0.8)), color-stop(45%, rgba(240, 245, 249, 0)));
  background: linear-gradient(90deg, #f0f5f9 0%, #f0f5f9 1%, rgba(240, 245, 249, 0.8) 20%, rgba(240, 245, 249, 0) 45%);
  z-index: 1;
}
@media only screen and (max-width: 900px) {
  .contact_cta_photo {
    position: static;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 320/170;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .contact_cta_photo::before {
    display: none;
  }
}

/* ---- スクロールリビール（共通） ---- */
html.anim-ready .reveal {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: none;
  transition: none;
}

html.anim-ready .reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  html.anim-ready .reveal {
    -webkit-transform: none;
            transform: none;
  }
  html.anim-ready .reveal.is-visible {
    -webkit-transition: opacity 0.65s ease;
    transition: opacity 0.65s ease;
  }
}
/* 覗き鶏マスコット（contact と footer の間） */
.peek {
  position: relative;
  height: clamp(120px, 24vw, 800px);
  background: #fff;
}

.peek_mascot {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(180px, 28vw, 434px);
  height: auto;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(100%);
          transform: translateX(-50%) translateY(100%);
  -webkit-transition: 1s;
  transition: 1s;
}

.anim-ready .peek_mascot.is-visible {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}

/* =========================================================
   footer
   ========================================================= */
.site_footer {
  position: relative;
  z-index: 1;
  background: #f9f9f9;
  padding: 72px 0 0;
}
@media only screen and (max-width: 900px) {
  .site_footer {
    padding-top: 52px;
  }
}

.site_footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  padding-bottom: 56px;
}
@media only screen and (max-width: 900px) {
  .site_footer_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 36px;
  }
}

.footer_brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30%;
  max-width: 280px;
}
@media only screen and (max-width: 900px) {
  .footer_brand {
    width: 100%;
    max-width: none;
  }
}

.footer_logo {
  display: block;
  width: 220px;
  margin-bottom: 16px;
}
.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_org {
  color: #066191;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.8;
}

.footer_nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  padding: 0 70px;
  border-left: 2px solid #066191;
}
@media only screen and (max-width: 900px) {
  .footer_nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    gap: 40px;
    padding: 16px 0;
    border: none;
    border-top: 2px solid #066191;
    border-bottom: 2px solid #066191;
  }
}
@media only screen and (max-width: 400px) {
  .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}

.footer_nav_list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 14px;
}
.footer_nav_list li + li {
  margin-top: 14px;
}
.footer_nav_list a {
  color: #066191;
  font-size: clamp(13px, 1.2vw, 16px);
}
.footer_nav_list a:hover {
  opacity: 1;
  color: #f4962d;
}
.footer_nav_list + .footer_nav_list {
  border-right: 2px solid #066191;
  padding-left: 32px;
}
@media only screen and (max-width: 900px) {
  .footer_nav_list + .footer_nav_list {
    border: none;
    padding-left: 0;
  }
}

.footer_side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media only screen and (max-width: 900px) {
  .footer_side {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer_sns li a {
  display: block;
  line-height: 0;
}
.footer_sns li a:hover {
  opacity: 0.8;
}
.footer_sns img {
  display: block;
  width: 40px;
  height: 40px;
}

.footer_cagefree {
  width: 160px;
}
.footer_cagefree img {
  display: block;
  width: 100%;
  height: auto;
}

.footer_bar {
  height: 2px;
  max-width: 248px;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, right top, from(#12a391), color-stop(25%, #f4962d), color-stop(50%, #cd3846), color-stop(75%, #066191));
  background: linear-gradient(90deg, #12a391 0% 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%);
}

.footer_copy {
  text-align: center;
  color: #066191;
  font-size: clamp(11px, 1.1vw, 14px);
  padding: 24px 0 28px;
}

/* =========================================================
   loading（初回オープニング・全ページ共通）
   ========================================================= */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #fff;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading_inner {
  text-align: center;
}

.loading_mascot {
  display: inline-block;
  width: 120px;
  height: 174px;
  -webkit-animation: loading_float 1.4s ease-in-out infinite;
          animation: loading_float 1.4s ease-in-out infinite;
}

@-webkit-keyframes loading_float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@keyframes loading_float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.loading_frame {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}

.loading_text {
  color: #066191;
  font-family: "Gen Interface JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-top: 18px;
  letter-spacing: 0.04em;
}

.lt_ch {
  display: inline-block;
  -webkit-transition: -webkit-transform 200ms ease-out;
  transition: -webkit-transform 200ms ease-out;
  transition: transform 200ms ease-out;
  transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}
.lt_ch.is-up {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.lt_d {
  display: inline-block;
  opacity: 0;
  -webkit-transition: opacity 120ms;
  transition: opacity 120ms;
}
.lt_d.is-show {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .loading_mascot {
    -webkit-animation: none;
            animation: none;
  }
}
/* =========================================================
   drawer（タブレット以下のメニュー・全ページ共通）
   ========================================================= */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 680px;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  -webkit-transition: visibility 0s linear 0.45s;
  transition: visibility 0s linear 0.45s;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: visibility 0s;
  transition: visibility 0s;
}
.drawer.is-open .drawer_overlay {
  opacity: 1;
}
.drawer.is-open .drawer_panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer_overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 97, 145, 0.35);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.drawer_panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  border-left: 6px solid transparent;
  -o-border-image: linear-gradient(180deg, #12a391 0% 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, from(#12a391), color-stop(25%, #f4962d), color-stop(50%, #cd3846), color-stop(75%, #066191)) 1;
     border-image: linear-gradient(180deg, #12a391 0% 25%, #f4962d 25% 50%, #cd3846 50% 75%, #066191 75% 100%) 1;
  padding: 80px 40px 40px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.drawer_close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 60px;
  height: 60px;
  color: #066191;
  background: none;
  border-radius: 50%;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.drawer_close svg {
  width: 100%;
  height: 100%;
}
.drawer_close:hover {
  background: rgba(77, 180, 214, 0.15);
  color: #066191;
}
@media only screen and (max-width: 900px) {
  .drawer_close {
    width: 44px;
    height: 44px;
  }
}

.drawer_logo {
  display: block;
  width: 220px;
  margin-bottom: 40px;
}
.drawer_logo img {
  display: block;
  width: 100%;
  height: auto;
}

.drawer_nav_list li + li {
  margin-top: 22px;
}
.drawer_nav_list a {
  color: #066191;
  font-weight: 700;
  font-size: 18px;
}
.drawer_nav_list a:hover {
  opacity: 1;
  color: #f4962d;
}

.drawer_line {
  display: block;
  width: 198px;
  height: 1px;
  background: #066191;
  margin: 36px 0;
}

.drawer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.drawer_sns li a {
  display: block;
  line-height: 0;
}
.drawer_sns li a:hover {
  opacity: 0.8;
}
.drawer_sns img {
  display: block;
  width: 36px;
  height: 36px;
}

.drawer_cagefree {
  width: 150px;
  margin-bottom: 24px;
}
.drawer_cagefree img {
  display: block;
  width: 100%;
  height: auto;
}

.drawer_mascot {
  display: block;
  width: 130px;
  height: auto;
  margin-left: auto;
}

.drawer_copy {
  color: #066191;
  font-size: 10px;
  margin-top: 24px;
}