@charset "UTF-8";
/*----------------------------
リセット他
----------------------------*/
html {
  scroll-padding-top: 100px;
}
@media (max-width: 1099px) {
  html {
    scroll-padding-top: 60px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol[class] {
  list-style: none;
}

a {
  color: #0068b7;
  text-decoration: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.75;
  font-family: "Noto Sans JP", "Helvatica", sans-serif;
  color: #2f2f2f;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

/*----------------------------
PC/SP出しわけ
----------------------------*/
@media screen and (max-width: 1023px) {
  .sp-hide {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .pc-hide {
    display: none;
  }
}

/*----------------------------
フォント指定ある場合
----------------------------*/
.is-en {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}

.is-ja {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/*----------------------------
メニューを開いている時の処理
----------------------------*/
html.is-open {
  overflow: hidden;
}

/*----------------------------
ヘッダーメニュー
----------------------------*/
#header-nav {
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  max-width: 100vw;
  width: 100%;
  background-color: #fff;
  -webkit-transition: top 0.6s ease-in-out;
  transition: top 0.6s ease-in-out;
}
@media screen and (max-width: 1139px) {
  #header-nav {
    height: 60px;
    padding: 0 3.5px 0 16px;
  }
}
@media screen and (min-width: 1140px) {
  #header-nav {
    height: 100px;
    padding: 0 30px;
    top: 0;
    left: 0;
    right: 0;
  }
}

.header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  display: block;
  width: 240px;
}
.header__logo a img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header__logo a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1139px) {
  .header__nav {
    display: none;
  }
}
.header__nav.is-open {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  padding: 0 24px;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}
@media screen and (min-width: 1140px) {
  .header__navList01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__navItem a {
  color: #2f2f2f;
  position: relative;
}
@media screen and (max-width: 1139px) {
  .header__navItem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #d3e6f6;
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a {
    display: inline-block;
    overflow: hidden;
    padding: 10px 45px;
    text-align: center;
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #2066b7;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a span {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.header__navItem a .en {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}
@media screen and (max-width: 1139px) {
  .header__navItem a .en {
    font-size: 11px;
    color: #0068b7;
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a .en {
    font-size: 14px;
  }
}
.header__navItem a .ja {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 1139px) {
  .header__navItem a .ja {
    font-size: 16px;
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a .ja {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 15px;
    white-space: nowrap;
  }
}
.header__navItem a:hover {
  color: #2066b7;
}
.header__navItem a:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (min-width: 1139px) {
  .header__navItem a:hover .en {
    -webkit-transform: translate(0%, -150%);
            transform: translate(0%, -150%);
  }
}
@media screen and (min-width: 1140px) {
  .header__navItem a:hover .ja {
    top: 25%;
  }
}
@media screen and (max-width: 1139px) {
  .header__navList02 {
    display: block;
  }
}
@media screen and (min-width: 1140px) {
  .header__navList02 {
    display: none;
  }
}
.header__bnr01 {
  margin-top: 35px;
}
.header__bnr01 a {
  margin: 0 auto;
  display: block;
  max-width: 325px;
  max-height: 80px;
  width: 100%;
  height: 100%;
}
.header__bnr01 a img {
  width: 100%;
  height: auto;
}
.header__bnr02 {
  margin-top: 25px;
  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;
  gap: 33px;
}
.header__bnrItem02 a {
  display: block;
  width: 100%;
  height: 100%;
}
.header__bnrItem02:first-child {
  width: 120px;
  height: 43px;
}
.header__bnrItem02:first-child img {
  width: 100%;
  height: auto;
}
.header__bnrItem02:last-child {
  width: 174px;
  height: 32px;
}
.header__bnrItem02:last-child img {
  width: 100%;
  height: auto;
}

.js-header {
  top: -100px !important;
  -webkit-transition: -webkit-transform 0.6s ease-out;
  transition: -webkit-transform 0.6s ease-out;
  transition: transform 0.6s ease-out;
  transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
@media screen and (max-width: 768px) {
  .js-header {
    top: -60px;
  }
}
.js-header.headerShowScroll {
  top: 0 !important;
}

#target {
  position: relative;
  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;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 1139px) {
  #target {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1140px) {
  #target {
    display: none;
  }
}

.target_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.target_inner_line {
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #2066b7;
}
.target_inner.is-open .target_inner_line {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.target_inner.is-open .target_inner_line:nth-child(1), .target_inner.is-open .target_inner_line:nth-child(3) {
  position: absolute;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.target_inner.is-open .target_inner_line:nth-child(1) {
  top: calc(50% - 3px);
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
}
.target_inner.is-open .target_inner_line:nth-child(2) {
  opacity: 0;
}
.target_inner.is-open .target_inner_line:nth-child(3) {
  top: calc(50% + 6px);
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-20deg);
          transform: translateY(-50%) rotate(-20deg);
}

/*----------------------------
フッター
----------------------------*/
.footer {
  position: relative;
}
.footer__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__information-title {
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .footer__information-title {
    font-size: 20px;
  }
}
.footer__information-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 599px) {
  .footer__information-body {
    gap: 35px;
  }
}
.footer__information-block span {
  display: inline-block;
}
.footer__information-block dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__information-block dt {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.footer__information-block dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-align: center;
}
.footer__information-block dd a {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer__information-block dd a:hover {
  opacity: 0.7;
}
.footer .bnr-link {
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .footer .bnr-link {
    width: 80%;
    margin: 0 auto;
  }
}
.footer .bnr-link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px 40px;
}
@media screen and (max-width: 599px) {
  .footer .bnr-link__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .bnr-link__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .bnr-link__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer .bnr-link__item a:hover {
  opacity: 0.7;
}
.footer .bnr-link__item a.umi {
  max-width: 250px;
}
.footer .bnr-link__item img {
  max-width: 100%;
}
.footer__img {
  background-image: url(../../img/common/img_footer_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__img {
    padding: 55px 0 245px;
    min-height: 510px;
  }
}
@media screen and (min-width: 769px) {
  .footer__img {
    padding: 130px 0 200px;
    min-height: 571px;
  }
}
.footer__archive {
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .footer__archive {
    padding: 0 25px;
  }
}
@media screen and (min-width: 901px) {
  .footer__archive {
    padding-left: calc(50% + 40px);
  }
}
@media screen and (max-width: 768px) {
  .footer__archive .ttl .is-en {
    font-size: 26px;
  }
}
@media screen and (min-width: 769px) {
  .footer__archive .ttl .is-en {
    font-size: 30px;
  }
}
.footer__archive .ttl .is-ja {
  display: block;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .footer__archive .ttl .is-ja {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .footer__archive .ttl .is-ja {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer__archive .list {
    margin-top: 40px;
  }
}
@media screen and (min-width: 769px) {
  .footer__archive .list {
    margin-top: 30px;
  }
}
.footer__archive .list__item {
  max-width: 320px;
}
.footer__archive .list__item a {
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__archive .list__item a::before, .footer__archive .list__item a::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer__archive .list__item a::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.footer__archive .list__item a::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../../img/common/ico_window02.svg);
  background-size: contain;
  right: 0;
  top: calc(50% - 0px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.footer__archive .list__item a:hover {
  opacity: 0.7;
}
.footer__bottom {
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    display: block;
    text-align: center;
    padding: 30px 25px 25px;
  }
}
@media screen and (min-width: 769px) {
  .footer__bottom {
    padding: 50px 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .footer__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*justify-content: space-between;*/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__bnr a {
  display: block;
  max-width: 325px;
  width: 100%;
  max-height: 80px;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__bnr a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__bnr a:hover {
  opacity: 0.7;
}
.footer__copy {
  text-align: center;
  font-size: 12px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 15px;
  }
}
@media screen and (min-width: 769px) {
  .footer__copy {
    margin-top: 40px;
  }
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__link {
    margin-top: 25px;
    gap: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .footer__link {
    gap: 40px;
  }
}
.footer__linkItem a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer__linkItem a.umi {
    max-width: 120px;
    max-height: 43px;
  }
}
@media screen and (min-width: 769px) {
  .footer__linkItem a.umi {
    max-width: 153px;
    max-height: 54px;
  }
}
@media screen and (max-width: 768px) {
  .footer__linkItem a.kaiho {
    max-width: 174px;
    max-height: 32px;
  }
}
@media screen and (min-width: 769px) {
  .footer__linkItem a.kaiho {
    max-width: 221px;
    max-height: 41px;
  }
}
.footer__linkItem a img {
  width: 100%;
  height: auto;
}
.footer__goTop {
  position: absolute;
}
@media screen and (max-width: 820px) {
  .footer__goTop {
    right: 25px;
    bottom: 200px;
  }
}
@media screen and (min-width: 901px) {
  .footer__goTop {
    right: 18px;
    bottom: 325px;
  }
}
.footer__goTop img {
  width: 41px;
}

/*----------------------------
見出し
----------------------------*/
.heading01 {
  display: block;
  position: relative;
  text-align: center;
  font-weight: normal;
}
.heading01__main {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .heading01__main {
    font-size: 26px;
  }
}
@media screen and (min-width: 769px) {
  .heading01__main {
    font-size: 30px;
  }
}
.heading01__sub {
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .heading01__sub {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .heading01__sub {
    font-size: 14px;
  }
}

/*----------------------------
ボタン
----------------------------*/
.button01 {
  max-width: 375px;
}
.button01 a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  display: block;
  color: #2066b7;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  word-break: break-word;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px 15px 40px;
  border-radius: 50px;
  border: solid 1px #2066b7;
  background-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button01 a::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../../img/common/ico_arrow01_r.svg);
  background-size: contain;
  right: 15px;
  top: calc(50% - 0px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button01 a:hover {
  cursor: pointer;
  color: #fff;
  background-color: #2066b7;
}
.button01 a:hover::after {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../../img/common/ico_arrow02_r.svg);
  background-size: contain;
  right: 15px;
  top: calc(50% - 0px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.button02 {
  width: 270px;
}
@media (max-width: 599px) {
  .button02 {
    width: 100%;
  }
}
.button02.is-coming a:hover {
  cursor: default;
}
.button02 a {
  color: #2066b7;
  position: relative;
  display: block;
  padding: 10px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button02 a::before, .button02 a::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button02 a::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2066b7;
}
.button02 a::after {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../../img/common/ico_window01.svg);
  background-size: contain;
  right: 0;
  top: calc(50% - 0px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.button02 a:hover {
  cursor: pointer;
  opacity: 0.7;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.page-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  position: absolute;
  bottom: 60%;
  right: 25px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: sideways;
}
@media screen and (min-width: 1001px) {
  .page-top {
    right: 5%;
  }
}
.page-top span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}