@charset "UTF-8";

p:not(:last-child) {
    margin-bottom: 1em;
}

@media screen and (max-width:1200px) {
    .container {
        padding-left: 5%;
        padding-right: 5%;
    }

    /*=====max-width:1200px=====*/
}

/* ============================
* header
* ========================= */

#header .header_inner {
    background-color: var(--bg_color);
}

/* ============================
* MV
* ========================= */
.top_mv_inner {
    position: relative;
    margin-bottom: 120px;
}

#mv_swiper {
    opacity: 0;
}

.top_mv_inner.appear #mv_swiper {
    animation: topMvAnime_mv 2s 500ms forwards;
}

@keyframes topMvAnime_mv {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.top_mv img.mv {
    width: 100%;
    height: 98vh;
    height: 98dvh;
    /* height: 900px; */
    object-fit: cover;
}

.top_mv .swiper-pagination-bullet {
    background-color: var(--accent_color);
}

.maintitle {
    position: absolute;
    left: 50%;
    top: calc(50% + 69px);
    max-width: 460px;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;

}

.top_mv_inner.appear .maintitle {
    animation: topMvAnime_ttl 1s 2400ms forwards;
}

@keyframes topMvAnime_ttl {
    from {
        opacity: 0;
        filter: blur(5px);
        transform: translate(-50%, -50%) scale(1.02);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(1);
    }
}

@media screen and (max-width:1024px) {
    .top_mv img.mv {
        height: 900px;
    }

    .maintitle {
        top: calc(45% + 64px);
    }

    /*=====max-width:1024px=====*/
}

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

    .top_mv img.mv {
        height: 700px;
    }

    .maintitle {
        width: 60%;
        top: calc(45% + 58px);
    }

    /*=====max-width:599px=====*/
}

/* ============================
* section:top_message
* ========================= */

.top_message_inner {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 220px;
    background-image: url(../img/top_message.jpg);
    background-position: bottom left;
    background-size: cover;
    line-height: 2.0;
    overflow: hidden;
}

.top_message_inner .img_sp {
    display: none;
}

.top_message_inner .container {
    padding: 120px 0 150px 0;
    transform: translateX(50%);
}

@media screen and (max-width:1080px) {
    .top_message_inner {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 120px;
        background-image: none;
    }

    .top_message_inner .img_sp {
        display: block;
        max-height: 430px;
    }

    .top_message_inner .img_sp img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left bottom;
    }

    .top_message_inner .container {
        padding-top: 0;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 3rem;
        transform: none;
        text-align: center;
    }

    /*=====max-width:1080px=====*/
}

/* ============================
* section:top_info
* ========================= */

.top_info_inner {
    margin-bottom: var(--contents_gutter);
    overflow: hidden;
}

.top_info_content {
    display: flex;
}

.top_info_content.right {
    flex-direction: row-reverse;
}

.top_info .top_info_txt {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 62px;
    padding: 80px;
    width: 46%;
    height: calc(480px - 62px);
    background-color: var(--main_color);
    /* background-color: var(--beige_pale); */
}

.top_info .top_info_ttl {
    position: absolute;
    top: -58px;
    left: var(--size_xl);
    font-size: 48px;
    font-weight: 500;
    color: var(--title_color);
}

.top_info .top_info_ttl span {
    display: inline-block;
    margin-left: 0.7rem;
    color: var(--title_color);
    font-size: var(--size_ss);
    font-weight: 500;
}

.top_info .top_info_img {
    width: 53%;
    height: 440px;
}

.top_info .top_info_img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

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

    .top_info_inner {
        margin-bottom: var(--contents_gutter);
    }

    .top_info_content {
        flex-direction: column;
    }

    .top_info_content.right {
        flex-direction: column;
    }

    .top_info .top_info_img {
        width: 100%;
        height: 400px;
    }

    .top_info_content.right .top_info_txt {
        margin-right: 0;
    }

    .top_info_content.left .top_info_txt {
        margin-left: 0;
    }

    .top_info .top_info_ttl {
        position: static;
        padding: 0;
        margin-bottom: 1rem;
        color: var(--beige_dense);
        line-height: 1.2;
    }

    .top_info .top_info_ttl span {
        color: var(--beige_dense);
    }

    .top_info .top_info_txt {
        width: 100%;
        height: auto;
        margin-top: 0;
        padding: 1rem 40px 60px;
    }

    /*=====max-width:1076px=====*/
}

