@charset "UTF-8";
/* CSS Document */

/*
--------------- common -------------------*/
body {
  background: #fff;
}
iframe[name='google_conversion_frame'] {
  background: #00395e;
  min-width: auto;
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
}
#container {
  min-width: auto;
}
* {
  box-sizing: border-box;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.flex{
  display: flex;
}
@media screen and (max-width:767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*
--------------- global_header -------------------*/
#global_header {
  background: #00395e;
}
.global_header_inner {
  width: auto;
  max-width: 1060px;
  height: 50px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.global_header_logo img {
  width: 200px;
  height: 34px;
}
@media screen and (max-width:767px) {
  .global_header_inner {
    justify-content: center;
  }
}
/*
--------------- top_title -------------------*/
.top_title {
  position: relative;
  background-size: cover;
  background: #f5f5f5;
  background-size: auto 100%;
}
.top_title .inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}
.top_title .inner .img{
  position: absolute;
  bottom: 0;
  left: -50px;
}
.top_title .inner .flex{
  align-items: center;
  position: relative;
}
.top_title .tit {
  margin-bottom: 35px;
  line-height: 1;
}
.top_title .txt_ttl{
  padding: 37px 0 114px 0;
}
.top_title .lead {
  font-size: 14px;
  line-height: 1.6;
  max-width: 630px;
  padding-left: 27px;
  color: #383838;
  padding: 0 0 0 27px;
  text-shadow: 1px 1px 1px #f5f5f5;
}
.top_title .lead a{
  color: #0a3e6f;
  font-weight: bold;
}
@media screen and (max-width:1000px) {
  .top_title {
    background-position: 30% center;
  }
}
@media screen and (max-width:767px) {
  .top_title .inner .flex{
    flex-direction: column;
  }
  .top_title .inner .img{
    position: static;
  }
  .top_title .txt_ttl {
    padding: 37px 0;
  }
  .top_title {
    padding: 25px 0 0;
    /*
    padding: 30px 18px 72vw;
    background: url(../img/top_title_bg_sp.png) center bottom no-repeat;
    background-size: 100% auto;
    */
    background-image: none;
    background-color: #f5f5f5;
  }
  .top_title .inner {
    padding: 0 18px 20px;
  }
  .top_title .tit {
    margin-bottom: 20px;
    text-align: center;
  }
  .top_title .lead {
    line-height: 1.66;
    margin: 0 auto;
  }
  .top_title .lead .ctl {
    display: none;
  }
}

@media screen and (max-width:320px) {
  .top_title {
    padding: 18px 0 0;
  }
  .top_title .inner {
    padding: 0 16px 17px;
  }
  .top_title .tit {
    margin-bottom: 14px;
  }
  .top_title .lead {
    font-size: 14px;
    line-height: 1.6;
  }
}
/*
--------------- contents -------------------*/
.contents {
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px 30px;
}
.contents h2{
  font-size: 20px;
  margin: 0 auto 40px;
  display: block;
  text-align: center;
  color: #0a3e6f;
}
.contents .menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -15px;
  align-items: stretch;
  align-content: flex-start;
}
.contents .menu li {
  width: 33.333%;
  margin-bottom: 20px;
  padding: 0 15px;
}
.contents .menu li a {
  display: block;
  color: #0a3e6f;
  text-decoration: none !important;
}
.contents .menu li:hover a {
  color: #0a3e6f;
}
.contents .menu li .card {
  width: 100%;
  box-shadow: 0 0 .7em 0 rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease-out;
}
.contents .menu li:hover .card {
  box-shadow: 0 0 .2em 0 rgba(0,0,0,.2);
}
.contents .menu li .img {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 118px!important;

}
.contents .menu li .img_box {
  width: 100%;
  text-align: center;
}
.contents .menu li .txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  background: #e0e8ef;
  height: 60px!important;
}

.contents .menu .light_blue .card .txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  background: #0a3e6f;
  color: #fff;
}
.contents .menu li .txt::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #b5cadc;
  opacity: 0;
  transition: all .3s ease-out;
}
.contents .menu .light_blue .txt::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: #81a2c2;
  opacity: 0;
  transition: all .3s ease-out;
}
.contents .menu li:hover .txt::before {
  opacity: 1;
  width: 100%;
}
.contents .menu li .txt::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-width: 6.5px;
  border-style: solid;
  border-color: #0a3e6f;
  border-top-color: transparent;
  border-left-color: transparent;
  transition: border-color .3s ease-out .3s
}
.contents .menu li:hover .txt::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.contents .menu li .txt p {
  position: relative;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -.1px;
}
.contents .flex .arrow{
  width: 12.5%;
  margin-right: 20px;
}
.contents .flex .arrow img{
  max-height: 580px;
}

