@charset "utf-8";
/*
theme Name: aperio
Description: 株式会社APERIOのテーマです
version： 1.0
*/

/*----------------------------------------
	all
----------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
    font-size: 62.5%;
    color: #3C4A2E;
    -webkit-text-size-adjust: 100%;
    line-height: 1;
    font-weight: 500;
    scroll-behavior: smooth;
    background-color: #EBEBEB;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: #3C4A2E;
}

img {
    vertical-align: bottom;
    height: auto;
}

ul {
    list-style-type: none;
}

#container {
    overflow: hidden;
}

.bold {
    font-weight: bold;
}


@media screen and (max-width:768px) {
    body {
        font-size: 1.6rem;
    }
}

/*----------------------------------------
	common
----------------------------------------*/

.c-inner1200 {
    width: 1200px;
    margin: auto;
}

.c-text {
    font-size: 1.8rem;
    line-height: 1.75;
}

.c-button {
    font-size: 1.8rem;
    width: 110px;
    height: 110px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s;
    border-radius: 50%;
}

.c-button span {
    display: flex;
    align-items: center;
}

.c-button:after {
    content: "";
    display: block;
    width: 14px;
    height: 9px;
    background-image: url(images/button_arrow_green.svg);
    background-repeat: no-repeat;
    margin: 0 0 0 5px;
}

.color {
    color: #006FB9;
}

.op {
    transition: .3s;
}

.op:hover {
    opacity: 0.7;
}

.lookforward-close-btn {
    display: none;
}

@media (hover: hover) {
    .c-button:hover {
        background-color: #333;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .c-button:hover:after {
        filter: brightness(0) invert(1);
        transform: translateX(5px);
        transition: transform 0.4s;
    }
}

@media screen and (max-width:1300px) {
    .c-inner1200 {
        width: 100%;
        padding: 0 5.5%;
    }
}

@media screen and (max-width:820px) {
    .c-text {
        font-size: 1.4rem;
    }

    .c-inner1200 {
        width: 100%;
        padding: 0 3.5%;
    }

    .c-button {
        width: 90px;
        height: 90px;
        font-size: 1.6rem;
    }

    .c-button:after {
        width: 12px;
        height: 8px;
        background-size: contain;
    }
}

@media screen and (max-width: 590px) {
    .c-button {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
    }

    .c-button:after {
        width: 10px;
        height: 7px;
        margin-left: 3px;
    }
}

/*----------------------------------------
	header
----------------------------------------*/

.l-header {
    position: absolute;
    top: 81px;
    left: 92px;
    z-index: 1;
}

.l-header__gnavList:not(:last-child) {
    margin: 0 0 30px;
}

.l-header__gnavList {
    padding: 0 0 0 14px;
    position: relative;
    transition: transform 0.3s ease;
}

.l-header__gnavList:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 86.5%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    transition: height 0.3s ease, background-color 0.3s ease;
}

.l-header__gnavEn {
    display: block;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    line-height: 1.273;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
}

.l-header__gnavJp {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: #fff;
}

.l-header__gnavEn,
.l-header__gnavJp {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo {
    margin: 0 0 76px;
}

.l-header.js-first-view {
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    pointer-events: none;
}

.l-header.js-first-view.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media (hover: hover) {
    .l-header__gnavList:hover:before {
        height: 100%;
        background-color: #fff;
    }

    .l-header__gnavList:hover {
        transform: translateX(5px);
    }

    .l-header__gnavList:hover .l-header__gnavJp {
        opacity: 0.7;
    }
}

@media screen and (max-width: 1500px) {
    .l-header {
        top: 60px;
        left: 40px;
    }

    .l-header__gnavEn {
        font-size: 1.8rem;
    }

    .l-header__gnavJp {
        font-size: 1.4rem;
    }

    .logo {
        margin: 0 0 50px;
        width: 180px;
    }

    .logo img {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .l-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        z-index: 1000;
        box-sizing: border-box;
    }

    .l-header__inner {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        margin: 0 !important;
        width: 150px;
        line-height: 1;
        display: flex;
        align-items: center;
        position: relative;
        top: 35px;
    }

    .logo a {
        display: block;
        line-height: 0;
    }

    .c-hamburger {
        margin-left: auto;
    }

    .l-header__gnav {
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100vh;
        background: #3C4A2E;
        transition: left 0.4s ease;
        padding: 110px 40px 0px;
        z-index: 1;
    }

    #hamburger:checked ~ .l-header__gnav {
        left: 0;
    }

    .l-header.js-first-view {
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        transition: none !important;
    }

    .l-header.js-first-view .js-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .l-header__gnavList {
        margin-bottom: 40px !important;
    }

    .l-header__gnavEn {
        font-size: 2.4rem;
    }

    .c-hamburger {
        display: block;
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.2);
        position: fixed;
        right: 20px;
        top: 20px;
        border: 1px solid #fff;
        z-index: 1001;
        cursor: pointer;
    }

    .c-hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 15px;
        transition: all 0.3s ease;
    }

    .c-hamburger span:nth-child(1) {
        top: 22px;
    }

    .c-hamburger span:nth-child(2) {
        top: 30px;
    }

    .c-hamburger span:nth-child(3) {
        top: 38px;
    }

    #hamburger:checked + .c-hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #hamburger:checked + .c-hamburger span:nth-child(2) {
        opacity: 0;
    }

    #hamburger:checked + .c-hamburger span:nth-child(3) {
        display: block;
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 820px) {
    .c-hamburger {
        right: 15px;
        top: 15px;
    }

    .l-header {
        padding: 0px 15px;
    }

    .l-header__gnav {
        padding: 110px 40px 0;
    }
}

@media screen and (max-width: 590px) {
    .c-hamburger {
        width: 50px;
        height: 50px;
        right: 15px;
        top: 15px;
    }

    /* 中の線を 30px → 24px に短くし、位置を中央寄せに */
    .c-hamburger span {
        width: 24px;
        left: 13px;
        /* (50px - 24px) / 2 */
    }

    /* 3本の線の位置を 50px の高さに合わせて再調整 */
    .c-hamburger span:nth-child(1) {
        top: 18px;
    }

    .c-hamburger span:nth-child(2) {
        top: 24px;
    }

    .c-hamburger span:nth-child(3) {
        top: 30px;
    }

    /* --- 閉じた時（×印）の動きを 50px 用に微調整 --- */
    #hamburger:checked + .c-hamburger span:nth-child(1) {
        /* 1本目を 24px (中央) まで下げて回転 */
        transform: translateY(6px) rotate(45deg);
    }

    #hamburger:checked + .c-hamburger span:nth-child(2) {
        opacity: 0;
    }

    #hamburger:checked + .c-hamburger span:nth-child(3) {
        /* 3本目を 24px (中央) まで上げて回転 */
        transform: translateY(-6px) rotate(-45deg);
    }

    .logo {
        width: 90px;
        top: 22px;
    }

    .l-header__gnav {
        padding: 110px 20px 0px;
    }

    .l-header__gnavEn {
        font-size: 1.4rem;
    }

    .l-header__gnavJp {
        font-size: 1.4rem;
    }
}

/*----------------------------------------
	footer
----------------------------------------*/

.l-footer {
    padding: 114px 0 20px;
    background-image: url(images/footer_bg.jpg);
    background-size: cover;
}

.l-footerWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 66px;
}

.l-footerLogo {
    display: block;
    margin: 0 0 35px;
}

.l-footer__telNumber {
    font-size: 3rem;
    line-height: 1.267;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.06em;
    margin: 0 0 20px;
}

.l-footerInfo {
    color: #fff;
}

.l-footerAdd {
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.l-footerNav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    align-items: start;
    gap: 27px 66px;
    list-style: none;
    padding: 0;
}

.l-footerNav__en {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 1.278;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
}

.l-footerNav__jp {
    display: block;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 1.462;
    color: #fff;
}

.l-footerNav__list {
    position: relative;
    padding: 0 0 0 12px;
}

.l-footerNav__list:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 40px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.l-footerCopy {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 1500px) {
    .l-footer {
        padding: 80px 40px 20px;
    }

    .l-footerNav {
        gap: 20px 40px;
    }
}

@media screen and (max-width: 820px) {
    .l-footer {
        padding: 60px 0 20px;
    }

    .l-footerLogo {
        width: 170px;
        margin: 0 auto 30px;
    }

    .l-footerLogo img {
        width: 100%;
    }

    .l-footerWrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .l-footerInfo {
        margin-bottom: 50px;
    }

    .l-footerNav {
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .l-footer__telNumber {
        font-size: 2.4rem;
    }

    .l-footerAdd {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .l-footer {
        padding: 50px 20px 20px;
    }

    .l-footerLogo {
        width: 100px;
        margin: 0 auto 25px;
    }

    .l-footer__telNumber {
        font-size: 2.2rem;
        letter-spacing: 0.04em;
    }

    .l-footerNav {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .l-footerNav__list:before {
        height: 30px;
    }

    .l-footerNav__en {
        font-size: 1.6rem;
    }

    .l-footerNav__jp {
        font-size: 1.2rem;
    }

    .l-footerCopy {
        font-size: 1rem;
        margin-top: 40px;
    }
}

/*----------------------------------------
	topCommon
----------------------------------------*/

.c-topTitle {
    text-align: center;
}

.c-topTitle h2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: #3C4A2E;
    font-weight: 700;
}

.c-topTitle span {
    display: block;
    font-size: 4.6rem;
    letter-spacing: 0.06em;
    color: #3C4A2E;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0 0 16px;
}

.c-topTitle span:after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #3C4A2E;
    margin: 15px auto 0;
}

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

    .c-topTitle span,
    .c-topTitle02 span {
        font-size: 3.8rem;
    }
}

