@charset "UTF-8";
/*-------------------------------
	全体
-------------------------------*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box; /*Safari*/ /*Firefox*/
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

/*
* 1. デバイスの向きを変えた後にユーザーの文字サイズ調整を防ぐ
* 2. remの基準となるフォントサイズ
*/
html {
  font-size: 62.5%; /*2*/
  -ms-text-size-adjust: 100%; /*1*/
  -webkit-text-size-adjust: 100%; /*1*/
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*リストスタイルを消去*/
ul,
ol {
  list-style: none;
}

/*デフォルトでcollapse*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
  * IE9+用に、displayプロパティを定義。
  * 1. Edge, IE, Firefox用、details要素とsummary要素に「display: block;」を定義。
  * 2. IE, Firefox用、main要素に「display: block;」を定義。
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/*-------------------------------
	フォーム類のスタイルをリセットする
-------------------------------*/
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none; /*Chromeのフォーカス時アウトラインを削除*/
  border: none;
  border-radius: 0;
  background: none;
  font-family: "Yu Gothic", "游ゴシック", Meiryo, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
  resize: none;
}

select { /*Firefoxのセレクト矢印を削除*/
  text-indent: 0.01px;
  text-overflow: "";
}

select::-ms-expand { /*IEのセレクト装飾を非表示*/
  display: none;
}

textarea {
  overflow: auto;
}

button,
[type=button],
[type=reset],
[type=submit] {
  border: 0;
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*-------------------------------
	テキスト・イメージ類スタイル
-------------------------------*/
a {
  background-color: transparent; /*IE10のリンクバックグラウンドカラーを透明にする*/
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

img {
  border-style: none; /*リンク内画像のborderを消去*/
  vertical-align: bottom; /*画像下のスキマを消去*/
}

svg:not(:root) {
  overflow: hidden;
}

/*-------------------------------
    全体
-------------------------------*/
html {
  font-size: 62.5%;
  /*2*/
  -ms-text-size-adjust: 100%;
  /*1*/
  -webkit-text-size-adjust: 100%;
  /*1*/
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (min-width: 1025px) {
  html.open {
    overflow: auto;
  }
}
body {
  color: #000000;
  font-family: "Yu Gothic", "游ゴシック", Meiryo, "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background: #fff;
  overflow-x: hidden;
  font-size: 1.4rem;
  padding-top: 105px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #0e1a40;
}

@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  body {
    padding-top: 50px;
    font-size: 1.4rem;
  }
}
/*-------------------------------
  header
-------------------------------*/
.p-header {
  z-index: 3;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  height: 105px;
  padding-top: 40px;
  padding-bottom: 20px;
  background: #fff;
}
.p-header__inner {
  width: 1400px;
  padding: 0 0;
  height: 100%;
  max-width: 100%;
  margin: auto;
}
.p-header__logo {
  line-height: 1;
  margin-bottom: 10px;
}
.p-header__nav {
  height: 100%;
}
.p-header__nav > ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  line-height: 1;
}
.p-header__nav > ul > li {
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.p-header__nav > ul > li > a {
  font-size: 1.2rem;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-header__nav > ul > li > a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1440px) {
  .p-header__inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 50px;
    padding: 10px 0 0 0;
  }
  .p-header__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-header__logo {
    width: 150px;
  }
  .p-header__nav {
    display: none;
  }
}
/*-------------------------------
   menu
 -------------------------------*/
/*nav sp*/
@-webkit-keyframes subMenu {
  0% {
    opacity: 1;
    z-index: 4;
    visibility: visible;
    top: 70px;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
}
@keyframes subMenu {
  0% {
    opacity: 1;
    z-index: 4;
    visibility: visible;
    top: 70px;
  }
  100% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
}
@-webkit-keyframes subMenu_on {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
  100% {
    opacity: 1;
    z-index: 5;
    visibility: visible;
    top: 70px;
  }
}
@keyframes subMenu_on {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
    top: 45px;
  }
  100% {
    opacity: 1;
    z-index: 5;
    visibility: visible;
    top: 70px;
  }
}
.nav_sp {
  display: block;
  visibility: visible;
  position: fixed;
  width: 100%;
  top: -150vh;
  left: 0;
  padding-top: 0;
  background: #141414;
  z-index: 1000;
  height: 100%;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.nav_sp_logo {
  padding-top: 18px;
  padding-left: 20px;
}
.nav_sp_list {
  height: 100%;
  overflow-y: auto;
}
.nav_sp_list_midashi {
  color: #0e1a40;
  font-weight: 700;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.nav_sp_list_btn {
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50vw;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 10px;
  color: #fff;
  text-align: center;
  line-height: 36px;
  margin-bottom: 65px;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  background: #0e1a40 url("../images/top/ico_window_menu@2x.png") 92% 50% no-repeat;
  background-size: 15px;
}
.nav_sp_list_btn:hover {
  opacity: 0.8;
}
.nav_sp_list_ul {
  width: 100%;
  margin-bottom: 45px;
  border-top: 1px solid #fff;
}
.nav_sp_list_ul:nth-of-type(3) {
  margin-bottom: 200px;
}
.nav_sp_list_ul:nth-of-type(3) li a {
  font-size: 1.35rem;
}
.nav_sp_list_ul:nth-of-type(3) li a:after {
  background: url("../images/top/ico_window_menu@2x.png") 0 0 no-repeat;
  width: 15px;
  height: 15px;
  background-size: contain;
}
.nav_sp_list li.sp_menu_item {
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.nav_sp_list li > a {
  line-height: 1;
  color: #fff;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  padding: 13px 15px 13px 20px;
  position: relative;
  font-size: 1.7rem;
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
}
.nav_sp_list li > a:after {
  background: url("../images/top/ico_point_menu@2x.png") 0 0 no-repeat;
  width: 15px;
  height: 15px;
  content: "";
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
}
.nav_sp_box {
  height: calc(100dvh - 60px);
  width: 1400px;
  max-width: 100%;
  position: relative;
  padding: 80px 20px 0px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav_sp.open {
  top: 0;
}
.nav_sp.open .anime1 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.nav_sp.open .anime2 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.nav_sp.open .anime3 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.07s;
          animation-delay: 0.07s;
}
.nav_sp.open .anime4 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.09s;
          animation-delay: 0.09s;
}
.nav_sp.open .anime5 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.11s;
          animation-delay: 0.11s;
}
.nav_sp.open .anime6 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.13s;
          animation-delay: 0.13s;
}
.nav_sp.open .anime7 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.nav_sp.open .anime8 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.17s;
          animation-delay: 0.17s;
}
.nav_sp.open .anime9 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.19s;
          animation-delay: 0.19s;
}
.nav_sp.open .anime10 {
  -webkit-animation-name: spMenu_anime1;
          animation-name: spMenu_anime1;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.21s;
          animation-delay: 0.21s;
}