.contents .menu .light_blue .txt::after {
  content: '';
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-width: 6.5px;
  border-style: solid;
  border-color: #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  transition: border-color .3s ease-out .3s
}
@media screen and (max-width:1040px) {
  .contents .menu li .txt::after {
    border-width: 7px;
  }
  .contents .menu li .txt p {
    font-size: 15px;
  }
}
@media screen and (max-width:860px) {
  .contents .menu li:last-of-type .img img {
    height: 140px;
  }
  .contents .menu li .txt p .ctl {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .contents {
    padding: 25px 15px 15px;
  }
  .contents .menu {
    margin: 0 -7px;
  }
  .contents .menu li {
    width: 50%;
    margin-bottom: 14px;
    padding: 0 7px;
  }
  .contents .menu li .txt {
    padding: 10px 5px;
  }
  .contents .menu li .txt::after {
    right: 4px;
    bottom: 4px;
    border-width: 5px;
  }
  .contents .menu li .txt p {
    font-size: 12px;
  }
  .contents .menu li .txt p br {
    display: none;
  }
  .contents .menu li:last-of-type .img img {
    height: auto;
  }
  .contents .flex .arrow{
    width: 43.5%;
  }
  .contents .flex .arrow img{
    max-height: none;
  }
}
@media screen and (max-width:320px) {
  .contents {
    padding: 22px 15px 15px;
  }
}
/*
--------------- global_footer -------------------*/
#global_footer {
  background: #00395e;
}
.global_footer_inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 18px 30px;
  line-height: 1;
}
.global_footer_copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.global_footer_copyright img {
  margin-right: 15px;
  width: 73px;
  height: 17px;
}
@media screen and (max-width:767px) {
  .global_footer_inner {
    padding: 18px 15px;
  }
  .global_footer_copyright {
    flex-direction: column;
    font-size: 12px;
    text-align: center;
  }
  .global_footer_copyright img {
    display: block;
    margin: 0 0 8px;
  }
}
/*add css 1126*/
.notice{
  border: 2px solid #e60012;
  border-radius: 10px;
  padding: 15px 30px;
  max-width: 710px;
  margin: 0 auto 40px;
}
.notice h2{
  text-align: center;
  margin-bottom: 20px;
}
.notice p{
  font-size: 15px;
}
.notice a{
  color: #e60012;
}
.content{
  max-width: 780px;
  margin: 0 auto 70px;
}
.content li{
  padding-left: 10px;
  text-indent: -12px;
  font-size: 13px
}

