@charset "UTF-8";
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

* {
  box-sizing: border-box;
  line-break: strict;
}

html {
  overflow: auto;
  height: 100%;
}

@media screen and (min-width: 769px) {
  #wrap {
    min-width: 1086px;
    margin: 0 auto;
  }
}
/* テキスト
==============================　*/
body {
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}

* {
  line-height: 1.73;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-out;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/* 共通
==============================　*/
.sec_inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.blue-link {
  color: #026fb4;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  padding-right: 20px;
  background: url(/images/common/arrow-blue.svg) no-repeat bottom 3px right 5px;
  transition: 0.3s;
}

a.blue-link:hover {
  color: #009BDB;
  background-position: bottom 3px right 0px;
}

a.link-target:hover .blue-link {
  color: #009BDB;
  background-position: bottom 3px right 0px;
}

.fadein {
  transform: matrix(1, 0, 0, 1, -15, 0);
}
.fadein span {
  opacity: 0;
}

.circle-link a {
  display: block;
  background-color: #fff;
  color: #026fb4;
  max-width: 146px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-size: 17px;
  text-align: center;
  padding: 9px 0;
  border-radius: 50px;
  font-weight: 200;
  transition: background 0.3s ease-out, color 0.3s ease-out;
}
.circle-link a span {
  padding-right: 15px;
  position: relative;
}
.circle-link a span::before, .circle-link a span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 13px;
  position: absolute;
  right: 0;
  top: calc(50% - 5px);
  transition: 0.3s ease-out;
}
.circle-link a span::before {
  background: url(/images/common/arrow-white.svg) no-repeat center right/7px 13px;
  opacity: 0;
}
.circle-link a span::after {
  background: url(/images/common/arrow-blue.svg) no-repeat center right/7px 13px;
}
.circle-link a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -1px;
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  border-radius: 50px;
}
.circle-link a:hover {
  color: #fff;
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
}
.circle-link a:hover span::before {
  opacity: 1;
}
.circle-link a:hover span::after {
  opacity: 0;
}

#header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
#header:after, #header::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: 0.3s ease-out;
}
#header::before {
  background: #fff;
}
#header::after {
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
  opacity: 0;
}

.scroll #header::before {
  opacity: 0;
}
.scroll #header::after {
  opacity: 1;
}

.header_inner {
  padding: 0px 20px 0px;
  display: flex;
  justify-content: space-between;
  height: 105px;
}

.scroll .header_inner {
  height: 84px;
}

.header_logo {
  transition: 0.3s ease-out;
}
.header_logo a {
  display: block;
  max-width: 226px;
  margin-top: 24px;
}

.scroll .header_logo {
  opacity: 0;
}

.header_nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_navItem > a {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  padding: 0 20px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease-out, height 0.3s ease-out;
}
.header_navItem > a:hover {
  background: #F5F5F5;
  color: #026fb4;
}
.header_navItem > a.active {
  background: #F5F5F5;
  color: #026fb4;
}
.header_navItem > a.current {
  color: #026fb4;
}
.header_navItem > a span {
  font-size: 10px;
  display: block;
  text-align: center;
  line-height: 1;
}

.scroll .header_navItem > a {
  color: #fff;
  height: 84px;
}
.scroll .header_navItem > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: 0.3s ease-out;
}
.scroll .header_navItem > a:hover {
  color: #fff;
  background: none;
}
.scroll .header_navItem > a:hover::before {
  opacity: 1;
}
.scroll .header_navItem > a.active {
  color: #fff;
  background: none;
}
.scroll .header_navItem > a.active::before {
  opacity: 1;
}

.has-sub_menu {
  position: relative;
}

.submenu {
  position: absolute;
  left: 0px;
  z-index: 100;
  color: #fff;
  font-size: 15px;
}
.submenu li + li a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.submenu a {
  display: block;
  padding: 17px 20px;
  width: 210px;
  background: rgba(0, 0, 0, 0.8);
}
.submenu a:hover {
  background: rgba(45, 45, 45, 0.8);
}

.header_contactBtn a {
  max-width: 100%;
  width: 139px;
  font-style: normal;
  margin-left: 23px;
}

