@charset "utf-8";
/* CSS Document */

body {
  font-size: 16px;
  font-family: YuGothic,'Yu Gothic','メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans','ＭＳ ゴシック', sans-serif;
}

html {scroll-padding-top: 0;}

main {
  padding: 0;
  background: #F0F0F0;
  p {line-height: 1.7;}
}

a:link {display: initial;}
img {pointer-events: none;}
.pc_block {display: block;}
.sp_block {display: none;}
@media screen and (max-width: 767px) {
  .pc_block {display: none;}
  .sp_block {display: block;}
}

/* レイアウト */
section {
  position: relative;
}
.container {
  position: relative;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
}

.mt10 {margin-top: 10px;}
.mt20 {margin-top: 20px;}
.mt30 {margin-top: 30px;}
.mt40 {margin-top: 40px;}
.mt50 {margin-top: 50px;}
.mt60 {margin-top: 60px;}
.mb10 {margin-bottom: 10px;}
.mb20 {margin-bottom: 20px;}
.mb30 {margin-bottom: 30px;}
.mb40 {margin-bottom: 40px;}
.mb50 {margin-bottom: 50px;}
.mb60 {margin-bottom: 60px;}

.ml10 {margin-left: 1em;}
.ml20 {margin-left: 2em;}
.ml30 {margin-left: 3em;}

/* テキスト */
.bold_txt {
  font-weight: bold;
}
.center_txt {
  text-align: center;
  img {
    margin: auto;
  }
}

/* インデント */
.indent, .indent_list li {
	text-indent: -1em;
	padding-left: 1em;
}
.indent_dot {
  text-indent: -1.6em;
	padding-left: 1.6em;
}

/* リンク */
a.external-link {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px;
  background: #06C;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  &:hover {opacity: 0.8;}
}

/* 共通 */
.mv {
  width: 100%;
  height: 522px;
  padding: 0 5%;
  background: url(../img/mv.png) no-repeat bottom center;
  background-size: cover;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  @media screen and (max-width: 767px) {
    background: url(../img/mv_sp.png) no-repeat bottom center;
    background-size: cover;
  }
}
.mv_inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.mv_hgroup {
  margin-bottom: 30px;
  p {
    color: #0029A3;
    font-size: 4rem;
    font-weight: 600;
    font-family: "Yu Mincho";
    text-shadow: 0 0 10px #FFF;
    margin-bottom: 16px;
  }
  h1 {
    color: #000;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 0 0 10px #FFF;
  }
  @media screen and (max-width: 767px) {
    p {
      font-size: min(3.2rem, 8vw);
    }
    h1 {
      font-size: 1.8rem;
    }
  }
}

.nav-btn-list {
  box-sizing: border-box;
  width: 100%;
  padding: 0 7%;
  margin: 0px auto 40px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #06C;
  @media screen and (max-width: 767px) {
    padding: 0 5%;
    margin-top: 40px;
    gap: 10px;
    background: none;
  }

  @media screen and (orientation: portrait) and (min-width: 768px) {
    padding: 0 4%;
  }
}
.nav-btn {
  width: 16.6%;
  text-align: center;
  a {
    position: relative;
    display: block;
    background: #06C;
    color: #fff;
    width: 100%;
    padding: 24px 10px 25px 0;
    font-size: 14px;
    box-sizing: border-box;
  }
  a:hover {
    text-decoration: none;
    background: #0d153d;
  }
  a::after {
    content: "";
    position: absolute;
    display: block;
    min-width: 8px;
    min-height: 8px;
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(135deg);
    right: 15px;
    top: 0;
    bottom: 8px;
    margin: auto;
  }
  @media screen and (max-width: 767px) {
    width: calc(50% - 5px);
    a {
      padding: 10px;
      font-size: min(1.6rem, 3.2vw);
    }
    a::after {
      right: 8px;
    }
  }

  @media screen and (orientation: portrait) and (min-width: 768px) {
    &:nth-child(3) a,
    &:nth-child(4) a {font-size: 1.2rem;}
  }
}

.breadcrumbs {
  width: 95%;
  margin: 15px auto 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: auto;
  white-space: nowrap;
  li {
    display: flex;
    align-items: center;
  }
  li::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #090909;
    border-right: 1px solid #090909;
    transform: rotate(45deg);
    margin: 0 10px;
  }
  li:last-of-type::after {display: none;}
  li a {
    color: #090909;
    text-decoration: underline;
    &:hover {text-decoration: none;}
  }
  @media screen and (max-width: 767px) {
    justify-content: flex-start;
    li a {
      font-size: 1.4rem;
    }
  }
}

