@charset "UTF-8";

/* ===================================================================
CSS information

 File Name  : common.css
 Style Info : 見出し、ボタン、表など繰り返し使うパーツのスタイルを定義
=================================================================== */

html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}
body {
  background: #E6F4FF;
  color: #4A4A4A;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-weight: 500;
}
  @media screen and (max-width: 999px) {
    body {
      font-size: 3.58vw;
    }
  }

/*----------------------------------------------------
  link要素
--------------------------------------------------- */
a {
  transition: all 0.2s ease-in-out 0s;
}
a:link {
  color: #0049A5;
}
a:visited {
  color: #0049A5;
}
a:hover {
  text-decoration: none;
  color: #0049A5;
}
a:active {
  color: #0049A5;
}
:focus-ring {
  outline: dotted 1px #F6AB00;
}
:-moz-focusring {
  outline: dotted 1px #F6AB00;
}

/*----------------------------------------------------
  img要素
--------------------------------------------------- */
img {
  line-height: 1;
  /*font-size: 0;*/
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*----------------------------------------------------
  見出し要素
--------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-weight: 500;
  line-height: 1.5;
}

/*----------------------------------------------------
 フォントファミリー
--------------------------------------------------- */
.ff01 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/*----------------------------------------------------
  スクロールバー
--------------------------------------------------- */

/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
  @media screen and (max-width: 999px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
    ::-webkit-scrollbar-track {
      border-radius: 10px;
      box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    }
    ::-webkit-scrollbar-thumb {
      background-color: rgba(0,0,0,0.5);
      border-radius: 10px;
      box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
    }
  }

/*----------------------------------------------------
 共通カラム
--------------------------------------------------- */
#page {
  overflow: hidden;
}
#contents {
  position: relative;
  line-height: 1.8;
  padding-bottom: clamp(160px, 14vw, 220px);
}
#contents::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  content: "";
  width: 100%;
  height: 102px;
  background: url("../img/hd_wave.png") center top repeat-x;
}
.home #contents::after {
  animation: waveScroll 18s linear infinite;
}

/* 横に流れるアニメーション */
@keyframes waveScroll {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 1920px; /* 元画像の横サイズ */
  }
}

#contents a:hover img{
  opacity: 0.70;
}

.wrapper {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.inner {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
  @media screen and (max-width: 999px) {
    html, body, #page {
      min-width:100%!important;
      max-width:100%!important;
      width:100%!important;
    }
    #contents {
      padding-bottom: 40vw;
    }
    #contents::after {
      height: 10.25vw;
      background-size: auto 10.25vw;
    }
    .wrapper, .inner {
      width: 100%;
      max-width: 100%;
      padding-left: 7.69vw;
      padding-right: 7.69vw;
    }
  }

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
#header {
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
}
.hd_wrap {
  max-width: 1360px;
  margin: 0 auto;
  background: rgba(255,255,255,0.9);
  border-radius: 50px;
  box-shadow: 0px 3px 16px rgba(0, 73, 165, 0.16);
  transition: all 0.2s ease-in-out 0s;
}
.home .hd_wrap {
  max-width: 1720px;
}
.hd_inner {
  position: relative;
  max-width: 1640px;
  height: 100px;
  margin: 0 auto;
  transition: all 0.2s ease-in-out 0s;
}
.hd_logo {
  position: absolute;
  left: 40px;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
}
.hd_logo img {
  width: 260px;
  height: auto;
}
.home .hd_logo img {
  width: 326px;
  height: auto;
}
  @media screen and (max-width: 1299px) {
    .hd_logo img {
      width: 260px!important;
      height: auto;
    }
  }
  @media screen and (max-width: 999px) {
    #header {
      position: fixed!important;
      top: 4.1vw!important;
      padding: 0 2vw!important;
    }
    .hd_wrap {
      max-width: 100%;
      margin: 0 auto;
      background: rgba(255,255,255,0.9);
      border-radius: 9vw!important;
      box-shadow: 0px 3px 16px rgba(0, 73, 165, 0.16);
      transition: all 0.2s ease-in-out 0s;
    }
    .hd_inner {
      position: relative;
      max-width: 1640px;
      height: 17.94vw!important;
      margin: 0 auto;
      transition: all 0.2s ease-in-out 0s;
    }
    .hd_logo {
      left: 7.17vw!important;
    }
    .hd_logo img {
      width: 49.74vw!important;
      height: auto;
    }
  }

