@charset "UTF-8";
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.acd-content {
  height: 0%;
  -webkit-transition: .5s;
  transition: .5s;
  visibility: hidden;
}

.acd-check:checked + .acd-label + .acd-content {
  height: 100%;
  visibility: visible;
}

/*========= モーダル表示のためのCSS ===============*/
/*全て共通：hideエリアをはじめは非表示*/
.hide_area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*以下はコンテンツ内のレイアウト*/
.info-list dl,
.gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info-list dt {
  margin: 0 10px 0 0;
}

.gallery-list li {
  margin: 0 10px 0 0;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

/*アコーディオンタイトル*/
@media (max-width: 1399px) {
  .title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    position: relative;
  }
  /*アイコンの＋と×*/
  .title::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    /* アイコン「３本線」 */
    width: 20px;
    height: 20px;
    color: #1e445b;
    font-size: 2rem;
    right: 15px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 10px 30px;
            transform-origin: 10px 30px;
  }
  /*　closeというクラスがついたら形状変化　*/
  .title.close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
}

header {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.change-color {
  background: #fff;
}

/* スマホ閲覧時のハンバーガーメニュー */
#hanburger {
  display: none;
  /* チェックボックスを非表示 */
}

.menu_button {
  /* ボタンのスタイル */
  width: 50px;
  /* 幅 */
  height: 60px;
  /* 高さ */
  position: fixed;
  top: 0px;
  right: 20px;
  z-index: 10;
}

.menu_button::before {
  font-size: 30px;
  color: #1e445b !important;
}

@media (min-width: 1400px) {
  .menu_button {
    display: none;
    /* ハンバーガーメニューのボタンを非表示 */
  }
}

@media (max-width: 1399px) {
  .menu_button {
    height: 100px;
    /* 高さ */
  }
}

@media (max-width: 711px) {
  .menu_button {
    height: 60px;
    /* 高さ */
  }
}

.menu_button::before {
  /* アイコンのスタイル */
  font-family: "Font Awesome 5 Free";
  content: "\f0c9";
  /* アイコン「３本線」 */
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#hanburger:checked + .menu_button::before {
  /* アイコンのスタイル（チェック済み） */
  content: "\f00d";
  /* アイコン「×印」 */
}

.global_menu {
  /* メニュー全体のスタイル */
  visibility: hidden;
  /* メニューを非表示 */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  overflow-y: scroll;
  text-align: center;
}

@media (min-width: 1400px) {
  .global_menu {
    position: relative;
    max-width: 700px;
    padding: 0;
    color: #1e445b;
    visibility: visible;
    overflow-y: visible;
  }
}

@media (max-width: 1399px) {
  .global_menu {
    top: 100px;
    background: #d7e8f2;
  }
}

@media (max-width: 711px) {
  .global_menu {
    top: 60px;
    background: #d7e8f2;
  }
}

.global_menu .menu_ul1 {
  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;
  height: 100%;
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 50px;
    height: auto;
  }
  .global_menu .menu_ul1 img {
    display: none;
  }
}

.global_menu .menu_ul1 .menu {
  height: 100%;
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1 .menu {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #b1d0e4;
    margin-bottom: 0;
    padding-bottom: 0px;
  }
  .global_menu .menu_ul1 .menu:nth-of-type(6) {
    border: none;
  }
}

.global_menu .menu_ul1 .menu > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1 .menu > a {
    width: 100%;
    height: 60px;
    padding: 0;
    line-height: 60px;
    display: block;
    text-align: left;
    font-weight: bold;
    font-size: 2rem;
  }
}

.global_menu .menu_ul1 .menu:hover > a {
  position: relative;
}

@media (min-width: 1400px) {
  .global_menu .menu_ul1 .menu:hover > a {
    font-weight: bold;
    padding: 10px 20px;
    font-weight: 500;
    padding: 0;
    color: #1e445b;
  }
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1 .menu:hover > a {
    padding: 0;
    opacity: 1;
  }
}

.global_menu .menu_ul1 .menu:hover > a::after {
  content: '';
  width: 90%;
  height: 2px;
  position: absolute;
  background: #1487cb;
  bottom: 30px;
  z-index: 2;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1 .menu:hover > a::after {
    content: none;
  }
}

@media (min-width: 1400px) {
  .global_menu .menu_ul1 .menu.have_child:hover > a {
    position: relative;
  }
  .global_menu .menu_ul1 .menu.have_child:hover > a::after {
    content: '';
    width: 90%;
    height: 2px;
    position: absolute;
    background: #1487cb;
    bottom: 30px;
    z-index: 2;
  }
  .global_menu .menu_ul1 .menu.have_child:hover > a::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border-style: solid;
    border-width: 0 30px 30px 30px;
    border-color: transparent transparent #fff transparent;
    left: calc(50% - 30px);
    bottom: -20px;
    z-index: 1;
    -webkit-animation-name: fadeInAnime;
            animation-name: fadeInAnime;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
}