@media screen and (max-width: 820px) {
    .c-topTitle span {
        font-size: 3.2rem;
    }

    .c-topTitle h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 590px) {
    .c-topTitle span {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .c-topTitle span:after {
        width: 80px;
        margin-top: 10px;
    }
}

/*----------------------------------------
	topMv
----------------------------------------*/

.p-topMv {
    background-image: url(images/top_mv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 1080px;
    margin: 0 0 116px;
    position: relative;
}

.p-topMv:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(images/catch_deco.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 1240px;
    mix-blend-mode: multiply;
    background-position: top;
    pointer-events: none;
}

.p-topMv__scroll {
    position: absolute;
    bottom: -110px;
    left: 87px;
    ;
}

.p-topMv__scroll:after {
    content: "";
    display: block;
    width: 1px;
    height: 193px;
    background-color: #fff;
    margin: 7px 0 0;
}

.p-topMv__scroll span {
    font-size: 1.4rem;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    writing-mode: vertical-rl;
    color: #fff;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.p-topMv__scroll span:after {
    content: "";
    display: block;
    width: 9px;
    height: 14px;
    background-image: url(images/scroll_arrow.svg);
    background-repeat: no-repeat;
    margin: 5px 0 0;
}

.p-topMv__instagram {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    position: absolute;
    top: 100px;
    right: 51px;
    writing-mode: vertical-rl;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000000;
}

.p-topMv__instagram:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(images/header_instagram_icon.svg);
    margin: 0 auto 18px;
}

@media (hover: hover) {
    .p-topMv__instagram {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .p-topMv__instagram:hover {
        opacity: 0.7;
        transform: translateY(-5px);
    }

    .p-topMv__instagram:hover:before {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
}

@media screen and (min-width:1921px) {
    .p-topMv:before {
        height: 1652px;
    }
}

@media screen and (max-width: 1500px) {
    .p-topMv {
        height: 100vh;
        margin-bottom: 80px;
    }

    .p-topMv:before {
        height: 1000px;
    }

    .p-topMv__scroll {
        left: 40px;
    }

    .p-topMv__instagram {
        top: 60px;
        right: 40px;
    }

    .p-topMv__instagram:before {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        background-size: 100%;
    }

    .p-topMv__instagram span {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 1024px) {
    .p-topMv__instagram {
        position: absolute;
        top: 20px;
        height: 60px;
        right: 95px;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0;
        z-index: 11;
    }

    .p-topMv__instagram:before {
        width: 30px;
        height: 30px;
        margin: 0;
        background-size: contain;
        filter: invert(1);
    }

    .p-topMv__instagram span {
        display: none;
    }
}

@media screen and (max-width: 820px) {
    .p-topMv {
        height: 700px;
        margin-bottom: 60px;
    }

    .p-topMv {
        height: 600px;
        margin-bottom: 60px;
    }

    .p-topMv:before {
        height: 700px;
    }

    .p-topMv__scroll {
        left: 30px;
        bottom: -60px;
    }

    .p-topMv__scroll:after {
        height: 120px;
    }


    .p-topMv__instagram {
        writing-mode: horizontal-tb;
        top: 15px;
        right: 85px;
        font-size: 0;
        z-index: 1001;
    }

    .p-topMv__instagram:before {
        width: 30px;
        height: 30px;
        margin: 0;
        background-size: contain;
    }
}

@media screen and (max-width: 590px) {
    .p-topMv {
        height: 55vh;
        min-height: 560px;
    }

    .p-topMv__scroll {
        left: 20px;
        bottom: -40px;
    }

    .p-topMv__scroll span {
        font-size: 1.2rem;
    }

    .p-topMv__scroll:after {
        height: 80px;
    }

    .p-topMv__instagram {
        top: 15px;
        height: 50px;
        right: 85px;
    }

    .p-topMv__instagram:before {
        width: 24px;
        height: 24px;
    }
}

/*----------------------------------------
	topBusiness
----------------------------------------*/

.p-topBusiness {
    position: relative;
    z-index: 10;
}

.p-topBusiness .c-topTitle {
    margin: 0 0 76px;
}

.p-topBusiness ul {
    display: flex;
    justify-content: space-between;
}

.p-topBusiness ul li {
    width: 30.8%;
    overflow: hidden;
}

.p-topBusiness ul li a {
    display: block;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 700px;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-topBusiness ul li:nth-of-type(1) a {
    background-image: url(images/top_business_construction.jpg);
}

.p-topBusiness ul li:nth-of-type(2) a {
    background-image: url(images/top_business_creative.jpg);
}

.p-topBusiness ul li:nth-of-type(3) a {
    background-image: url(images/top_business_restaurant.jpg);
}

.p-topBusiness ul li h2 {
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    color: #fff;
    position: absolute;
    left: 74px;
    top: 28px;
    line-height: 1.5;
}

.p-topBusiness ul li span {
    font-size: 2.6rem;
    letter-spacing: 0.08em;
    opacity: 0.5;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    position: absolute;
    writing-mode: vertical-rl;
    left: 20px;
    top: 34px;
    color: #fff;
}

.p-topBusiness__more {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    position: absolute;
    right: 27px;
    bottom: 20px;
    transition: all 0.4s ease;
}

.p-topBusiness__more:after {
    content: "";
    display: inline-block;
    background-image: url(images/button_arrow_white.svg);
    width: 14px;
    height: 9px;
    margin: 0 0 0 5px;
}

@media (hover: hover) {
    .p-topBusiness ul li:hover a {
        transform: scale(1.05);
    }

    .p-topBusiness ul li:hover .p-topBusiness__more {
        opacity: 1;
        transform: translateX(5px);
    }
}

@media screen and (max-width: 1500px) {
    .p-topBusiness ul li a {
        height: 600px;
    }

    .p-topBusiness ul li h2 {
        left: 50px;
        font-size: 2.0rem;
    }

    .p-topBusiness .c-topTitle {
        margin: 0 0 60px;
    }
}

@media screen and (max-width: 820px) {
    .p-topBusiness .c-topTitle {
        margin: 0 0 40px;
    }

    .p-topBusiness ul {
        flex-wrap: wrap;
        gap: 20px;
    }

    .p-topBusiness ul li {
        width: 100%;
    }

    .p-topBusiness ul li a {
        height: 270px;
    }

    .p-topBusiness ul li h2 {
        font-size: 2.4rem;
        left: 90px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .p-topBusiness ul li span {
        font-size: 2.5rem;
        writing-mode: unset;
        left: 25px;
        top: 25px;
    }

    .p-topBusiness .c-topTitle {
        margin: 0 0 30px;
    }


    .p-topBusiness ul li:nth-of-type(1) a {
        background-image: url(images/top_business_construction_tb.jpg);
    }

    .p-topBusiness ul li:nth-of-type(2) a {
        background-image: url(images/top_business_creative_tb.jpg);
    }

    .p-topBusiness ul li:nth-of-type(3) a {
        background-image: url(images/top_business_restaurant_tb.jpg);
    }
}

@media screen and (max-width: 590px) {
    .p-topBusiness .c-topTitle {
        margin: 0 0 30px;
    }

    .p-topBusiness ul li a {
        height: 175px;
    }

    .p-topBusiness ul li h2 {
        font-size: 1.6rem;
    }

    .p-topBusiness ul li span {
        font-size: 5vw;
        left: 20px;
        top: 15px;
    }

    .p-topBusiness__more {
        font-size: 1.4rem;
        right: 15px;
        bottom: 15px;
    }
}

/*----------------------------------------
	topProfile
----------------------------------------*/

.p-topProfile {
    position: relative;
    margin: 0 0 295px;
    padding: 220px 0 0;
}

.p-topProfile:before {
    content: "";
    position: absolute;
    top: -504px;
    right: 0;
    width: 100%;
    height: 2039px;
    background-image: url("images/top_profile_bg.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    transform: translateY(0);
    transition: transform 1.5s ease-out;
}

.p-topProfile.is-active:before {
    transform: translateY(100px);
}

.p-topProfile .c-topTitle {
    margin: 0 0 86px;
}

.p-topProfile__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-topProfile__img {
    width: 39%;
}

.p-topProfile__text {
    width: 48.3%;
}

.p-topProfile__name {
    width: 100%;
    padding: 0 0 7px;
    margin: 0 0 56px;
    text-align: right;
}

.p-topProfile__name span {
    font-size: 11rem;
    letter-spacing: 0.06em;
    line-height: 0.909;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin: 0 0 23px;
    padding: 0 0 35px;
    display: inline-block;
    width: 100%;
}

.p-topProfile__name h3 {
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    line-height: 1.469;
}

.p-topProfile__role {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: right;
    margin: 0 0 100px;
}

.p-topProfile__text .c-button {
    margin-left: auto;
}

@media screen and (min-width:1921px) {
    .p-topProfile:before {
        background-position: top;
        background-size: 100%;
        height: 2100px;
    }
}

@media screen and (max-width: 1500px) {
    .p-topProfile {
        margin-bottom: 150px;
        padding-top: 100px;
    }

    .p-topProfile__name span {
        font-size: 8rem;
    }

    .p-topProfile:before {
        top: -200px;
        height: 1500px;
    }
}

@media screen and (max-width: 820px) {
    .p-topProfile {
        margin-bottom: 100px;
        padding-top: 60px;
    }

    .p-topProfile .c-topTitle {
        margin: 0 0 50px;
    }

    .p-topProfile__wrap {
        flex-direction: column;
        align-items: center;
    }

    .p-topProfile__img {
        width: 50%;
        margin-bottom: 40px;
    }

    .p-topProfile__text {
        width: 100%;
        text-align: center;
    }

    .p-topProfile__name {
        text-align: center;
        margin-bottom: 40px;
    }

    .p-topProfile__name span {
        font-size: 6rem;
        padding-bottom: 20px;
    }

    .p-topProfile__name h3 {
        font-size: 2.4rem;
    }

    .p-topProfile__role {
        text-align: center;
        margin-bottom: 50px;
        font-size: 1.6rem;
    }

    .p-topProfile__text .c-button {
        margin: 0 auto;
    }

    .p-topProfile:before {
        height: 100%;
        top: 0;
    }

    .p-topProfile__name span br {
        display: none;
    }

    .p-topProfile__name {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-topProfile {
        margin-bottom: 80px;
    }

    .p-topProfile .c-topTitle {
        margin: 0 0 30px;
    }

    .p-topProfile__img {
        width: 90%;
    }

    .p-topProfile__name {
        margin-bottom: 20px;
    }

    .p-topProfile__name span {
        font-size: 4rem;
        margin-bottom: 15px;
    }

    .p-topProfile__name h3 {
        font-size: 2.0rem;
    }

    .p-topProfile__role {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .p-topProfile .c-button {
        width: 80px;
        height: 80px;
        font-size: 1.4rem;
    }

    .p-topProfile__img {
        width: 66%;
    }
}

/*----------------------------------------
	topCompany
----------------------------------------*/

.p-topCompany {
    margin: 0 0 120px;
}

.p-topCompany .c-topTitle {
    margin: 0 0 56px;
}

.p-topCompany__name {
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    line-height: 1.469;
    margin: 0 0 5px;
    text-align: center;
}

.p-topCompany__name span {
    display: inline-block;
    font-size: 2.4rem;
    letter-spacing: 0.2em;
    margin: 0 20px 0 0;
}

.p-topCompany__add {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin: 0 0 50px;
    text-align: center;
}

.p-topCompany__map {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 0 50px;
    filter: grayscale(1);
}

.p-topCompany__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.p-topCompany .c-button {
    margin: 0 auto;
}

@media screen and (max-width: 1500px) {
    .p-topCompany {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 820px) {
    .p-topCompany {
        margin-bottom: 80px;
    }

    .p-topCompany .c-topTitle {
        margin-bottom: 40px;
    }

    .p-topCompany__name {
        font-size: 2.6rem;
    }

    .p-topCompany__name span {
        font-size: 2.0rem;
        margin-right: 15px;
    }

    .p-topCompany__map {
        height: 350px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 590px) {
    .p-topCompany {
        margin-bottom: 70px;
    }

    .p-topCompany .c-topTitle {
        margin-bottom: 28px;
    }

    .p-topCompany__name {
        font-size: 2.0rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .p-topCompany__name span {
        font-size: 1.6rem;
        margin-right: 0;
    }

    .p-topCompany__add {
        font-size: 1.4rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .p-topCompany__map {
        height: 250px;
        margin-bottom: 30px;
    }
}

/*----------------------------------------
	topContact
----------------------------------------*/

.p-topContact {
    margin: 0 0 145px;
}

.p-topContact .c-topTitle {
    margin: 0 0 56px;
}

.p-topContact ul {
    display: flex;
    justify-content: space-between;
}

.p-topContact ul li {
    width: 32.5%;
    overflow: hidden;
}

.p-topContact ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 160px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}

.p-topContact ul li:nth-of-type(1) a {
    background-image: url(images/top_contact_tel_bg.jpg);
}

.p-topContact ul li:nth-of-type(2) a {
    background-image: url(images/top_contact_mail_bg.jpg);
}

.p-topContact ul li:nth-of-type(3) a {
    background-image: url(images/top_contact_form_bg.jpg);
}

.p-topContact ul li a h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 10px;
    text-align: center;
}

.p-topContact ul li a h3:after {
    content: "";
    display: block;
    width: 290px;
    height: 1px;
    background-color: #fff;
    margin: 8px auto 0;
}

.p-topContact ul li a p {
    font-size: 3rem;
    letter-spacing: 0.06em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-topContact ul li:nth-of-type(1) a p {
    font-size: 2.4rem;
    line-height: 1.25;
}

.p-topContact ul li:nth-of-type(2) a p {
    letter-spacing: 0.04em;
}

.p-topContact__telNumber {
    text-align: center;
}

@media (hover: hover) {
    .p-topContact ul li a:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
    }
}

@media screen and (max-width: 1500px) {
    .p-topContact ul li a h3:after {
        width: 80%;
    }

    .p-topContact ul li a p {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 820px) {
    .p-topContact {
        margin-bottom: 60px;
    }

    .p-topContact .c-text {
        margin-bottom: 50px;
    }

    .p-topContact .c-topTitle {
        margin: 0px 0px 30px;
    }

    .p-topContact ul {
        flex-direction: column;
        height: auto;
    }

    .p-topContact ul li {
        width: 100%;
        height: 140px;
        margin-bottom: 15px;
    }

    .p-topContact ul li a {
        height: 100%;
    }

    .p-topContact .p-contactForm {
        padding: 0;
    }
}

@media screen and (max-width: 590px) {
    .p-topContact {
        margin-bottom: 40px;
    }

    .p-topContact ul li {
        height: 120px;
    }

    .p-topContact ul li a h3 {
        font-size: 1.6rem;
    }

    .p-topContact ul li a p {
        font-size: 2rem !important;
    }

    .p-topContact ul li:nth-of-type(1) a p {
        font-size: 1.8rem !important;
    }

    .p-topContact .c-text {
        margin-bottom: 30px;
    }
}

/*----------------------------------------
	page_common
----------------------------------------*/

.p-catch {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 1080px;
    margin: 0 0 116px;
    position: relative;
}

.p-catch:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(images/catch_deco.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100%;
    height: 1240px;
    mix-blend-mode: multiply;
    background-position: top;
    pointer-events: none;
}

.p-catchScroll {
    position: absolute;
    bottom: -110px;
    left: 87px;
    ;
}

.p-catchScroll:after {
    content: "";
    display: block;
    width: 1px;
    height: 193px;
    background-color: #fff;
    margin: 7px 0 0;
}

.p-catchScroll span {
    font-size: 1.4rem;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    writing-mode: vertical-rl;
    color: #fff;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.p-catchScroll span:after {
    content: "";
    display: block;
    width: 9px;
    height: 14px;
    background-image: url(images/scroll_arrow.svg);
    background-repeat: no-repeat;
    margin: 5px 0 0;
}

.p-catchInstagram {
    position: absolute;
    top: 100px;
    right: 51px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.p-catchInstagram:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(images/header_instagram_icon.svg);
    margin: 0 auto 18px;
}

.p-catchInstagram span {
    writing-mode: vertical-rl;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000000;
}

.p-catchText {
    font-size: 4.27083vw;
    line-height: 1.256;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    right: 137px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.p-catchText.is-show {
    transition-delay: 0.5s;
}

.c-pageTitle {
    text-align: center;
}

.c-pageTitle h2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: #3C4A2E;
    font-weight: 700;
}

.c-pageTitle span {
    display: block;
    font-size: 4.6rem;
    letter-spacing: 0.06em;
    color: #3C4A2E;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0 0 16px;
}

.c-pageTitle span:after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background-color: #3C4A2E;
    margin: 15px auto 0;
}

.c-pageTitle02 {
    display: flex;
    align-items: center;
    margin: 0 0 46px;
}

.c-pageTitle02 h2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: #3C4A2E;
    font-weight: 700;
}

.c-pageTitle02 span {
    display: flex;
    align-items: end;
    font-size: 4.6rem;
    letter-spacing: 0.06em;
    color: #3C4A2E;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.c-pageTitle02 span:after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    background-image: url(images/page_title02_line.svg);
    margin: 0 18px;
}

.c-pageDeco {
    position: relative;
}

.c-pageDeco:before {
    content: "";
    position: absolute;
    top: -410px;
    right: 0;
    width: 100%;
    height: 2046px;
    background-image: url(images/gray_deco.svg);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

@media screen and (min-width:1921px) {
    .p-catch:before {
        height: 1652px;
    }
}

@media (hover: hover) {
    .p-catchInstagram {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .p-catchInstagram:hover {
        opacity: 0.7;
        transform: translateY(-5px);
    }

    .p-catchInstagram:hover:before {
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }
}

@media screen and (max-width: 1500px) {
    .p-catch {
        height: 100vh;
        margin-bottom: 80px;
    }

    .p-catchText {
        right: 80px;
    }

    .p-catchInstagram {
        top: 60px;
        right: 40px;
    }

    .p-catchInstagram:before {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
        background-size: 100%;
    }

    .p-catchInstagram span {
        font-size: 1.4rem;
    }

    .p-catchScroll {
        left: 50px;
    }

    .c-pageTitle span,
    .c-pageTitle02 span {
        font-size: 3.8rem;
    }

    .c-pageDeco:before {
        top: -300px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 1024px) {
    .p-catchInstagram {
        position: absolute;
        top: 20px;
        height: 60px;
        right: 95px;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0;
        z-index: 11;
    }

    .p-catchInstagram:before {
        width: 30px;
        height: 30px;
        margin: 0;
        background-size: contain;
        filter: invert(1);
    }

    .p-catchInstagram span {
        display: none;
    }

    .p-catchText {
        width: 100%;
        text-align: center;
        right: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .p-catchText {
        font-size: 5vw;
    }
}

@media screen and (max-width: 820px) {
    .p-catch {
        height: 700px;
        margin-bottom: 60px;
    }

    .p-catch:before {
        height: 100%;
    }

    .p-catchText {
        left: 50%;
        right: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 40px);
        text-align: center;
    }

    .p-catchScroll {
        left: 30px;
        bottom: -60px;
    }

    .p-catchScroll:after {
        height: 120px;
    }

    .c-pageTitle span,
    .c-pageTitle02 span {
        font-size: 3.2rem;
    }

    .c-pageTitle02 span {
        align-items: center;
    }

    .c-pageTitle h2,
    .c-pageTitle02 h2 {
        font-size: 1.6rem;
    }

    .c-pageTitle02 {
        margin-bottom: 30px;
    }

    .c-pageTitle02 span:after {
        width: 15px;
        height: 15px;
        background-size: 100%;
    }

    .c-pageDeco:before {
        top: -200px;
        height: 1500px;
    }
}

@media screen and (max-width: 590px) {
    .p-catch {
        height: 55vh;
        min-height: 560px;
    }

    .p-catchText {
        font-size: 7vw;
        text-align: center;
        top: 45%;
    }

    .p-catchScroll {
        left: 20px;
        bottom: -40px;
    }

    .p-catchScroll span {
        font-size: 1.2rem;
    }

    .p-catchScroll:after {
        height: 80px;
    }

    .c-pageTitle span {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .c-pageTitle02 h2 {
        font-size: 1.4rem;
    }

    .c-pageTitle span:after {
        width: 80px;
        margin-top: 10px;
    }

    .c-pageTitle02 {
        align-items: center;
        text-align: center;
    }

    .c-pageTitle02 span {
        font-size: 2.4rem;
    }

    .c-pageTitle02 span:after {
        margin: 0 10px;
    }

    .c-pageDeco:before {
        top: -100px;
        background-position: top right;
        opacity: 1;
    }

    .p-catchInstagram {
        top: 15px;
        height: 50px;
        right: 85px;
    }

    .p-catchInstagram:before {
        width: 24px;
        height: 24px;
    }
}

/*----------------------------------------
	construction
----------------------------------------*/

.p-construction {
    margin: 0 0 145px;
}

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

.p-constructionIntro_img {
    width: 41.6%;
}

.p-constructionIntro_text {
    width: 46.8%;
}

.p-constructionIntro_text span {
    display: block;
    font-size: 4.6rem;
    letter-spacing: 0.06em;
    line-height: 1.261;
    margin: 0 0 38px;
    padding: 0 0 38px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    border-bottom: 1px solid #3C4A2E;
}

.p-constructionIntro_text h2 {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.469;
    margin: 0 0 37px;
}

.p-constructionIntro_text .c-text {
    letter-spacing: 0.06em;
}

.p-constructionValue {
    padding: 97px 0 160px;
}

.p-constructionValue .c-pageTitle {
    margin: 0 0 54px;
}

.p-constructionValue ul {
    display: flex;
    justify-content: space-between;
}

.p-constructionValue ul li {
    width: 48.3%;
}

.p-constructionValue__text {
    background-color: #fff;
    padding: 28px 0 38px;
}

.p-constructionValue__text h3 {
    font-size: 3.2rem;
    line-height: 1.469;
    letter-spacing: 0.04em;
    margin: 0 0 17px;
    text-align: center;
}

.p-constructionValue__text h3:after {
    content: "";
    display: block;
    width: 82.7%;
    height: 1px;
    background-color: #3C4A2E;
    margin: 13px auto 0;
}

.p-constructionValue__text .c-text {
    letter-spacing: 0.04em;
    padding: 0 50px;
}

.p-constructionBrands {
    margin: 0 0 150px;
}

.p-constructionBrands .c-pageTitle {
    margin: 0 0 46px;
}

.p-constructionBrands ul {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.p-constructionBrands ul li {
    text-align: center;
}

.p-constructionBrands ul li figcaption {
    font-size: 2rem;
    letter-spacing: 0.06em;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 20px 0 0;
}

.p-constructionBrands ul li:nth-of-type(1) {
    margin-right: 40px;
}

.p-constructionBrands ul li:nth-of-type(2) {
    margin-right: 52px;
}

.p-constructionBrands ul li:nth-of-type(3) {
    margin-right: 39px;
}

.p-constructionBrands ul li:nth-of-type(4) {
    margin-right: 19px;
}

.p-constructionServe {
    margin: 0 0 167px;
}

.p-constructionServe .c-pageTitle {
    margin: 0 0 64px;
}

.p-constructionServe ul {
    display: flex;
    justify-content: space-between;
}

.p-constructionServe ul li {
    width: 370px;
    height: 370px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-constructionContact a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 680px;
    height: 160px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    background-image: url(images/construction_contact_bg.jpg);
    margin: 0 auto;
}

.p-constructionContact a h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 10px;
    text-align: center;
}

.p-constructionContact a h3:after {
    content: "";
    display: block;
    width: 350px;
    height: 1px;
    background-color: #fff;
    margin: 8px auto 0;
}

.p-constructionContact a p {
    font-size: 3rem;
    letter-spacing: 0.06em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

@media screen and (max-width: 1500px) {
    .p-constructionIntro_text span {
        font-size: 3.8rem;
    }

    .p-constructionValue__text .c-text {
        padding: 0 30px;
    }

    .p-constructionBrands {
        margin-bottom: 100px;
    }

    .p-constructionBrands ul {
        padding: 0 40px;
        justify-content: space-around;
    }

    .p-constructionBrands ul li:nth-of-type(1),
    .p-constructionBrands ul li:nth-of-type(2),
    .p-constructionBrands ul li:nth-of-type(3),
    .p-constructionBrands ul li:nth-of-type(4) {
        margin-right: 0;
    }

    .p-constructionBrands ul li {
        width: 18%;
    }

    .p-constructionBrands ul li img {
        max-width: 100%;
        height: auto;
    }

    .p-constructionBrands ul li figcaption {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 1300px) {
    .p-constructionServe ul li {
        width: 300px;
        height: 300px;
    }

    .p-constructionServe ul li img {
        transform: scale(0.8);
    }

    .p-constructionServe ul {
        justify-content: center;
        gap: 25px;
    }
}

@media screen and (max-width: 1200px) {
    .p-constructionBrands ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }

    .p-constructionBrands ul li {
        width: 30%;
    }

    .p-constructionBrands ul li:nth-of-type(n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 820px) {
    .p-constructionIntro__wrap {
        flex-direction: column;
    }

    .p-constructionIntro_img {
        width: 70%;
        margin: 0 auto 25px;
    }

    .p-constructionIntro_img img {
        height: 690px;
        object-fit: cover;
        object-position: center;
    }

    .p-constructionIntro_text {
        width: 100%;
    }

    .p-constructionValue {
        padding: 50px 0px;
    }

    .p-constructionValue ul {
        flex-direction: column;
    }

    .p-constructionValue ul li {
        width: 100%;
        margin-bottom: 30px;
    }

    .p-constructionBrands ul {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .p-constructionBrands ul li {
        margin-right: 0 !important;
        width: 45%;
    }

    .p-constructionServe ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .p-constructionContact a {
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }

    .p-constructionContact a h3:after {
        width: 80%;
    }

    .p-constructionServe .c-pageTitle,
    .p-constructionBrands .c-pageTitle,
    .p-constructionValue .c-pageTitle {
        margin: 0 0 20px;
    }

    .p-constructionIntro_text h2 {
        margin: 0px 0px 20px;
    }

    .p-constructionBrands {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 590px) {
    .p-construction {
        margin-bottom: 60px;
    }

    .p-constructionIntro_text span {
        font-size: 2.8rem;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .p-constructionIntro_text h2 {
        font-size: 2rem;
    }

    .p-constructionValue__text h3 {
        font-size: 1.8rem;
    }

    .p-constructionValue__text .c-text {
        padding: 0 20px;
    }

    .p-constructionBrands ul li {
        width: 45%;
    }

    .p-constructionBrands ul {
        padding: 0 3.5%;
    }

    .p-constructionBrands ul li figcaption {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .p-constructionServe ul li {
        width: 240px;
        height: 240px;
    }

    .p-constructionContact a p {
        font-size: 2.2rem;
    }

    .p-constructionServe ul li img {
        transform: scale(0.6);
    }

    .p-constructionIntro_img img {
        height: 400px;
    }

    .p-constructionServe {
        margin: 0px 0px 45px;
    }

    .p-constructionServe ul li {
        width: 200px;
        height: 200px;
    }

    .p-constructionContact a {
        padding: 30px 12px;
    }

    .p-constructionContact a h3 {
        font-size: 1.4rem;
    }

    .p-constructionContact a p {
        font-size: 2.2rem;
    }
}

/*----------------------------------------
	works
----------------------------------------*/

.p-catchWorks {
    background-image: url(images/works_catch.jpg);
    background-position: 35%;
}

.p-worksGallery {
    margin: 0 0 145px;
}

.p-worksGallery__item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.p-worksGallery__filterList {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-bottom: 100px;
}

.p-worksGallery__filterItem:after {
    content: "";
    display: inline-block;
    background-image: url(images/works_line.svg);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin: 0 30px;
}

.p-worksGallery__filterItem:last-child:after {
    display: none;
    margin: 0;
}

.p-worksGallery__filterItem {
    cursor: pointer;
    font-size: 2rem;
    letter-spacing: 0.06em;
    font-weight: bold;
    color: #9DA496;
    transition: color 0.3s ease;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    align-items: center;
}

.p-worksGallery__filterItem.is-active {
    color: #3C4A2E;
}

.p-worksGallery__filterItem:hover {
    color: #666;
}

.p-worksGallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    grid-auto-flow: dense;
}

.p-worksGallery__item.large {
    grid-row: span 2;
}

.p-worksGallery__itemInner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #eee;
    overflow: hidden;
}

.p-worksGallery__image {
    width: 100%;
    height: 100%;
}

.p-worksGallery__image img,
.p-worksGallery__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.p-worksGallery__itemInner:hover img,
.p-worksGallery__itemInner:hover .p-worksGallery__video {
    transform: scale(1.05);
}

.p-worksGallery__playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94px;
    height: 94px;
    background: url(images/works_movie_icon.svg) no-repeat center;
    background-size: 100%;
    pointer-events: none;
    opacity: 0.8;
}

.p-worksGallery__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.p-worksGallery__modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.p-worksGallery__modalInner {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-worksGallery__modalContent {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    display: block;
}

.p-worksGallery__modalClose {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
    z-index: 10001;
}

.p-worksGallery__modalClose:hover {
    opacity: 1;
}

.p-worksGallery__item {
    cursor: pointer;
}

.p-worksGallery__item {
    display: none;
}

.p-worksGallery__item:nth-child(-n+8) {
    display: block;
}

.p-worksGallery__more {
    text-align: center;
    margin-top: 150px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-worksGallery__moreBtn {
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.p-worksGallery__loader {
    display: none;
    margin: 40px auto;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3C4A2E;
    border-radius: 50%;
    animation: worksSpin 0.8s linear infinite;
    position: relative;
    box-sizing: border-box;
}

.p-worksGallery__loader.is-loading {
    display: block !important;
}

@keyframes worksSpin {
    0% {
        transform: rotate(0deg);
    }

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

.p-worksGallery__item.is-hidden {
    display: none;
    opacity: 0;
}

.p-worksGallery__item.is-show {
    display: grid;
    animation: worksFadeIn 0.6s ease forwards;
}

@keyframes worksFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 900px) {
    .p-worksGallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 820px) {
    .p-worksGallery {
        margin-bottom: 80px;
    }

    .p-worksGallery__filterList {
        flex-wrap: wrap;
        margin-bottom: 50px;
        gap: 10px 15px;
    }

    .p-worksGallery__filterItem {
        font-size: 1.6rem;
    }

    .p-worksGallery__filterItem:after {
        width: 20px;
        height: 20px;
        margin: 0 15px;
        background-size: contain;
    }

    .p-worksGallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .p-worksGallery__playIcon {
        width: 60px;
        height: 60px;
    }

    .p-worksGallery__more {
        margin-top: 60px;
    }
}

@media screen and (max-width: 590px) {
    .p-worksGallery {
        margin-bottom: 50px;
    }

    .p-worksGallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }

    .p-worksGallery__filterItem:after {
        display: none;
    }

    .p-worksGallery__filterList {
        justify-content: flex-start;
        margin-bottom: 25px;
        padding: 0 15px;
        gap: 10px;
    }

    .p-worksGallery__filterItem {
        font-size: 1.1rem;
        background: #f8f8f8;
        padding: 5px 8px;
        border-radius: 20px;
    }

    .p-worksGallery__filterItem.is-active {
        background: #3C4A2E;
        color: #fff;
    }

    .p-worksGallery__modalClose {
        top: 20px;
        right: 20px;
        font-size: 3.5rem;
    }
}

/*----------------------------------------
	restaurant
----------------------------------------*/

.p-restaurant {
    margin: 0 0 136px;
}

.p-restaurantIntro__img {
    width: 100%;
    height: 479px;
    background-image: url(images/restaurant_intro.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 0 70px;
}

.p-restaurantIntro__en {
    font-size: 4.6rem;
    letter-spacing: 0.06em;
    line-height: 1.261;
    margin: 0 0 53px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.p-restaurantIntro h2 {
    font-size: 3.2rem;
    letter-spacing: 0.2em;
    margin: 0 0 35px;
    line-height: 1.469;
    text-align: center;
}

.p-restaurantIntro .c-text {
    text-align: center;
}

.p-restaurantInfo {
    padding: 135px 0 122px;
}

.p-restaurantInfo.c-pageDeco:before {
    top: -376px;
}

.p-restaurantInfo .c-pageTitle {
    margin: 0 0 45px;
}

.p-restaurantInfo .p-restaurantInfo__add {
    line-height: 1.667;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 63px;
}

.p-restaurantInfo__map {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 0 50px;
    filter: grayscale(1);
}

.p-restaurantInfo__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.p-restaurantInstagram .c-pageTitle {
    margin: 0 0 69px;
}

.p-restaurantInstagram .c-pageTitle:before {
    content: "";
    display: block;
    margin: 0 auto 16px;
    width: 50px;
    height: 50px;
    background-image: url(images/restaurant_instagram.svg);
}

.p-restaurantInstagram ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.p-restaurantInstagram ul li {
    width: 31.6%;
}

.p-restaurantInstagram ul li:nth-child(n+4) {
    margin-top: 30px;
}

.p-restaurantInstagram ul li img {
    width: 100%;
}

.p-restaurantInstagram .c-button {
    margin: 70px auto 0;
}

.p-preparing__content {
    text-align: center;
}

.p-preparing__content .en {
    display: block;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 20px;
}

.p-preparing__content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.p-preparing__content .c-button {
        margin: 30px auto 0;
}

@media screen and (max-width: 1500px) {
    .p-restaurantIntro__img {
        height: 400px;
    }

    .p-restaurantIntro__en {
        font-size: 3.8rem;
    }

    .p-restaurantInfo {
        padding: 100px 0 80px;
    }
}

@media screen and (max-width: 820px) {
    .p-restaurantIntro__img {
        height: 350px;
        margin-bottom: 50px;
    }

    .p-restaurantIntro__en {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }

    .p-restaurantIntro h2 {
        font-size: 2.4rem;
    }

    .p-restaurantInfo__map {
        height: 350px;
    }

    .p-restaurantInstagram ul li {
        width: 48%;
    }

    .p-restaurantInstagram ul li:nth-child(n+3) {
        margin-top: 20px;
    }

    .p-restaurantInfo .c-pageTitle,
    .p-restaurantInstagram .c-pageTitle {
        margin: 0 0 30px;
    }

    .p-restaurantInfo .p-restaurantInfo__add {
        margin: 0 0 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-restaurant {
        margin-bottom: 60px;
    }

    .p-restaurantIntro__img {
        height: 220px;
        margin-bottom: 25px;
    }

    .p-restaurantIntro__en {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .p-restaurantIntro h2 {
        font-size: 2rem;
        letter-spacing: 0.1em;
        margin: 0px 0px 22px;
    }

    .p-restaurantInfo {
        padding: 60px 0 60px;
    }

    .p-restaurantInfo__add {
        margin-bottom: 40px;
        font-size: 1.4rem;
    }

    .p-restaurantInfo__map {
        height: 300px;
        margin: 0;
    }

    .p-restaurantInstagram ul li {
        width: 49%;
    }

    .p-restaurantInstagram .c-pageTitle:before {
        width: 30px;
        height: 30px;
        background-size: contain;
        margin: 0 auto 10px;
    }

    .p-restaurantInstagram .c-button {
        margin-top: 40px;
    }

    .p-preparing__content .en {
        font-size: 1.5rem;
    }

    .p-preparing__content h2 {
        font-size: 2rem;
    }

}

/*----------------------------------------
	profile
----------------------------------------*/

.page-id-13 .p-catch {
    margin: 0 0 48px;
}

.p-profile {
    margin: 0 0 186px;
}

.p-profileIntro {
    padding: 0 0 1020px;
    position: relative;
}

.p-profileIntro:before {
    content: "";
    position: absolute;
    top: 671px;
    right: 0;
    width: 100%;
    height: 2046px;
    background-image: url(images/profile_bg.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

.p-profileWrap {
    display: flex;
}

.p-profileText {
    width: 58.3%;
}

.p-profileTitle {
    margin: 0 0 37px;
}

.p-profileText .c-text {
    letter-spacing: 0.06em;
}

.p-profileText .c-text:not(:last-child) {
    margin: 0 0 38px;
}

.p-profileImg {
    position: absolute;
    right: 12.6%;
    width: 28.6%;
}

.p-profileSponsor .c-pageTitle02 {
    margin: 0 0 50px;
    justify-content: flex-end;
}

.p-profileSponsor ul {
    line-height: 2.778;
    letter-spacing: 0.1em;
    text-align: right;
}

@media screen and (max-width: 1500px) {
    .p-profileIntro {
        padding: 0 0 600px;
    }

    .p-profileImg {
        right: 5%;
        width: 35%;
    }

    .p-profileText {
        width: 55%;
    }
}

@media screen and (max-width: 820px) {
    .p-profileIntro {
        padding: 0 0 100px;
    }

    .p-profileIntro:before {
        top: auto;
        bottom: -500px;
        height: 850px;
        z-index: 99;
        opacity: 0.8;
    }

    .p-profileTitle {
        width: 80%;
        margin: 0 auto 40px;
    }

    .p-profileTitle img {
        width: 100%;
    }

    .p-profileWrap {
        flex-direction: column-reverse;
        align-items: center;
    }

    .p-profileImg {
        position: relative;
        right: auto;
        width: 45%;
        margin-bottom: 20px;
    }

    .p-profileText {
        width: 100%;
    }

    .p-profileText .c-text {
        text-shadow: 2px 2px 1px #EBEBEB, -2px 2px 1px #EBEBEB, 2px -2px 1px #EBEBEB, -2px -2px 1px #EBEBEB, 2px 0px 1px #EBEBEB, 0px 2px 1px #EBEBEB, -2px 0px 1px #EBEBEB, 0px -2px 1px #EBEBEB;
    }

    .p-profileSponsor {
        padding: 380px 0 0;
    }

    .p-profileSponsor ul {
        text-align: center;
    }

    .p-profileText {
        position: relative;
        z-index: 99;
    }

    .p-profileText .c-text:not(:last-child) {
        margin: 0 0 30px;
    }

    .p-profileImg img {
        -webkit-mask-image: linear-gradient(to bottom, white 50%, transparent 100%);
        mask-image: linear-gradient(to bottom, white 50%, transparent 100%);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: cover;
        mask-size: cover;
    }

    .p-profileSponsor .c-pageTitle02 {
        justify-content: center;
        margin: 0px 0px 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-profile {
        margin-bottom: 60px;
    }

    .p-profileTitle {
        margin-bottom: 40px;
        width: 86%;
    }

    .p-profileText .c-text:not(:last-child) {
        margin-bottom: 20px;
    }

    .p-profileImg {
        width: 50%;
        margin-bottom: -10px;
    }

    .p-profileImg img.respon {
        -webkit-mask-image: linear-gradient(to bottom, white 70%, transparent 100%);
        mask-image: linear-gradient(to bottom, white 70%, transparent 100%);
    }

    .p-profileSponsor ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        line-height: 1.5;
    }

    .p-profileSponsor ul li {
        font-size: 1.4rem;
    }

    .p-profileImg {
        margin-bottom: 10px;
    }

    .p-profileSponsor {
        padding: 110px 0px 0px;
    }

    .p-profileIntro::before {
        height: 600px;
        bottom: -200px;
    }
}

/*----------------------------------------
	company
----------------------------------------*/

.p-company {
    margin: 0 0 222px;
}

.p-companyMessage .c-pageTitle {
    margin: 0 0 76px;
}

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

.p-companyMessage__text {
    width: 50%;
}

.p-companyMessage__text h2 {
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: 0 0 64px;
    line-height: 1.469;
}

.p-companyMessage__text .c-text:not(:last-child) {
    margin: 0 0 48px;
}

.p-companyMessage__name {
    margin: 74px 0 0;
    text-align: right;
}

.p-companyMessage__name span {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.06em;
    margin: 0 20px 0 0;
}

.p-companyMessage__img {
    width: 39%;
}

.p-companyBusiness {
    padding: 176px 0 200px;
}

.p-companyBusiness .c-pageTitle {
    margin: 0 0 60px;
}

.p-companyBusiness ul li {
    display: flex;
    justify-content: space-between;
    height: 340px;
}

.p-companyBusiness ul li:not(:last-child) {
    margin: 0 0 30px;
}

.p-companyBusiness__img {
    width: 50%;
    background-size: cover;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-companyBusiness ul li:nth-of-type(1) .p-companyBusiness__img {
    background-image: url(images/company_business01.jpg);
}

.p-companyBusiness ul li:nth-of-type(2) .p-companyBusiness__img {
    background-image: url(images/company_business02.jpg);
}

.p-companyBusiness ul li:nth-of-type(3) .p-companyBusiness__img {
    background-image: url(images/company_business03.jpg);
}

.p-companyBusiness__text {
    width: 50%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 57px 0 60px;
}

.p-companyBusiness__text .c-text {
    letter-spacing: 0.06em;
}

.p-companyBusiness__text h3 {
    font-size: 3.2rem;
    letter-spacing: 0.08em;
    line-height: 1.469;
    margin: 0 0 22px;
    color: #3C4A2E;
}

.p-companyOutline {
    margin: 0 0 180px;
}

.p-companyOutline .c-pageTitle {
    margin: 0 0 90px;
}

.p-companyOutline__wrap {
    background-color: #fff;
    padding: 100px 0 142px;
}

.table01 {
    display: block;
    width: 800px;
    margin: auto;
    font-size: 1.8rem;
    margin: 0 auto;
}

.table01 tbody {
    display: block;
    width: 100%;
}

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

.table01 tr:last-child {
    border-bottom: none;
}

.table01 tr:not(:last-child) {
    margin: 0 0 14px;
}

.table01 th {
    width: 22.5%;
    padding: 10px 8pxv;
    border-bottom: 2px solid #3C4A2E;
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.table01 td {
    padding: 8px 46px;
    width: 77.5%;
    vertical-align: middle;
    border-bottom: 1px solid #3C4A2E;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.06em;
}

.p-companyAccess .c-pageTitle {
    margin: 0 0 48px;
}

.p-companyAccess__map {
    position: relative;
    width: 100%;
    height: 450px;
    filter: grayscale(1);
}

.p-companyAccess__map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 1500px) {
    .p-company {
        margin-bottom: 120px;
    }

    .p-companyMessage__text h2 {
        font-size: 2.8rem;
    }

    .p-companyBusiness {
        padding: 100px 0;
    }

    .p-companyBusiness__text {
        padding: 0 30px;
    }

    .p-companyBusiness__text h3 {
        font-size: 2.6rem;
    }
}

@media screen and (max-width: 1300px) {
    .table01 {
        width: 90%;
    }
}

@media screen and (max-width: 820px) {
    .p-company {
        margin-bottom: 60px;
    }

    .p-companyMessage__wrap {
        flex-direction: column-reverse;
    }

    .p-companyMessage__text {
        width: 100%;
        margin-bottom: 40px;
    }

    .p-companyMessage__img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .p-companyMessage__text h2 {
        margin: 0 0 30px;
    }

    .p-companyBusiness ul li {
        flex-direction: column;
        height: auto;
    }

    .p-companyBusiness__img {
        width: 100%;
        height: 250px;
    }

    .p-companyBusiness__text {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .p-companyBusiness ul li:nth-of-type(even) {
        flex-direction: column;
    }

    .p-companyAccess__map {
        height: 350px;
    }

    .table01 th {
        width: 25%;
    }

    .table01 td {
        width: 75%;
        padding: 8px 20px;
        line-height: 1.3;
    }

    .p-companyMessage .c-pageTitle,
    .p-companyBusiness .c-pageTitle,
    .p-companyOutline .c-pageTitle,
    .p-companyAccess .c-pageTitle {
        margin: 0px 0px 30px;
    }
}

@media screen and (max-width: 590px) {
    .p-companyMessage .c-pageTitle {
        margin-bottom: 20px;
    }

    .p-companyMessage__text h2 {
        font-size: 5.3vw;
        margin-bottom: 20px;
        text-align: center;
    }

    .p-companyMessage__text .c-text:not(:last-child) {
        margin-bottom: 18px;
    }

    .p-companyMessage__name {
        margin-top: 25px;
    }

    .p-companyMessage__name img {
        width: 140px;
    }

    .p-companyBusiness {
        padding: 60px 0;
    }

    .p-companyBusiness__text h3 {
        font-size: 2rem;
        margin: 0px 0px 15px;
    }

    .p-companyBusiness__img {
        height: 200px;
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
    }

    .p-companyBusiness__text {
        padding: 25px 18px;
    }

    .p-companyOutline {
        margin-bottom: 50px;
    }

    .p-companyOutline__wrap {
        padding: 40px 0;
    }

    .p-companyAccess__map {
        height: 300px;
    }

    .table01 tr {
        flex-direction: column;
    }

    .table01 th,
    .table01 td {
        width: 100%;
        border-bottom: none;
    }

    .table01 th {
        font-size: 1.6rem;
        border-bottom: 2px solid rgba(60, 74, 46, 0.2);
        padding-left: 0;
        padding-bottom: 5px;
    }

    .table01 td {
        font-size: 1.4rem;
        padding: 15px 0;
    }

    .table01 tr:not(:last-child) {
        margin-bottom: 25px;
    }

    .p-companyMessage__img {
        max-width: 200px;
    }
}

/*----------------------------------------
	contact
----------------------------------------*/

.p-contact {
    margin: 0 0 230px;
}

.p-contactConfirm {
    margin: 100px 0 120px;
}

.p-contactIntro .c-text {
    text-align: center;
    margin: 0 0 97px;
}

.p-contactIntro {
    margin: 0 0 118px;
}

.p-contactIntro ul {
    display: flex;
    justify-content: space-between;
    height: 160px;
}

.p-contactIntro ul li {
    width: 32.5%;
    height: 160px;
}

.p-contactIntro ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}

.p-contactIntro ul li:nth-of-type(1) a {
    background-image: url(images/top_contact_tel_bg.jpg);
}

.p-contactIntro ul li:nth-of-type(2) a {
    background-image: url(images/top_contact_mail_bg.jpg);
}

.p-contactIntro ul li:nth-of-type(3) a {
    background-image: url(images/top_contact_form_bg.jpg);
}

.p-contactIntro ul li a h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0 0 10px;
    text-align: center;
}

.p-contactIntro ul li a h3:after {
    content: "";
    display: block;
    width: 290px;
    height: 1px;
    background-color: #fff;
    margin: 8px auto 0;
}

.p-contactIntro ul li a p {
    font-size: 3rem;
    letter-spacing: 0.06em;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-contactIntro ul li:nth-of-type(1) a p {
    font-size: 2.4rem;
    line-height: 1.25;
}

.p-contactIntro ul li:nth-of-type(2) a p {
    letter-spacing: 0.04em;
}

.p-contactTel__number {
    text-align: center;
}

.p-contactFaq .c-pageTitle {
    margin: 0 0 80px;
}

.p-contactFaq .c-pageTitle02 span {
    color: #fff;
}

.p-contactFaq__subTitle {
    font-size: 2rem;
    margin: 0 0 40px;
    text-align: center;
}

.p-contactFaq__lists {
    max-width: 1000px;
    margin: 0 auto;
}

.p-contactFaq__listsTitle {
    font-size: 1.8rem;
}

.p-qaList {
    background-color: #3C4A2E;
}

.p-qaList:not(:last-child) {
    margin: 0 0 30px;
}

.p-qaLists__title {
    padding: 17px 26px 17px 65px;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
    line-height: 1.444;
    color: #fff;
    font-weight: 700;
}

.p-qaLists__title:after {
    content: "Q.";
    color: #fff;
    display: inline-block;
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 28px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.p-qaLists__title span:first-child {
    font-size: 2.2rem;
    letter-spacing: 0.04em;
    margin: 0 15px 0 0;
}

.p-qaLists__box {
    padding: 26px 0 33px;
    width: 90%;
    border-top: 1px solid #fff;
    display: none;
    position: relative;
    margin: 0 auto;
}

.p-qaLists__box p {
    line-height: 1.667;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 500;
}

.p-qaLists__title::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8.5px 0 8.5px;
    border-color: #fff transparent transparent transparent;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(0deg) translateY(-50%);
}

.p-qaLists__title.close::before {
    transform: rotate(0deg) translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8.5px 15px 8.5px;
    border-color: transparent transparent #fff transparent;
}

.p-qaLists__text {
    display: inline-block;
    width: 85%;
}

.p-contactFaq__box:not(:last-child) {
    margin: 0 0 70px;
}

.p-contactForm {
    margin: 0 0 150px;
}

.p-contactForm.c-pageDeco:before {
    top: 21px;
}

.p-contactForm .c-pageTitle {
    margin: 0 0 70px;
}

.table_contact {
    width: 100%;
}

.table_contact_wrap {
    background-color: #fff;
    padding: 85px 130px 102px;
    display: block;
    width: 100%;
    margin: auto;
}

.p-contactPurchase .table_contact_wrap {
    background-color: #EFEFEF;
}

.table_contact th {
    color: #333333;
    width: 240px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 400;
}

.table_contact th .small {
    font-size: 1.2rem;
}

.table_contact th label {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.contact_address_wrap div:first-child {
    margin: 0 0 20px;
}

.table_contact tbody {
    display: block;
}

.table_contact td {
    width: 72.3%;
    vertical-align: middle;
}

.table_contact td input.text {
    width: 100%;
    border: none;
    height: 40px;
    background-color: #F8F8F8;
    font-size: 1.6rem;
    padding: 0 0 0 15px;
}

.table_contact td input.text.zip {
    width: 54%;
}

.table_contact td span {
    margin: 0 20px 0 0;
}

.table_contact td textarea {
    width: 100%;
    height: 330px;
    background-color: #F8F8F8;
    border: none;
    padding: 20px 0 0 20px;
    font-size: 1.6rem;
}

.table_contact tr {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.table_contact tr:not(:last-child) {
    margin: 0 0 26px;
}

.table_contact tr:first-child {
    margin: 0 0 80px;
}

.table_contact tr:first-child th label {
    display: none;
}

.table_contact tr:first-child th,
.table_contact tr:first-child td {
    padding-top: 0;
}

.required {
    background-color: #3C4A2E;
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 0.06em;
    width: 52px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.optional {
    background-color: #B4B4B4;
    color: #fff;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 0.06em;
    width: 52px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_button {
    width: 400px;
    height: 60px;
    margin: 43px auto 0;
    position: relative;
}

.contact_button input {
    background: none;
    border: none !important;
    background-color: #3C4A2E !important;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
}

.table_radio_wrap {
    display: flex;
}

.mwform-radio-field:last-child {
    margin: 0;
}

.agree_check {
    margin-bottom: 60px;
    color: #2B3A3F;
}

.agree_check a {
    color: #5BA560;
}

.mwform-checkbox-field {
    margin: 0 40px 0 0;
}

.mwform-checkbox-field label {
    display: flex;
    align-items: center;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.agree_check .mwform-checkbox-field {
    margin: 0;
}

.mw_wp_form_confirm {
    margin: 0 0 120px;
}

.mw_wp_form_confirm .required,
.mw_wp_form_confirm .optional,
.mw_wp_form_confirm .agree_check {
    display: none;
}

.selectbox {
    height: 40px;
    background-color: #EDEDED;
    border: 1px solid #DDDDDD;
    padding: 0 20px;
}

input {
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ ゴシック', sans-serif;
}

input::placeholder {
    color: #A0A0A0;
}

input[type="text"] {
    border: none;
}

input[type="text"]:focus {
    border: 1px solid #004DA0;
    outline: 0;
}

input::placeholder {
    color: #CECDCD;
}

.table_radio_wrap {
    display: flex;
    flex-direction: column;
}

.table_radio_wrap span:not(:last-child) {
    margin: 0 0 15px;
}

.table_contact_privacy {
    color: #006FB9;
    display: block;
    text-align: center;
    margin: 45px auto 55px;
    padding: 0 0 8px;
    font-weight: bold;
}

.table_contact_privacy span {
    border-bottom: 1px solid #006FB9;
    padding: 0 0 8px;
}

.table_contact td select {
    width: 230px;
    border: none;
    height: 40px;
    padding: 0 0 0 10px;
    background-color: #fff;
    font-size: 1.6rem;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 3px;
}

.hidden-inputs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 10;
}

.hidden-inputs input {
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.hidden-inputs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table_contact_box h3 {
    font-size: 2.4rem;
    margin: 0 0 53px;
}

.table_contact_box .table_radio_wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

.table_contact_box:not(:last-child) {
    margin: 0 0 88px;
}

.table_contact_box .attention {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.table_contact_box .attention span {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    margin: 11px 0 0;
}

.p-policy-check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0 43px;
}

@media screen and (max-width: 1500px) {
    .p-contactIntro ul li a h3:after {
        width: 80%;
    }

    .p-contactIntro ul li a p {
        font-size: 2.4rem;
    }

    .table_contact_wrap {
        padding: 60px 50px;
    }

    .table_contact th {
        width: 200px;
    }
}

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

    .p-contactIntro,
    .p-contactForm {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 820px) {
    .p-contact {
        margin-bottom: 80px;
    }
    
    .p-contactConfirm {
        margin: 70px 0 60px;
    }

    .p-contactIntro .c-text {
        margin-bottom: 50px;
    }

    .p-contactIntro {
        margin-bottom: 60px;
    }

    .p-contactIntro ul {
        flex-direction: column;
        height: auto;
    }

    .p-contactIntro ul li {
        width: 100%;
        height: 140px;
        margin-bottom: 15px;
    }

    .p-contactIntro .p-contactForm {
        padding: 0;
    }

    .p-contactForm .c-pageTitle {
        margin: 0px 0px 30px;
    }

    .p-contactFaq {
        padding: 40px 0 60px;
    }

    .p-qaLists__title {
        padding-left: 15px;
        font-size: 1.6rem;
    }

    .p-qaLists__title span:first-child {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        margin-right: 15px;
    }

    .table_contact tr {
        flex-direction: column;
        border-bottom: none;
        margin-bottom: 10px;
    }

    .table_contact th,
    .table_contact td {
        font-size: 1.4rem;
        width: 100% !important;
        padding: 10px 0 !important;
    }

    .table_contact th {
        border-bottom: 1px solid #9B8356;
    }

    .table_contact_wrap {
        padding: 40px 20px;
    }

    .table_contact_box h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .table_contact_box:not(:last-child) {
        margin-bottom: 50px;
    }

    .contact_button {
        font-size: 1.4rem;
        width: 100%;
        height: 55px;
        max-width: 400px;
    }

    .table_contact_box .table_radio_wrap input.text {
        width: 100%;
    }

    .p-contactForm h2 {
        margin: 0 0 40px;
    }

    .p-contactForm {
        padding: 50px 0 70px;
    }

    .p-contactIntro,
    .p-contactForm {
        margin-bottom: 70px;
    }

    .mw_wp_form_confirm {
        margin: 0 0 60px;
    }

    .contact_button {
        margin: 20px auto 0;
    }

    .mw_wp_form_confirm .table_contact_wrap {
        padding: 0 3% 40px;
    }

    .p-contactForm {
        margin-bottom: 80px;
    }

    .table_contact_wrap {
        padding: 40px 20px;
    }

    .table_contact tr {
        flex-direction: column;
        align-items: flex-start;
    }

    .table_contact tr:not(:last-child) {
        margin-bottom: 30px;
    }

    .table_contact tr:first-child {
        margin-bottom: 40px;
    }

    .table_contact th,
    .table_contact td {
        width: 100% !important;
    }

    .table_contact th {
        margin-bottom: 10px;
    }

    .table_contact th label {
        justify-content: flex-start;
        gap: 15px;
    }

    .table_contact td textarea {
        height: 200px;
    }

    .contact_button {
        width: 100%;
        max-width: 300px;
    }

    .p-contactIntro {
        margin-bottom: 0;
    }

    .mwform-checkbox-field input,
    .mwform-radio-field input {
        width: 12px;
        height: 12px;
    }

    .table_contact td span {
        margin: 0;
    }

    .table_radio_wrap span:not(:last-child) {
        margin: 0px 0px 8px;
    }

    .required,
    .optional {
        width: 46px;
        height: 24px;
        font-size: 1.4rem;
    }

    .contact_button input {
        font-size: 1.4rem;
    }

    .p-contactFaq .c-pageTitle {
        margin: 0px 0px 30px;
    }

    .p-contactFaq__subTitle {
        margin: 0px 0px 15px;
    }

    .p-policy-check .mwform-checkbox-field label {
        justify-content: center;
    }

    .p-contactFaq__box:not(:last-child) {
        margin: 0px 0px 50px;
    }
    
    .p-policy-check {
        display: none;
    }
}

@media screen and (max-width: 590px) {
    .p-contact {
        margin-bottom: 60px;
    }

    .p-contactIntro ul li {
        height: 120px;
    }

    .p-contactIntro ul li a h3 {
        font-size: 1.6rem;
    }

    .p-contactIntro ul li a p {
        font-size: 2rem !important;
    }

    .p-contactIntro ul li:nth-of-type(1) a p {
        font-size: 1.8rem !important;
    }

    .p-contactFaq__subTitle {
        font-size: 1.6rem;
        line-height: 2;
    }

    .p-qaLists__title {
        font-size: 1.5rem;
    }

    .p-qaLists__text {
        width: 80%;
    }

    .table_contact td input.text.zip {
        width: 100%;
    }

    .table_contact td select {
        width: 100%;
    }

    .table_contact_box .table_radio_wrap {
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.4;
    }

    .table_radio_wrap {
        line-height: 1.4;
    }

    .mwform-checkbox-field {
        margin: 0 0 10px 0;
        width: 100% !important;
    }

    .p-qaLists__title::before {
        border-width: 12px 7.5px 0 7.5px;
        right: 6px;
    }

    .p-qaLists__title.close::before {
        border-width: 0 7.5px 12px 7.5px;
        right: 6px;
    }

    .table_contact th {
        font-size: 1.4rem;
    }

    .table_contact td input.text.zip {
        width: 100%;
    }

    .table_radio_wrap {
        flex-direction: column;
        gap: 10px;
    }

    .mwform-checkbox-field,
    .mwform-radio-field {
        margin-right: 0;
    }

    .table_contact_box:not(:last-child) {
        margin-bottom: 12px;
    }

    .table_contact_box h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .p-policy-check {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }

    .p-contactIntro .c-text {
        margin-bottom: 30px;
    }

    .table_contact_wrap {
        padding: 20px 15px 40px;
    }

    .required,
    .optional {
        width: 42px;
        height: 22px;
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    .p-policy-check {
        margin: 10px 0px 20px;
    }

    .table_contact td textarea {
        height: 150px;
    }

    .p-contactForm {
        padding: 50px 0 0;
        margin-bottom: 30px;
    }

    .p-qaLists__title::after {
        left: 12px;
    }

    .p-qaLists__title {
        padding: 12px 25px 12px 50px;
    }

    .p-qaLists__title.close::before {
        border-width: 0px 5.5px 9px;
    }

    .p-qaLists__title::before {
        border-width: 9px 5.5px 0px;
    }

    .p-qaLists__box p {
        font-size: 1.3rem;
    }

    .p-qaLists__box {
        padding: 20px 0px 25px;
    }

    .p-qaLists__title {
        font-size: 1.4rem;
    }

    .p-contactFaq__box {
        margin: 0;
    }

    .table_contact tr:not(:last-child) {
        margin-bottom: 0;
    }

    .p-qaList:not(:last-child) {
        margin: 0 0 15px;
    }

    .p-contactFaq__box:not(:last-child) {
        margin: 0px 0px 40px;
    }

    .p-contactForm h2 {
        margin: 0px 0px 30px;
    }

    .p-contactFaq {
        padding: 40px 0 0;
    }
}

/*----------------------------------------
	privacy policy
----------------------------------------*/

.privacy_title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0.5em;
    background-color: rgba(196, 221, 180, 0.09);
    border-left: 4px solid #006FB9;
    margin: 0 0 15px;
}

.privacy_title02 {
    font-size: 2.2rem;
    line-height: 1.4;
    padding: 0.5em;
    color: #fff;
    background-color: #006FB9;
    margin: 0 auto 30px;
    width: 500px;
    text-align: center;
}

.privacy_policy .text {
    margin: 0 0 30px;
}

.privacy_policy_list {
    font-weight: bold;
    color: #93C572;
    margin: 0 0 20px;
    line-height: 1.3;
}

.privacy_policy_lists li {
    line-height: 1.75;
}

.privacy_policy_list > ul {
    margin: 10px 0 0;
    color: #000;
    line-height: 1.7;
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    .privacy_title {
        font-size: 1.6rem;
    }

    .privacy_title02 {
        font-size: 1.8rem;
    }

    .privacy_policy_list {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 590px) {
    .privacy_title02 {
        width: 100%;
        margin: 0 auto 20px;
    }
}

/*----------------------------------------
	404 not found
----------------------------------------*/

.p-catch__404 {
    background-image: url(images/catch_404.jpg);
}

.error404 .c-button {
    margin: auto;
}

/*----------------------------------------
	animation
----------------------------------------*/

.js-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}

.p-catchText.js-fade.is-show {
    transform: translateY(-50%);
}

.js-delay-1 {
    transition-delay: 0.2s;
}

.js-delay-2 {
    transition-delay: 0.4s;
}

.js-delay-3 {
    transition-delay: 0.6s;
}

.js-reveal {
    position: relative;
    overflow: hidden;
    filter: brightness(0.6) saturate(0.5) blur(4px);
    transition: filter 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal.is-show {
    filter: brightness(1) saturate(1) blur(0);
    overflow: unset;
}

.js-reveal::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 1.8s ease;
    z-index: 1;
    pointer-events: none;
}

.js-reveal.is-show::after {
    opacity: 0;
}

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

    .p-catchText.js-fade {
        transform: translate(-50%, -40%);
    }

    .p-catchText.js-fade.is-show {
        transform: translate(-50%, -50%);
    }
}