.scroll .header_contactBtn a {
  color: #026fb4;
  background-color: #fff;
  border: 1px solid #fff;
}
.scroll .header_contactBtn a::before {
  display: none;
}
.scroll .header_contactBtn a:hover {
  background: #009BDB;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header_inner {
    padding: 0 10px;
    height: 64px;
  }
  .scroll .header_inner {
    height: 64px;
  }
  main {
    margin-top: 60px;
  }
  .header_logo {
    max-width: 136px;
  }
  .header_logo a {
    margin-top: 15px;
  }
  .header_btn {
    display: none;
  }
  .header_nav {
    display: none;
  }
}
/* ===================================
バーガーメニュー
=================================== */
.u-menuBtn,
.hamburger_contents {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-menuBtn,
.hamburger_contents {
    display: block;
  }
  .u-menuBtn {
    position: fixed;
    top: 0;
    right: 0px;
    padding: 10px;
    z-index: 100;
  }
  /* ===================================
  ハンバーガーメニュー
  =================================== */
  /* 中カテゴリ
  ==============================　*/
  /* 小カテゴリ、コメント */
  /* ハンバーガーボタン */
  .c-button {
    position: relative;
    display: inline-block;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }
  .p-hamburger {
    height: 42px;
    width: 42px;
    margin: auto;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    position: relative;
    border-radius: 50%;
  }
  .p-hamburger::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
    z-index: -1;
    top: -1px;
    left: -1px;
    border-radius: 50%;
  }
  .p-hamburger__line {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 21px;
    height: 1px;
    background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
    transition: inherit;
  }
  .p-hamburger__line::before,
.p-hamburger__line::after {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
    content: "";
    transition: inherit;
  }
  .p-hamburger__line::before {
    top: -6px;
  }
  .p-hamburger__line::after {
    top: 6px;
  }
  .is-drawerActive .p-hamburger__line {
    background: transparent;
  }
  .is-drawerActive .p-hamburger__line::before,
.is-drawerActive .p-hamburger__line::after {
    top: 0;
  }
  .is-drawerActive .p-hamburger__line::before {
    transform: rotate(30deg);
  }
  .is-drawerActive .p-hamburger__line::after {
    transform: rotate(-30deg);
  }
  .u-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    margin: -1px;
  }
  /* ハンバーガーメニュー */
  .hamburger_contents {
    position: fixed;
    z-index: 100;
    right: 0;
    top: 0;
    width: 100%;
    /*  出てくるスライドメニューの幅  */
    height: 100%;
    padding-bottom: 45px;
    background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.5s, opacity 0.5s;
    overflow-y: auto;
    color: #fff;
  }
  /* メニューが開いたら */
  .is-drawerActive .hamburger_contents {
    opacity: 1;
    visibility: visible;
  }
  .drawer-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 5;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 10;
  }
  .is-drawerActive .drawer-bg {
    opacity: 0.3;
    visibility: visible;
  }
  .js-drawer-close {
    cursor: pointer;
  }
  .hamburger_contents {
    font-family: "Noto Serif JP", serif;
  }
  .hamburger_contents .btnWrap__hamburger {
    margin: 25px 35px 0;
  }
  .hamburger_contents .btnWrap__hamburger a {
    padding: 15px;
  }
  .hamburger_contents .btnWrap__hamburger a::before {
    right: 10px;
  }
  .hamburger_contents .btnWrap__hamburger a::after {
    display: none;
  }
  .hamburger_contents .btnWrap__hamburger a:hover {
    color: #fff;
  }
  .hamburger_contents > ul {
    font-size: 20px;
    margin: 10px 40px 0;
  }
  .hamburger_contents > ul > li > a {
    border-bottom: 1px solid #FFF;
  }
  .hamburger_contents > ul .has-sub-menu:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .hamburger_contents li a {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    padding-right: 30px;
    position: relative;
  }
  .hamburger_contents li span {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding-right: 30px;
  }
  .hamburger_contents .sub-menu {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    padding-bottom: 20px;
  }
  .hamburger_contents .sub-menu li a {
    padding-left: 13px;
    padding-top: 11px;
    padding-bottom: 12px;
  }
  .ham_btn {
    width: calc(100% - 80px);
    margin: 30px auto 0;
  }
  .ham_btn a {
    display: block;
    background-color: #fff;
    text-align: center;
    font-size: 20px;
    border: 1px solid #fff;
    padding-top: 11px;
    padding-bottom: 14px;
    max-width: 100%;
    font-style: normal;
  }
  .ham_btn a:hover {
    color: #fff;
  }
}
.js_ham_ttl {
  cursor: pointer;
  position: relative;
}
.js_ham_ttl::before, .js_ham_ttl::after {
  content: "";
  display: block;
  height: 1px;
  width: 15px;
  background-color: #fff;
  position: absolute;
  right: 0px;
  top: 50%;
  pointer-events: none;
}
.js_ham_ttl::after {
  transform: rotate(90deg);
  transition: 0.5s;
}
.js_ham_ttl.is_active::after {
  transform: rotate(0deg);
}

