@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ol, ul {list-style: none;}
a{text-decoration: none;color:#222;}
a:hover {opacity: 0.7 ;}
html {scroll-behavior: smooth;font-size: 62.5%;}
body {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    overflow-wrap: break-word;
    word-break: normal;
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	color:#222;
}
header{
    display: block;
    position: fixed;
    height: 60px;
    width: 100%;
    top: 0;
    z-index: 99999;
}
.cntHead{
    display: block;
    z-index: 10000;
    background-color: #1F65AC;
    position: fixed;
    width: 100%;
    opacity: 0.95;
}
.hd_menu{
    display: block;
    z-index: 10000;
    background-color: #1F65AC;
    margin-top: 70px;
    position: relative;
}
.cntHead ul.menu {
    display: flex;
    max-width: 1000px;
    margin: auto;
    height: 60px;
}
.cntHead ul.menu li {
    width: calc(100% / 4 );
    text-align: center;
}
.cntHead ul.menu li > a {
    color: #fff;
    display: inline-block;
    padding: 3%;
    width: 100%;
    font-size: 1.1rem;
}

.cntHead ul.menu li + li{border-left:1px solid #fff;}
.cntHead ul.menu img{width: 10%;margin-bottom: 0.5rem;}

@media (max-width: 599px) {
    header{position: unset;}
    .cntHead ul.menu{padding: 2% 0;}
    .cntHead ul.menu img{width: 25%;}
}
/* ナビ */
nav.gnav{
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    /*z-index: 100;*/
    background-color: #fff;
    /*height: 100vh;
    display: none;*/
    overflow-y: auto;
    pointer-events: auto;
  }

  nav.gnav ul li {border-bottom: 1px dotted #ccc;  }
  nav.gnav ul li a {
    display: inline-block;
    width: 100%;
    padding: 2em;
  }
  nav.gnav ul li a:hover{background-color: #174C81;color: #fff;font-weight: bold;transition: all .5s ease;}

  nav.gnav.open {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawers {
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 10000;
    pointer-events: none;
  }

  .drawer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
    height: 60px;
    padding: 0 1em;
    pointer-events: auto;
  }
  .cntHead .drawers{top: 60px;}

  @media (max-width: 768px) {
    .drawers {display: block;}
    .drawer {height: 40px;}
  }
  .navbar_toggle {z-index: 999;}
  .navbar_toggle_icon {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: #174C81;
    -webkit-transition: ease .5s;
    transition: ease .5s;
  }
  .navbar_toggle_icon:nth-child(1) {top: 0;}
  .navbar_toggle_icon:nth-child(2) {margin: 8px 0;}
  .navbar_toggle_icon:nth-child(3) {top: 0;}
  .navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  .navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .navbar_toggle {margin: 0 0 0 auto;}

/* ナビ */

/* Main */
main{
    width: 100%;
    position: relative;
    top: 140px;
    margin-bottom: 10%;
}
main img{width: 100%;}
main > section.secfull{
    max-width: none;
}
@media screen and (max-width: 599px) {
    main{top: 100px;}
}
/*-------------------------*/
/*　　TOPへボタン　　　*/
/*-------------------------*/
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 2%;
    bottom: 5%;
    background: #866f44;
    opacity: 0.6;
    border-radius: 50%;
}
#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }

#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d8';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
@media screen and (max-width: 599px) {
    #page_top {
        width: 40px;
        height: 40px;
    }
    #page_top a{
        width: 40px;
        height: 32px;
    }
}
/* -------------------------
    footer
------------------------- */
.sec_ft{
    display: block;
    margin: auto;
    max-width: 1000px;
    width: 100%;
    padding: 2% 0;
}
.sec_ft > h3{
    font-size: 3.5rem;
    font-family: serif;
    position: relative;
    text-align: center;
    margin: 3% 0 7%;
}
.sec_ft > h3:after{
    content: '';
    width: 110px;
    height: 1px;
    display: inline-block;
    background-color: #222;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 55px)
}
.sec_ft img {width: 100%;}
.ftcat p{font-size: 85%;}

.cnt_ft_guide > p {
    text-align: center;
    padding: 2%;
}
.cnt_ft_guide > ul{
    display: flex;
    flex-wrap: wrap;
}
.cnt_ft_guide > ul > li {
    width: calc( 100% / 2 );
    text-align: center;
    padding: 2%;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
}
.cnt_ft_guide > ul > li:nth-of-type(2n-1) {border-left: none;}
.cnt_ft_guide > ul > li:nth-of-type(2) , .cnt_ft_guide > ul > li:first-of-type {border-top:1px solid #ccc;}

.tpCat img{
      width: 80%;
}

/* -------------------------
    横並び
------------------------- */
.cnt-col3 , .cnt-col2 , .cnt-col2-1, .cnt-col4, .cnt-col5, .cnt-col6{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    /*margin: 5% 0;*/
}
.cnt-col3 > div{
    width:calc(96% / 3);
    margin: 0 2% 2% 0;
}
.cnt-col3 > div:nth-of-type(3n){margin-right: 0;}

.cnt-col2 > div{
    width: calc(98% / 2);
    margin: 0 2% 2% 0;
}
.cnt-col2 > div:nth-of-type(2n){margin-right: 0;}

.cnt-col2-1 > div{
    width: calc(96% / 2);
    margin: 0 2% 2% 0;
}
.cnt-col2-1 > div:nth-of-type(2n){margin-right: 0;}

.cnt-col5 > div{
    width:calc(96% / 5);
    margin: 0 1% 1% 0;
}
.cnt-col5 > div:nth-of-type(5n){margin-right: 0;}

.cnt-col6 > div{
    width:calc(95% / 6);
    margin: 0 1% 1% 0;
}
.cnt-col6 > div:nth-of-type(6n){margin-right: 0;}

.cnt-col4 > div{
    width:calc(96% / 4);
    margin: 0 1% 1% 0;
}
.cnt-col4 > div:nth-of-type(4n){margin-right: 0;}


.bg_ylw{background-color: #FEF4EA;}
.bg_nvy{background-color: #1E294A;color: #fff;}
.bn_gry{background-color: #f2f2f2;}

.mgn_tb5{margin: 5% 0;}
.mgn_t3{margin-top: -3%;}
.mgn_t5{margin-top: 5%;}
.mgn_b5{margin-bottom: 5%;}
.mgn_b3{margin-bottom: 3%;}
.mgn_b10{margin-bottom: 10%;}
.pd_tb3{padding: 3% 0;}
.pd_tb2{padding: 2% 0;}
.pd_t3{padding-top: 3%;}
.pd_b1{padding-bottom: 1%;}

.fnt60{font-size: 60%;}
.fnt75{font-size: 75%;}
.fnt120{font-size: 120%;}
.fnt150{font-size: 150%;}

.f_bld{font-weight: bold;}
.f-bldn{font-weight: lighter;}

.txt_ct{text-align: center;}
.txt_lt{text-align: center;}
.txt_rt{text-align: center;}

.pc{display: block;}
.sp{display: none;}
/* -------------------------
    SP
------------------------- */
@media screen and (max-width: 599px){
    body{font-size: 3.2vw}
    .hd_menu{margin-top: 50px;}

    .sec_ft{padding: 1%;}
    .sec_ft > h3 {font-size: 4.5vw; margin: 10% 0;}
    .cnt_ft_guide > ul > li {padding: 4%}

    .pc{display: none;}
    .sp{display: block;}

    .cnt-col4 > div {
        width: calc(98% / 2);
        margin: 0 2% 2% 0;
    }
    .cnt-col4 > div:nth-of-type(2n){margin-right: 0;}
    .cnt-col5 > div, .cnt-col6 > div{
        width:calc(97% / 3);
        margin: 0 1% 1% 0;
    }
    .cnt-col5 > div:nth-of-type(3n), .cnt-col6 > div:nth-of-type(3n){margin-right: 0;}


    .cnt-col2-1 > div{
        width: 100%;
        margin: 0 0 5% 0;
    }

}