@charset "UTF-8";
/* -----------------------------------------
  レスポンシブ
----------------------------------------- */
/* -----------------------------------------
  各変数
----------------------------------------- */
:root {
  --width-cmn: 1240px;
  --mt-xxs: 1.4rem;
  --mt-xs: 2rem;
  --mt-s: 4rem;
  --mt-m: 6rem;
  --mt-l: 8rem;
  --mt-xl: 10rem;
  --mt-xxl: 12rem;
  --color-base: #fff;
  --color-main: #173EA8;
  --color-ac: #173EA8;
  --color-text: #333;
}

/* -----------------------
  font + body 
----------------------- */
@font-face {
  font-family: "LineSeedJp";
  src: url("../../../asset/font/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "LineSeedJp";
  src: url("../../../asset/font/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
.-ff-defo {
  font-family: "Noto Sans JP", sans-serif;
}

.-ff-a {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

.-ff-b {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-800 {
  font-weight: 800;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.74;
  letter-spacing: 0.04em;
  color: var(--color-text);
  background-color: var(--color-base);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* -----------------------
  commnon
----------------------- */
.pc {
  display: none;
}

.sp {
  display: block;
}

.pc-t {
  display: none;
}

.sp-t {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc-t {
    display: block;
  }
  .sp-t {
    display: none;
  }
}
@media screen and (min-width: 561px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
.p-relative {
  position: relative;
}

.link {
  color: #007FFF;
  border-bottom: 1px solid #007FFF;
}

.t-center {
  text-align: center;
}

/* -----------------------
  flex
----------------------- */
.-flex-defo {
  display: flex;
}

/* -----------------------
  margin
----------------------- */
.mt-xxs {
  margin-top: var(--mt-xxs);
}

/* -----------------------
  width
----------------------- */
.-w-cmn {
  max-width: var(--width-cmn);
  margin: 0 auto;
  padding: 0 10px;
}

.-w-full {
  margin: 0 calc(50% - 50vw);
}

@media screen and (min-width: 1025px) {
  .-w-cmn {
    padding: 0;
  }
}
/* -----------------------
  見出し
----------------------- */
.head-2 {
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
}

.head-3 {
  font-size: 3.2rem;
  font-weight: 700;
}

/* -----------------------
  アニメーション
----------------------- */
.zoomin.is-animated {
  animation: zoomIn 4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: 1.6s;
  transform: translateY(150px);
}

.fade-in.is-animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.anime-down-up {
  position: relative;
  top: 100px;
  opacity: 0;
  transition: top 1s ease, opacity 1s ease;
}

.anime-down-up.is-animated {
  top: 0;
  opacity: 1;
}

/* -----------------------
  Header
----------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--color-base);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 60px;
}

/* ハンバーガーメニューアイコン */
.hamburger-menu {
  display: none; /* 初期状態では非表示 */
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  width: 30px;
  background: var(--color-base);
  position: relative; /* 親要素に相対位置を指定 */
}

.hamburger-menu .bar {
  height: 4px;
  width: 100%;
  background-color: var(--color-text);
  transition: all 0.3s ease;
  position: absolute; /* 各バーを絶対位置で配置 */
}

.hamburger-menu .bar:nth-child(1) {
  top: 0;
}

.hamburger-menu .bar:nth-child(2) {
  top: 50%; /* 中央に配置 */
  transform: translateY(-50%);
}

.hamburger-menu .bar:nth-child(3) {
  bottom: 0;
}

.header-menu {
  margin: 0 4rem 0 0;
}

.header-menu li {
  display: inline-block;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 1.6rem;
}

.header-menu a {
  padding: 0 0.6rem 0.6rem;
  position: relative;
}

.header-menu a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-main);
  position: absolute;
  left: 0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.header-menu a:hover::after {
  transform: scale(1, 1);
}

@media screen and (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
  .header-menu {
    display: flex;
    justify-content: flex-end;
  }
  .header-menu ul {
    flex-direction: row;
    text-align: right;
  }
  .header-menu ul li {
    margin-left: 20px;
  }
  .header-menu ul li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .logo {
    width: 60px;
  }
  .hamburger-menu {
    display: flex;
  }
  .header-menu {
    display: none;
    width: 100%;
    padding: 2rem 0;
    color: var(--color-base);
    background-color: var(--color-main);
    position: absolute;
    top: 61px; /* ヘッダーの下にメニューが来るように */
    left: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .header-menu.open {
    display: block;
  }
  .header-menu ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .header-menu ul li {
    display: block;
    margin: 20px 0;
  }
  /* ハンバーガーアイコンがクリックされたときの変化 */
  .hamburger-menu.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
}
/* -----------------------
  Section
----------------------- */
.section {
  margin: 0 auto;
  padding: 3.4rem 0;
}

.section--1 {
  padding: 0 0 3.4rem;
}

.-sec-1-left {
  width: 100%;
}

.-sec-1-right {
  flex: 1;
  margin-left: 30px;
}

@media screen and (min-width: 561px) {
  .-sec-1 {
    display: flex;
    justify-content: center;
  }
  .-sec-1-left {
    width: 25%;
    padding-top: 4rem;
    text-align: center;
  }
  .-sec-1-left.--2 {
    padding-top: 0;
  }
  .-sec-1-right {
    margin-left: inherit;
  }
}
/* -----------------------
  Footer
----------------------- */
.footer-inner {
  margin: 2px 0 0;
  padding: 1rem;
  color: var(--color-base);
  background: var(--color-main);
}

.copyright {
  text-align: center;
}

@media screen and (min-width: 561px) {
  .footer-inner {
    margin: 0.4% 0 0;
  }
}/*# sourceMappingURL=style.css.map */