﻿

html {
    width: 100%;
    font-size: 62.5%;
}
html body {
    top: auto;
    min-width: auto;
    width: 100%;
    color: #03132A;
    font-family: 'Noto Sans JP', sans-serif;
}
p {
    font-size: min(1.8vw,2rem);
}
a {
    color: #03132A;
}
a:hover {
    color: #03132A;
}
img {
    width: 100%;
    height: auto;
}
ul:after {
    content: none;
}
.section_inner {
    margin: auto;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}
.arrow_link {
    display: inline-block;
    position: relative;
    padding-right: 40px;
    letter-spacing: 0.05em;
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    transition: .3s;
}
.arrow_link::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    width: 37px;
    height: 37px;
    background: url(../image/icn_arrow_bg_y.svg) no-repeat center center/contain;
    transition: .3s;
}
.arrow_link:hover {
    text-decoration: underline;
}
.arrow_link:hover::after {
    transform: translate(8px,-50%);
}
.button_link {
    display: inline-block;
    position: relative;
    border-radius: 30px;
    padding: 14px 82px;
    background-color: #FCDC59;
    box-sizing: border-box;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    transition: .3s;
}
.button_link::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 37px;
    height: 37px;
    background: url(../image/icn_arrow_bg_w.svg) no-repeat center center/contain;
}
.button_link:hover {
    background-color: #03132A;
    color: #FFFFFF;
}
.img_link {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 12px auto 0 auto;
    border-radius: 10px;
    padding: 47px 20px 62px 20px;
    width: 75%;
    box-sizing: border-box;
}
.img_link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.img_link:hover img {
    transform: scale(1.1);
}
.img_link p {
    z-index: 2;
    position: relative;
    color: #FFFFFF;
    letter-spacing: 0;
    font-size: 2.4rem;
}
.img_link .icon {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    padding-right: 40px;
    font-family: 'Lato', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
}
.img_link .icon::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 31px;
    height: 31px;
    background: url(../image/icn_arrow_bg_y.svg) no-repeat center center/contain;
    transition: .3s;
}
.img_link:hover .icon::after{
    transform: translate(8px,-50%);
}
.sp {
    display: none;
}
.video_wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    cursor: pointer;
    box-sizing: border-box;
}
.video_wrapper button {
    opacity: 1;
    border: none;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    transition: .3s;
}
.video_wrapper button.is_play {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.video_wrapper button .thumb {
    display: block;
    border: 2px solid #FFFFFF;
    border-radius: inherit;
    width: inherit;
    height: inherit;
    box-sizing: border-box;
}
.video_wrapper button .thumb::before {
    content: '';
    opacity: 0.2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #595959;
}
.video_wrapper button .thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 92px;
    height: 92px;
    background: url(https://www.tutuanna.co.jp/cms/tutuanna/recruit/national/common/image/icn_player.svg) no-repeat center center/contain;
}
.video_wrapper button .thumb img {
    z-index: -1;
    position: absolute;
    border-radius: 24px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.video_wrapper button:hover .thumb img {
    transform: scale(1.1);
}
.video_wrapper video {
    z-index: -2;
    position: absolute;
    border-radius: 24px;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    object-fit: cover;
    cursor: pointer;
}
.video_wrapper iframe {
    border: none;
    width: 100%;
    height: 100%;
}
.list_3col {
    display: flex;
    align-items: stretch;
    gap: 38px;
}
.list_3col::after {
    content: none;
}
.list_3col li {
    padding: 29px 30px 26px 30px;
    width: calc((100% - 72px)/3);
    background-color: #FFFFFF;
    box-sizing: border-box;
}
.list_3col li .heading {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: bold;
}
.list_3col li .heading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    width: 26px;
    height: 1px;
    background-color: #E8C01B;
}
.list_3col li .text {
    line-height: 1.59;
    letter-spacing: normal;
    font-size: 1.6rem;
}
@media not screen and (min-width: 801px){
    html body {
        min-width: auto;
    }
    section {
        background-color: #FFFFFF;
    }
    p {
        font-size: 1.5rem;
    }
    .section_inner {
        padding: 0 min(12.5%, 47px);
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }
    .section_heading {
        margin-bottom: 22px;
    }
    .arrow_link {
        padding-right: 49px;
    }
    .arrow_link::after {
        right: 0;
        width: 37px;
        height: 37px;
    }
    .arrow_link:hover {
        text-decoration: none;
    }
    .arrow_link:hover::after {
        transform: translate(0,-50%);
    }
    .button_link {
        padding: 14px 52px;
    }
    .button_link::after {
        width: 37px;
        height: 37px;
    }
    .button_link:hover {
        background-color: #FCDC59;
        color: #03132A;
    }
    .img_link {
        margin-top: -16px;
        border-radius: 5px;
        padding: 43px 10px 35px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .img_link:hover img {
        transform: scale(1);
    }
    .img_link p {
        text-align: center;
        font-size: 1.5rem;
    }
    .img_link .icon {
        margin-top: 13px;
        padding-right: 50px;
    }
    .img_link .icon::after {
        right: -3px;
        width: 37px;
        height: 37px;
    }
    .img_link:hover .icon::after{
        transform: translate(0,-50%);
    }
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    .video_wrapper {
        width: 100%;
        aspect-ratio: 281/158;
    }
    .video_wrapper button .thumb::after {
        width: 65px;
        height: 65px;
    }
    .video_wrapper button:hover .thumb img {
        transform: scale(1);
    }
    .list_3col {
        flex-direction: column;
        gap: 15px 0;
    }
    .list_3col li {
        padding: 14px 27px;
        width: 100%;
    }
    .list_3col li .heading {
        margin-bottom: 3px;
        letter-spacing: normal;
    }
    .list_3col li .heading::after {
        right: -28px;
        width: 16px;
    }
    .list_3col li .text {
        letter-spacing: 0.06em;
    }
}

/* footer */
.footer {
    padding-top: 53px;
    background-color: #FFFFFF;
}
.footer .footer_recruit {
    position: relative;
    padding: 96px 0 74px 0;
    background: url(../image/recruit_bg_pc.jpg) no-repeat top left/cover;
}
.footer .footer_recruit .footer_recruit_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
}
.footer .footer_recruit .footer_recruit_inner .section_heading {
    z-index: 2;
    position: absolute;
    margin-bottom: 0;
    top: -4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 38.4%;
}
.footer .footer_recruit .footer_recruit_inner .section_heading img {
    width: 100%;
}
.footer .footer_recruit .footer_recruit_inner .catch {
    z-index: 2;
    letter-spacing: 0.01em;
    font-size: 3rem;
}
.footer .footer_recruit .footer_recruit_inner .button_link {
    z-index: 2;
    border-radius: 47px;
    margin-top: 29px;
    padding: 16px;
    width: 36.75%;
    font-size: 3.4rem;
}
.footer .footer_recruit .footer_recruit_inner .button_link::after {
    right: 20px;
    width: 51px;
    height: 51px;
}
.footer .footer_recruit .footer_recruit_inner .note {
    z-index: 2;
    margin-top: 17px;
    letter-spacing: normal;
}
.footer .footer_instagram {
    padding: 20px 0;
    background-color: #F8F4E4;
}
.footer .footer_instagram .footer_instagram_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 116px;
}
.footer .footer_instagram .footer_instagram_inner .instagram {
    overflow: hidden;
    border-radius: 10px;
}
.footer .footer_instagram .footer_instagram_inner a {
    display: flex;
    align-items: center;
    gap: 0 25px;
    border-radius: inherit;
    padding: 27px 40px;
    background-color: #FFFFFF;
    transition: .3s;
}
.footer .footer_instagram .footer_instagram_inner a:hover {
    transform: scale(1.1);
}
.footer .footer_instagram .footer_instagram_inner a img {
    width: 54px;
    height: 54px;
}
.footer .footer_information {
    padding: 40px 0;
    background-color: #F2F2F2;
}
.footer .footer_information .footer_information_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer .footer_information .footer_information_inner .logo img {
    width: 136px;
    height: 20px;
    object-fit: contain;
    transition: 0.3s;
}
.footer .footer_information .footer_information_inner .logo:hover img {
    opacity: 0.5;
}
.footer .footer_information .footer_information_inner ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 24px;
    width: 100%;
}
.footer .footer_information .footer_information_inner ul::after {
    content: none;
}
.footer .footer_information .footer_information_inner ul li {
    letter-spacing: normal;
}
.footer .footer_information .footer_information_inner ul li a:hover {
    text-decoration: underline;
}
.footer .footer_information .footer_information_inner ul li a[target="_blank"] {
    position: relative;
    padding-right: 20px;
}
.footer .footer_information .footer_information_inner ul li a[target="_blank"]::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    width: 13px;
    height: 10px;
    background: url(../image/icn_window.svg) no-repeat center center/contain;
}
.footer .footer_information .footer_information_inner .copyright {
    opacity: 0.5;
    margin-top: 18px;
    letter-spacing: normal;
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
}
@media not screen and (min-width: 801px){
    .footer {
        padding-top: 32px;
    }
    .footer .footer_recruit {
        padding: 91px 0 57px 0;
        background-image: url(../image/recruit_bg_sp.jpg);
    }
    .footer .footer_recruit .footer_recruit_inner .section_heading {
        top: -34px;
        width: calc(100% - 40px);
    }
    .footer .footer_recruit .footer_recruit_inner .catch {
        line-height: 1.5;
    }
    .footer .footer_recruit .footer_recruit_inner .button_link {
        margin-top: 34px;
        padding: 8px;
        width: 100%;
        font-size: 2.4rem;
    }
    .footer .footer_recruit .footer_recruit_inner .button_link::after {
        right: 10px;
        width: 37px;
        height: 37px;
    }
    .footer .footer_instagram {
        padding: 35px 0;
    }
    .footer .footer_instagram .footer_instagram_inner {
        flex-direction: column;
        gap: 21px 0;
    }
    .footer .footer_instagram .footer_instagram_inner p {
        letter-spacing: 0.04em;
    }
    .footer .footer_instagram .footer_instagram_inner a {
        gap: 0 16px;
        padding: 20px 40px;
    }
    .footer .footer_instagram .footer_instagram_inner a:hover {
        transform: scale(1);
    }
    .footer .footer_instagram .footer_instagram_inner a img {
        width: 39px;
        height: 39px;
    }
    .footer .footer_information {
        padding: 46px 0 29px 0;
    }
    .footer .footer_information .footer_information_inner ul {
        flex-direction: column;
        align-items: center;
        gap: 8px 0;
        margin-top: 24px;
        font-size: 1.2rem;
    }
    .footer .footer_information .footer_information_inner ul li a:hover {
        text-decoration: none;
    }
    .footer .footer_information .footer_information_inner .logo img {
        width: 103px;
        height: 15px;
    }
    .footer .footer_information .footer_information_inner .logo:hover img {
        opacity: 1;
    }
    .footer .footer_information .footer_information_inner .copyright {
        margin-top: 60px;
        font-size: 1rem;
    }
}