#header.hd_fix {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
}
#header.hd_fix .hd_wrap {
  max-width: 100%;
  border-radius: 0;
}
#header.hd_fix .hd_inner {
  position: relative;
  max-width: 1640px;
  height: 86px;
}
#header.hd_fix .hd_logo img {
  width: 260px;
  height: auto;
}

.hd_menu_wrap {
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-right: 40px;
  gap: 25px;
  z-index: 5;
}
.hd_menu {
  align-items: center;
  padding-right: 15px;
}
.hd_menu > li {
  margin-left: 40px;
}
.hd_menu > li:first-child {
  margin-left: 0;
}
.hd_menu > li > a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.7rem;
}
.hd_menu > li > a:hover {
  color: #0A8FDE;
}
  @media screen and (max-width: 1299px) {
    .hd_menu_wrap {
      gap: 20px;
    }
    .hd_menu {
      padding-right: 10px;
    }
    .hd_menu > li {
      margin-left: 25px;
    }
    .hd_menu > li > a {
      font-size: 1.6rem;
    }
  }

.gn_drop_menu {
  position: relative;
}
.gn_drop_menu > span {
  color: #0049A5;
  cursor: default;
  font-size: 1.7rem;
  transition: all 0.2s ease-in-out 0s;
}
.gn_drop_menu:hover > span {
  color: #0A8FDE;
}
.sub_menu {
  position: absolute;
  top: 100%;
  left: calc(50% - 100px);
  padding: 15px 0 0 0;;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  text-align: center;
}
.gn_drop_menu:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.sub_menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  background: #0A8FDE;
  font-size: 1.5rem;
  padding: 14px 12px;
  border-bottom: solid 1px rgba(255,255,255,0.5);
}
.sub_menu li a:hover {
  filter: brightness(1.1);
}
.sub_menu li:last-child a {
  border-bottom: none;
}
  @media screen and (max-width: 1299px) {
    .gn_drop_menu > span {
      font-size: 1.6rem;
    }
  }

.hd_contact a {
  display: block;
  width: 192px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  border: solid 1px #0049A5;
  background: #0049A5;
  color: #fff;
  text-decoration: none;
}
.hd_contact a:hover {
  border: solid 1px #0A8FDE;
  background: #0A8FDE;
}
.hd_contact a span {
  display: inline-block;
  padding-left: 28px;
  background: url("../img/ico_mail01.svg") 0 center no-repeat;
  background-size: 18px auto;
}
/*.hd_contact a:hover span {
  background: url("../img/ico_mail02.svg") 0 center no-repeat;
  background-size: 18px auto;
}*/
  @media screen and (max-width: 1299px) {
    .hd_contact {
      right: 170px;
    }
    .hd_contact a {
      width: 180px;
    }
  }

.hd_english a {
  display: block;
  width: 120px;
  line-height: 32px;
  border-radius: 17px;
  text-align: center;
  border: solid 1px #0049A5;
  text-decoration: none;
}
.hd_english a:hover {
  border: solid 1px #0A8FDE;
  background: #0A8FDE;
  color: #fff;
}
  @media screen and (max-width: 1299px) {
    .hd_english a {
      width: 110px;
    }
  }
  @media screen and (max-width: 999px) {
    .hd_menu_wrap {
      padding: 0;
      display: block;
      width: auto;
      height: auto;
      position: absolute;
      right: 18.2vw;
      top: 3vw;
    }
    .hd_english a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 12.26vw;
      height: 12.26vw;
      line-height: 1.5;
      border-radius: 50%;
      font-size: 4.8vw;
    }
    .hd_english a:hover {
      border: solid 1px #0049A5;
      background: #fff;
      color: #0049A5;
    }
  }

