/* web font
*/

:root {
    --main-theme-color: #002854;
    --ft-aboreto: "Aboreto", system-ui;
    --ft-heebo: "Heebo", sans-serif;
    --ft-zen: "Zen Kaku Gothic New", sans-serif;
    --ft-spa: "League Spartan", sans-serif;
    --ft-inter: "Inter", sans-serif;
    --ft-poppin: "Poppins", sans-serif;
    --ft-robo: "Roboto", sans-serif;
}

* {
    box-sizing: border-box;
    color: var(--main-theme-color);
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
    word-wrap: break-word;
}
a:hover,
a:hover img {
    opacity: .8;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}

/* フェードインアップ */
.js-fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}
.js-fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
}
/* parallax */
.simpleParallax.simple-parallax-initialized {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
.header {
    background: rgb(255 255 255 / 60%);
    backdrop-filter: blur(13px);
    border: 1px solid #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 82px;
    margin: 0 auto;
    padding: 15px 80px;
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1300px;
    z-index: 999;
}
.header.fixed {}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
}
.logo {
    display: block;
    line-height: 1;
    width: 100%;
    max-width: 272px;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 85px;
}
.header-nav__list li:not(:last-child) {}
.header-nav__list li a {
    font-family: var(--ft-zen);
    font-size: 18px;
    font-weight: 700;
}
@media screen and (max-width: 1568px) {
    .header {
        width: calc(100% - 44px);
    }
}
@media screen and (max-width: 1468px) {
    .header {
        padding: 0 45px;
    }
    .header-nav__list {
        gap: 45px;
    }
}
@media screen and (max-width: 1068px) {
    .header {
        padding: 15px 25px;
    }
    .header-nav__list {
        gap: 25px;
    }
    .header-nav__list li a {
        font-size: 16px;
    }
}
@media screen and (max-width: 968px) {
    .header {
        height: 61px;
    }
    .header-nav {
        background: #fff;
        height: 100vh;
        padding: 100px 0 80px;
        position: fixed;
        right: -100%;
        top: -15px;
        transition-duration: .3s;
        width: 90%;
        max-width: 350px;
    }
    .header-nav.open {
        right: -4%;
    }
    .header-nav__list {
        display: block;
        text-align: center;
    }
    .header-nav__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .hamburger_menu {
        display: block; 
        position: relative;
        width: 24px; 
        height: 30px; 
        cursor: pointer;
    }
    .hamburger_menu span {
        position: absolute;
        background-color: #333333;
        height: 2px; 
        width: 24px;   
        border-radius: 1px;
        transition: all 0.4s ease-in-out;
    }
    .hamburger_menu span:nth-of-type(1) {
        top: 10px;
    }
    .hamburger_menu span:nth-of-type(2) {
        bottom: 10px;
        width: 50%;
    }
    .hamburger_menu.active span:nth-of-type(1) {
        transform: translateY(4px) rotate(-45deg);
    }
    .hamburger_menu.active span:nth-of-type(2) {
        transform: translateY(-4px) rotate(45deg);
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .logo {
        width: 182px;
    }
}

/* footer */
.footer {
    /* background: #60C8FF;
    background: linear-gradient(236deg,rgba(96, 200, 255, 1) 0%, rgba(28, 115, 211, 1) 100%); */
    background: url(../images/footer-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 0 0 75px;
    position: relative;
    z-index: 3;
}
.slug-service .footer {
    background-color: #F2F5F9;
}
.slug-top .footer {
    background-color: none;
}
.footer-inner {
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: 980px;
    z-index: 1;
}
.footer-flex {
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 55px;
}
.footer-left {
    width: 340px;
}
.footer-right {
    margin: 10px 0 0;
    width: calc(100% - 340px);
}
.footer-ttl {
    margin: 0 0 35px;
}
.footer-ttl p {
    color: #fff;
    font-family: var(--ft-zen);
    font-size: 42px;
    font-weight: 700;
}
.footer-logo {
    width: 272px;
}
.footer-logo a {
    display: block;
    line-height: 0;
    width: 100%;
}
.footer-right ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.footer-right ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.copyright {
    background: #F2F5F9;
    padding: 25px 0;
    position: relative;
    text-align: right;
}
.copyright p {
    font-family: var(--ft-spa);
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto;
    width: 92%;
    max-width: 1060px;
}
.pagetop {
    filter: drop-shadow(0 2px 10px rgb(0 0 0 / 10%));
    display: none;
	position: fixed;
	bottom: 5%;
	right: 20px;
    z-index: 9;
}
.pagetop a {
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    letter-spacing: 1px;
    width: 185px;
}
.pagetop a span {
    color: #fff;
    filter: drop-shadow(0 2px 7px rgb(55 154 206 / 90%));
    font-family: var(--ft-spa);
    font-size: 18px;
    font-weight: 700;
}
.pagetop a::after {
    background: #fff;
    background-image: url(../images/icon-arrow-t.svg);
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    border-radius: 50%;
    content: "";
    display: block;
    filter: drop-shadow(0 4px 40px rgb(55 154 206 / 36%));
    height: 64px;
    margin-left: 10px;
    width: 64px;
}
@media screen and (max-width: 1462px){
    .pagetop {
        right: 4%;
        transform: none;
    }
}
@media screen and (max-width: 968px) {
    .footer {
        margin-top: 150px;
        padding: 0 0px 75px;
    }
    .footer::after {
        background: #60C8FF;
        background: linear-gradient(236deg,rgba(96, 200, 255, 1) 0%, rgba(28, 115, 211, 1) 100%);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .footer::before {
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        top: -150px;
        left: 0;
        width: 100%;
    }
    .slug-service .footer::before {
        background: #F2F5F9;
    }
    .slug-top .footer::before {
        background-color: #fff;
    }
    .single .footer::before {
        background-color: #E5EAF0;
    }
    .footer-flex {
        flex-direction: column-reverse;
        border-top: 0;
        padding-top: 0;
    }
    .footer-left {
        width: 100%;
    }
    .footer-right {
        border-bottom: 1px solid #fff;
        margin: 0 0 30px;
        padding: 0 20px 35px;
        width: 100%;
    }
    .footer-ttl p {
        font-size: 36px;
    }
    .footer-logo a {
        width: 200px;
    }
    .footer-right ul {
        flex-wrap: wrap;
        gap: 0;
        row-gap: 15px;
    }
    .footer-right ul li {
        width: 30%;
    }
    .footer-right ul li a {
        font-size: 16px;
    }
    .copyright {
        padding: 30px 0;
        text-align: center;
    }
    .copyright p {
        font-size: 13px;
    }
    .pagetop {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .footer {
        padding: 0 0 20px;
    }
    .footer-inner {
        margin: 0 auto;
        width: calc(100% - 48px);
        max-width: 1462px;
    }
    .footer-ttl {
        margin: 0 0 20px;
    }
    .footer-ttl p {
        font-size: 26px;
    }
    .footer-right ul {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0;
        row-gap: 15px;
    }
    .footer-right ul li {
        width: max-content;
        min-width: 42%;
    }
}

.parallax-container {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}
.c-parallax {
    width: 100%;
    height: 100%;
    object-fit: cover;
}