@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button, input, select, textarea {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top; /* インライン要素による下部の隙間をなくす */
}

a {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  margin: 0;
  font-family: "M PLUS 1p", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  background: #f2f3f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #3783ca;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-family: "Lato", sans-serif;
  font-size: 4rem;
  color: #12315d;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

p {
  letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

/* --- スクロールアニメーションの共通スタイル定義 --- */
/* 初期状態（画面外/非表示） */
.js-scroll-anim {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* アニメーション速度 */
}

/* 画面内に入ったとき（最終状態） */
.js-scroll-anim.is-inview {
  opacity: 1;
  transform: translate(0, 0) scale(1) !important; /* 既存のtransformを上書きしてリセット */
}

/* 1. 左から流れるアニメーション（見出し、テキストに適用） */
.js-scroll-anim.slide-left {
  transform: translateX(-50px);
}

/* 2. 下からふわっと浮き上がるアニメーション（サブタイトル、画像、カードに適用） */
.js-scroll-anim.slide-up {
  transform: translateY(30px);
}

/* 3. フェードインのみ（細かいテキストに適用） */
.js-scroll-anim.fade-in {
  transform: none; /* transformによる動きなし */
  transition: opacity 1s ease-out;
}

/* 4. アニメーションに時間差をつける（複数の要素を連番で動かすため） */
/* data-delay属性を使って遅延時間をCSSカスタムプロパティで設定 */
.js-scroll-anim[data-delay] {
  transition-delay: var(--delay, 0s);
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header__container {
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 0 2.5rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(80px);
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 1199px) {
  .header__container {
    height: 4rem;
    padding: 0 1rem;
  }
}
.header__inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 180px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .header__logo {
    width: 140px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1199px) {
  .header__menu {
    margin-bottom: 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 1199px) {
  .header__menu-item {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1199px) {
  .header__menu-item:last-child {
    width: 100%;
  }
}
.header__sp-menu {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header__sp-menu {
    display: block;
    font-size: 14px;
  }
}
.header__sp-menu-item {
  margin-bottom: 2rem;
  text-align: center;
  color: #333333;
}
.header__menu-txt {
  color: #333333;
  transition: color 0.3s;
}
.header__menu-txt:hover {
  color: #ee7f23;
}
.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 2.5rem;
  color: #ffffff;
  background: #12315d;
  border-radius: 100vh;
  transition: background 0.3s;
}
@media screen and (max-width: 1199px) {
  .header__btn {
    width: 100%;
    height: 50px;
    background: #ee7f23;
  }
}
.header__btn:hover {
  background: #ee7f23;
}
.header__menu-toggle {
  display: none;
}
.header__menu-btn {
  display: none;
  position: relative;
  width: 28px;
  height: 22px;
  cursor: pointer;
  transition: transform 0.4s ease;
  z-index: 200;
}
@media screen and (max-width: 1199px) {
  .header__menu-btn {
    display: block;
  }
}
.header__menu-btn.active .header__menu-btn-line {
  background: transparent;
}
.header__menu-btn.active .header__menu-btn-line::before {
  transform: rotate(45deg);
  top: 0;
}
.header__menu-btn.active .header__menu-btn-line::after {
  transform: rotate(-45deg);
  top: 0;
}
.header__menu-btn-line, .header__menu-btn-line::before, .header__menu-btn-line::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1c304d;
  border-radius: 2px;
  content: "";
  transition: all 0.4s ease;
}
.header__menu-btn-line {
  top: 50%;
  transform: translateY(-50%);
}
.header__menu-btn-line::before {
  top: -0.5rem;
}
.header__menu-btn-line::after {
  top: 0.5rem;
}
@media screen and (max-width: 1199px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(50px);
    transition: right 0.4s ease;
    z-index: 150;
  }
}
@media screen and (max-width: 1199px) {
  .header__nav.active {
    right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 90;
  }
  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}
.footer__container {
  color: #ffffff;
}
.footer__link-container {
  display: flex;
  flex-direction: row-reverse;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 1199px) {
  .footer__link-container {
    display: block;
  }
}
.footer__link-item {
  display: block;
}
.footer__link-item:first-child {
  width: 57%;
}
@media screen and (max-width: 1199px) {
  .footer__link-item:first-child {
    width: 100%;
  }
}
.footer__link-item:last-child {
  width: 43%;
}
@media screen and (max-width: 1199px) {
  .footer__link-item:last-child {
    width: 100%;
  }
}
.footer__link-item:hover .footer__img-wrapper::before {
  transform: scale(1.1);
}
.footer__img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  padding: 0 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .footer__img-wrapper {
    height: 200px;
  }
}
.footer__img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease-in-out;
}
.footer__img-wrapper--entry::before {
  background-image: url("/assets/img/footer/entry-bg.jpg");
}
@media screen and (max-width: 1199px) {
  .footer__img-wrapper--entry::before {
    background-image: url("/assets/img/sp/footer/entry-bg.jpg");
  }
}
@media screen and (max-width: 1199px) {
  .footer__img-wrapper--contact {
    height: 140px;
  }
}
.footer__img-wrapper--contact::before {
  background-image: url("/assets/img/footer/contact-bg.jpg");
}
@media screen and (max-width: 1199px) {
  .footer__img-wrapper--contact::before {
    background-image: url("/assets/img/sp/footer/contact-bg.jpg");
  }
}
.footer__img-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  display: block;
  width: 27px;
  height: 10px;
  background: url("/assets/img/arrow-right.svg") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .footer__img-wrapper::after {
    width: 1.25rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 350px) {
  .footer__img-wrapper::after {
    right: 1rem;
  }
}
.footer__txt-content {
  position: absolute;
  z-index: 10;
  top: 2.5rem;
  left: 0;
  padding: 0 100px;
  color: #ffffff;
}
@media screen and (max-width: 1199px) {
  .footer__txt-content {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 2.25rem;
  }
}
@media screen and (max-width: 350px) {
  .footer__txt-content {
    padding: 0 1rem;
  }
}
.footer__sub-ttl {
  margin-bottom: 2.5rem;
  font-size: 18px;
  line-height: 1.1;
}
@media screen and (max-width: 1199px) {
  .footer__sub-ttl {
    font-size: 14px;
    margin-bottom: 1.25rem;
  }
}
.footer__ttl {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
@media screen and (max-width: 1199px) {
  .footer__ttl {
    font-size: 2rem;
  }
}
.footer__small-txt {
  margin-left: 2rem;
  font-family: "M PLUS 1p", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .footer__small-txt {
    margin-left: 1em;
    font-size: 0.75rem;
  }
}
.footer__footer-content {
  padding: 14px 2.5rem 10px;
  background: #1c304d;
}
@media screen and (max-width: 1199px) {
  .footer__footer-content {
    padding: 2rem 1rem;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .footer__nav {
    display: block;
  }
}
.footer__logo {
  width: 180px;
  line-height: 1;
}
@media screen and (max-width: 1199px) {
  .footer__logo {
    width: 140px;
    margin-bottom: 2.5rem;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1199px) {
  .footer__menu {
    display: block;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .footer__menu-item {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 1199px) {
  .footer__menu-item:last-child {
    margin-bottom: 0;
  }
}
.footer__menu-txt {
  font-size: 14px;
  color: #ffffff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1199px) {
  .footer__menu-txt {
    margin-bottom: 1em;
  }
}
.footer__menu-txt:hover {
  opacity: 0.8;
}
.footer__copy {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
}

/*# sourceMappingURL=style.css.map */
