@charset "UTF-8";
/*=============================================
	index
=============================================*/
.mv {
    width: 100%;
    height: 100svh;
    background: -webkit-gradient(linear, right top, left top, from(#FFFFFF), to(#6F95AB));
    background: -webkit-linear-gradient(right, #FFFFFF, #6F95AB);
    background: linear-gradient(270deg, #FFFFFF, #6F95AB);
    background-size: 400% 400%;
    -webkit-animation: gradientFlow 12s ease infinite;
    animation: gradientFlow 12s ease infinite;
}

.mv_hero {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 10px clamp(20px, 5%, 20px);
}

.mv_hero .hero_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -ms-flex-pack: right;
    justify-content: right;
    margin-top: 70px;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.mv_hero .hero_nav .nav_item a {
    font-size: 1.25em;
    margin: .1em 0;
    display: inline-block;
}

.mv_hero .hero_nav .nav_item a:hover {
    opacity: .6;
}

.mv_hero .hero_txt {
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

@-webkit-keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.TextTyping span {
    display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
    content: "|";
    -webkit-animation: typinganime 0.3s ease infinite;
    animation: typinganime 0.3s ease infinite;
}

@-webkit-keyframes typinganime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes typinganime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*==================================================================================================
	About
==================================================================================================*/
.main_bg::after {
    content: "";
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, from(#6F95AB), to(#E8EEF2));
    background: -webkit-linear-gradient(left, #6F95AB, #E8EEF2);
    background: linear-gradient(to right, #6F95AB, #E8EEF2);
    width: 100vw;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: calc(50% - 16.85%);
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: .2;
}

@media (max-width: 840px) {
    .main_bg::after {
        left: 50%;
    }
}

.column_content {
    margin-top: 0;
}

.column_content .cmn_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    height: 100%;
}

@media (max-width: 840px) {
    .column_content .cmn_inner {
        display: block;
    }
}

.column_content_sidebar {
    width: 25%;
    padding-right: clamp(20px, 5vw, 120px);
    mix-blend-mode: difference;
    color: #FFF;
    z-index: 10;
}

@media (max-width: 840px) {
    .column_content_sidebar {
        display: none;
    }
}

.column_content_sidebar .sidebar_list {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.column_content_sidebar .sidebar_item {
    border-top: solid 0.5px #999999;
}

.column_content_sidebar .sidebar_item:last-child {
    border-bottom: solid 0.5px #999999;
}

.column_content_sidebar .sidebar_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5em 1em;
}

.column_content_sidebar .sidebar_link .en {
    font-size: 1.25em;
    margin-bottom: 5px;
}

.column_content_sidebar .sidebar_link .ja {
    font-size: .85em;
}

.column_content_sidebar .sidebar_link:hover {
    opacity: .5;
    -webkit-transform: translateX(7px);
    transform: translateX(7px);
}

.column_content_main {
    width: 75%;
}

@media (max-width: 840px) {
    .column_content_main {
        width: 100%;
    }
}

.data_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 10px;
    border-top: solid 0.5px #999999;
}

.data_item:last-child {
    border-bottom: solid 0.5px #999999;
}

@media (max-width: 700px) {
    .data_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 10px;
    }
}

.data_ttl {
    width: 25%;
    padding-right: 1em;
    color: #999999;
}

@media (max-width: 700px) {
    .data_ttl {
        width: 100%;
        margin-bottom: 5px;
    }
}

.data_txt {
    width: 75%;
}

@media (max-width: 700px) {
    .data_txt {
        width: 100%;
    }
}

.txt_list li {
    list-style: decimal;
    margin: .25em 0 .25em 1.5em;
}

.txt_list li::marker {
    color: #5F8293;
    font-size: 1.25em;
}

/*==================================================================================================
	Business model
==================================================================================================*/
.page_business .phase_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px auto;
}

@media (min-width: 701px) {
    .page_business .phase_list {
        gap: 30px;
    }
}

@media (max-width: 700px) {
    .page_business .phase_list {
        gap: 10px;
    }
}

.page_business .phase_list li {
    padding: 20px;
    background-color: #e4edf2;
}

@media (min-width: 701px) {
    .page_business .phase_list li {
        width: calc(50% - 15px);
    }
}

@media (max-width: 700px) {
    .page_business .phase_list li {
        width: 90%;
    }
}

@media (min-width: 701px) {
    .page_business .phase_list li:nth-child(even) {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
}

@media (max-width: 700px) {
    .page_business .phase_list li:nth-child(even) {
        margin-left: auto;
    }
}

.page_business .phase_list li .phase_ttl {
    color: #5F8293;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: "Inter", sans-serif;
    font-weight: 300;
}

.page_business .phase_list li .phase_ttl .ttl {
    display: block;
    font-size: 1.25em;
    font-weight: 500;
    margin-top: -.25em;
}

/*==================================================================================================
	Project
==================================================================================================*/
.page_projects .cmn_secttl {
    display: inline-block;
}

.page_projects .cmn_secttl img {
    width: clamp(240px, 30vw, 400px);
}

.page_projects .sec_content figure img {
    margin: 10px auto;
}

.page_projects .sec_content .link {
    margin: 20px 0;
    display: inline-block;
}

.page_projects .sec_content .link img {
    max-width: 280px;
}

.page_projects .sec_content .link span {
    text-decoration: underline;
    color: #5F8293;
}

.page_projects .sec_content .link:hover {
    opacity: .7;
}

.page_projects .sec_content .credit {
    margin: 20px 0;
}

.page_projects .sec_content .credit .ttl {
    font-weight: 600;
    position: relative;
    padding-left: .5em;
    font-size: .9em;
    color: #999999;
    margin-bottom: 1em;
}

.page_projects .sec_content .credit .ttl::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 60%;
    width: 3px;
    background-color: #d4d4d4;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.page_projects .sec_content .credit_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px 0;
    font-size: .85em;
}

.page_projects .sec_content .credit_list dt {
    width: 30%;
    padding-right: 1em;
}

.page_projects .sec_content .credit_list dd {
    width: 70%;
}

.page_projects #thirdthing {
    padding-top: 50px;
}

/*==================================================================================================
	Partner
==================================================================================================*/
.page_partner .cmn {
    margin-top: 0;
}

.page_partner .partner_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 840px) {
    .page_partner .partner_list {
        gap: 10px;
    }
}

.page_partner .partner_list li {
    width: calc(33.33% - 13.33px);
}

@media (max-width: 840px) {
    .page_partner .partner_list li {
        width: calc(50% - 5px);
    }
}

.page_partner .partner_list li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 15px 20px;
    border: solid .5px;
    position: relative;
}

.page_partner .partner_list li a::after {
    content: "";
    position: absolute;
    background: url("../img/00_common/link.svg");
    top: 50%;
    right: 15px;
    width: 15px;
    height: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (max-width: 540px) {
    .page_partner .partner_list li a::after {
        right: 10px;
        width: 10px;
        height: 10px;
    }
}

.page_partner .partner_list li a:hover {
    background-color: #e4edf2;
    border-color: #e4edf2;
}

.page_partner .partner_list li a:hover::after {
    top: 45%;
}

.page_partner .partner_list li a h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.page_partner .partner_list li a h2 .ttl {
    font-size: 1.2em;
}

@media (max-width: 840px) {
    .page_partner .partner_list li a h2 .ttl {
        font-size: 1em;
    }
}

@media (max-width: 540px) {
    .page_partner .partner_list li a h2 .ttl {
        font-size: .8em;
    }
}

.page_partner .partner_list li a h2 .category {
    font-size: .85em;
}

@media (max-width: 840px) {
    .page_partner .partner_list li a h2 .category {
        font-size: .65em;
    }
}

/*==================================================================================================
	granma
==================================================================================================*/
.interview_list li:not(:last-child) {
    margin-bottom: 1em;
}

.interview_list li .name {
    border-bottom: solid 1.5px #5F8293;
    padding: .25em 1.5em .25em .25em;
    display: inline-block;
    position: relative;
}

.interview_list li .name::after {
    content: "";
    position: absolute;
    background: url("../img/00_common/arrow_r.svg");
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 540px) {
    .interview_list li .name::after {
        width: 10px;
        height: 10px;
    }
}

.interview_list li .name span {
    font-size: .75em;
}

.interview_list li a:hover .name {
    color: #5F8293;
}

.interview_list li a:hover .name::after {
    right: -5px;
}

/*==================================================================================================
	Research
==================================================================================================*/
.page_research .cmn {
    margin-top: 0;
}

.page_research .interview_list {
    margin-top: 20px;
}

/*==================================================================================================
	Message
==================================================================================================*/
.page_message .cmn {
    margin-top: 0;
}

.note {
    margin-top: 40px;
}

.note a:hover {
    opacity: .7;
}

.note a:hover img {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
}

.note img {
    max-width: 320px;
}

/*==================================================================================================
	Recruit
==================================================================================================*/
.page_recruit .cmn {
    margin-top: 0;
}

.page_recruit .recruit_list {
    margin-top: 30px;
    padding: 0 20px;
    border: solid 1px #5F8293;
}

.page_recruit .recruit_list li {
    margin: 20px auto;
}

.page_recruit .recruit_list li .ttl {
    color: #5F8293;
    font-size: 1.25em;
    margin-bottom: -.25em;
}

.page_recruit .recruit_list li .txt {
    margin-left: 1.25em;
    font-size: .85em;
}

/*==================================================================================================
	お問い合わせ contact
==================================================================================================*/
.mailform .form_txt {
    color: #1b1b1b;
}

.mailform_table {
    margin: 40px auto;
}

@media (max-width: 540px) {
    .mailform_table {
        margin: 0;
    }
}

.mailform_table dl {
    line-height: 1.8em;
    width: 100%;
    padding: 1.5em 1em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 840px) {
    .mailform_table dl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: .8em 0;
    }
}

@media (max-width: 700px) {
    .mailform_table dl {
        line-height: 1.2em;
    }
}

.mailform_table dt {
    margin-right: 0.5em;
    width: 25%;
    position: relative;
    vertical-align: middle;
    font-weight: 500;
    color: #1b1b1b;
}

@media (max-width: 840px) {
    .mailform_table dt {
        width: 100%;
        margin-bottom: 10px;
    }
}

.mailform_table dd {
    width: 75%;
    padding-left: 1.5em;
}

@media (max-width: 840px) {
    .mailform_table dd {
        padding-left: 0;
        width: 100%;
    }
}

.mailform_table .required::after {
    content: "必須";
    background: #1b1b1b;
    color: #FFF;
    padding: 3px 1em;
    line-height: 1.75;
    position: absolute;
    right: 20px;
    text-align: center;
    font-weight: 400;
    font-size: 10px;
    border-radius: 14px;
}

@media (max-width: 1024px) {
    .mailform_table .required::after {
        right: 0;
    }
}

@media (max-width: 840px) {
    .mailform_table .required::after {
        margin-left: 10px;
        position: relative;
        padding: .2em 1em;
    }
}

@media (max-width: 700px) {
    .mailform_table .required::after {
        font-size: .8em;
    }
}

.txt_area {
    width: 100%;
    padding: 0 10px;
    height: 2.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    resize: vertical;
    border: solid 0.5px #999999;
}

.txt_area.-l {
    min-height: 200px;
}

.privacypolicy, .kakunin {
    margin: 30px auto;
    color: #1b1b1b;
}

@media (max-width: 840px) {
    .privacypolicy, .kakunin {
        margin: 25px auto;
    }
}

.privacypolicy_txt a {
    text-decoration: underline;
    color: #999999;
}

.privacypolicy_txt a:hover {
    color: #1b1b1b;
}

.kakunin {
    text-align: right;
}

.kakunin .btn_main {
    cursor: pointer;
    background-color: transparent;
}

.kakunin .btn_main:hover {
    background-color: #999999;
}

/*==================================================================================================
	個人情報保護方針 policy
==================================================================================================*/
.policy-list {
    margin: 50px auto;
}

.policy-list li {
    padding: 1em;
    margin: 1em auto;
    border-bottom: solid 0.5px #999999;
}

.policy-list li:first-child {
    border-top: solid 0.5px #999999;
}

/*==================================================================================================
	etc
==================================================================================================*/
.etc {
    margin: 80px auto;
}

.etc h2 {
    font-size: 1.25em;
    margin-bottom: 1em;
}

.etc .btn {
    margin-top: 3em;
    text-align: center;
}

/*=================================================================
	確認画面
==================================================================*/
.confirm #formWrap {
    margin: 20px auto 50px;
}

.confirm-items {
    width: 100%;
    margin-top: 20px;
}

.confirm-items tbody tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: solid 1px #999999;
}

@media (max-width: 540px) {
    .confirm-items tbody tr {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.confirm-items tbody tr th, .confirm-items tbody tr td {
    padding: .75em 1em;
}

@media (max-width: 540px) {
    .confirm-items tbody tr th, .confirm-items tbody tr td {
        width: 100% !important;
    }
}

.confirm-items tbody tr th {
    width: 12em;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 540px) {
    .confirm-items tbody tr th {
        padding-bottom: 0;
    }
}

.confirm-items tbody tr td {
    width: calc(100% - 12em);
    font-weight: 400;
}

.confirm-btns-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.confirm-btns-wrap.error {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.confirm-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.confirm-btns .confirm-btn {
    border: none;
    background: none;
    padding: .5em 1.5em;
    border-radius: 4px;
}

.confirm-btns .confirm-btn-back {
    margin-top: 20px;
}

.confirm-btns .confirm-btn-submit {
    background: #999999;
    color: #FFF;
    font-size: 1.25em;
}

.confirm-btns .confirm-btn:hover {
    opacity: .6;
}
