@charset "UTF-8";

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/* header *********************************************/
/* header.main_h {
    position: fixed;
    top: 0px;
    z-index: 999;
    width: 100%;
    padding: 10px;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    top: -100px;
    padding-bottom: 6px;
} */
.main_h {
    position: fixed;
    top: 0px;
    max-height: 70px;
    z-index: 999;
    width: 100%;
    padding: 15px;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    top: -100px;
    font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 768px) {
    header.main_h {
        padding-top: 25px;
    }
}

header .row {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

header.open-nav {
    max-height: 400px !important;
}

header.open-nav .mobile-toggle {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.sticky {
    background-color: #caccd8ed;
    opacity: 1;
    top: 0px;
    border-bottom: 1px solid gainsboro;
}

header .logo {
    float: left;
    max-width: 130px;
    height: auto;
    display: block;
}

header nav {
    float: right;
    width: 60%;
}

@media screen and (max-width: 768px) {
    header nav {
        width: 100%;
    }
}

header nav ul {
    list-style: none;
    overflow: hidden;
    text-align: right;
    float: right;
}

@media screen and (max-width: 768px) {
    nav ul {
        padding-top: 10px;
        margin-bottom: 22px;
        float: left;
        text-align: center;
        width: 100%;
    }
}

header nav ul li {
    display: inline-block;
    margin-left: 35px;
    line-height: 1.5;
}

header nav ul li:first-child {
    margin-left: 0;
}

@media screen and (max-width: 768px) {
    header nav ul li {
        width: 100%;
        padding: 7px 0;
        margin: 0;
    }
}

header nav ul a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
}

header .mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 22px;
    top: 0;
    width: 30px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

@media screen and (max-width: 768px) {
    header .mobile-toggle {
        display: block;
    }
}

header .mobile-toggle span {
    width: 30px;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 1000px;
    background: #8f8f8f;
    display: block;
}

/* footer *********************************************/
footer {
    position: relative;
}

footer .contents {
    background-color: gray;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-right: 25px;
    color: #fff;
}

footer .contents img {
    max-width: 300px;
}


footer > a#back-to-top {
    position: absolute;
    top: 35px;
    right: 25px;
    display: block;
    transition: all .2s;
}

footer > a#back-to-top:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

footer > a#back-to-top img {
    width: 50px;
    transition: 150ms
}

@media screen and (max-width: 768px) {
    footer .contents {
        display: block;
        padding: 15px;
    }

    footer .contents p {
        font-size: 10px;
        margin: 0;
        text-align: center;
    }

    footer > a#back-to-top {
        top: 50%;
        transform: translateY(-50%);
    }

    footer > a#back-to-top img {
        width: 30px;
    }
}

/* フローティング *********************************************/
.side-qr {
    position: fixed;
    bottom: 180px;
    right: 0;
    font-weight: bold;
    line-height: 1.5;
    display: inline-block;
    padding: 2em 1em 1em calc(2em - 15px);
    transition: 0.3s;
    text-decoration: none;
    color: #fff;
    border-radius: 0.5rem;
    background: #06c755;
    box-shadow: 0 5px 0 #19934e;
    margin-left: 10px;
    opacity: 0;
}

.side-qr.scrolled {
    opacity: 1;
}

.side-qr a {
    color: #fff;
    margin: 0;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
}

.side-qr .side-qr-copy {
    position: absolute;
    top: -5.5em;
    right: 20px;
    display: inline-block;
    width: 8em;
    height: 8em;
    writing-mode: unset;
    color: #06c755;
    font-size: 80%;
    font-weight: bold;
    background: #fff;
    border: 3px solid #06c755;
    border-radius: 50%;
    box-sizing: border-box;
}

.side-qr .side-qr-copy::before {
    position: absolute;
    content: "";
    bottom: -1px;
    right: -2px;
    border: 9px solid transparent;
    border-left: 15px solid #FFF;
    z-index: 0;
    transform: rotate(45deg);
}

/* マウスオーバーした際のデザイン */
.side-qr:hover {
    transform: translate(0, 3px);
    box-shadow: 0 2px 0 #19934e;
    cursor: pointer;
}

.side-qr .side-qr-copy img {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 15px;
    left: 0px;
    right: 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .side-qr {
        display: none;

    }
}





* {
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #405158;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 30px;
    line-height: 1.8;
    text-transform: uppercase;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 2;
}

.content {
    padding: 50px 2% 250px;
}