/*----------------------------------------------------
	パンくずリスト
----------------------------------------------------*/
#crumbs {
  padding: 0 40px;
}
#crumbs ul {
  display: flex;
}
#crumbs li {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #0049a5;
  white-space: nowrap;
  background: url("../img/ico_arrow04.svg") right center no-repeat;
  background-size: 6px auto;
  margin-right: 13px;
  padding-right: 20px;
}
#crumbs li:last-child {
  margin-right: 0;
  padding-right: 0;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  background: none;
}
#crumbs li br {
  display: none;
}
.crumbs_home a {
  padding-left: 24px;
  background: url("../img/ico_home01.svg") 0 center no-repeat;
  background-size: 18px auto;
}
  @media screen and (max-width: 999px) {
    #crumbs {
      padding: 0 0 8vw 0;
    }
    #crumbs .inner {
      padding: 0;
    }
    #crumbs ul {
      display: flex;
    }
    #crumbs li {
      font-size: 3vw;
      background-size: 1.2vw auto;
      margin-right: 2vw;
      padding-right: 3vw;
    }
    .crumbs_home a {
      padding-left: 5.33vw;
      background-size: 4vw auto;
    }
  }

/*----------------------------------------------------
	フッター
----------------------------------------------------*/
#footer {
  position: relative;
  z-index: 5;
  background: #0049A5;
  color: #78AEDE;
  padding: clamp(100px, 10vw, 120px) 30px clamp(100px, 10vw, 120px);
}
#footer::before {
  position: absolute;
  left: 0;
  top: -25px;
  content: "";
  width: 100%;
  height: 120px;
  background: url("../img/bg_wave02.png") center top repeat-x;
  background-size: 840px auto;
}
.ft_wrap {
  line-height: 1.65;
}
.ft_info {
  max-width: 450px;
}
.ft_info h2 {
  margin-bottom: 30px;
}
.ft_info p {
  font-size: 1.8rem;
}
  @media screen and (max-width: 1259px) {
    .ft_info p {
      font-size: 1.6rem;
    }
  }
  @media screen and (max-width: 1169px) {
    #footer {
      padding-bottom: 60px;
    }
    .ft_wrap {
      display: block;
      padding-bottom: 80px;
    }
    .ft_info {
      margin: 0 auto;
      text-align: center;
    }
  }
  @media screen and (max-width: 999px) {
    #footer {
      padding: 18vw 7.69vw 12.82vw;
    }
    #footer::before {
      top: -5vw;
      height: 15vw;
      background-size: 128vw auto;
    }
    #footer .wrapper {
      padding: 0;
    }
    .ft_wrap {
      padding-bottom: 14vw;
    }
    .ft_info {
      max-width: 100%;
    }
    .ft_info h2 {
      margin-bottom: 5.64vw;
    }
    .ft_info h2 img {
      width: 63.58vw;
      height: auto;
    }
    .ft_info p {
      text-align: left;
      font-size: 3.84vw;
    }
    .ft_info p br {
      display: none;
    }
  }