.news_list {
  margin: 40px auto 0;
  /* height: 280px; */
  overflow: auto;
  padding: 0 5%;
  max-height: 280px;
  @media screen and (max-width: 767px) {
    padding: 0;
    margin-top: 20px;
  }
}
.news_list--child {
  border-top: solid 1px #06C;
  a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 8%;
    color: #090909;
  }
  a:hover {opacity: 0.6;}
  &:last-of-type {border-bottom: solid 1px #06C;}
  @media screen and (max-width: 767px) {
    a {
      padding: 16px 4%;
      font-size: 1.4rem;
    }
  }
}
.news_list--child a[href=""],
.news_list--child a[href="/resilient/"],
.news_list--child a[href*="/resilient/"] {
  pointer-events: none;
  /* &:hover {
    opacity: 1;
    cursor: initial;
  } */
}
.news_list--child a[href*="/resilient/media/"] {
  pointer-events: initial;
}



/* ------------------
ヘッダー（ハンバーガーメニュー）
------------------ */
/* ボタン */
.sp_nav--btn{
  display: block; position: fixed; width: 70px;height: 70px;background: #06C;border: none;right: 0;top:0;transition: all 0.3s;z-index: 100;
  span {position: absolute;display: block;height: 3px;background: #fff;margin: auto;}

  /* 閉じた状態 */
  &[aria-pressed="false"] span {width: 25px;transition: all 0.3s;}
  &[aria-pressed="false"] span:nth-child(1) {top: 26px;left: 0;right: 0;}
  &[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
  &[aria-pressed="false"] span:nth-child(3) {bottom: 25px;left: 0;right: 0;margin: auto;}

  /* 開いた状態 */
  &[aria-pressed="true"] span {width: 25px;transition: all 0.3s;}
  &[aria-pressed="true"] span:nth-child(1) {top: 50%;transform: translateY(-1.5px) rotate(45deg);background: #fff;left: 23px;}
  &[aria-pressed="true"] span:nth-child(2) {display: none;}
  &[aria-pressed="true"] span:nth-child(3) {bottom: 50%;transform: translateY(1.5px) rotate(-45deg);background: #fff;left: 23px;}
  @media screen and (max-width: 767px) {
    width: 55px;height: 55px;

    &[aria-pressed="false"] span:nth-child(1) {
      top: 18px;
      left: 0;
      right: 0;
    }
    &[aria-pressed="false"] span:nth-child(2) {
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
    }
    &[aria-pressed="false"] span:nth-child(3) {
      bottom: 16px;
      left: 0;
      right: 0;
      margin: auto;
    }
  }
  @media screen and (max-width: 767px) {
    &[aria-pressed="false"] span:nth-child(1) {
      top: 16px;
      left: 0;
      right: 0;
    }
  }
}

/* メニューパネル */
.drawer_nav {
  position: fixed;
  height: calc(100vh + 120px);
  max-width: 320px;
  width: 100%;
  top: 0;
  right: 0;
  color: #000;
  display: flex;
  z-index: 99;
  overflow: auto;
  transition: all 0.3s;
  background: #06C;
  flex-direction: column;
  &[aria-hidden="true"] {
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
  }
  &[aria-hidden="false"] {
    visibility: visible;
    transform: translateX(0);
  }
  @media screen and (max-width: 767px) {
    max-width: 100%;
    height: 100vh;
    padding-bottom: 28px;
  }
}
.drawer_logo {
  padding: 10px 0 0 10px;
  width:calc(100% - 80px);
  img {
    max-width: 230px;
    height: auto;
  }
}
.drawer_sns {
  width: 100%;
  height: 50px;
  padding: 10px 5% 0 8%;
  display: flex;
  align-items: center;
  gap: 15px;
  img {
    filter: brightness(0) invert(1);
  }
}
.drawer_menu {
  width: 100%;
  padding: 10px 5% 0;
}
.drawer_menu--item {
  a {
    width: 100%;
    padding: 9px 15px 10px 0;
    border-bottom: solid 1px #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }
  a::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: solid 2px #ececec;
    border-right: solid 2px #ececec;
    transform: rotate(45deg);
  }
}
a.header_funds {
  max-width: 288px;
  width: 100%;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #0029A3;
  margin: 20px 5% 0;
  &:hover {
    text-decoration: none;
  }
  @media screen and ( max-width: 767px ) {
    max-width: 280px;
    margin: 20px auto 0;
  }
}
#cse-search-box--sp {
  width: 100%;
  max-width: 288px;
  display: flex;
  margin: 20px 5% 0;
  position: relative;
  input[type="text"] {
    display: flex;
    width: 100%;
    height: 30px;
    border-radius: 5px;
    padding: 5px;
    box-sizing: content-box;
  }
  input[type="text"]:focus {
    background: #fff!important;
  }
  input[type="submit"] {
    width: 40px;
    height: 35px;
    position: absolute;
    right: 5px;
    top: 4px;
    background: url("../img/icon_submit.png") no-repeat center #06C;
    padding: 3px 10px;
    border-radius: 5px;
    border: 0 none;
    color: transparent;
  }
  input[type="submit"]:hover {
    cursor: pointer;
  }
  @media screen and (max-width: 767px) {
    margin: 20px auto 0;
  }
}

#cse-search-box {
  width: 270px !important;
  transform: translateY(-45px);
  transition-duration: 0.3s;
  div {
    padding: 0 !important;
  }
  input[type="text"] {
    font-size: 14px;
    height: 33px!important;
    padding: 0 50px 0 10px!important;
    width: 204px!important;
    background: #f9f9f9;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 5px #dddddd;
    -moz-box-shadow: 0 0 5px #dddddd;
    -webkit-box-shadow: 0 0 5px #dddddd;
  }
  input[type="submit"] {
    background: url(../../img/icon04.png) no-repeat center #06C;
    border: 0 none;
    height: 20px;
    margin: 0px 0 0px 0px;
    overflow: hidden;
    text-indent: -9999px;
    width: 20px;
    position: absolute;
    -webkit-appearance: none;
    top: 5px;
    right: 10px;
    box-sizing: content-box;
    padding: 3px 10px;
    border-radius: 7px;
  }
}



/* ==========================
==========　フッター　===========
============================= */
.ft_bnr {
  background: #06C;
  padding: 64px 0;
}
.ft_bnr--inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  a {
    background: #fff;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: calc(25% - 15px);
    height: 64px;
    padding-left: 28px;
  }
  a:hover {opacity: 0.8;}
  @media screen and (max-width: 767px) {
    gap: 10px;
    a {
      width: calc(50% - 5px);
      max-width: 200px;
      padding: 0 10px;
      font-size: min(1.6rem, 3vw);
      gap: 12px;
    }
  }
}

.fn_top {
  padding: 64px 0 40px;
  background: #fff;
}
.fn_data {
  margin-bottom: 64px;
}
.fn_link_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  li, a {color: #0029A3;}
  li:first-child::before {
    content: "｜";
    padding: 0 4px 0 0;
  }
  li::after {
    content: "｜";
    padding: 0 4px 0 4px;
  }
  @media screen and (max-width: 767px) {
    flex-wrap: wrap;
    gap: 8px;
  }

  @media screen and (orientation: portrait) and (min-width: 768px) {
    font-size: 1rem;
    li:first-child::before {padding: 0;}
    li::after {padding: 0;}
  }
}
.fn_sns {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  li {
    margin: 0 15px;
  }
  li a {
    display: block;
  }
}
.fn_bottom {
  padding: 15px 0;
  background: #0029A3;
  color: #fff;
  font-size: 13px;
  @media screen and (max-width: 767px) {
    padding: 32px 0;
  }
}
.fn_bottom .container {
  width: 90%;
  max-width: 1024px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2.5;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
a.fn_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #0066CC;
  color: #fff;
  max-width: 251px;
  box-sizing: border-box;
  gap: 15px;
  padding: 10px;
  margin-top: 10px;
  &:hover {opacity: 0.8;}
}


/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 80px;
  height: 81px;
  right: 3%;
  bottom: 15px;
  opacity: 0;
  transition: 0.5s;
  z-index: -10;
  &.active {
    opacity: 1;
    z-index: 50;
  }
  &.active:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}
@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  /* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }

}

@media print {
  body {
    width: 1280px;
    zoom:80%;
  }
  .sp_nav--btn {
    position: absolute;
  }
}