@charset "utf-8";

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-image: linear-gradient(0deg, transparent, #ffffff);
  min-width: 1080px;
}

@media screen and (max-width: 640px) {
  header {
    width: 100%;
    min-width: 100%;
  }
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  padding: 0.35rem 0.5rem;
}
@media screen and (max-width: 640px) {
  header .logo {
    padding: 0.25rem;
    width: 1.5rem;
  }
  header .logo img {
    width: 100%;
    display: block;
  }
}

header .logo a:hover {
  opacity: 0.7;
}

header .glo_navi {
  margin-right: 0.6rem;
}
@media screen and (max-width: 640px) {
  header .glo_navi {
    display: none;
    margin-right: 0;
    position: absolute;
    top: 0.7rem;
    left: 0.05rem;
    background-color: rgba(19, 81, 156, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: calc(100% - 0.1rem);
    border-radius: 0.1rem;
  }
}

header .glo_navi .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 0.7rem;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list {
    flex-wrap: wrap;
    gap: 0.2rem 0;
    padding: 0.25rem;
  }
}

header .glo_navi .list .item {
  width: 100%;
}

header .glo_navi .list .item a {
  font-size: 0.14rem;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .item a {
    display: block;
    width: 100%;
    font-size: 0.16rem;
    color: #fff;
  }
}

header .glo_navi .list .item.-more a span {
  position: relative;
}

header .glo_navi .list .item a:hover {
  color: #13519c;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .item a:hover {
    color: #fff;
  }
}

/* メガメニュー */
header .glo_navi .list .item.-more a.mega span::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background-image: url(../img/common/mega_icon_plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -0.2rem;
  top: 0.03rem;
  transition: all 0.7s;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .item.-more a.mega span::before {
    background-image: url(../img/common/mega_icon_plus_wht.svg);
    top: 0.04rem;
  }
}

header .glo_navi .list .item.-more.active a.mega span::before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background-image: url(../img/common/mega_icon_minus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -0.2rem;
  top: 0.03rem;
  transition: all 0.7s;
}
@media screen and (max-width: 640px) {
  header .glo_navi .list .item.-more.active a.mega span::before {
    background-image: url(../img/common/mega_icon_minus_wht.svg);
    top: 0.04rem;
  }
}

header .mega_menu_wrap {
  width: calc(100vw - 1.3rem);
  height: 20vh;
  position: absolute;
  top: -1rem;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap {
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    right: auto;
    height: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }
}

header .mega_menu_wrap.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap.active {
    height: auto;
  }
}

header .mega_menu_wrap .mega_menu_box {
  width: 100%;
  position: absolute;
  top: 1.5rem;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0 0.03rem 0.08rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.06rem;
    overflow: hidden;
    box-shadow: 0 0 0;
    margin-top: 0.1rem;
  }
}

header .mega_menu_wrap .mega_menu_box .mega_menu_ph {
  width: 40%;
  height: 2.4rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box .mega_menu_ph {
    display: none;
  }
}

header .mega_menu_wrap .mega_menu_box .mega_menu_ph span {
  position: absolute;
  width: 100%;
  font-size: 0.3rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 0.06rem rgba(0, 0, 0, 0.2);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  text-align: center;
}

header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap {
  padding: 0.5rem;
  width: 60%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap {
    padding: 0.1rem 0.2rem;
    width: 100%;
  }
}

header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link {
  width: 50%;
  padding: 0.2rem 0;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link {
    width: 100%;
    padding: 0.1rem 0;
  }
}

header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link a {
  font-size: 0.18rem;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link a {
    font-size: 0.15rem;
  }
}