/*animation*/
@-webkit-keyframes spMenu {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    z-index: 11;
    visibility: visible;
  }
}
@keyframes spMenu {
  0% {
    opacity: 0;
    z-index: -2;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    z-index: 11;
    visibility: visible;
  }
}
@-webkit-keyframes spMenu_anime1 {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes spMenu_anime1 {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/*nav_toggle*/
#nav_toggle {
  z-index: 1001;
}
#nav_toggle.open {
  z-index: 1001;
}

.nav_toggle {
  width: 60px;
  height: 14px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  top: 38px;
  right: 30px;
  z-index: 1000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.nav_toggle div {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.nav_toggle span {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  background: #0e1a40;
}
.nav_toggle span.menu_line_1 {
  top: 0;
}
.nav_toggle span.menu_line_2 {
  top: 7px;
}
.nav_toggle span.menu_line_3 {
  top: 14px;
}
.nav_toggle span.menu_txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  top: 30px;
  letter-spacing: 0;
  background: 0;
  text-align: justify;
}

/*開閉ボタンopen時*/
.nav_toggle.open span.menu_line_1 {
  -webkit-transform: rotate(160deg);
          transform: rotate(160deg);
  top: 14px;
  background: #fff;
}
.nav_toggle.open span.menu_line_2 {
  -webkit-transform: rotate(-160deg);
          transform: rotate(-160deg);
  top: 14px;
  opacity: 1;
  background: #fff;
}
.nav_toggle.open span.menu_line_3 {
  -webkit-transform: rotate(-160deg);
          transform: rotate(-160deg);
  background: #fff;
  top: 14px;
}

@media screen and (max-width: 1024px) {
  .nav_toggle {
    width: 35px;
    top: 20px;
    opacity: 1;
    pointer-events: all;
    right: 10px;
    z-index: 5;
    z-index: 1000;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  /*開閉ボタンopen時*/
  .nav_toggle.open span.menu_line_1 {
    top: 12px;
  }
  .nav_toggle.open span.menu_line_2 {
    top: 12px;
  }
  .nav_toggle.open span.menu_line_3 {
    top: 12px;
  }
}
/*-------------------------------
    a
-------------------------------*/
a {
  color: #000;
}

/*-------------------------------
    fadein
-------------------------------*/
.fade_in,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  top: 20px;
  -webkit-transition: all 0.65s ease-in-out 0.05s;
  transition: all 0.65s ease-in-out 0.05s;
}
.fade_in.fade_in_up,
.fade_in_once.fade_in_up {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.fade_in2,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.65s ease-in-out 0.05s;
  transition: all 0.65s ease-in-out 0.05s;
}
.fade_in2.fade_in_up,
.fade_in_once.fade_in_up {
  opacity: 1;
  visibility: visible;
}

.fade_bottom {
  position: relative;
  opacity: 0;
  visibility: hidden;
  bottom: -20px;
  -webkit-transition: all 0.8s ease-in-out 0.1s;
  transition: all 0.8s ease-in-out 0.1s;
}
.fade_bottom.fade_bottom_up {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

.popup {
  opacity: 0;
}
.popup.is-animated {
  -webkit-animation: popup 0.5s cubic-bezier(0.22, 0.9, 0.54, 1.01) forwards;
          animation: popup 0.5s cubic-bezier(0.22, 0.9, 0.54, 1.01) forwards;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(40px) scale(0.8);
            transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(0) scale(1.02);
            transform: translateY(0) scale(1.02);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/*-------------------------------
clip_once
-------------------------------*/
.clip_once {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.45s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.25s;
  transition: clip-path 0.45s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.25s;
}
.clip_once.clip_active {
  clip-path: inset(0 0% 0 0);
}