/*
Theme Name: TRUACH
*/
@charset "utf-8";

/*
Font Family
font-family: 'Cormorant Infant', serif;
font-family: 'Oswald', sans-serif;
font-family: 'Shippori Mincho', serif;
*/

:root {
    --main-theme-color: #01316A;
    --main-column: 1200px;
    --sub-column: 1024px;
}
* {
    box-sizing: border-box;
    color: #2D2E2D;
    font-family: "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;
}
body {
    overflow-x: hidden;
}
a {
    color: #1d1d1f;
    text-decoration: none;
}
a:hover,
a:hover img {
    opacity: .8;
}
img {
    max-width: 100%;
    height: auto;
}
body {
    background: #000;
    overflow-x: hidden;
}
.visualy-hidden {
    position: absolute;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 968px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.ft-shippori {
    font-family: 'Shippori Mincho', serif;
}
.ft-cormorant {
    font-family: 'Cormorant Infant', serif;
}
.ft-oswald {
    font-family: 'Oswald', sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* header */
.header {
    margin: auto;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
.header.front_page {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
}
.header.pages {
    background: #fff;
}
.admin .header {
    top: 47px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 0;
    width: 90%;
}
.logo {
    display: block;
    line-height: 0;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list li:not(:last-child) {
    margin-right: 25px;
}
.header-nav__list li a,
.header-nav__list li p {
    font-size: 16px;
    font-weight: 600;
}
.front_page .header-nav__list li a,
.front_page .header-nav__list li p {
    color: #fff;
}
.pages .header-nav__list li a,
.pages .header-nav__list li p {
    color: #01316A;
}
.front_page .header-nav__list li p::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 8px;
    margin-left: 10px;
    top: -2px;
    position: relative;
    height: 8px;
    border: 2px solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}
.pages .header-nav__list li p::after {
    color: #01316A;
}
.front_page .header-nav__list li.active p::after,
.pages .header-nav__list li.active p::after {
    transform: translateY(25%) rotate(-45deg);
}
.instagram a {
    display: block;
    line-height: 0;
}
@media screen and (max-width: 968px) {
    .admin .header {
        top: 57px;
    }
    .header-nav {
        height: 100%;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 100%;
        z-index: 3;
    }
    .header-nav.active {
        right: 0;
    }
    .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .instagram.sp {
        margin-right: 15px;
    }
    .header-nav__inner {
        background: #fff;
        height: 100%;
        margin: 0 0 0 auto;
        padding: 150px 30px 100px;
        position: relative;
        width: 80%;
        z-index: 1;
    }
    .header-nav__list {
        display: block;
    }
    .header-nav__list li {
        margin: 0 0 25px;
    }
    .header-menu___bg {
        background: rgba(0, 0, 0, 0.2);
        height: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        transition-duration: .3s;
        width: 100%;
    }
    .header-menu___bg.active {
        right: 0;
    }
    /* hamberger */
    .header-menu {
        display: inline-block;
        margin: 0;
        position: relative;
        text-align: center;
        width: 28px;
        z-index: 13;
    }
    .header-menu span {
        display: block;
    }
    .header-menu___trigger {
        position: relative;
        width: 28px;
        height: 23px;
        cursor: pointer;
        z-index: 3;
    }
    .header-menu___trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .header.pages .header-menu___trigger span {
        background: #01316A;
    }
    .header-menu___trigger.active span {
        background: #01316A;
    }
    .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: 1px;
    }
    .header-menu___trigger span:nth-of-type(2) {
        top: 12px;
    }
    .header-menu___trigger span:nth-of-type(3) {
        bottom: -2px;
    }
    .header-menu___trigger.active span:nth-of-type(1) {
        top: -7px;
    }
    .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(20px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) 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(-20px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) 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(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) 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(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    /* hamburger panel */
    .hamburger-panel {
        background: #fff;
        height: 100%;
        position: fixed;
        top: 0;
        right: -100%;
        transition-duration: .3s;
        width: 80%;
    }
    .hamburger-panel.open {
        right: 0;
    }

    .front_page .header-nav__list li a,
    .pages .header-nav__list li a,
    .front_page .header-nav__list li p,
    .pages .header-nav__list li p,
    .front_page .header-nav__list li p::after,
    .pages .header-nav__list li p::after {
        color: #01316A;
    }
}
/* main  */

/* footer */
.main-footer {
    background: #011226;
    padding: 60px 0;
}
.main-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
    max-width: var(--sub-column);
}
.main-footer__left {
    padding: 0 0 50px;
    width: 40%;
}
.footer-logo {
    display: block;
    margin: 0 0 20px;
    width: 235px;
}
.footer-info {
    color: #fff;
    font-size: 14px;
    line-height: 1.4em;
}
.footer-info a{
    color: #fff;
    text-decoration: none;
}
.main-footer__right {
    width: 50%;
}
.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 35px;
}
.footer-links li:not(:last-child) {
    margin-right: 20px;
}
.footer-links li a {
    color: #fff;
    font-size: 14px;
}
.contact-btn {
    border: 1px solid #fff;
    color: #fff;
    display: block;
    margin-left: auto;
    padding: 15px 25px;
    text-align: center;
    width: max-content;
}
.copyright {
    color: #fff;
    font-size: 12px;
    margin: 0 auto;
    width: 90%;
    max-width: var(--sub-column);
}
@media screen and (max-width: 968px) {
    .main-footer__left,
    .main-footer__right {
        padding: 0 0 20px;
        width: 100%;
    }
    .footer-links {
        justify-content: flex-start;
    }
    .footer-links li {
        margin: 0 0 20px;
        width: 50%;
    }
    .footer-links li:not(:last-child) {
        margin-right: 0;
    }
    .contact-btn {
        margin: auto;
        width: 60%;
    }
    .copyright {
        text-align: center;
    }
}

.floating {
    position: fixed;
    bottom: 10%;
    right: 0;
	z-index: 9999;
}

@media screen and (max-width: 968px) {
    .floating {
        bottom: 0;
        width: 120px;
    }
}

.margin-t{
	margin-top:40px;
}

.contact-form__item-none input{
    display: initial !important;
    width: initial !important;
	appearance: ;
    -webkit-appearance:;
}

.recruit-movie1,.recruit-movie2{
width: 50%;
	padding:15px;
}

.recruit-movie{
display: flex;
	margin-bottom:40px;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.child-menu {
    background: #ffffffcf;
    border-radius: 10px;
    display: none;
    position: absolute;
    top: auto;
    z-index: 1;
}
.header-nav__list .child-menu li {
    display: block;
}
.header-nav__list .child-menu li a {
    padding: 10px 20px;
}

.child-menu {
    background: #ffffffcf;
    border-radius: 10px;
    display: none;
    padding: 12px;
    position: absolute;
    top: auto;
    z-index: 1;
}
.header-nav__list .child-menu li {
    display: block;
}
.header-nav__list .child-menu li a {
    color: #01316A;
    font-size: 14px;
    padding: 10px 20px;
}
@media screen and (max-width: 968px) {
    .child-menu {
        /* display: block; */
        position: static;
    }
    .header-nav__list .child-menu li:not(:last-child) {
        margin: 0 0 10px;
    }
    .header-nav__list .child-menu li:last-child {
        margin: 0;
    }
}