.ft_menu {
  padding-top: 30px;
}
.ft_menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}
.ft_menu a:hover {
  text-decoration: underline;
}
.ft_menu_box {
  padding: 25px 0 55px;
}
.ft_menu_home a {
  font-size: 1.8rem;
}
.ft_menu_box li {
  margin-top: 12px;
}
.ft_menu01 ul {
  display: grid;
  column-gap: 0;
  row-gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ft_menu01 li,
.ft_menu02 li {
  padding-right: 60px;
}
  @media screen and (max-width: 1259px) {
    .ft_menu01 li,
    .ft_menu02 li {
      padding-right: 40px;
    }
  }
  @media screen and (max-width: 1169px) {
    .ft_menu {
      max-width: 800px;
      margin: 0 auto;
      padding-top: 50px;
    }
    .ft_menu_box {
      justify-content: flex-start;
      padding: 20px 0 50px;
    }
    .ft_menu01 li,
    .ft_menu02 li {
      padding-right: 70px;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_menu {
      padding-top: 11.53vw;
    }
    .ft_menu a {
      font-size: 3.84vw;
    }
    .ft_menu_box {
      display: block;
      padding: 3.33vw 0 14vw;
    }
    .ft_menu_home a {
      font-size: 4.61vw;
    }
    .ft_menu_box ul {
      display: flex!important;
      justify-content: space-between!important;
      flex-wrap: wrap;
    }
    .ft_menu_box li {
      width: calc(50% - 1vw);
      margin-top: 4vw;
    }
    .ft_menu01 li,
    .ft_menu02 li {
      grid-column: auto!important;
      grid-row: auto!important;
      padding-right: 0;
    }
    .ft_menu02 {
      margin-bottom: 11.53vw;
    }
  }

/* 左列：1〜5 */
.ft_menu01 li:nth-child(1) { grid-column: 1; grid-row: 1; }
.ft_menu01 li:nth-child(2) { grid-column: 1; grid-row: 2; }
.ft_menu01 li:nth-child(3) { grid-column: 1; grid-row: 3; }
.ft_menu01 li:nth-child(4) { grid-column: 1; grid-row: 4; }
.ft_menu01 li:nth-child(5) { grid-column: 1; grid-row: 5; }

/* 右列：6〜10 */
.ft_menu01 li:nth-child(6)  { grid-column: 2; grid-row: 1; }
.ft_menu01 li:nth-child(7)  { grid-column: 2; grid-row: 2; }
.ft_menu01 li:nth-child(8)  { grid-column: 2; grid-row: 3; }
.ft_menu01 li:nth-child(9)  { grid-column: 2; grid-row: 4; }
.ft_menu01 li:nth-child(10) { grid-column: 2; grid-row: 5; }

.ft_menu03 {
  padding-top: 12px;
}
.ft_menu03 h3 {
  font-size: 1.8rem;
}
  @media screen and (max-width: 999px) {
    .ft_menu03 {
      padding-top: 0;
    }
    .ft_menu03 h3 {
      font-size: 4.1vw;
    }
  }

.ft_menu_policy {
  text-align: right;
}
.ft_menu_policy a {
  font-size: 1.4rem;
  color: #ccc;
}
.copyright {
  position: absolute;
  left: 20px;
  bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
}
  @media screen and (max-width: 1169px) {
    .ft_menu_policy {
      text-align: left;
    }
    .copyright {
      width: 100%;
      text-align: center;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_menu_policy a {
      font-size: 3.58vw;
    }
    .copyright {
      font-size: 3.33vw;
      text-align: left;
    }
  }

.ft_fig01 {
  position: absolute;
  top: -85px;
  left: calc(50% - 760px);
  z-index: 5;
}
  @media screen and (max-width: 1549px) {
    .ft_fig01 {
      left: 50px;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_fig01 {
      top: -23vw;
      left: 10.25vw;
    }
    .ft_fig01 img {
      width: 12.82vw;
      height: auto;
    }
  }

.ft_fig02 {
  position: absolute;
  top: -140px;
  right: calc(50% - 800px);
  z-index: 5;
}
  @media screen and (max-width: 1549px) {
    .ft_fig02 {
      right: 50px;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_fig02 {
      top: -21.33vw;
      right: 7.69vw;
    }
    .ft_fig02 img {
      width: 30.76vw;
      height: auto;
    }
  }

.ft_wave01 {
  position: absolute;
  bottom: 90px;
  left: calc(50% - 880px);
}
  @media screen and (max-width: 1829px) {
    .ft_wave01 {
      left: 30px;
      bottom: 220px;
    }
  }
  @media screen and (max-width: 1169px) {
    .ft_wave01 {
      left: 110px;
      bottom: auto;
      top: 120px;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_wave01 {
      left: 53vw;
      top: 65vw;
    }
    .ft_wave01 img {
      width: 14.35vw;
      height: auto;
    }
  }

.ft_wave02 {
  position: absolute;
  bottom: 150px;
  right: calc(50% - 820px);
}
  @media screen and (max-width: 1599px) {
    .ft_wave02 {
      right: 120px;
      bottom: 50px;
    }
  }
  @media screen and (max-width: 1169px) {
    .ft_wave02 {
      right: 90px;
      bottom: 150px;
    }
  }
  @media screen and (max-width: 999px) {
    .ft_wave02 {
      right: 11.53vw;
      bottom: 26vw;
    }
    .ft_wave02 img {
      width: 14.35vw;
      height: auto;
    }
  }

/*----------------------------------------------------
  共通タイトル
--------------------------------------------------- */
#lowerVisual {
  position: relative;
  padding: 158px 0 20px;
  background: #CDE5F9;
  margin-bottom: 80px;
}
.page_ttl {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #0049a5;
}
.page_ttl small {
  display: block;
  font-size: 2rem;
}
.page_ttl span {
  display: block;
  font-size: 3.6rem;
}
  @media screen and (max-width: 999px) {
    #lowerVisual {
      padding: 25vw 4vw 6.66vw;
      margin-bottom: 10.33vw;
    }
    .page_ttl {
      min-height: inherit;
    }
    .page_ttl small {
      font-size: 4vw;
    }
    .page_ttl span {
      font-size: 6.66vw;
    }
  }

.main_item .page_ttl_img {
  position: absolute;
  left: calc(50% - 600px);
  bottom: 40px;
}
  @media screen and (max-width: 999px) {
    .main_item .page_ttl_img {
      left: 4vw;
      bottom: -8vw;
    }
    .main_item .page_ttl_img img {
      width: 15vw;
      height: auto;
    }
  }

.main_area .page_ttl_img {
  position: absolute;
  right: calc(50% - 490px);
  bottom: -35px;
}
  @media screen and (max-width: 999px) {
    .main_area .page_ttl_img {
      right: 4.4vw;
      bottom: -4vw;
    }
    .main_area .page_ttl_img img {
      width: 12vw;
      height: auto;
    }
  }

.main_information .page_ttl_img {
  position: absolute;
  right: calc(50% - 450px);
  bottom: -30px;
}
  @media screen and (max-width: 999px) {
    .main_information .page_ttl_img {
      right: 8vw;
      bottom: -4.26vw;
    }
    .main_information .page_ttl_img img {
      width: 6.41vw;
      height: auto;
    }
  }

.main_otoiawase .page_ttl_img {
  position: absolute;
  right: calc(50% - 480px);
  bottom: 40px;
}
  @media screen and (max-width: 999px) {
    .main_otoiawase .page_ttl_img {
      right: 6.66vw;
      bottom: 2vw;
    }
    .main_otoiawase .page_ttl_img img {
      width: 14vw;
      height: auto;
    }
  }

.sub_ttl01 {
  margin-bottom: 20px;
}
.sub_ttl01 span {
  display: block;
  font-size: 3.2rem;
}
.sub_ttl01 small {
  display: block;
  font-size: 2rem;
  margin-top: 3px;
  color: #0049A5;
  font-weight: 300;
  font-style: italic;
}
  @media screen and (max-width: 999px) {
    .sub_ttl01 {
      margin-bottom: 2vw;
    }
    .sub_ttl01 span {
      display: block;
      font-size: 6.66vw;
    }
    .sub_ttl01 small {
      font-size: 4.1vw;
      margin-top: 0.33vw;
    }
  }

.sub_ttl02 {
  margin-bottom: 20px;
}
.sub_ttl02 span {
  display: block;
  font-size: 2.8rem;
}
.sub_ttl02 small {
  display: block;
  font-size: 1.8rem;
  margin-top: 3px;
  color: #0049A5;
  font-weight: 300;
  font-style: italic;
}
  @media screen and (max-width: 999px) {
    .sub_ttl02 {
      margin-bottom: 4vw;
    }
    .sub_ttl02 span {
      font-size: 6.15vw;
    }
    .sub_ttl02 small {
      font-size: 4.1vw;
      margin-top: 0.33vw;
    }
  }

.sub_ttl03 {
}
  @media screen and (max-width: 999px) {

  }

/*----------------------------------------------------
  共通ボタン
--------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  display:none;
}
.pagetop a:hover {
  opacity: 0.8;
}
  @media screen and (max-width: 999px) {
    .pagetop {
      right: 4vw;
      bottom: 4vw;
    }
    .pagetop a:hover {
      opacity: 1;
    }
    .pagetop img {
      width: 12vw;
      height: auto;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
}
.btn01 a {
  display: inline-block;
  min-width: 142px;
  padding: 5px 20px;
  border: solid 1px #ccc;
  border-radius: 22px;
  text-align: center;
  text-decoration: none;
  font-size: 1.7rem;
  background: url("../img/ico_arrow01.svg") right 15px center no-repeat;
  background-size: 12px auto;
  background-color: #fff;
}
.btn01 a:hover {
  color: #fff;
  border: solid 1px #0A8FDE;
  background: url("../img/ico_arrow02.svg") right 15px center no-repeat;
  background-size: 12px auto;
  background-color: #0A8FDE;
}
  @media screen and (max-width: 999px) {
    .btn01 a {
      min-width: 41vw;
      padding: 1.28vw 4vw;
      border-radius: 6.41vw;
      font-size: 4.35vw;
      background: url("../img/ico_arrow01.svg") right 3.84vw center no-repeat;
      background-color: #fff;
      background-size: 3vw auto;
    }
    .btn01 a:hover {
      color: #0049A5;
      border: solid 1px #0049A5;
      background: url("../img/ico_arrow01.svg") right 3.84vw center no-repeat;
      background-size: 3vw auto;
      background-color: #fff;
    }
  }

.btn02 a {
  display: inline-block;
  min-width: 200px;
  padding: 10px 15px;
  border-radius: 30px;
  background: #0049A5;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1.6;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
}
.btn02 a:hover {
  background: #0A8FDE;
}
  @media screen and (max-width: 999px) {
    .btn02 a {
      min-width: 48vw;
      padding: 2.56vw 4vw;
      border-radius: 7.69vw;
      font-size: 4.35vw;
    }
  }

/*----------------------------------------------------
  共通テーブル
--------------------------------------------------- */

/*----------------------------------------------------
  共通メニュー
--------------------------------------------------- */

  /*スマホナビ*/
  @media screen and (max-width: 999px) {
    /*transition*/
    .trs {
      -webkit-transition: all .1s ease;
      -moz-transition: all .1s ease;
      -ms-transition: all .1s ease;
      -o-transition: all .1s ease;
      transition: all .1s ease;
    }
    /*trp*/
    .trp {
      -webkit-transition: opacity .1s ease;
      -moz-transition: opacity .1s ease;
      -ms-transition: opacity .1s ease;
      -o-transition: opacity .1s ease;
      transition: opacity .1s ease;
      opacity: 1;
      filter: alpha(opacity=100);
    }
    .trp:hover {
      opacity: .6;
      filter: alpha(opacity=60);
    }
    /* trs-dr */
    .trs-dr02 {
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      -ms-transition-duration: .2s;
      -o-transition-duration: .2s;
      transition-duration: .2s;
    }
    .trs-dr03 {
      -webkit-transition-duration: .3s;
      -moz-transition-duration: .3s;
      -ms-transition-duration: .3s;
      -o-transition-duration: .3s;
      transition-duration: .3s;
    }
    .trs-dr05 {
      -webkit-transition-duration: .5s;
      -moz-transition-duration: .5s;
      -ms-transition-duration: .5s;
      -o-transition-duration: .5s;
      transition-duration: .5s;
    }
    .trs-dr06 {
      -webkit-transition-duration: .6s;
      -moz-transition-duration: .6s;
      -ms-transition-duration: .6s;
      -o-transition-duration: .6s;
      transition-duration: .6s;
    }
    .trs-dr08 {
      -webkit-transition-duration: .8s;
      -moz-transition-duration: .8s;
      -ms-transition-duration: .8s;
      -o-transition-duration: .8s;
      transition-duration: .8s;
    }
    .trs-dr12 {
      -webkit-transition-duration: 1.2s;
      -moz-transition-duration: 1.2s;
      -ms-transition-duration: 1.2s;
      -o-transition-duration: 1.2s;
      transition-duration: 1.2s;
    }
    /* trs-tf */
    .trs-tfCb {
      -webkit-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -moz-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -ms-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      -o-transition-timing-function: cubic-bezier(0, .96, .4, .99);
      transition-timing-function: cubic-bezier(0, .96, .4, .99);
    }
    .menuTrigger {
      box-sizing: border-box;
      position: fixed;
      z-index: 150;
      top: 7.1vw;
      right: 6.8vw;
      display: block;
      width: 11.79vw;
      height: 11.79vw;
      border-radius: 50%;
      cursor: pointer;
      transition: .3s;
      background: #0049A5;
    }
    .menuTrigger.open {
      z-index: 150;
      position: fixed;
      top: 3.84vw;
      right: 5.64vw;
      background: none;
    }
    .menuIcon_line {
      position: absolute;
      left: calc(50% - 2.1vw);
      width: 4.2vw;
      height: 2px;
      background: #fff;
    }
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 12px);
    }
    .menuIcon_line:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 10px);
    }
    /* open */
    .menuTrigger.open .menuIcon_line {
      background: #fff;
      width: 7vw;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(1) {
      top: 50%;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(2) {
      opacity: 0;
    }
    .menuTrigger.open .menuIcon_line:nth-of-type(3) {
      top: 50%;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    #hbNav {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0 11.53vw;
      background-color: rgba(0,73,165,0.965);
      z-index: 120;
      overflow-y: visible;
      overflow-x: hidden;
      -webkit-overflow-scrolling: auto;
      overflow-scrolling: auto;
    }
    .hb_inner {
      background: url("../img/fig_wave02.svg") 0 11.53vw no-repeat;
      background-size: 14.35vw auto;
      display: table;
      width: 100%;
      height: 100%;
      padding: 24vw 0 11.53vw 0;
    }
    .hb_box {
      line-height: 1.6;
      color: rgba(255,255,255,0.3);
      padding-bottom: 12vw;
      background: url("../img/fig_wave02.svg") right 0 bottom no-repeat;
      background-size: 14.35vw auto;
    }
    .hb_box h3 {
      font-weight: 400;
      font-size: 5.12vw;
      margin-bottom: 3.84vw;
      letter-spacing: 0.015em;
    }
    .hb_box li {
      border-bottom: solid 1px #336DB7;
    }
    .hb_box li > a,
    .hb_box li > span {
      position: relative;
      color: #fff;
      text-decoration: none;
      display: block;
    }
    .hb_box li > a::after,
    .hb_box li > span::after {
      position: absolute;
      right: 2vw;;
      top: calc(50% - 1.7vw);
      z-index: 5;
      content: "";
      background: url("../img/ico_arrow03.svg") center center no-repeat;
      background-size: 3.33vw auto;
      width: 3.33vw;
      height: 3.4vw;
      transition: all 0.2s ease-in-out 0s;
    }
    .hb_menu01 {
      margin-bottom: 7.69vw;
    }
    .hb_menu01 li a,
    .hb_menu01 li span {
      font-size: 5.12vw;
      padding-top: 2.82vw;
      padding-bottom: 2.82vw;
    }
    .hb_menu02 li a {
      font-size: 4.1vw;
      padding-top: 2.4vw;
      padding-bottom: 2.4vw;
    }
    .accordion_btn {
      position: relative;
      display: block;
    }
    .accordion_btn a {
      display: inline-block!important;
      background: none!important;
    }
    .hb_sub_menu {
      display: none;
      background: rgba(10,143,222,0.5);
      padding: 1.28vw 5vw;
    }
    .hb_sub_menu li {
      border-bottom: solid 1px rgba(255,255,255,0.3);
    }
    .hb_sub_menu li:last-child {
      border-bottom: none;
    }
    .hb_sub_menu li a {
      font-size: 4.1vw;
      padding-top: 2.66vw;
      padding-bottom: 2.66vw;
    }
    .hb_box li span.is-active::after {
      transform:rotate(90deg);  
    }
    .hb_policy {
      margin-top: 7.69vw;
    }
    .hb_policy a {
      text-decoration: none;
      color: #ccc;
    }


  }
  @media screen and (max-width: 579px) {
    .menuIcon_line:nth-of-type(1) {
      top: calc(50% - 7px);
    }
    .menuIcon_line:nth-of-type(3) {
      top: calc(50% + 5px);
    }
  }