/* アニメーション */
.fade_in {
    opacity: 0;
    transform: translate(0, 50px);
    transition: 0.7s;
}
.fade_in.is_animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* 下層 */
.page_header {
    margin-top: 84px;
}
.page_header .heading_wrapper {
    margin: auto;
    padding: 67px 20px 49px;
    max-width: 1200px;
}
.page_heading {
    display: inline-block;
    position: relative;
}
.page_heading img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: contain;
}
.page_heading span {
    z-index: 1;
    display: inline-block;
    position: relative;
    padding: 44px 0 0 28px;
    line-height: 0.99;
    font-size: 4.6rem;
}
.page_header .img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.page_body {
    margin: 62px 0 80px 0;
}
.page_body .page_inner {
    margin: auto;
    padding: 0 20px;
    max-width: 800px;
}
.page_body .page_inner .lead {
    margin-bottom: 68px;
    line-height: 2;
    letter-spacing: 0.03em;
}
.page_body .page_inner section:not(:first-of-type) {
    margin-top: 74px;
}
.page_body .section_heading {
    margin-bottom: 30px;
    text-align: center;
    font-size: 3.2rem;
}
.page_body .lead {
    text-align: center;
    font-size: min(1.8vw,2rem);
}
.index {
    display: none;
    z-index: 999;
    position: fixed;
    top: 212px;
    right: 0;
    width: 231px;
    transform: translateX(231px);
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
    transition: 0.75s;
}
.index.is_show {
    transform: translateX(0);
}
.index .index_inner {
    position: relative;
    border-radius:inherit;
    padding: 28px 5px 28px 30px;
    background-color: #FFFFFF;
}
.index .index_head {
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -42px;
    border: none;
    border-radius: 10px 0 0 10px;
    width: 42px;
    height: 90px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: 0.75s;
}
.index.is_show .index_head {
    opacity: 0;
    visibility: hidden;
}
.index .index_head span {
    display: inline-block;
    position: relative;
    padding-top: 16px;
    color: #03132A;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
}
.index .index_head span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 9px;
    background: url(../image/icn_arrow.svg) no-repeat center center/contain;
}
.index.is_show .index_head span::after {
    content: none;
}
.index ul {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.index ul::after {
    content: none;
}
.index ul li {
    padding-left: 14px;
}
.index ul li.is_current {
    position: relative;
}
.index ul li.is_current::before {
    content: '';
    position: absolute;
    top: 1em;
    left: 0;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #FCDC59;
}
.index ul li.is_current a {
    color: #CCCCCC;
}
.index ul li a {
    color: #CCCCCC;
    font-size: 1.4rem;
}
.index ul li.is_current a {
    color: #03132A;
}
@media not screen and (min-width: 801px){
    .page_header {
        margin-top: 60px;
    }
    .page_header .heading_wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 86px 0 71px 0;
        padding: 0 20px;
        max-width: none;
    }
    .page_heading span {
        padding: 32px 0 0 7px;
        font-size: min(10.3vw,3.5rem);
    }
    .page_heading img {
        left: 50%;
        transform: translateX(-50%);
    }
    .page_header .img {
        height: 211px;
    }
    .page_body {
        margin: 44px 0 62px 0;
    }
    .page_body .page_inner .lead {
        margin-bottom: 93px;
        text-align: left;
        font-size: 1.5rem;
    }
    .page_body .section_heading {
        margin-bottom: 36px;
        font-size: 2.4rem;
    }
    .index {
        top: 120px;
        width: 167px;
        transform: translateX(167px);
    }
    .index.is_show {
        transform: translateX(0);
    }
    .index .index_inner {
        padding: 34px 15px 28px 18px;
    }
    .index .index_head {
        left: -30px;
        width: 30px;
        height: 75px;
    }
    .index .index_head span {
        font-size: 1.2rem;
    }
    .index ul li {
        padding-left: 0;
        letter-spacing: normal;
        font-size: 1.2rem;
    }
    .index ul li.is_current::before {
        content: none;
    }
    .index ul li a {
        font-size: 1.2rem;
    }
}