@media (min-width: 1400px) {
  .global_menu .menu_ul1.sp_mode {
    display: none;
  }
}

@media (max-width: 1399px) {
  .global_menu .menu_ul1.sp_mode {
    padding: 0 0;
    padding-bottom: 60px;
  }
  .global_menu .menu_ul1.sp_mode .btn_entry {
    width: 70%;
    margin: 10px auto 40px;
  }
  .global_menu .menu_ul1.sp_mode .btn_entry a {
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0;
  }
  .global_menu .menu_ul1.sp_mode > li:nth-last-of-type(3) a {
    background: #1e445b;
  }
  .global_menu .menu_ul1.sp_mode > li:nth-last-of-type(2) a {
    background: #2d5896;
  }
  .global_menu .menu_ul1.sp_mode > li:nth-last-of-type(1) a {
    background: #1487cb;
  }
  .global_menu .menu_ul1.sp_mode .menu {
    border-bottom: none;
  }
  .global_menu .menu_ul1.sp_mode .menu a {
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-weight: normal;
  }
  .global_menu .menu_ul1.sp_mode .menu a::after {
    right: 30px;
    top: calc(50% - 9px);
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(../img/common/icon_arrowL.png) no-repeat;
    background-size: 20px;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child {
    padding: 0;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .child_menu {
    padding: 0;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .child_menu li {
    padding: 0;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .child_menu li::before {
    content: none;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .child_menu li a {
    height: 50px;
    line-height: 50px;
    position: relative;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .child_menu li a::after {
    right: 30px;
    top: calc(50% - 9px);
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(../img/common/icon_arrowL.png) no-repeat;
    background-size: 20px;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .title {
    border-bottom: 0.1px solid #134f78;
    /*アイコンの＋と×*/
    /*　closeというクラスがついたら形状変化　*/
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .title::before {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    /* アイコン「３本線」 */
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    right: 35px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 10px 30px;
            transform-origin: 10px 30px;
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .title.close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .global_menu .menu_ul1.sp_mode .menu.have_child .title::after {
    content: none;
  }
}

#hanburger:checked ~ .global_menu {
  /* メニュー全体のスタイル（チェック済） */
  visibility: visible;
  /* メニューを表示 */
}

.global_menu a {
  /* 各項目のスタイル */
  display: block;
  width: 100%;
  color: #1e445b;
}

.menu:not(:last-child) {
  margin-bottom: 20px;
}

@media (min-width: 1400px) {
  .menu:not(:last-child) {
    margin-bottom: 0;
  }
}

.menu:hover .child_menu {
  /* 下層メニューのスタイル（親項目ホバー時） */
}

@media (min-width: 1400px) {
  .menu:hover .child_menu {
    top: 100%;
    /* 定位置に戻す */
    opacity: 1;
    visibility: visible;
    /* 下層メニューを表示 */
  }
}

.child_menu {
  /* 下層メニューのスタイル */
}

@media (min-width: 1400px) {
  .child_menu {
    width: 100%;
    position: absolute;
    top: 0;
    /* topを0に */
    left: 0;
    padding: 30px;
    background: #fff;
    visibility: hidden;
    /* 下層メニューを非表示 */
    opacity: 0;
    -webkit-transition: .5s top, .5s opacity;
    transition: .5s top, .5s opacity;
    /* アニメーション設定 */
    width: 100vw;
    max-width: 1400px;
    left: calc(50% - 750px);
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media (max-width: 1399px) {
  .child_menu {
    padding: 0 0px 20px 10px;
  }
}

.child_menu li {
  position: relative;
}

@media (min-width: 1400px) {
  .child_menu li {
    margin-right: 30px;
  }
  .child_menu li:last-of-type {
    margin-right: 0px;
  }
}

@media (max-width: 1399px) {
  .child_menu li {
    position: relative;
    padding: 0 0 0 20px;
  }
  .child_menu li::before {
    content: '';
    width: 1px;
    height: 16px;
    position: absolute;
    content: "−";
    left: 0;
    top: 30%;
    color: #1e445b;
  }
}

@media (min-width: 1400px) {
  .child_menu li a {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding: 100px 0 0 0;
    font-size: 1.5rem;
  }
  .child_menu li a span {
    font-family: "Barlow" , sans-serif;
    font-weight: normal;
    font-size: 2.8rem;
    display: block;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1399px) {
  .child_menu li a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: block;
    text-align: left;
  }
}

@media (min-width: 1400px) {
  .menu, .child_menu > li {
    display: inline-block;
  }
}

@media (min-width: 1400px) {
  .child_menu > li > a:hover {
    background: rgba(19, 79, 120, 0.7);
  }
}
/*# sourceMappingURL=mega.css.map */