.js_ham_body {
  display: none;
}

/* ===================================
フッター
=================================== */
.footer_top {
  border-top: 1px solid #DFDFDF;
  background-color: #F5F5F5;
  text-align: center;
  padding-top: 27px;
  padding-bottom: 33px;
}

.footer_sns_text {
  font-size: 11px;
  font-family: "Noto Serif JP", serif;
}

.footer_snsLinks {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.footer_snsLinks li {
  margin: 0 10px;
}
.footer_snsLinks li a {
  display: block;
}
.footer_snsLinks li a:hover {
  opacity: 0.7;
}

.footer_bottom {
  background: linear-gradient(90deg, #043f89 0%, #009bdb 100%);
  padding-top: 30px;
  padding-bottom: 30px;
}

.copy {
  font-size: 12px;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.pageTop {
  height: 54px;
  width: 54px;
  position: fixed;
  border: 1px solid #026FB4;
  border-radius: 50%;
  cursor: pointer;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/images/common/arrow-blue.svg) no-repeat center/7px 13px;
  transform: rotate(-90deg);
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  z-index: 5;
}
.pageTop span {
  transition: opacity 0.3s ease-out;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background: linear-gradient(0deg, #009bdb 0%, #043f89 100%);
  opacity: 0;
}
.pageTop span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(/images/common/arrow-white.svg) no-repeat center/7px 13px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 769px) {
  .pageTop:hover span {
    opacity: 1;
  }
}

.scroll .pageTop {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .footer_top {
    padding-top: 21px;
    padding-bottom: 23px;
  }
  .footer_sns_text {
    font-size: 10px;
  }
  .footer_snsLinks {
    margin-top: 10px;
  }
  .footer_snsLinks li {
    margin: 0 7px;
  }
  .footer_snsLinks li:first-child img {
    width: 28px;
  }
  .footer_snsLinks li:nth-child(2) img {
    width: 29px;
  }
  .footer_snsLinks li:nth-child(3) {
    width: 27px;
  }
  .footer_snsLinks li:nth-child(4) img {
    width: 33px;
  }
  .footer_bottom {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .copy {
    font-size: 10px;
  }
  .pageTop {
    width: 44px;
    height: 44px;
    right: 10px;
  }
  .pageTop span {
    width: 44px;
    height: 44px;
  }
}
/* ===================================
下層共通
=================================== */
.mainContents {
  background: url(/images/common/bg02.png) no-repeat bottom left, url(/images/common/bg01.png) no-repeat right top;
  margin-top: 100px;
}

.page_inner {
  max-width: 960px;
  margin: 0 auto;
}

.page_ttl {
  font-size: 65px;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  color: #444;
  letter-spacing: 0.01em;
}

.page_h2 {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  padding-top: 35px;
}
.page_h2::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  background: linear-gradient(-90deg, #009bdb 0%, #043f89 100%);
  position: absolute;
  left: 0;
  top: 15px;
}

@media screen and (max-width: 768px) {
  .mainContents {
    margin-top: 50px;
    background: url(/images/common/bg01-sp.png) no-repeat right top, url(/images/common/bg02-sp.png) no-repeat bottom left;
  }
  .page_ttl {
    font-size: 37px;
  }
  .page_h2 {
    font-size: 22px;
  }
  .page_h2::before {
    width: 55px;
  }
}

