@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: "Noto Sans JP", "Yu Gothic", "游ゴシック", "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;
}
html.open {
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
  html {
    overflow-x: hidden;
  }
}
@media (min-width: 1025px) {
  html.open {
    overflow: auto;
  }
}
body {
  color: #000;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background: #fff;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  overflow: hidden;
}

@media (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}
/*-------------------------------
  header
-------------------------------*/
.p-header {
  position: fixed;
  z-index: 3;
  width: 100%;
  top: 20px;
  height: 90px;
}
.p-header__inner {
  width: 100%;
  overflow: hidden;
  max-height: 100vh;
  margin: auto;
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1920px;
  max-width: calc(100% - 80px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-header__inner.is-active {
  -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__logo {
  display: block;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__link {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__link a {
  display: block;
  width: 50px;
  height: 50px;
}
.p-header__link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .p-header {
    height: 60px;
    top: 10px;
  }
  .p-header__inner {
    max-height: 100%;
    max-width: calc(100% - 20px);
  }
  .p-header__logo {
    width: 35%;
  }
  .p-header__logo picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .p-header__logo picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .p-header__link {
    gap: 10px;
  }
  .p-header__link a {
    width: 30px;
    height: 30px;
  }
}
/*-------------------------------
    fadein
-------------------------------*/
.fade_in,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  top: 20px;
  -webkit-transition: all 0.6s ease-out 0.1s;
  transition: all 0.6s ease-out 0.1s;
}
.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.8s ease-out 0.1s;
  transition: all 0.8s ease-out 0.1s;
}
.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;
}

/*-------------------------------
    a
-------------------------------*/
a {
  color: #000;
}

/*-------------------------------
clip_once
-------------------------------*/
.clip_once {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: clip-path 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.clip_once.clip_active {
  clip-path: inset(0 0% 0 0);
}

.clip_once2 {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: clip-path 0.2s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.clip_once2.clip_active {
  clip-path: inset(0 0% 0 0);
}