@media screen and (max-width:599px) {
    .top_info .top_info_ttl {
        position: static;
        padding: 0;
        margin-bottom: 1rem;
    }

    .top_info .top_info_txt {
        width: 100%;
        height: auto;
        margin-top: 0;
        padding: 1rem 40px 60px;
    }

    .top_info .top_info_ttl span {
        display: none;
    }

    /*=====max-width:599px=====*/
}

/* btn */

.top_info .btn_wrap {
    width: 100%;
    text-align: right;
}

.top_info .btn {
    position: relative;
    display: inline-block;
    padding: 0.2rem 2rem;
    border: 1px solid var(--text_color);
    background-color: var(--accent_color);
    border-radius: 999px;
}

.top_info .btn::before,
.top_info .btn::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: -10%;
    height: 1px;
    background-color: var(--text_color);
}

.top_info .btn::before {
    width: 20%;
}

.top_info .btn::after {
    width: 6%;
    transform-origin: right top;
    transform: rotate(30deg);
}

.top_info .btn:hover::before,
.top_info .btn:hover::after {
    animation: btnArrowAnime 1s infinite;
}

@keyframes btnArrowAnime {
    0% {
        right: -10%;
    }

    50% {
        right: calc(-10% - 8px)
    }

    100% {
        right: -10%;
    }
}

@media screen and (max-width:1024px) {
    .top_info .btn_wrap {
        margin-top: 1.5rem;
    }

    /*=====max-width:1024px=====*/
}



/* ============================
* works swiper
* ========================= */

.works_inner {
    position: relative;
    margin-top: calc(var(--section_gutter) + 80px);
    margin-bottom: 220px;
}

.works .section_title {
    position: absolute;
    top: -80px;
    left: 20%;
    color: var(--beige_dense);
    font-size: 160px;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.3rem;
    line-height: 1;
    opacity: 0.2;
}

@media screen and (max-width:1199px) {
    .works .section_title {
        left: 5%;
    }

    /*=====max-width:1199px=====*/
}

@media screen and (max-width:599px) {
    .works .section_title {
        font-size: 80px;
        top: -60px;
    }

    /*=====max-width:599px=====*/
}

.swiper {
    width: 100%;
    margin-bottom: var(--contents_side_gutter);

}

.swiper-wrapper {
    transition-timing-function: linear;
}

.swiper .item {
    width: 300px;
    height: 300px;
    padding: 1rem;
    background-color: var(--beige_pale);
    box-shadow: 0px 8px 16px -2px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
}

.swiper .item span {
    display: block;
    text-align: left;
}

.swiper .item p {
    text-align: center;
    font-size: var(--size_ss);
}

/* btn */

.works .btn_wrap {
    text-align: center;
}

.works .btn_wrap .btn {
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
}

.works .btn_wrap .btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.works .btn svg rect {
    transition: all 400ms ease;
    stroke: var(--text_color);
    stroke-width: 2;
    stroke-dasharray: 200px, 16px;
    stroke-dashoffset: 70px;
}

.works .btn:hover svg rect {
    stroke-dashoffset: 284px;
}

/* ============================
* section:flw
* ========================= */
.flw_inner {
    margin-bottom: 220px;
    padding: var(--section_gutter) 0;
    background-color: var(--main_color);
}

.flw .flex {
    display: flex;
    justify-content: space-between;
}

.flw .flw_txt_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.flw .flw_txt {
    margin-bottom: 6rem;
    color: var(--title_color);
    text-align: center;
    line-height: 2.2;
}

