@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;600;700&display=swap");

/* 共通 */
/* loader wrap */
.loader__wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: #00204B;
    text-align: center;
}

.loader__wrap>div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.loader__wrap>div span:not(.loader) {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #00204B;
    display: block;
}

/*loading anim*/
.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
}

.loader {
    display: block;
    color: #00204B;
    font-size: 11px;
    text-indent: -99999em;
    margin: 55px auto;
    position: relative;
    width: 80px;
    height: 80px;
    -webkit-box-shadow: inset 0 0 0 0.8px;
    box-shadow: inset 0 0 0 0.8px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.loader:before,
.loader:after {
    position: absolute;
    content: "";
}

.loader:before {
    width: 40.8px;
    height: 81.6px;
    background: #fff;
    border-radius: 81.6px 0 0 81.6px;
    top: -0.4px;
    left: -0.8px;
    -webkit-transform-origin: 40.8px 40.8px;
    transform-origin: 40.8px 40.8px;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}

.loader:after {
    width: 40.8px;
    height: 81.6px;
    background: #fff;
    border-radius: 0 41.6px 41.6px 0;
    top: -0.4px;
    left: 40.2px;
    -webkit-transform-origin: 8px 40.8px;
    transform-origin: 0px 40.8px;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}

@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*-----------
      Header_1
  -----------*/
/* header-left */
.header__left {
    position: fixed;
    top: 32px;
    left: 32px;
    z-index: 5;
}

.header__left h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

.header__left h1 a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__left h1 a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

.header__left h1 a img {
    width: 120px;
    height: auto;
}

/* header-right */
.header__right {
    position: fixed;
    top: 50px;
    right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px;
    z-index: 5;
}

.header__right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.header__right ul.header__menus li a {
    color: #00204B;
    white-space: nowrap;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
    font-family: "Oswald", Oswald, sans-serif;
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__right ul.header__menus li a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

.header__right ul.header__sns li img {
    width: 32px;
    height: auto;
}

.header__right ul.header__sns li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__right ul.header__sns li a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

/*-----------
      Footer_1
  -----------*/
footer.top__footer {
    position: fixed;
    bottom: 24px;
    right: 48px;
    z-index: 5;
}

@media screen and (max-width: 767px) {
    footer.top__footer {
        bottom: 32px;
    }
}

footer.top__footer p {
    color: #fff;
    font-family: "Oswald", Oswald, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    footer.top__footer p {
        font-size: 1.2rem;
    }
}

.slide.-second footer.top__footer p {
    color: #fff;
}

/*-----------
      TOP
  -----------*/
.main__second {
    background-color: #00204B;
}

.body__second {
    padding-top: 80px;
    overflow-x: hidden;
}

@media screen and (max-width: 975px) {
    .body__second {
        padding-top: 64px;
    }
}

.container {
    max-width: 1280px;
    padding: 0 80px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 1439px) {
    .container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 975px) {
    .container {
        padding: 0;
        width: calc(100vw - 32px);
    }
}

.page__container {
    max-width: 820px;
    padding: 0 80px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 1439px) {
    .page__container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 975px) {
    .page__container {
        padding: 0;
        width: calc(100vw - 32px);
    }
}

.page__container.is-news {
    max-width: 870px;
    padding: 0 80px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 1439px) {
    .page__container.is-news {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        max-width: 870px;
    }
}

@media screen and (max-width: 975px) {
    .page__container.is-news {
        padding: 0;
        width: calc(100vw - 32px);
    }
}

.works__title {
    padding-top: 64px;
    padding-bottom: 48px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .works__title {
        padding-top: 42px;
        padding-bottom: 32px;
    }
}

.works__title h2 {
    font-family: "YuGothic", YuGothic, sans-serif;
    font-weight: bold;
    font-size: 3.2rem;
    line-height: 48px;
    letter-spacing: 2px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .works__title h2 {
        font-size: 2.4rem;
        line-height: 28px;
        letter-spacing: 0;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 40px 10px 24px;
    width: 100%;
    z-index: 5;
}

.header h1 {
    margin-top: 16px;
}

.header h1 a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header h1 a img {
    width: 78px;
    height: auto;
}

.header h1 a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

.header__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px;
    margin-left: auto;
}

.header__wrap .header__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    font-weight: 600;
}

.header__wrap .header__menus li {
    padding-top: 24px;
}

.header__wrap .header__menus li a {
    color: #00204B;
    font-family: "Oswald", Oswald, sans-serif;
    font-weight: 600;
    font-size: 2rem;
    white-space: nowrap;
    line-height: 32px;
}

.header__wrap .header__menus li a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

.header__wrap .header__menus li.current-menu-item {
    position: relative;
}

.header__wrap .header__menus li.current-menu-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #00204B;
    top: 0;
    left: 0;
}

