@charset "utf-8";
body {
    /*width: 750px;*/
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Josefin Sans","Noto Sans JP",sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
    background-color: #fff;
}
h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    letter-spacing: calc(var(--font-heading-scale) * .06rem);
    line-height: calc(1 + .3/max(1,var(--font-heading-scale)));
    word-break: break-word;
}
img {
    vertical-align: bottom;
}
.img-width100 {
    width: 100%;
}
.c-bg-gray {
    background-color:#fbf9fa;
}
html {
    font-size: 100%;
    color: #333;
    scroll-behavior: smooth;
}
html ul li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333;
}
/* aタグのtarget属性が_blankの場合 .noexは除外 */
a[target=_blank]:not(.notex)::after {
    content:"";
    width: 13px;
    height: 13px;
    display: inline-block;
    margin-left: 5px;
    background:url(/common/img/link.svg) no-repeat scroll left center transparent;
}
.hd {
    line-height: 1;
    padding: 20px 0 12px;
    align-items: center;
    box-shadow: 0 1px 1px 0 #f6f6f6;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #fff;
}
.hd__ttl {
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}
.hd__nav__list {
    display: flex;
    justify-content: center;
    color: #333;
    font-size: 1rem;
}
.hd__nav__list__in a {
    color: #333;
}
.hd__nav__list__in:not(:last-child)  {
    margin-right: 50px;
}
.ft {
    height: 110px;
    padding: 30px 0;
    background-color: #1d1d1d;
}
.ft__list {
    width:300px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: #fff;
}
.ft__list__in a{
    color: #fff;
}
.ft__copyright {
    text-align: center;
    font-size: 0.6rem;
    color: #fff;
}
.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s, transform 1s;
}.fade.active {
     opacity: 1;
     transform: translateY(0px);
 }


@media (min-width:750px) {
    body {
        width: 100%;
    }
    .hd {
        margin: 0 auto;
        padding: 0 4%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .hd__ttl {
        margin: 10px 0;
    }
    /* aタグのtarget属性が_blankの場合 .noexは除外 */
    a[target=_blank]:not(.notex)::after {
        content:"";
        width: 15px;
        height: 15px;
        margin-left: 8px;
    }
}
@media (min-width:1024px) {
}