header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link a::before {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.1rem;
  display: inline-block;
  background-image: url(../img/common/link_arrow_blk.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.06rem;
  position: relative;
  top: 0.06rem;
  border: 1px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  header .mega_menu_wrap .mega_menu_box .mega_menu_link_wrap .link a::before {
    content: "";
    width: 0.12rem;
    height: 0.12rem;
    margin-right: 0.1rem;
    display: inline-block;
    background-image: url(../img/common/link_arrow_wht.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 0.04rem;
    position: relative;
    top: 0.03rem;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0.5;
  }
}

header
  .mega_menu_wrap
  .mega_menu_box
  .mega_menu_link_wrap
  .link
  a:hover::before {
  background-image: url(../img/common/link_arrow_wht.svg);
  border: 1px solid #13519c;
  background-color: #13519c;
}

/* SP用ハンバーガーメニュー */
#SPnaviBtn {
  width: 0.6rem;
  height: 0.6rem;
  top: 0.05rem;
  right: 0.05rem;
}

.menu-trigger span:nth-child(1) {
  top: 36%;
}
.menu-trigger span:nth-child(3) {
  bottom: 36%;
}
.menu-trigger.active span:nth-child(1) {
  top: 52%;
}

/* lang_switch_wrap */
.lang_switch_wrap {
}
.lang_switch_wrap .lang_switch_list {
  display: flex;
}
.lang_switch_wrap .lang_switch_list .item {
  width: 100%;
}
.lang_switch_wrap .lang_switch_list .item a {
  font-weight: normal;
}

.lang_switch_wrap .lang_switch_list .item:first-child a {
  box-sizing: border-box;
  padding-right: 0.1rem;
  margin-right: 0.1rem;
  border-right: 1px solid #000;
}

.lang_switch_wrap .lang_switch_list .item.active a {
  font-weight: bold;
  color: #13519c;
  pointer-events: none;
}

/* lang_switch_sp */
.lang_switch_sp {
  position: absolute;
  right: 0.8rem;
}
.lang_switch_sp a {
  font-size: 0.13rem;
  color: #2272d3;
  background: #fff;
  border: 1px solid #2272d3;
  box-sizing: border-box;
  padding: 0.03rem 0.15rem;
  border-radius: 0.3rem;
}

/* --------- 以下、必要に応じて有効化 ---------- */

/* ヘッダーが上に消える
header.hide {
	transform: translateY(-1.50rem);
}
 */

/* スクロールで表示された状態
header.scr {
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
 */

/*============================
共通
============================*/
/* 画像設定 */
.cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/*============================
フッター
============================*/
footer {
  background-color: #f2f2f2;
  box-sizing: border-box;
  padding: 0.6rem 0 0.35rem;
}

@media screen and (max-width: 640px) {
  footer {
    max-width: 100%;
    overflow: hidden;
    padding: 0.4rem 0 0.3rem;
  }
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 640px) {
  footer .wrap {
    display: block;
  }
}

footer .logo {
  width: 4rem;
}
@media screen and (max-width: 640px) {
  footer .logo {
    width: 2.2rem;
    margin: auto;
    padding-bottom: 0.4rem;
  }
}

footer .logo a:hover {
  opacity: 0.7;
}

footer .logo img {
  width: auto;
}
@media screen and (max-width: 640px) {
  footer .logo img {
    width: 100%;
    display: block;
  }
}

footer nav {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 4rem);
}
@media screen and (max-width: 640px) {
  footer nav {
    flex-wrap: wrap;
    width: 100%;
    gap: 0.2rem 0;
  }
}

