@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: YakuHanJP, "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;
}

@media screen and (min-width: 1025px) {
  html.open {
    overflow: auto;
  }
}
body {
  color: #000000;
  font-family: YakuHanJP, "Noto Sans JP", "Yu Gothic", "游ゴシック", "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;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
body.second {
  padding-top: 140px;
}

@media screen and (min-width: 1025px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
  body.second {
    padding-top: 50px;
  }
}
/*-------------------------------
  header
-------------------------------*/
.p-header {
  z-index: 3;
  width: 100vw;
  height: 110px;
  background: rgba(255, 255, 255, 0.83) url("../images/top/img_header_bg@2x.webp") 0 0 no-repeat;
  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: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.p-header__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1920px;
  padding: 0 20px 0 40px;
  height: 100%;
  max-width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
.p-header__logo {
  display: block;
  width: 360px;
  height: auto;
  max-width: 20%;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-header__logo picture {
  display: block;
}
.p-header__logo img {
  max-width: 100%;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  height: auto;
}
.p-header__nav ul {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-header__nav li {
  margin-right: 25px;
}
.p-header__nav li a {
  font-family: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #233447;
  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;
  gap: 10px;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-header__nav li a:hover {
  opacity: 0.8;
}
.p-header__nav li:nth-of-type(5) {
  margin-right: 5px;
  max-width: 32vw;
}
.p-header__nav li:nth-of-type(5) a:before {
  content: "";
  width: 55px;
  height: 55px;
  background: url("../images/top/ico_privacy@2x.webp") 0 0 no-repeat;
  margin-top: 20px;
  background-size: contain;
}
.p-header__nav li:nth-of-type(6) {
  margin-right: 0;
  margin-top: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  max-width: 30vw;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-header__nav li:nth-of-type(6) a img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .p-header {
    height: 100px;
  }
  .p-header__inner {
    padding: 0 20px 0 20px;
    gap: 20px;
  }
  .p-header__logo {
    display: block;
    height: auto;
  }
  .p-header__nav li {
    margin-right: 15px;
  }
  .p-header__nav li a {
    font-size: 1.4rem;
  }
  .p-header__nav li:nth-of-type(5) {
    margin-right: 5px;
  }
  .p-header__nav li:nth-of-type(5) a:after {
    content: "";
    width: 45px;
    height: 45px;
  }
  .p-header__nav li:nth-of-type(6) {
    max-width: 25vw;
  }
}
@media screen and (max-width: 1024px) {
  .p-header {
    height: 50px;
  }
  .p-header__inner {
    padding: 0 20px 0 20px;
    gap: 20px;
  }
  .p-header__logo {
    display: block;
    max-width: 25%;
    margin-top: 0;
    height: auto;
  }
  .p-header__nav {
    display: none;
  }
}
/*-------------------------------
  subnav
-------------------------------*/
.p-subnav {
  background: -webkit-gradient(linear, left top, right top, from(#63c4f0), color-stop(20%, #0084cf), color-stop(80%, #0084cf), to(#63c4f0));
  background: linear-gradient(to right, #63c4f0 0%, #0084cf 20%, #0084cf 80%, #63c4f0 100%);
  padding: 0 20px;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 4;
}
.p-subnav__list {
  width: 1300px;
  padding: 0 3.5vw 0 0;
  height: 100%;
  max-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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
.p-subnav__list li {
  position: relative;
  height: 100%;
}
.p-subnav__list li:has(> ul):after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: -5px;
  top: calc(50% - 3px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-subnav__list li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.p-subnav__list li:hover:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-subnav__list li a {
  padding: 0 10px;
  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;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  height: 100%;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.p-subnav__list li > ul {
  background: #0084cf;
  position: absolute;
  visibility: hidden;
  width: 200px;
  opacity: 0;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-subnav__list li > ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.p-subnav__list li > ul li:nth-last-of-type(1) {
  border-bottom: none;
}
.p-subnav__list li > ul li a {
  display: block;
  padding: 8px 8px;
  font-size: 1.3rem;
  letter-spacing: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  color: #fff;
}
.p-subnav__list li > ul li a:hover {
  background: #1572b1;
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .p-subnav {
    padding: 0 20px;
    top: 95px;
    height: 50px;
    z-index: 4;
  }
  .p-subnav__list {
    padding: 0 3vw 0 0;
  }
  .p-subnav__list li {
    position: relative;
  }
  .p-subnav__list li a {
    padding: 0 8px;
    font-size: 1.6rem;
  }
  .p-subnav__list li > ul {
    width: 200px;
  }
  .p-subnav__list li > ul li a {
    padding: 7px 8px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-subnav {
    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: #233447;
  z-index: 1000;
  height: 100%;
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.nav_sp_box {
  height: calc(100dvh - 60px);
  width: 1300px;
  max-width: 100%;
  position: relative;
  padding: 40px 20px 0px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav_sp_list {
  height: 100%;
  overflow-y: auto;
}
.nav_sp_list_midashi {
  color: #233447;
  font-weight: 700;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.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, .nav_sp_list li > span {
  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;
  font-family: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 800;
  font-style: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px 10px 15px;
  position: relative;
  font-size: 1.4rem;
  border-bottom: 1px solid #dfebf7;
  -webkit-transition: all 0.02s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.02s cubic-bezier(0.51, 0.11, 0.4, 0.9);
}
.nav_sp_list li > span {
  display: block;
  position: relative;
}
.nav_sp_list li > span:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.nav_sp_list li > span.open:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.nav_sp_list li ul {
  display: none;
}
.nav_sp_list li ul li a {
  padding-left: 3em;
  font-size: 1.2rem;
}
.nav_sp_list li ul li a:before {
  content: "";
  width: 10px;
  height: 1px;
  margin-right: 10px;
  background: #dfebf7;
}
.nav_sp.open {
  top: 0;
}

/*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;
  }
}
/*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.015s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  -webkit-transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: all 0.15s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  background: #233447;
}
.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;
  }
}
.sp_menu__bottom {
  padding: 20px 0;
}
.sp_menu__bottom > div {
  background: #fff;
  padding: 15px 0;
  margin-top: 20px;
}
.sp_menu__bottom > div > a:nth-of-type(1) {
  margin-bottom: 20px;
  height: 50px;
}

/*-------------------------------
    a
-------------------------------*/
a {
  color: blue;
}

/*-------------------------------
    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;
}

/*-------------------------------
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);
}