@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
    color: #595757;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    -ms-transition: opacity .3s;
    transition: opacity .3s;
}
a:hover{
    opacity: .4;
}
a[target=_blank]:after {
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-weight: normal;
  font-size: .8em;
  position: relative;
  top: -.2em;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 62.5%;
  font-family: "Shuei MaruGo B", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
header {
    position: absolute;
    left: 0;
    width: 100vw;
    z-index: 5;
}
header.fixed {
    position: fixed;
    top: 0;
}
header h2 {
    position: absolute;
    right: 20px;
    top: 20px;
    background: url(../images/logo_ttl_b.svg);
    width: 100px;
    height: 107px;
    background-size: contain;
    text-indent: -999999px;
    z-index: 100;
}
header .hamburger {
    position: absolute;
    width: 45px;
    height: 30px;
    left: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 300;
    display: block;
}
.hamburger__line {
    position: absolute;
    width: 45px;
    height: 2px;
    background-color: #333333;
    transition: all .6s;
}
header.bk .hamburger__line {
    background-color: #ffffff;
}
header.bk h2 {
    background: url(../images/logo_ttl_w.svg);
    width: 100px;
    height: 107px;
    background-size: contain;
}
.hamburger__line--2 {
    top: 15px;
}
.hamburger__line--3 {
    top: 30px;
}
.nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 15px;
}
.nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
}
.nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 15px;
}
header .menu {
    transform: translateX(-100%);
    transition: opacity 0s ease 0.6s,transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
header .menu {
    width: 340px;
    margin-left: auto;
    background-color: rgba(255,255,255, .8);
    position: relative;
    padding-top: 50px;
    z-index: 1;
    box-sizing: border-box;
    position: absolute;
    max-height: 100vh;
}
header .menu ul {
    padding: 30px;
}
header .menu ul:last-of-type {
    padding-top: 0;
}
header .menu  li {
    margin-bottom: 20px;
}
header .menu  li:last-of-type {
    margin-bottom: 0;
}
header .menu  li a {
    font-size: 1.6rem;
    color: #000;
    display: block;
}
header .menu  li.off a {
    pointer-events: none;
    opacity: .5;
}
.nav-open header .menu  {
    opacity: 1;
    pointer-events: inherit;
    transform: translateX(0px);
    transition: opacity 0s ease,transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.gnav .menu {
    opacity: 0;
}
.nav-open .menu {
    opacity: 1;
    transition: .4s;
}
#footer {
    position: relative;
}
#footer::before {
    background: url(../images/bg_footer.jpg) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    padding: 65px 0 0 0;
    overflow: hidden;
    background-color: #ffffff;
    display: block;
    content: "";
    width: 100%;
    height: 0;
    padding-top: 36%;
}
#footer a {
    color: #02014d;
}
#footer .foot_inner {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 20px;
}
#footer .foot_inner > p.credit {
    font-size: 1.2rem;
    color: #02014d;
    line-height: 1.88;
    padding-bottom: 20px;
}
#footer li {
    margin: 0 20px;
    display: inline-block;
}
#footer li img {
    height: 30px;
}
#footer #foot_hobo_nav li {
    margin: 0 15px;
    font-size: 1.5rem;
}
#footer .footer__text-links ul {
    clear: both;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 0px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
}
#footer .footer__text-links ul li {
    margin: 0;
}
#footer .footer__text-links ul li:last-of-type:after {
    display: none;
}
#footer .footer__text-links ul li:after {
    content: "/";
    display: inline-block;
    margin: 0 20px;
}
#footer .copyright {
    margin: 25px 0;
    text-align: center;
    color: #02014d;
    font-size: 1rem;
}
@media screen and (max-width: 768px){
    img {
        width: 100%;
    }
    header h2 {
        top: 10px;
        right: 10px;
        width: 46px;
        height: 50px;
    }
    header.bk h2 {
        width: 46px;
        height: 50px;
    }
    header .hamburger {
        left: 15px;
        top: 15px;
        width: 30px;
        height: 17px;
    }
    .hamburger__line {
        width: 28px;
        height: 1px;
    }
    .hamburger__line--2 {
        top: 10px;
    }
    .hamburger__line--3 {
        top: 20px;
    }
    .nav-open .hamburger__line--1{
        top: 8px;
    }
    .nav-open .hamburger__line--3 {
        top: 8px;
    }
    header .menu {
        width: 280px;
        padding-top: 30px;
    }
    header .menu li {
        margin-bottom: 10px;
    }
    header .menu li a {
        font-size: 1.4rem;
    }
    header .menu ul {
        padding: 20px;
    }
    header .menu li img{
        width: auto;
    }
    #footer {
        padding: 30vw 0 0 0;
        background-color: #ffffff;
    }
    #footer::before {
        background: url(../images/bg_footer_sp.jpg) no-repeat;
        background-size: contain;
        background-position: bottom center;      
        padding-top: 50%;
    }
    #footer #foot_share {
        margin: 0 0 35px 0;
        overflow: hidden;
    }
    #footer ul {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    #footer li {
        margin: 0;
        width: 50%;
        text-align: left;
        margin-bottom: 15px;
        display: block;
    }
    #footer .footer__text-links ul {
        width: 85%;
        font-size: 1.2rem;
        margin: 0px auto 40px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        letter-spacing: 0;
        padding: 10px 0 0;
    }
    #footer .footer__text-links ul li{
        width: auto;
    }
    #footer .footer__text-links ul li:after {
        margin: 0 10px;
    }
}
@media screen and (max-width: 640px){
    #footer {
        padding: 73vw 0 0 0;
    }
}