footer nav .list {
  width: 33%;
}
@media screen and (max-width: 640px) {
  footer nav .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

footer nav .list .item {
  width: 100%;
}
@media screen and (max-width: 640px) {
  footer nav .list .item {
    width: 50%;
  }
}

footer nav .list .item a {
  width: 100%;
}

footer nav .list .item a:hover {
  opacity: 0.7;
}

footer nav .list .item.first span {
  font-weight: bold;
  color: #13519c;
  font-size: 0.2rem;
  margin-bottom: 0.25rem;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  footer nav .list .item.first {
    width: 100%;
    margin-bottom: 0.15rem;
  }
  footer nav .list .item.first span {
    font-size: 0.16rem;
    margin-bottom: 0;
  }
}

footer nav .list .item a {
  font-size: 0.14rem;
  margin-bottom: 0.18rem;
  color: #000;
  display: inline-block;
}
@media screen and (max-width: 640px) {
  footer nav .list .item a {
    font-size: 0.12rem;
    margin-bottom: 0.12rem;
  }
  footer nav .list .item a::before {
    content: "";
    width: 0.06rem;
    height: 1px;
    background-color: #000;
    opacity: 0.4;
    display: inline-block;
    margin-right: 0.06rem;
    position: relative;
    top: -0.03rem;
  }
}

footer nav .list .item a:hover {
  color: #13519c;
}

footer .copy_wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.6rem;
  border-top: 1px solid #cccccc;
  padding-top: 0.35rem;
}
@media screen and (max-width: 640px) {
  footer .copy_wrap {
    display: block;
    margin-top: 0.3rem;
    padding-top: 0.3rem;
  }
}

footer .copy_wrap .copy {
  font-size: 0.12rem;
  color: #000;
}
@media screen and (max-width: 640px) {
  footer .copy_wrap .copy {
    display: block;
    font-size: 0.1rem;
    padding-top: 0.2rem;
  }
}

footer .copy_wrap .list {
  display: flex;
  gap: 0 0.3rem;
}
@media screen and (max-width: 640px) {
  footer .copy_wrap .list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.1rem 0;
  }
  footer .copy_wrap .list .item {
    width: 50%;
  }
}

footer .copy_wrap .list .item a {
  font-size: 0.12rem;
  color: #000;
}
@media screen and (max-width: 640px) {
  footer .copy_wrap .list .item a {
    font-size: 0.11rem;
  }
  footer .copy_wrap .list .item a::before {
    content: "";
    width: 0.06rem;
    height: 1px;
    background-color: #000;
    opacity: 0.4;
    display: inline-block;
    margin-right: 0.06rem;
    position: relative;
    top: -0.03rem;
  }
}

footer .copy_wrap .list .item a:hover {
  color: #13519c;
}

/*============================
テキスト無限ループ
============================*/

.text-infinity-scroll {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.text-infinity-scroll .first,
.text-infinity-scroll .second {
  flex-shrink: 0;
  width: auto;
  height: auto;
  text-wrap: nowrap;
  word-break: keep-all;
  display: inline;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  color: #d6e1ee;
}
@media screen and (max-width: 640px) {
  .text-infinity-scroll .first,
  .text-infinity-scroll .second {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

.text-infinity-scroll .first {
  animation: anim--first 500s infinite linear 0.1s both;
}
.text-infinity-scroll .second {
  animation: anim--second 500s infinite linear 0.1s both;
}

@keyframes anim--first {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes anim--second {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

.text-infinity-scroll2 {
  width: 100%;
  display: flex;
  overflow: hidden;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 640px) {
  .text-infinity-scroll2 {
    padding-bottom: 0.2rem;
  }
}
.text-infinity-scroll2 .first,
.text-infinity-scroll2 .second {
  flex-shrink: 0;
  width: auto;
  height: auto;
  text-wrap: nowrap;
  word-break: keep-all;
  display: inline;
  font-size: 2.5rem;
  font-weight: bold;
  color: #d6e1ee;
}
@media screen and (max-width: 640px) {
  .text-infinity-scroll2 .first,
  .text-infinity-scroll2 .second {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}

.text-infinity-scroll2 .first {
  animation: anim--first2 400s infinite linear 0.1s both;
}
.text-infinity-scroll2 .second {
  animation: anim--second2 400s infinite linear 0.1s both;
}

@keyframes anim--first2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes anim--second2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

/*============================
コンタクトフォーム
============================*/
.wpcf7 form .wpcf7-response-output {
  font-size: 0.15rem;
  text-align: center;
  padding: 0.1rem 0 !important;
}
