@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: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "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: 1025px) {
  html.open {
    overflow: auto;
  }
}
@media (max-width: 1024px) {
  html {
    overflow-x: hidden;
    max-width: 100dvw;
  }
}
body {
  color: #072b6e;
  font-family: YakuHanJP, "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.8rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  background: #fff;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
    max-width: 100dvw;
  }
}
.fade_in,
.fade_in_once {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  transition: transform 0.15s cubic-bezier(0.1, 0.55, 0.2, 1), opacity 0.7s ease-out 0.1s, -webkit-transform 2s cubic-bezier(0.1, 0.55, 0.2, 1);
}
.fade_in.fade_in_up,
.fade_in_once.fade_in_up {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  top: 0;
}

.fade_in2,
.fade_in_once2 {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.1, 0.55, 0.2, 1), opacity 1.5s ease-out 0.1s, -webkit-transform 2s cubic-bezier(0.1, 0.55, 0.2, 1);
}
.fade_in2.fade_in_up,
.fade_in_once2.fade_in_up {
  opacity: 1;
  visibility: visible;
}

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

/*-------------------------------
    a
-------------------------------*/
a {
  color: #072b6e;
}

/*-------------------------------
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.02s;
  transition: clip-path 0.45s 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.55s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
  transition: clip-path 0.55s cubic-bezier(0.51, 0.11, 0.4, 0.9) 0.02s;
}
.clip_once2.clip_active {
  clip-path: inset(0 0% 0 0);
}

/*-------------------------------
  c-header
-------------------------------*/
.c-header {
  border-top: 5px solid #def7fc;
  background: #fff;
  padding: 30px 40px;
  line-height: 1;
}
.c-header__fixed {
  width: 1240px;
  max-width: 100%;
  position: fixed;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.4s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  transition: all 0.3s cubic-bezier(0.51, 0.11, 0.4, 0.9);
  background: #fff;
  -webkit-box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 10px 20px;
  z-index: 4;
}
.c-header__fixed.active {
  visibility: visible;
  opacity: 1;
}
.c-header--inner {
  width: 1920px;
  max-width: 100%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.c-header__logo {
  width: 310px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-header__logo img {
  width: 250px;
  max-width: 100%;
  height: auto;
}
.c-header__description {
  font-size: 1.1rem;
  line-height: 1.2;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.c-header--menu {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.c-header--menu ul {
  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;
}
.c-header--menu ul li:last-of-type {
  margin-left: auto;
}
.c-header--menu ul li:last-of-type a {
  color: #fff;
  background: #072b6e;
  border-radius: 20px;
  width: 180px;
  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;
  height: 35px;
}
.c-header--menu ul li a {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  font-size: 1.5rem;
  display: block;
}
.c-header--menu ul li:not(:last-of-type) a {
  padding: 5px 0;
}
.c-header--menu ul li:not(:last-of-type) a span {
  padding: 0 30px;
  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;
  line-height: 1;
  border-left: 1px solid #072b6e;
}

@media (max-width: 1024px) {
  .c-header {
    border-top: 4px solid #def7fc;
    padding: 10px 15px;
  }
  .c-header--inner {
    width: 1920px;
    max-width: 100%;
    margin: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
  }
  .c-header__logo {
    padding-top: 5px;
    width: 310px;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .c-header__logo img {
    width: 250px;
    max-width: 100%;
    height: auto;
  }
  .c-header--menu {
    display: none;
  }
}
/*-------------------------------
  c-menu--sp
-------------------------------*/
.c-menu--sp {
  position: fixed;
  left: 100vw;
  top: 66px;
  width: 100dvw;
  height: 100dvh;
  z-index: 4;
  -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;
}
.c-menu--sp__inner {
  position: relative;
  background: rgba(7, 43, 110, 0.75);
  padding-left: 28.2051282051%;
  height: 100%;
}
.c-menu--sp__inner > nav {
  background: #fff;
  height: 100%;
}
.c-menu--sp ul li a {
  color: #072b6e;
  font-size: 1.5rem;
  font-size: 1.4rem;
}
.c-menu--sp.open {
  left: 0;
}
.c-menu--sp__list1 {
  display: block;
  margin-bottom: 20px;
}
.c-menu--sp__list1 li {
  width: 100%;
  border-bottom: 2px solid #e0e6f1;
}
.c-menu--sp__list1 li a {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 21px 20px;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../images/ico_menu_line.svg") 0% 50% no-repeat;
  background-size: 10px 3px;
}
.c-menu--sp__list2 {
  display: block;
  margin-bottom: 35px;
}
.c-menu--sp__list2 li {
  width: 100%;
}
.c-menu--sp__list2 li a {
  display: block;
  padding: 5px 20px;
}
.c-menu--sp__sns {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-left: 20px;
}
.c-menu--sp__toggle {
  position: fixed;
  top: 1%;
  right: 0;
  background: #072b6e;
  width: 58px;
  height: 58px;
  color: #fff;
  z-index: 5;
  border-radius: 5px 0 0 5px;
  display: none;
}
.c-menu--sp__toggle__inner {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.c-menu--sp__toggle__inner > span {
  background: #fff;
  content: "";
  height: 2px;
  -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;
  width: 16px;
  position: absolute;
  top: 50%;
  left: calc(50% - 8px);
}
.c-menu--sp__toggle__inner > span:nth-of-type(1) {
  top: 36%;
}
.c-menu--sp__toggle__inner > span:nth-of-type(2) {
  top: 43%;
}
.c-menu--sp__toggle__inner > span:nth-of-type(3) {
  top: 51%;
}
.c-menu--sp__toggle__inner.open > span:nth-of-type(1) {
  top: 40%;
  width: 20px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.c-menu--sp__toggle__inner.open > span:nth-of-type(2) {
  top: 40%;
  width: 20px;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
}
.c-menu--sp__toggle__inner.open > span:nth-of-type(3) {
  width: 20px;
  top: 40%;
  -webkit-transform: rotateZ(-45deg);
          transform: rotateZ(-45deg);
}
.c-menu--sp__toggle__text {
  position: absolute;
  top: 65%;
  left: 0;
  height: 1em;
  padding-left: 0.1em;
  width: 100%;
  content: "";
  display: block;
  text-align: center;
}
.c-menu--sp__toggle__text > span {
  display: block;
  text-align: center;
  position: relative;
  height: 1em;
  margin: auto;
  content: "";
  width: 100%;
  display: block;
  overflow: hidden;
}
.c-menu--sp__toggle__text > span > span {
  position: absolute;
  top: 0;
  width: 100%;
  height: 1em;
  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;
  text-align: center;
  left: 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;
  font-size: 1.2rem;
}
.c-menu--sp__toggle__text > span > span:nth-of-type(1) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c-menu--sp__toggle__text > span > span:nth-of-type(2) {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.c-menu--sp__toggle__text.open > span > span:nth-of-type(1) {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.c-menu--sp__toggle__text.open > span > span:nth-of-type(2) {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 767px) {
  .c-menu--sp__toggle {
    display: block;
  }
}
.p-hero {
  padding: 220px 0 100px 0;
  position: relative;
}
.p-hero:before {
  width: 337px;
  height: 456px;
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  z-index: 0;
  background: url("../images/img_topmain_l.svg") 0 0 no-repeat;
  background-size: cover;
}
.p-hero:after {
  width: 977px;
  max-width: 60%;
  height: 747px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  background: url("../images/img_topmain_r.svg") 100% 50% no-repeat;
  background-size: contain;
}
.p-hero--inner {
  position: relative;
  z-index: 2;
  width: 1200px;
  max-width: 100%;
  margin-inline: auto;
  padding: 0 60px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.p-hero--inner h1 {
  font-weight: 500;
  font-size: clamp(2.8rem, 0.514rem + 3.57vw, 4.8rem);
  line-height: 1;
  margin-bottom: 35px;
}
.p-hero--inner p {
  font-size: 2.4rem;
  line-height: 1.5;
  padding-bottom: 40px;
}
.p-hero--inner p:after {
  display: block;
  content: "";
  width: 396px;
  height: 88px;
  border-radius: 10px;
  background: url("../images/img_topmain_mokuhyo.svg") 0 0 no-repeat;
  background-size: contain;
  margin-top: -20px;
  margin-left: 18%;
}
.p-hero--inner a {
  border: 5px solid #072b6e;
  padding: 20px 20px 20px 0;
  width: 500px;
  height: 145px;
  display: block;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 7px 7px 12px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 7px 7px 12px 1px rgba(0, 0, 0, 0.25);
}
.p-hero--inner a figure {
  width: 150px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-hero--inner a > div {
  text-align: center;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
.p-hero--inner a > div span {
  display: block;
  font-size: 1.6rem;
}
.p-hero--inner a > div span:nth-of-type(2) {
  font-size: 2.4rem;
  font-weight: 600;
  padding: 8px 15px;
  margin: 2px 0;
  line-height: 1;
  border-top: 2px solid #072b6e;
  border-bottom: 2px solid #072b6e;
}

@media (max-width: 1024px) {
  .p-hero {
    padding: 50px 0 25vh 0;
  }
  .p-hero:before {
    width: 112.3333333333px;
    height: 152px;
    position: absolute;
    top: 85%;
    display: none;
  }
  .p-hero:after {
    max-width: 70%;
    background: url("../images/img_topmain_r@2x.png") 100% 50% no-repeat;
    background-size: contain;
    background-position: 100% 100%;
    height: 249px;
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .p-hero--inner {
    padding: 0 20px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  .p-hero--inner h1 {
    font-size: clamp(2.4rem, 2.036rem + 1.72vw, 3.2rem);
    margin-bottom: 35px;
  }
  .p-hero--inner p {
    font-size: 2rem;
    line-height: 1.5;
    padding-bottom: 30px;
  }
  .p-hero--inner p:after {
    display: block;
    content: "";
    width: 198px;
    height: 44px;
    margin-top: -10px;
    margin-left: 54%;
  }
  .p-hero--inner a {
    border: 4px solid #072b6e;
    padding: 15px 15px 15px 0;
    max-width: 100%;
    height: 110px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  }
  .p-hero--inner a figure {
    width: 80px;
    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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-hero--inner a > div span {
    display: block;
    font-size: 1.4rem;
  }
  .p-hero--inner a > div span:nth-of-type(2) {
    font-size: 2rem;
    padding: 7px 15px;
  }
}