/* -------------------------------
  footer nav
------------------------------- */
.footer_nav {
  display: flex;
  justify-content: center;
}
.base_b1w1j7be,
.section_s1xvkyg8 {
  background-color: #f7f7f7
}
.container_c1jppbi0 {
  padding: 0;
  min-width: 316px;
}
.section_s17ga3ir {
  background-color: #f7f7f7;
  margin-top: 8px;
  padding: 0 16px 16px;
}
.container_c1g1qfi div#eyeDiv > div, .status_s1bb20tr {
  display: none;
}
.link_l1bgi4g {
  color: rgb(51, 51, 51) !important;
  -webkit-text-decoration: none !important;
  text-decoration: none !important;
}
.link_l1bgi4g:hover {
  -webkit-text-decoration: underline !important;
  text-decoration: underline !important;
}
.heading_h6tkg2v {
  margin-bottom: 8px;
  font-weight: 700;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Noto Sans","Helvetica Neue","Helvetica","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  display: none;
}
.heading_h6tkg2v, .linkList_l1pd0hne {
  font-size: .75rem;
  line-height: 1.65
}
.section_s17ga3ir {
  background-color: #f7f7f7;
  margin-top: 8px;
  padding: 0 16px 16px
}
.heading_h107eown {
  padding: 8px 0 16px;
  font-weight: 700;
  font-size: .875rem;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Noto Sans","Helvetica Neue","Helvetica","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  line-height: 1.65
}
.linkList_l1bmlmyg {
  font-size: .75rem;
  line-height: 1.65;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start
}
.linkItem_l1a00p65 {
  margin-bottom: 6px;
  margin-top: 6px;
  line-height: 1em;
  position: static;
  width: auto
}
.linkItem_l1a00p65:not(:last-child) {
  border-right: 1px solid;
  margin-right: 12px;
  padding-right: 12px
}
.toggleStyle_t1n03orb {
  border-radius: 2px;
  content: '';
  margin-right: 16px;
  cursor: pointer;
  background-image: url(../img/k-chevron-down.rev-b0c8be.svg);
  height: 24px;
  width: 24px;
  color: #000;
  background-color: #f1f1f1;
  border-color: #bebebe;
}
.status_s1bb20tr:checked+.headingStyle_hqymkmk .toggleStyle_t1n03orb {
  background-image: url(../img/k-chevron-up.rev-98fc72.svg);
  height: 24px;
  width: 24px;
}
.toggle_t1dyq271 {
  background-color: transparent;
  margin-right: 0;
}
.toggleStyle_t1n03orb:active,
.toggleStyle_t1n03orb:hover {
  background-color: #d7d7d7;
  border-color: #9f9f9f;
}
.label_l1ogtxe {
  width: 100%;
  display: flex;
  cursor: pointer;
  font-weight: 700;
  font-size: .875rem;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Noto Sans","Helvetica Neue","Helvetica","Hiragino Kaku Gothic ProN","Meiryo",sans-serif;
  text-decoration: none;
  color: #000;
}
.headingStyle_hqymkmk {
  font-size: .875rem;
  line-height: unset;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
}
.rightToggle_rv2x6jj {
  flex-direction: row-reverse;
}
.heading_hrmg830 {
  background-color: #f7f7f7;
  padding: 8px 0;
}
.bodyStyle_b1iff4ow {
  display: none;
}
.status_s1bb20tr:checked~.bodyStyle_b1iff4ow {
  display: block;
  background-color: #f7f7f7;
}
@media screen and (min-width:752px) {
  .container_c1jppbi0 {
    padding: 0 32px;
  }
  .heading_hrmg830 {
    display: none;
  }
  .body_b1s5p5o3 {
    display: block;
  }
  .heading_h6tkg2v {
    display: block;
    padding-top: 24px
  }
  .linkList_l1pd0hne {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
  }
  .linkItem_le7h9rp {
    margin-bottom: 6px;
    margin-top: 6px;
    line-height: 1em;
    position: static;
    width: auto
  }
  .linkItem_le7h9rp:not(:last-child) {
    border-right: 1px solid;
    margin-right: 12px;
    padding-right: 12px
  }
  .section_s17ga3ir {
    padding: 0 0 32px
  }
  .heading_h107eown {
    font-size: .75rem;
    line-height: 1.65;
    padding: 8px 0
  }
}
@media screen and (min-width:1232px) {
  .container_c1ew535a, .content_c15ldlld {
    max-width: 1376px
  }
}
@media screen and (min-width:316px) and (max-width:751px) {
  .more_mgg8w9n {
    position: absolute;
    right: 8px
  }
  .quick_qpecq5o {
    display: none
  }
  .adForLarge_avazaab, .adForMedium_a5k6ips {
    display: none!important
  }
  .column_c1v60qkl {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: -webkit-calc((100% - 32px*0)/1);
    width: -moz-calc((100% - 32px*0)/1);
    width: calc((100% - 32px*0)/1);
    margin-left: 32px
  }
  .column_c1v60qkl:nth-child(n+1) {
    margin-left: 0
  }
  .column_c1v60qkl:nth-child(n+2) {
    margin-top: 24px
  }
  .column_c1v60qkl:nth-child(n+2):before {
    background-color: #f1f1f1;
    content: '';
    display: block;
    height: 1px;
    margin-bottom: 24px
  }
  .fullSize_f1ay5aho {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%
  }
  .halfSize_h1bhqiyd {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    min-width: 50%;
    max-width: 50%;
    width: 50%
  }
  .halfSize_h1bhqiyd:not(first-child):nth-child(odd) {
    padding-left: 8px
  }
  .halfSize_h1bhqiyd:not(first-child):nth-child(even) {
    padding-right: 8px
  }
  .text_t1x4178u {
    font-size: .75rem;
    line-height: 1.65
  }
  .section_s151cdd7 {
    background-color: #f7f7f7
  }
  .primary_p1lhvcsg {
    padding-top: 8px
  }
  .subSection_syam62v {
    border-top: 1px solid #e8e8e8;
    padding-top: 16px
  }
  .panel_p1j46fkg {
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 16px
  }
  .panel_p1j46fkg *::selection {
    background: none;
  }
  .panel_p1j46fkg *::-moz-selection {
    background: #none;
  }
  .linkList_l1pd0hne {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 16px
  }
  .linkItem_le7h9rp {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: -webkit-calc((100% - 2px*1)/2);
    width: -moz-calc((100% - 2px*1)/2);
    width: calc((100% - 2px*1)/2);
    margin-left: 2px
  }
  .linkItem_le7h9rp:nth-child(2n+1) {
    margin-left: 0
  }
  .linkItem_le7h9rp:nth-child(n+3) {
    margin-top: 2px
  }
  .linkItem_le7h9rp:nth-child(n) {
    position: relative;
    width: -webkit-calc(50% - 12px);
    width: -moz-calc(50% - 12px);
    width: calc(50% - 12px);
    margin: 2px 0 2px 12px
  }
  .linkItem_le7h9rp:nth-child(n):before {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-origin: content-box;
    background-color: transparent;
    background-image: url(../img/bullet.rev-8b6e7f0.svg);
    left: -12px;
    position: absolute;
    vertical-align: text-bottom;
    height: 19px;
    width: 12px;
    min-width: 12px;
    content: ''
  }
}
/* -------------------------------
footer nav
------------------------------- */