.flw .btn {
    position: relative;
    display: block;
    width: 210px;
    height: 140px;
    font-size: var(--size_ss);
    background-image: url(../img/book.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.flw .btn:hover {
    background-image: url(../img/book_page.png);
    opacity: 1;
}

.flw .btn::after {
    content: "＼  CHECK  ／";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.flw .btn:hover::after {
    content: "＼ FLOW !  ／";
    top: calc(50% - 5px);
}

.flw .flw_img {
    position: relative;
}

.flw .flw_img::before,
.flw .flw_img::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
}


.flw .flw_img::before {
    top: -10px;
    left: -10px;
    border-bottom: 50px solid transparent;
    border-left: 50px solid var(--beige_dense);
}

.flw .flw_img::after {
    bottom: -10px;
    right: -10px;
    border-top: 50px solid transparent;
    border-right: 50px solid var(--beige_dense);
}

.flw .flw_img img.img_pc {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flw .flw_img img.img_sp {
    display: none;
}

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

    .flw_inner {
        padding-top: var(--contents_gutter);
        padding-bottom: var(--contents_gutter);
    }

    .flw .flex {
        flex-direction: column-reverse;
    }

    .flw .flw_txt_wrap {
        width: 100%;
    }

    .flw .flw_txt {
        margin-bottom: 2.5rem;
    }

    .flw .flw_img {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: var(--contents_gutter);
    }

    .flw .flw_img img.img_pc {
        display: none;
    }

    .flw .flw_img img.img_sp {
        display: block;
    }

    /*=====max-width:1024px=====*/
}

/* ============================
* section:architect
* ========================= */
.arch_inner {
    margin-bottom: var(--footer_gutter);
}

.arch .container {
    padding: 0 110px;
}

.arch .container.flex {
    display: flex;
    justify-content: space-between;
}

.arch .arch_img {
    width: 40%;
    aspect-ratio: 1/1;
}

.arch .arch_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arch .arch_txt {
    position: relative;
    width: 53%;
    padding: 20px;
}

.arch .section_title {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--sub_color);
    font-size: 90px;
    opacity: 0.8;
    z-index: -1;
}

.arch .arch_name {
    margin-bottom: 0;
    padding: 1rem 0;
    font-size: 32px;
}

.arch .arch_name span {
    display: block;
    font-size: var(--size_ss);
    line-height: 0;
}

.arch .btn_wrap {
    text-align: right;
}

.arch .btn {
    position: relative;
    display: inline-block;
    padding: 0.2rem 2rem;
    /* border: 2px solid #80BC7F; */
    border: 2px solid var(--sub_color);
    border-radius: 999px;
    text-align: right;
}

.arch .btn::before,
.arch .btn::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: -10%;
    height: 1px;
    background-color: var(--sub_color);
}

.arch .btn::before {
    width: 20%;
}

.arch .btn::after {
    width: 6%;
    transform-origin: right top;
    transform: rotate(30deg);
}

.arch .btn:hover::before,
.arch .btn:hover::after {
    animation: btnArrowAnime 1s infinite;
}

@media screen and (max-width:1024px) {
    .arch .container {
        padding: 0 5%;
        max-width: 600px;
        margin: 0 auto;
    }

    .arch .container.flex {
        flex-direction: column;
        align-items: center;
    }

    .arch .arch_img {
        width: 100%;
        max-width: 400px;
        margin-bottom: var(--contents_side_gutter);
    }

    .arch .arch_txt {
        width: 100%;
        max-width: 600px;
        padding: 0;
    }

    /*=====max-width:1024px=====*/
}

/* ============================
* footer_bf 
* ========================= */

.footer_bf .footer_bf_inner {
    padding: var(--contents_side_gutter) 0;
    padding-bottom: var(--footer_gutter);
    background: linear-gradient(0deg, rgba(219, 234, 234, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.footer_bf .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
    text-align: center;
}

.footer_bf .link_box {
    width: 49%;
    height: 300px;
    /* border: 1px solid #fff; */
}

.footer_bf .link_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: var(--contents_side_gutter);
}

.footer_bf .link_access {
    background-image: url(../img/top_access.jpg);
}

.footer_bf .link_faq {
    background-image: url(../img/top_faq.jpg);
}


.footer_bf .link_txt::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.footer_bf .link_access .link_txt::before {
    background-image: url(../img/map-pin-fill.svg);
}


.footer_bf .link_faq .link_txt::before {
    background-image: url(../img/questionnaire-line.svg);
}

.footer_bf .link_ttl {
    font-size: var(--size_xl);
    margin-bottom: 0;
}


.footer_bf .link_contact {
    width: 100%;
    height: 150px;
    margin-top: var(--contents_side_gutter);
    background-color: #a26836;
}

.footer_bf .link_contact a {
    display: flex;
    align-items: center;
}

.footer_bf .link_contact .link_ttl::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    background-image: url(../img/mail-line_white.svg);
}

.footer_bf .link_contact .link_ttl {
    margin-right: 2rem;
}


@media screen and (max-width:599px) {
    .footer_bf .footer_bf_inner {
        padding-bottom: var(--contents_side_gutter);
    }

    .footer_bf .flex {
        flex-direction: column;
    }

    .footer_bf .link_box {
        width: 100%;
        height: 160px;
        margin-bottom: var(--contents_side_gutter);
        font-size: var(--size_ss);
    }

    .footer_bf .link_txt::before {
        width: 40px;
        height: 40px;
    }

    .footer_bf .link_txt p {
        font-size: var(--size_ss);
    }

    .footer_bf p.link_ttl {
        font-size: var(--size_lg);
        margin-bottom: 0;
    }

    .footer_bf .link_contact {
        margin-top: 0;
    }

    /*=====max-width:599px=====*/
}