:root {
    --main-column: 1200px;
    --sub-column: 1024px;
}

* {
    box-sizing: border-box;
    font-family: 'Shippori Mincho', serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.ft-oswald {
    font-family: 'Oswald', sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* header */
.header {
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
	background: #0009;
	    padding: 10px 0;
}
.admin .header {
    top: 52px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}
.header-left {
    display: inline-block;
    width: 200px;
}
.header-right {
    width: calc(100% - 200px);
}
.header-right,
.nav,
.header-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-links li {
    display: inline-block;
    margin-right: 35px;
}
.header-links li a {
    color: #fff;
    font-size: 18px;
}
.header-contact a {
    display: block;
    max-width: 200px;
}
.child-menu {
    background: #ffffffcf;
    border-radius: 10px;
    display: none;
    position: absolute;
    top: auto;
    width: 280px;
    z-index: 1;
}
.child-menu__list {
    display: block;
}
.child-menu__list li {
    width: 100%;
}
.child-menu__list li a {
    color: #333;
    display: block;
    padding: 10px;
}
@media screen and (max-width: 1068px) {
    .header-menu {
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 0 0 25px;
        height: 40px;
        position: relative;
        text-align: center;
        width: 40px;
        z-index: 13;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 17px;
        height: 14px;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .header-menu___trigger.active span {
        background-color: #000;
    }
    .header-menu___trigger, .header-menu___trigger span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .header-menu___trigger span:nth-of-type(1) {
        top: 0px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 7px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -10px;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        bottom: -12px;
    }
    .header-menu___trigger span:nth-of-type(1) {
        -webkit-animation: header-menu__bar01 .75s forwards;
        animation: header-menu__bar01 .75s forwards;
    }
    @-webkit-keyframes header-menu__bar01 {
        0% {
            -webkit-transform: translateY(17px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(17px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(17px) rotate(45deg);
        }
        50% {
            transform: translateY(17px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .header-menu___trigger span:nth-of-type(3) {
        -webkit-animation: header-menu__bar03 .75s forwards;
        animation: header-menu__bar03 .75s forwards;
    }
    @-webkit-keyframes header-menu__bar03 {
        0% {
            -webkit-transform: translateY(-17px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-17px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-17px) rotate(-45deg);
        }
        50% {
            transform: translateY(-17px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        -webkit-animation: active-header-menu__bar01 .75s forwards;
        animation: active-header-menu__bar01 .75s forwards;
    }
    @-webkit-keyframes active-header-menu__bar01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(17px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(17px) rotate(45deg);
        }
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(17px) rotate(0);
        }
        100% {
            transform: translateY(17px) rotate(45deg);
        }
    }
    .header-menu___trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .header-menu___trigger.active span:nth-of-type(3) {
        -webkit-animation: active-header-menu__bar03 .75s forwards;
        animation: active-header-menu__bar03 .75s forwards;
    }
    @-webkit-keyframes active-header-menu__bar03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-17px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-17px) rotate(-45deg);
        }
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-17px) rotate(0);
        }
        100% {
            transform: translateY(-17px) rotate(-45deg);
        }
    }
    .nav {
        display: block;
    }
    .nav {
        background: #fff;
        height: 100%;
        overflow-y: auto;
        padding: 100px 50px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 80%;
        max-width: 350px;
        z-index: 2;
    }
    .nav.open {
        right: 0;
    }
    .header-links {
        display: block;
    }
    .header-links li {
        display: block;
        width: 100%;
    }
    .header-links li:not(:last-child) {
        margin: 0 0 15px;
    }
    .header-links li a {
        color: #000;
        font-size: 16px;
    }
    .header-contact {
        margin: 25px 0 0;
    }
    .header-bg {
        background: rgba(0, 0, 0, 0.2);
        display: none;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 1;
    }
    .child-menu {
        display: block !important;
        margin: 10px 0 0;
        position: static;
        width: 100%;
    }
    .child-menu__list li,
    .child-menu__list li:not(:last-child) {
        margin: 0 10px 5px;
    }
    .child-menu__list li a {
        padding: 5px;
    }
}
.header-nav__list li a[href=""] {
    pointer-events: none;
}

.contact-link {
    margin-left: 20px;
    width: 140px;
}
.contact-link a {
    background: var(--gradient-c);
    background: var(--gradient);
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    width: 100%;
}
/* footer */
.footer {
    background: #fff;
    margin-top: auto;
    padding: 50px 0;
}
.footer-inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left {
    display: inline-block;
    width: 20%;
}
.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
}
.footer-links {
    /*display: flex;
    justify-content: flex-end;
    align-items: center;*/
    column-count: 4;
	-webkit-column-count: 4;
	-moz-column-count: 4;
}
.footer-links li:not(:last-child) {
    margin-right: 35px;
}
.footer-links li a {
    color: #000;
    font-size: 18px;
}
.footer-contact {
    margin-left: 35px;
    max-width: 200px;
}
.copyright {
    margin: 15px 0 0;
}
.copyright p {
    font-size: 12px;
    text-align: center;
}

@media screen and (max-width: 1268px) {
    .footer-links li:not(:last-child) {
        margin-right: 25px;
    }
    .footer-links li a {
        font-size: 16px;
    }
    .footer-contact {
        margin-left: 25px;
        max-width: 180px;
    }
}
@media screen and (max-width: 968px) {
    .footer-links {
        /*justify-content: space-between;
        flex-wrap: wrap;*/
        column-count: 1;
	-webkit-column-count: 1;
	-moz-column-count: 1;
    }
    .footer-links li {
        margin: 15px 0 0;
        /*width: 48%;*/
    }
    .footer-links li:not(:last-child) {
        margin-right: 0;
    }
    .footer-links li:nth-child(-n+2) {
        margin-top: 15px;
    }
}
@media screen and (max-width: 768px) {
    .footer-left {
        display: block;
        text-align: center;
        width: 100%;
    }
    .footer-right {
        margin: 35px 0 0;
        width: 100%;
    }
    .footer-links {
        width: 100%;
    }
    .footer-links li {
        text-align: center;
    }
    .footer-contact {
        margin-top: 25px;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
    .footer-contact a {
        display: block;
        margin: 0 auto;
        width: 200px;
    }
}
@media screen and (max-width: 568px) {
}