.header__wrap .header__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.header__wrap .header__sns li {
    padding-top: 24px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.header__wrap .header__sns li a {
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__wrap .header__sns li a img {
    height: 32px;
    width: 32px;
}

.header__wrap .header__sns li a:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

footer.footer {
    background-color: #00204B;
}

footer.footer p {
    font-size: 1.6rem;
    line-height: 136px;
    text-align: center;
    font-family: "Oswald", Oswald, sans-serif;
    color: #FAFAFA;
}

@media screen and (max-width: 975px) {
    footer.footer p {
        font-size: 1.2rem;
        line-height: 82px;
    }
}

.header--sp {
    position: fixed;
    z-index: 5;
    background-color: #fff;
    width: 100%;
    top: 0;
    left: 0;
    padding: 8px 16px 8px 16px;
}

.header--sp h1 {
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.header--sp h1 a {
    display: block;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.header--sp h1 a img {
    height: 48px;
    width: auto;
}

.header--sp .hamburger__obj {
    position: fixed;
    z-index: 6;
    top: 30px;
    right: 16px;
    -webkit-transform: translateX(-32px);
    transform: translateX(-32px);
    cursor: pointer;
}

.header--sp .hamburger__obj span {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    height: 1px;
    width: 32px;
    background-color: #00204B;
}

.header--sp .hamburger__obj span:nth-child(2) {
    top: 4px;
}

.header--sp .hamburger__obj.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 4px;
}

.header--sp .hamburger__obj.open span:nth-child(2) {
    top: 4px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.header__wrap--sp {
    background: #00204B;
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 112px 48px 0 48px;
    top: -110%;
    left: 0;
    z-index: 4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__wrap--sp.open {
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__wrap--sp .header__menus li:not(:first-child) {
    margin-top: 24px;
}

.header__wrap--sp .header__menus li a {
    color: #fff;
    font-family: "Oswald", Oswald, sans-serif;
    font-size: 2rem;
    font-weight: 600;
}

.header__wrap--sp .header__sns {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
    margin-top: 48px;
}

.archives__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
    .archives__wrap {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .archives__wrap {
        grid-template-columns: 1fr;
    }
}

.archive__content {
    position: relative;
}

.archive__content .archive__clearbox {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
    .archive__content .archive__clearbox {
        width: 100vw;
        height: auto;
    }
}

.archive__content .archive__img {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .archive__content .archive__content--hover {
        position: relative;
        display: block;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        background: #00204B;
    }
}

.archive__content .archive__content--hover h2 {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 32px;
}

@media screen and (max-width: 767px) {
    .archive__content .archive__content--hover h2 {
        color: #fff;
    }
}

.archive__content .archive__content--hover p {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.4rem;
    line-height: 32px;
}

@media screen and (max-width: 767px) {
    .archive__content .archive__content--hover p {
        color: #fff;
    }
}

.archive__content .archive__content--hover .archive__content--text {
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
}

@media screen and (max-width: 767px) {
    .archive__content .archive__content--hover .archive__content--text {
        position: relative;
        bottom: 0;
        -webkit-transform: unset;
        transform: unset;
        left: 0;
        margin: 0 auto;
        padding-top: 16px;
        padding-bottom: 32px;
        width: calc(100vw - 32px);
    }
}

.category__wrap .works__description {
    width: 100%;
}

.category__wrap .works__description p {
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .category__wrap .works__description p {
        font-size: 1.4rem;
    }
}

.category__wrap .works__description a {
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    border-bottom: 1px solid #fafafa;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
}

.category__wrap .works__description a:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .category__wrap .works__description a {
        font-size: 1.4rem;
    }
}

.category__wrap .category__contents {
    padding-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (min-width: 768px) and (max-width: 975px) {
    .category__wrap .category__contents {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .category__wrap .category__contents {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }
}

.category__wrap .category__contents .category__content {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.category__wrap .category__contents .category__content:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0.7;
}

.category__wrap .category__contents .category__content img {
    width: 100%;
    height: auto;
}

.category__wrap .category__contents .category__content h3 {
    font-family: "YuGothic", YuGothic, sans-serif;
    padding-top: 16px;
    font-size: 1.6rem;
    line-height: 32px;
}

.category__wrap .category__contents .category__content p {
    font-family: "YuGothic", YuGothic, sans-serif;
    padding-bottom: 40px;
    font-size: 1.4rem;
    line-height: 32px;
    width: 94%;
}

.single__info .project__info {
    padding-bottom: 64px;
    font-size: 1.6rem;
    line-height: 32px;
}

@media screen and (max-width: 767px) {
    .single__info .project__info {
        padding-bottom: 40px;
    }
}

.single__info img {
    width: 100%;
}

.single__info h3 {
    font-family: "YuGothic", YuGothic, sans-serif;
    padding-top: 16px;
    font-size: 1.6rem;
    line-height: 32px;
}

.single__info p {
    font-family: "YuGothic", YuGothic, sans-serif;
    padding-bottom: 40px;
    font-size: 1.4rem;
    line-height: 32px;
}

.single__contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
}

@media screen and (max-width: 767px) {
    .single__contents {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.single__contents .single__content img {
    width: 100%;
}

.single__back {
    font-size: 1.8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    text-align: center;
    margin: 64px auto 0 auto;
    border-bottom: solid #fafafa 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-family: "YuGothic", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
    .single__back {
        margin: 40px auto 0 auto;
    }
}

.single__back:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.clear__box {
    padding-top: 80px;
}

@media screen and (max-width: 975px) {
    .clear__box {
        padding-top: 40px;
    }
}

.page__container h2 {
    font-family: "Oswald", Oswald, sans-serif;
    font-size: 4.8rem;
    line-height: 71px;
    text-align: center;
    width: 100%;
    padding-top: 64px;
    padding-bottom: 48px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .page__container h2 {
        font-size: 3.2rem;
        line-height: 47.5px;
        padding-top: 40px;
        padding-bottom: 32px;
    }
}

.page__content {
    padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
    .page__content {
        padding-bottom: 40px;
    }
}

.page__content h3 {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: 700;
    font-family: "Oswald", Oswald, sans-serif;
}

.page__content h3.page--recruit {
    font-family: "YuGothic", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
    .page__content h3 {
        font-size: 2.4rem;
    }
}

.page__content h3:not(:first-of-type) {
    padding-top: 64px;
}

@media screen and (max-width: 767px) {
    .page__content h3:not(:first-of-type) {
        padding-top: 40px;
    }
}

.page__content p {
    padding-top: 24px;
    font-size: 1.8rem;
    line-height: 2;
}

.page__content p span.blue {
    color: #fff;
    font-size: 2rem;
    line-height: 3.6rem;
    font-weight: bold;
}

@media screen and (max-width: 767px) {
    .page__content p {
        font-size: 1.6rem;
        padding-top: 1em;
    }
}

.page__content p.min {
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
    .page__content p.min {
        font-size: 1.4rem;
    }
}

.page__content h4 {
    padding-top: 64px;
    font-size: 2.4rem;
    line-height: 2;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
}

.page__content h4.page--recruit {
    font-family: "YuGothic", YuGothic, sans-serif;
}

@media screen and (max-width: 767px) {
    .page__content h4 {
        font-size: 2rem;
        padding-top: 40px;
    }
}

.page__content .about--h4 {
    padding-top: 24px;
}

@media screen and (max-width: 767px) {
    .page__content .about--h4 {
        padding-top: 18px;
    }
}

.page__content .border {
    background-color: #E0E0E0;
    height: 1px;
    width: 100%;
    margin-top: 64px;
}

@media screen and (max-width: 767px) {
    .page__content .border {
        margin-top: 40px;
    }
}

.page__content table tbody tr {
    padding-top: 24px;
    display: block;
}

@media screen and (max-width: 767px) {
    .page__content table tbody tr {
        padding-top: 16px;
    }
}

.page__content table tbody tr td {
    font-size: 1.6rem;
    line-height: 2;
}

@media screen and (max-width: 767px) {
    .page__content table tbody tr td {
        font-size: 1.4rem;
    }
}

.page__content table tbody tr td:nth-child(1) {
    width: 160px;
}

@media screen and (max-width: 767px) {
    .page__content table tbody tr td:nth-child(1) {
        width: 128px;
    }
}

.page__content table tbody tr td span.blue {
    color: #007BC2;
    border-bottom: 1px solid #007BC2;
}

.page__content form p {
    font-size: 1.6rem;
    line-height: 32px;
}

.page__content form p .contact__select {
    position: relative;
}

.page__content form p .contact__select::after {
    content: "";
    background-image: url(../img/arrow.svg);
    height: 9px;
    width: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00204B;
    position: absolute;
    top: 58px;
    right: 20px;
}

.page__content form p span {
    font-size: 1.2rem;
    line-height: 32px;
}

.page__content form p span input,
.page__content form p span textarea,
.page__content form p span select {
    margin-top: 4px;
    font-size: 1.6rem;
    line-height: 2;
    width: 100%;
    background: rgba(255, 255, 255, 0.16);
    padding: 12px 16px;
    border-radius: 8px;
}

@media screen and (max-width: 767px) {

    .page__content form p span input,
    .page__content form p span textarea,
    .page__content form p span select {
        font-size: 1.4rem;
        border-radius: 4px;
    }
}

.page__content form p span textarea {
    resize: none;
    min-height: 320px;
}

@media screen and (max-width: 767px) {
    .page__content form p span textarea {
        min-height: 240px;
    }
}

.page__content input[type=submit] {
    font-size: 1.6rem;
    line-height: 2;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-weight: 700;
    color: #00204B;
    background-color: #fafafa;
    border-radius: 8px;
    display: block;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    margin-top: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 767px) {
    .page__content input[type=submit] {
        padding-top: 8px;
        padding-bottom: 8px;
        margin-top: 24px;
        border-radius: 4px;
    }
}

.page__content input[type=submit]:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.page__content .wpcf7-not-valid-tip {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 500;
    padding-top: 16px;
    font-size: #FF0000;
}

/* flip anim
  ----------------------------- */
.archive__content {
    display: block;
    width: 100%;
    height: 100%;
}

.archive__content {
    position: relative;
    display: block;
}

.archive__img {
    -webkit-transition: all 0.34s ease;
    transition: all 0.34s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-delay: 0.34s;
    transition-delay: 0.34s;
}

@media screen and (min-width: 768px) {
    .archive__content:hover .archive__img {
        -webkit-transition: all 0.34s ease;
        transition: all 0.34s ease;
        -webkit-transform: translate(-50%, -50%) rotate3d(-1, 1, 0, 100deg);
        transform: translate(-50%, -50%) rotate3d(-1, 1, 0, 100deg);
        opacity: 0;
    }
}

.flip__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.34s ease;
    transition: all 0.34s ease;
    -webkit-transform: translate(-50%, -50%) rotate3d(1, -1, 0, 100deg);
    transform: translate(-50%, -50%) rotate3d(1, -1, 0, 100deg);
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.flip__content .flip__content--hover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.flip__content img {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 768px) {
    .archive__content:hover .flip__content {
        -webkit-transform: translate(-50%, -50%) rotate3d(0, 0, 0, 0deg);
        transform: translate(-50%, -50%) rotate3d(0, 0, 0, 0deg);
        opacity: 1;
        -webkit-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }
}

.flip__content--hover {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 75, 0.64);
}

.flip__content--hover .flip__content--text {
    position: absolute;
    z-index: 5;
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
}

.flip__content--hover .flip__content--text h2 {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 32px;
    width: 90%;
}

@media screen and (max-width: 767px) {
    .flip__content--hover .flip__content--text h2 {
        color: #fff;
    }
}

.flip__content--hover .flip__content--text p {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.4rem;
    line-height: 32px;
    width: 90%;
}

@media screen and (max-width: 767px) {
    .flip__content--hover .flip__content--text p {
        color: #fff;
    }
}

@media screen and (max-width: 975px) {
    .archives__wrap.container {
        width: 100%;
    }
}

.archive__content--sp {
    display: none;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 32px;
    width: calc(100vw - 32px);
}

@media screen and (max-width: 767px) {
    .archive__content--sp {
        display: block;
    }
}

.archive__content--sp h2 {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.6rem;
    line-height: 32px;
    width: 100%;
}

.archive__content--sp p {
    color: #fff;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-size: 1.4rem;
    line-height: 32px;
    width: 100%;
}

.obj {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 5;
}

.obj.is-front {
    bottom: 140px;
}

@media screen and (max-width: 767px) {
    .obj {
        bottom: 18px;
        left: 18px;
    }

    .obj.is-front {
        bottom: 74px;
        left: 8px;
    }
}

.obj span {
    position: absolute;
    background-color: #007CC3;
    display: block;
    height: 32px;
    width: 32px;
    position: absolute;
    left: 0;
}

@media screen and (max-width: 767px) {
    .obj span {
        height: 20px;
        width: 20px;
    }
}

.obj span:nth-child(1) {
    bottom: 102px;
}

@media screen and (max-width: 767px) {
    .obj span:nth-child(1) {
        bottom: 70px;
    }
}

.obj span:nth-child(2) {
    bottom: 52px;
}

@media screen and (max-width: 767px) {
    .obj span:nth-child(2) {
        bottom: 35px;
    }
}

.obj span:nth-child(3) {
    bottom: 0;
}

.kv__bg {
    height: 720px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 975px) {
    .kv__bg {
        height: 480px;
    }
}

.kv__bg video {
    display: block;
    height: 120%;
    width: auto;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

@media screen and (min-width: 1441px) {
    .kv__bg video {
        height: auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .kv__bg video {
        height: 100%;
        width: auto;
    }
}

.slide {
    position: relative;
    height: 720px;
    width: 100%;
    z-index: 1;
    background-color:  rgba(0, 32, 75, 0.32);
}

@media screen and (max-width: 975px) {
    .slide {
        height: 480px;
    }
}

@media screen and (max-width: 975px) {
    .slide.-second {
        padding-top: 0;
    }

    .slide.-second .pc {
        display: none;
    }
}

.slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .slide__content {
        -webkit-transform: translate(-50%, -40%);
        transform: translate(-50%, -40%);
    }
}

.slide__content .kv__title--main {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 975px) {
    .slide__content .kv__title--main {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .slide__content .kv__title--main img {
        width: 100%;
        margin: 0 auto;
    }
}

.slide__content .kv__title--sub {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.slide__content .kv__title--sub span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: 3.2rem;
    white-space: nowrap;
    line-height: 1.5;
    letter-spacing: 2;
}

@media screen and (max-width: 975px) {
    .slide__content .kv__title--sub span {
        font-size: 2.8rem;
        line-height: 52px;
    }
}

@media screen and (max-width: 767px) {
    .slide__content .kv__title--sub span {
        width: 84vw;
        margin: 0 auto;
        line-height: 2;
    }
}

.slide__content p {
    color: #fff;
    font-size: 1.8rem;
    line-height: 40px;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 24px;
    letter-spacing: 2;
}

@media screen and (max-width: 975px) {
    .slide__content p {
        font-size: 1rem;
        line-height: 2;
        white-space: unset;
        width: 84vw;
        font-weight: 300;
    }
}

@media screen and (max-width: 767px) {
    .slide__content p {
        width: 84vw;
        margin: 16px auto 0 auto;
    }
}

/* animation */
.animated {
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

.anim__wrap {
    position: relative;
}

.anim__wrap .anim__obj {
    display: block;
    position: absolute;
    top: 0;
}

.slick-arrow {
    position: fixed;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: calc(50% + 55px);
    font-size: 0;
    height: 30.13px;
    width: 17.41px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 975px) {
    .slick-arrow {
        top: calc(50% + 32px);
    }
}

@media screen and (max-width: 767px) {
    .slick-arrow {
        height: 20.0866666667px;
        width: 11.6066666667px;
    }
}

.slick-arrow:hover {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slick-prev {
    background-image: url(../img/arrow_prev.svg);
    left: 38px;
}

@media screen and (max-width: 767px) {
    .slick-prev {
        left: 8px;
    }
}

.slick-prev:hover {
    background-image: url(../img/arrow_prev_hover.svg);
}

.slick-next {
    background-image: url(../img/arrow_next.svg);
    right: 38px;
}

@media screen and (max-width: 767px) {
    .slick-next {
        right: 8px;
    }
}

.slick-next:hover {
    background-image: url(../img/arrow_next_hover.svg);
}

.sp {
    display: none;
}

@media screen and (max-width: 975px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/*--------------------------
    News archive
  ---------------------------*/
.news__contents {
    display: flex;
    gap: 64px;
}

/* side menu */
.news__side-menu {
    max-width: 200px;
    width: 100%;
}

.news__categories {}

.news__categories li {
    display: block;
    width: 100%;
    height: auto;
}

.news__categories li {
    border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
}

.news__categories li h3,
.news__categories li a {
    color: #fff;
    line-height: 1.5;
}

.news__categories li h3 {
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
    font-size: 18px;
    padding-bottom: 12px;
    display: block;
}

.news__categories li a {
    font-size: 16px;
    padding: 12px 0;
    display: block;
    opacity: 1;
    transition: 0.3s;
    position: relative;
}

.news__categories li a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.news__categories li a::after {
    position: absolute;
    content: '';
    right: 0;
    transform: translateY(-50%);
    top: 50%;
    background-image: url(../img/arrow-news.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 7.25px;
    height: 12.55px;
}

/* news__con */
.news__column {
    width: calc(100% - 264px);
    border-top: rgba(255, 255, 255, 0.2) solid 1px;
}

.news__row {
    border-bottom: rgba(255, 255, 255, 0.2) solid 1px;
    display: flex;
    padding: 16px 0;
    gap: 24px;
    transition: 0.3s;
    opacity: 1;
}

.news__row:hover {
    transition: 0.3s;
    opacity: 0.7;
}

.news__row img {
    aspect-ratio: 200 / 112.5;
    object-fit: cover;
    width: 200px;
    height: auto;
}

.news__row .news__con {
    width: calc(100% - 224px);
}

.news__row .news__con time {
    font-size: 14px;
    padding-top: 18px;
    display: block;
}

.news__row .news__con h3 {
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-top: 1em;
}

/* news page nation */
.screen-reader-text {
    display: none;
}

.news__column .navigation {
    width: fit-content;
    margin: 40px auto 0;
}

.news__column .navigation .page-numbers {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    padding: 0 8px;
    line-height: 1.5;
}

.news__column .navigation .page-numbers.current {
    color: #00204B;
    background-color: #fff;
}

.news__column .navigation .page-numbers.next,
.news__column .navigation .page-numbers.prev {
    position: relative;
    color: rgba(0, 0, 0, 0);
}

.news__column .navigation .page-numbers.next::after,
.news__column .navigation .page-numbers.prev::after {
    position: absolute;
    content: '';
    transform: translate(-50%, -50%);
    width: 7.25px;
    height: 12.55px;
    top: 50%;
    left: 50%;
    background-image: url(../img/arrow-news.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.news__column .navigation .page-numbers.prev::after {
    transform: translate(-50%, -50%) rotate(180deg);
}


.news__column .navigation .nav-links {}

@media screen and (max-width: 767px) {
    .news__contents {
        flex-wrap: wrap;
        gap: 64px;
        flex-direction: column-reverse;
    }

    /* side menu */
    .news__side-menu {
        max-width: 100%;
    }

    .news__categories {
        width: 100%;
    }

    .news__categories li {
        text-align: center;
    }

    .news__categories li:not(:first-child) {}

    .news__categories li h3,
    .news__categories li a {}

    /* news__con */
    .news__column {
        width: 100%;
    }

    .news__row {
        display: block;
    }

    .news__row img {
        width: 100%;
    }

    .news__row .news__con {
        width: 100%;
    }

    .news__row .news__con time {}

    .news__row .news__con h3 {}
}

/*--------------------------
    News single
  ---------------------------*/
.single__news {
    border: none;
}

.single__news .single__news-top {}

.single__news .single__news-top img {
    margin-bottom: 56px;
    width: 100%;
    height: auto;
    display: block;
}

.single__news .single__news-top h1 {
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
    text-align: left;
    font-size: 28px;
    line-height: 1.5;
    display: block;
}

.single__news .single__news-top time {
    font-size: 14px;
    margin-top: 1em;
    display: block;
    margin-bottom: 40px;
}

/* news content */
.single__news p {
    padding: 0;
    font-size: 16px;
    line-height: 2;
    margin-top: 1em;
}

.single__news h2 {
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
    padding: 0;
    margin-top: 56px;
    font-weight: normal;
    text-align: left;
    font-size: 28px;
}

.single__news h3 {
    font-family: "Yu Mincho", "YuMincho", YuMincho, sans-serif;
    padding: 0;
    margin-top: 56px;
    font-weight: normal;
    text-align: left;
    font-size: 24px;
}

.single__news ul,
.single__news ol {
    background-color: #001736;
    padding: 32px;
    margin-top: 56px;
}

.single__news li {
    font-size: 16px;
    line-height: 2;
    list-style: disc;
    margin-left: 24px;
}

.single__news li:nth-child(n + 2) {
    margin-top: 12px;
}

.single__news img:not(.attachment-post-thumbnail) {
    margin-top: 56px;
}


/*--------------------------
    front news
  ---------------------------*/
.front__news {
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    background-color: #fff;
    display: flex;
}

/* content */
.front__news-con {
    padding: 18px 24px;
    display: flex;
    gap: 24px;
    border-right: 1px solid #00204B;
}

.front__news-con>h2 {
    font-family: "Oswald", Oswald, sans-serif;
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #00204B;
}

.front__news-column {}

.front__news-row {
    display: flex;
    gap: 16px;
    opacity: 1;
    transition: 0.3s;
}

.front__news-row:nth-child(n + 2) {
    margin-top: 0.5em;
}

.front__news-row:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.front__news-row time,
.front__news-row p,
.front__news-archive span {
    color: #00204B;
    font-size: 14px;
    line-height: 2;
}

.front__news-row time {}

.front__news-row p.is-sp {
    display: none;
}

/* link */
.front__news-archive {
    height: auto;
    width: 145px;
    position: relative;
    opacity: 1;
    transition: 0.3s;
}

.front__news-archive:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.front__news-archive span {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 24px;
    color: #00204B;
}

.front__news-archive::after {
    position: absolute;
    content: '';
    transform: translateY(-50%);
    width: 7.25px;
    height: 12.55px;
    top: 50%;
    right: 30px;
    background-image: url(../img/arrow-front.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .front__news {}

    /* content */
    .front__news-con {
        padding: 6px 16px;
        gap: 12px;
    }

    .front__news-con>h2 {}

    .front__news-column {}

    .front__news-row {
        gap: 8px;
    }

    .front__news-row:nth-child(n + 2) {
        margin-top: 0;
    }

    .front__news-row:hover {}

    .front__news-row time,
    .front__news-row p,
    .front__news-archive span {
        font-size: 11px;
    }

    .front__news-row time {}

    .front__news-row p {
        display: none;
    }

    .front__news-row p.is-sp {
        display: block;
    }

    /* link */
    .front__news-archive {
        height: 56px;
        width: 56px;
    }

    .front__news-archive:hover {}

    .front__news-archive span {
        font-size: 0;
    }

    .front__news-archive::after {
        transform: translate(-50%, -50%);
        top: 50%;
        right: 40%;
    }
}