/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    color: #313131;
    background-color: #ffffff;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
	
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    margin: 0;
    padding: 0;

    border: 0;
    background: transparent;

    font: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: relative;

    z-index: 100;

    width: 100%;
    height: 140px;

    background-color: #ffffff;
}


.header__inner {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;

    padding: 0 50px;
}


/* =========================================================
   LOGO
========================================================= */

.header__logo {
    display: block;

    flex-shrink: 0;

    width: 209px;
}

.header__logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.header__nav {
    margin-left: auto;
}


.header__nav-list {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}


.header__nav-item {
    margin: 0;
    padding: 0;
}


.header__nav-item + .header__nav-item {
    margin-left: clamp(18px, 1.5vw, 28px);
}


.header__nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;

    white-space: nowrap;
}


.header__nav-en {
    display: block;

    color: #222222;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.075em;

    transition: color 0.3s ease;
}


.header__nav-ja {
    display: block;

    margin-top: 7px;

    color: #746a5f;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;

    transition: color 0.3s ease;
}


.header__nav-item a:hover .header__nav-en {
    color: #ae5f08;
}


.header__nav-item a:hover .header__nav-ja {
    color: #ae5f08;
}


/* =========================================================
   TELEPHONE
========================================================= */

.header__tel {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    margin-left: clamp(20px, 2vw, 35px);
}


.header__tel-icon {
    display: block;

    width: 24px;
    height: auto;

    margin-right: 7px;
}


.header__tel-number {
    color: #313131;

    font-family:
        "Shippori Mincho",
        serif;

    font-size: 26px;
    font-weight: 500;

    line-height: 1;

    /*
     * PSD tracking 25
     */
    letter-spacing: 0.025em;

    white-space: nowrap;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.header__contact {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 150px;
    height: 60px;

    margin-left: clamp(18px, 2vw, 35px);

    color: #ffffff;
    background-color: #d07024;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    /*
     * PSD tracking 75
     */
    letter-spacing: 0.075em;

    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}


.header__contact:hover {
    background-color: #222222;
}


/* =========================================================
   SP MENU BUTTON
========================================================= */

.header__menu-button {
    display: none;

    position: relative;

    width: 50px;
    height: 50px;

    cursor: pointer;
}


.header__menu-button span {
    position: absolute;
    left: 50%;

    width: 26px;
    height: 1px;

    background-color: #222222;

    transform: translateX(-50%);

    transition:
        top 0.3s ease,
        transform 0.3s ease;
}


.header__menu-button span:nth-child(1) {
    top: 16px;
}


.header__menu-button span:nth-child(2) {
    top: 25px;
}


.header__menu-button span:nth-child(3) {
    top: 34px;
}


/* =========================================================
   MAIN VISUAL
========================================================= */

.main-visual {
    position: relative;

    width: 100%;
    height: clamp(500px, 54vw, 780px);

    overflow: hidden;
}


/* =========================================================
   MV BACKGROUND
========================================================= */

.main-visual::before {
    content: "";

    position: absolute;

    z-index: 1;

    top: 30%;
    right: 0;

    width: 85%;
    height: 70%;

    background-color: #ececec;
}


/* =========================================================
   MV IMAGE
========================================================= */

.main-visual__image {
    position: relative;
    z-index: 2;

    width: 57%;
    height: 100%;

    margin-left: 2.3%;

    line-height: 0;
}

.main-visual__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   MV COPY
========================================================= */

.main-visual__copy {
    position: absolute;

    z-index: 3;

    /*
     * PCデザイン基準
     */
    left: 60%;
    bottom: 80px;

    white-space: nowrap;
}


/* =========================================================
   MV JAPANESE
========================================================= */

.main-visual__jp {
    position: relative;

    z-index: 10;

    margin: 0;

    color: #313131;

    font-family:
        "Shippori Mincho",
        serif;

    /*
     * デザインデータ基準
     */
    font-size: 60px;
    font-weight: 500;

    line-height: 1.45;

    /*
     * PSD tracking 50
     */
    letter-spacing: 0.05em;
}


/* =========================================================
   MV ORANGE WORD
========================================================= */

.main-visual__orange {
    color: #d07024;

    /*
     * デザインデータ基準
     */
    font-size: 80px;
    font-weight: 500;
}


/* =========================================================
   MV ENGLISH
========================================================= */

.main-visual__en {
    position: relative;

    left: -100px;
    top: -40px;

    margin: 8px 0 0;

    color: #ffffff;

    font-family:
        "Roboto",
        sans-serif;

    /*
     * デザインデータ基準
     */
    font-size: 90px;
    font-weight: 500;

    line-height: 1;

    /*
     * PSD tracking 75
     */
    letter-spacing: 0.075em;
}


/* =========================================================
   TABLET / SMALL PC
========================================================= */

@media screen and (max-width: 1300px) {

    .header__inner {
        padding: 0 40px;
    }

    .header__logo {
        width: clamp(170px, 16vw, 209px);
    }

    .header__nav-item + .header__nav-item {
        margin-left: clamp(12px, 1.2vw, 22px);
    }

    .header__nav-en {
        font-size: clamp(11px, 1.15vw, 15px);
    }

    .header__nav-ja {
        font-size: clamp(10px, 1.05vw, 14px);
    }

    .header__tel-number {
        font-size: clamp(18px, 2vw, 26px);
    }

    .header__contact {
        width: clamp(110px, 11vw, 150px);
        height: clamp(48px, 5vw, 60px);

        font-size: clamp(13px, 1.4vw, 18px);
    }


    /*
     * MV
     */

    .main-visual__jp {
        font-size: clamp(42px, 4.6vw, 60px);
    }

    .main-visual__orange {
        font-size: clamp(56px, 6.1vw, 80px);
    }

    .main-visual__en {
        left: clamp(-100px, -7vw, -70px);
        top: clamp(-40px, -3vw, -30px);

        font-size: clamp(62px, 6.9vw, 90px);
    }

    .main-visual__copy {
        bottom: clamp(50px, 5.8vw, 80px);
    }

}


/* =========================================================
   1100px以下
========================================================= */

@media screen and (max-width: 1100px) {

    .header__inner {
        padding: 0 30px;
    }

    .header__logo {
        width: clamp(150px, 17vw, 185px);
    }

    .header__nav-item + .header__nav-item {
        margin-left: 10px;
    }

    .header__tel {
        margin-left: 15px;
    }

    .header__contact {
        margin-left: 15px;
    }


    /*
     * MV
     */

    .main-visual__jp {
        font-size: clamp(36px, 4.2vw, 48px);
    }

    .main-visual__orange {
        font-size: clamp(48px, 5.5vw, 64px);
    }

    .main-visual__en {
        left: clamp(-80px, -6vw, -55px);

        font-size: clamp(52px, 6vw, 70px);
    }

}


/* =========================================================
   900px以下
========================================================= */

@media screen and (max-width: 900px) {

    .header {
        height: 90px;
    }

    .header__inner {
        padding: 0 25px;
    }


    .header__logo {
        width: 160px;
    }


    /*
     * PC NAV hidden
     */

    .header__nav {
        display: none;
    }

    .header__tel {
        margin-left: auto;
    }

    .header__tel-number {
        font-size: 18px;
    }

    .header__tel-icon {
        width: 20px;
    }


    .header__contact {
        display: none;
    }


    /*
     * Hamburger
     */

    .header__menu-button {
        display: block;

        margin-left: 15px;
    }


    /*
     * MV
     */

    .main-visual {
        min-height: clamp(480px, 75vw, 680px);
    }

    .main-visual::before {
        top: 30%;

        width: 90%;
        height: 70%;
    }

    .main-visual__image {
        width: 72%;
        margin-left: 0;
    }

    .main-visual__copy {
        left: 53%;
        bottom: clamp(35px, 6vw, 60px);
    }

    .main-visual__jp {
        font-size: clamp(30px, 5.2vw, 44px);
    }

    .main-visual__orange {
        font-size: clamp(40px, 6.8vw, 58px);
    }

    .main-visual__en {
        left: clamp(-55px, -5vw, -35px);
        top: clamp(-28px, -3vw, -20px);

        font-size: clamp(42px, 6.8vw, 58px);
    }

}


/* =========================================================
   700px以下
========================================================= */

@media screen and (max-width: 700px) {

    .header {
        height: 80px;
    }

    .header__inner {
        padding: 0 20px;
    }

    .header__logo {
        width: 145px;
    }

    .header__tel {
        display: none;
    }

    .header__menu-button {
        margin-left: auto;
    }


    /*
     * MV
     */

    .main-visual {
        height: clamp(520px, 125vw, 650px);
    }

    .main-visual::before {
        top: 42%;
        width: 100%;
        height: 58%;
    }

    .main-visual__image {
        width: 82%;
        height: 72%;
        margin-left: 0;
    }

    .main-visual__copy {
        left: auto;
        right: 5%;
        bottom: 5%;
    }

    .main-visual__jp {
        font-size: clamp(26px, 5.5vw, 38px);
        line-height: 1.5;

        text-shadow:
            0 0 3px rgba(255, 255, 255, 0.95),
            0 0 7px rgba(255, 255, 255, 0.85),
            0 0 12px rgba(255, 255, 255, 0.7);
    }

    .main-visual__orange {
        font-size: clamp(34px, 7vw, 48px);
    }

    .main-visual__en {
        left: -20px;
        top: -15px;

        font-size: clamp(36px, 7.5vw, 50px);

        text-shadow:
            0 0 3px rgba(255, 255, 255, 0.95),
            0 0 7px rgba(255, 255, 255, 0.85),
            0 0 12px rgba(255, 255, 255, 0.7);
    }

}


/* =========================================================
   500px以下
========================================================= */

@media screen and (max-width: 500px) {

    .header__logo {
        width: 130px;
    }

    .header__menu-button {
        width: 45px;
        height: 45px;
    }


    /*
     * MV
     */

    .main-visual {
        height: 420px;
    }

    .main-visual::before {
        top: 35%;
        width: 100%;
        height: 65%;
    }

    .main-visual__image {
        width: 100%;
        height: 100%;
        margin-left: 0;
    }

    .main-visual__copy {
		top: 35px;
		right: auto;
		bottom: auto;
		left: 25px;

		padding: 12px 16px;

		background-color: rgba(255, 255, 255, 0.6);

		white-space: nowrap;
	}

    .main-visual__jp {
        font-size: clamp(24px, 6vw, 30px);
        line-height: 1.5;

        text-shadow:
            0 0 4px rgba(255, 255, 255, 0.9),
            0 0 10px rgba(255, 255, 255, 0.7);
    }

    .main-visual__orange {
        font-size: clamp(31px, 7.5vw, 38px);
    }

    .main-visual__en {
        left: 0;
        top: -15px;

        font-size: clamp(32px, 8vw, 40px);

        text-shadow:
            0 0 4px rgba(255, 255, 255, 0.9),
            0 0 10px rgba(255, 255, 255, 0.7);
    }

}


/* =========================================================
   HEADER MENU BUTTON
========================================================= */

.header__menu-button {
    display: none;

    position: relative;
    z-index: 3001;

    flex-shrink: 0;

    width: 44px;
    height: 44px;

    margin-left: auto;

    cursor: pointer;
}


.header__menu-button span {
    position: absolute;

    left: 50%;

    width: 30px;
    height: 1px;

    background-color: #313131;

    transform: translateX(-50%);

    transition:
        top 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.header__menu-button span:nth-child(1) {
    top: 12px;
}


.header__menu-button span:nth-child(2) {
    top: 21px;
}


.header__menu-button span:nth-child(3) {
    top: 30px;
}


/* =========================================================
   SP MENU
========================================================= */

.sp-menu {
    position: fixed;

    z-index: 3000;

    top: 0;
    right: 0;

    width: min(420px, 88%);
    height: 100dvh;

    padding:
        100px
        35px
        40px;

    background-color: #ffffff;

    overflow-y: auto;

    visibility: hidden;

    transform: translateX(100%);

    transition:
        transform 0.4s ease,
        visibility 0.4s ease;
}


body.is-menu-open .sp-menu {
    visibility: visible;

    transform: translateX(0);
}


/* =========================================================
   SP MENU LIST
========================================================= */

.sp-menu__list {
    margin: 0;
    padding: 0;

    border-top: 1px solid #d7d3cf;

    list-style: none;
}


.sp-menu__list li {
    border-bottom: 1px solid #d7d3cf;
}


.sp-menu__list a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px 4px;

    color: #313131;
}


.sp-menu__en {
    font-family:
        "Roboto",
        sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.075em;
}


.sp-menu__ja {
    color: #746a5f;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 12px;
    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 0.05em;
}


/* =========================================================
   SP MENU CONTACT
========================================================= */

.sp-menu__contact-area {
    margin-top: 35px;
}


.sp-menu__tel {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: #313131;
}


.sp-menu__tel img {
    display: block;

    width: 22px;
    height: auto;

    margin-right: 8px;
}


.sp-menu__tel span {
    font-family:
        "Shippori Mincho",
        serif;

    font-size: 22px;
    font-weight: 500;

    letter-spacing: 0.025em;
}


.sp-menu__contact {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 55px;

    color: #ffffff;
    background-color: #d07024;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 17px;
    font-weight: 500;

    letter-spacing: 0.075em;
}


/* =========================================================
   OVERLAY
========================================================= */

.sp-menu-overlay {
    position: fixed;

    z-index: 2990;

    inset: 0;

    background-color: rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
}


body.is-menu-open .sp-menu-overlay {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MENU BUTTON OPEN
========================================================= */

body.is-menu-open .header__menu-button span:nth-child(1) {
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


body.is-menu-open .header__menu-button span:nth-child(2) {
    opacity: 0;
}


body.is-menu-open .header__menu-button span:nth-child(3) {
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


body.is-menu-open {
    overflow: hidden;
}


/* =========================================================
   900px以下
========================================================= */

@media screen and (max-width: 900px) {

    .header__nav,
    .header__tel,
    .header__contact {
        display: none;
    }


    .header__menu-button {
        display: block;
    }

}



/* =========================================================
   ABOUT
========================================================= */

.about {
    position: relative;

    width: 100%;
    height: clamp(470px, 39vw, 600px);

    padding-top: clamp(70px, 5.5vw, 95px);
    padding-bottom: clamp(70px, 5.5vw, 95px);

    overflow: hidden;
}


/* =========================================================
   ABOUT BACKGROUND
========================================================= */

.about::before {
    content: "";

    position: absolute;

    z-index: 0;

    top: 0;
    right: 0;

    width: 95%;
    height: 100%;

    background-color: #ececec;
}


/* =========================================================
   ABOUT INNER
========================================================= */

.about__inner {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: calc(100% - 100px);
    height: 100%;

    margin: 0 auto;
}


/* =========================================================
   ABOUT CONTENTS
========================================================= */

.about__contents {
    position: relative;

    width: 52%;
    height: 100%;
}


/* =========================================================
   ABOUT ENGLISH
========================================================= */

.about__en {
    position: absolute;

    top: 25px;
    left: 5%;

    margin: 0;

    color: #ffffff;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 90px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.075em;

    white-space: nowrap;
}


/* =========================================================
   ABOUT TEXT AREA
========================================================= */

.about__text-area {
    position: absolute;

    top: clamp(55px, 4.5vw, 75px);
    left: clamp(120px, 10vw, 180px);

    z-index: 2;

    width: min(620px, calc(100% - 120px));
}


/* =========================================================
   ABOUT TITLE
========================================================= */

.about__title {
    margin: 0 0 28px;

    color: #313131;

    font-family:
        "Shippori Mincho",
        serif;

    font-size: 32px;
    font-weight: 600;

    line-height: 1.65;
    letter-spacing: 0.025em;

    white-space: nowrap;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.about__text {
    margin: 0 0 34px;

    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 2;

    letter-spacing: 0;
}


/* =========================================================
   ABOUT BUTTON
========================================================= */

.about__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 205px;
    height: 55px;

    padding: 0 20px;

    border: 1px solid #d07024;

    color: #d07024;
    background-color: transparent;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 13px;
    font-weight: 500;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}


.about__button-arrow {
    margin-left: 20px;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 16px;
}


.about__button:hover {
    color: #ffffff;
    background-color: #d07024;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about__image {
    position: relative;
    z-index: 2;

    width: 47%;
    height: 100%;
}

.about__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   ABOUT RESPONSIVE
   1300px以下
========================================================= */

@media screen and (max-width: 1300px) {

    .about {
        height: clamp(430px, 42vw, 540px);
    }


    .about__inner {
        width: calc(100% - 70px);
    }


    .about__en {
        font-size: clamp(62px, 6.9vw, 90px);
    }


    .about__text-area {
        top: clamp(48px, 4vw, 65px);
        left: clamp(90px, 9vw, 150px);

        width: calc(100% - 90px);
    }



    .about__text {
        font-size: clamp(12px, 1.15vw, 15px);
    }
	
	.about__title {
        font-size: clamp(27px, 2.5vw, 32px);
    }

    .about__image {
        width: 43%;
    }

}


/* =========================================================
   ABOUT RESPONSIVE
   1000px以下
========================================================= */

@media screen and (max-width: 1000px) {

    .about {
        height: clamp(400px, 46vw, 470px);

        padding-top: 55px;
        padding-bottom: 55px;
    }


    .about__inner {
        width: calc(100% - 50px);
    }


    .about__contents {
        width: 56%;
    }


    .about__image {
        width: 40%;
    }


    .about__en {
        font-size: clamp(52px, 6.5vw, 65px);
    }


    .about__text-area {
        top: 45px;
        left: clamp(55px, 7vw, 90px);

        width: calc(100% - 55px);
    }


    .about__title {
        font-size: clamp(23px, 2.8vw, 28px);
    }

    .about__image {
        width: 43%;
    }


    .about__text {
        margin-bottom: 24px;

        font-size: clamp(11px, 1.3vw, 13px);

        line-height: 1.9;
    }


    .about__button {
        width: 165px;
        height: 46px;

        font-size: 11px;
    }

}

/* =========================================================
   ABOUT RESPONSIVE
   900px以下
========================================================= */

@media screen and (max-width: 900px) {

    .about__title {
        font-size: clamp(23px, 3.2vw, 28px);

        line-height: 1.7;

        /* PC側のnowrapを解除 */
        white-space: normal;
    }

}


/* =========================================================
   ABOUT RESPONSIVE
   700px以下
========================================================= */

@media screen and (max-width: 700px) {

    .about {
        height: auto;

        padding: 65px 0;
    }


    .about::before {
        width: 95%;
        height: 100%;
    }


    .about__inner {
        display: flex;
        flex-direction: column;

        width: calc(100% - 40px);
        height: auto;
    }


    .about__contents {
        width: 100%;
        height: auto;

        padding-bottom: 40px;
    }


    .about__en {
        position: relative;

        top: auto;
        left: auto;

        margin-bottom: -8px;

        font-size: clamp(48px, 11vw, 70px);
    }


    .about__text-area {
        position: relative;

        top: auto;
        left: auto;

        width: 100%;

        padding-left: clamp(25px, 8vw, 55px);
    }


    .about__title {
        margin-bottom: 22px;

        font-size: clamp(24px, 5vw, 30px);

        line-height: 1.7;
    }


    .about__text {
        margin-bottom: 28px;

        font-size: clamp(12px, 3vw, 14px);

        line-height: 2;
    }


    .about__text br {
        display: none;
    }


    .about__image {
        width: 88%;
        height: clamp(230px, 55vw, 360px);

        margin-left: auto;
    }

}

@media screen and (max-width: 700px) {

    .about__title {
        white-space: normal;
    }

}


/* =========================================================
   ABOUT RESPONSIVE
   500px以下
========================================================= */

@media screen and (max-width: 500px) {

    .about {
        padding: 55px 0;
    }


    .about::before {
        width: 95%;
    }


    .about__inner {
        width: calc(100% - 30px);
    }


    .about__contents {
        padding-bottom: 35px;
    }


    .about__en {
        font-size: clamp(40px, 12vw, 58px);
    }


    .about__text-area {
        padding-left: 20px;
    }


    .about__title {
        font-size: clamp(21px, 5.7vw, 26px);
    }


    .about__text {
        font-size: 12px;
    }


    .about__button {
        width: 155px;
        height: 44px;


        padding: 0 15px;
    }


    .about__image {
        width: 92%;
        height: clamp(210px, 60vw, 300px);
    }

}


/* =========================================================
   SERVICE
========================================================= */

.service {
    position: relative;

    width: 100%;

    padding:
        clamp(100px, 7vw, 140px)
        0
        clamp(120px, 8vw, 160px);

    background-color: #ffffff;
}


/* =========================================================
   SERVICE HEADING
========================================================= */

.service__heading {
    margin-bottom: clamp(55px, 4.5vw, 80px);

    text-align: center;
}


.service__heading-en {
    margin: 0;

    color: #313131;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 80px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.075em;
}


.service__heading-ja {
    margin: 10px 0 0;

    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.4;

    letter-spacing: 0.05em;
}


/* =========================================================
   SERVICE INNER
========================================================= */

.service__inner {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(40px, 3.5vw, 70px);

    width: calc(100% - 80px);
    max-width: 1720px;

    margin: 0 auto;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    min-width: 0;

    padding:
        clamp(42px, 3vw, 58px)
        clamp(38px, 3vw, 55px)
        clamp(38px, 3vw, 55px);

    background-color: #9f9991;

    color: #ffffff;
}


/* =========================================================
   SERVICE CARD TOP
========================================================= */

.service-card__top {
    display: flex;

    align-items: flex-start;

    min-width: 0;
}


/* =========================================================
   SIDE TITLE IMAGE
========================================================= */

.service-card__side-title {
    flex-shrink: 0;

    width: clamp(62px, 5vw, 88px);

    margin-right: clamp(28px, 2.4vw, 42px);
}


.service-card__side-title img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-card__image {
    flex: 1;

    min-width: 0;

    aspect-ratio: 580 / 410;

    overflow: hidden;
}


.service-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-card__content {
    /*
     * 縦タイトル分だけ本文を右へ寄せる
     */
    padding-left:
        calc(
            clamp(62px, 5vw, 88px)
            +
            clamp(28px, 2.4vw, 42px)
        );

    padding-top: clamp(28px, 2.2vw, 38px);
}


/* =========================================================
   SERVICE TITLE
========================================================= */

.service-card__title {
    margin: 0 0 clamp(20px, 1.7vw, 28px);

    color: #ffffff;

    font-family:
        "Shippori Mincho",
        serif;

    /*
     * PCの最大値はPSD指定34px
     */
    font-size: clamp(25px, 1.8vw, 34px);
    font-weight: 600;

    line-height: 1.6;

    letter-spacing: 0.05em;
}


.service-card__title span {
    display: block;

    white-space: nowrap;
}


/* =========================================================
   SERVICE TEXT
========================================================= */

.service-card__text {
    margin: 0 0 clamp(28px, 2vw, 38px);

    color: #ffffff;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    /*
     * PSD基準は15px。
     * PC表示中はデザインの3行を維持できるよう
     * 下限を高めに設定。
     */
    font-size: clamp(13px, 0.95vw, 15px);
    font-weight: 500;

    line-height: 2;

    letter-spacing: 0.05em;
}


/* =========================================================
   SERVICE TARGET
========================================================= */

.service-target {
    /*
     * デザインでは左側の余白がかなり小さいため、
     * 横paddingを減らす
     */
    padding:
        clamp(22px, 1.7vw, 30px)
        clamp(12px, 1vw, 18px)
        clamp(25px, 2vw, 34px);

    background-color: #ffffff;

    text-align: center;
}


/* =========================================================
   TARGET TITLE
========================================================= */

.service-target__title {
    margin: 0 0 clamp(18px, 1.5vw, 25px);

    color: #746b62;

    font-family:
        "Shippori Mincho",
        serif;

    font-size: clamp(22px, 1.5vw, 28px);
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.025em;
}


/* =========================================================
   TARGET LIST
========================================================= */

.service-target__list {
    margin: 0;
    padding: 0;

    list-style: none;

    text-align: left;
}


/*
 * li自体をinline-block化することで
 * デザインのように内容幅で並べる
 */
.service-target__list li {
    display: inline-block;

    position: relative;

    margin:
        0
        clamp(8px, 0.9vw, 16px)
        9px
        0;

    padding-left: clamp(20px, 1.5vw, 27px);

    color: #746b62;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    /*
     * PSD基準19pxだが、
     * 2列の見え方を維持するため
     * PC幅に応じて自然に縮小
     */
    font-size: clamp(12px, 0.85vw, 16px);
    font-weight: 500;

    line-height: 1.55;

    letter-spacing: 0.025em;

    white-space: nowrap;

    vertical-align: top;
}


/* =========================================================
   PERSONAL LIST ICON
========================================================= */

.service-card--personal .service-target__list li::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: clamp(15px, 1.15vw, 20px);
    height: clamp(14px, 1.1vw, 19px);

    background-image: url("../images/icon_house.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    transform: translateY(-50%);
}


/* =========================================================
   BUSINESS LIST ICON
========================================================= */

.service-card--business .service-target__list li::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: clamp(15px, 1.15vw, 20px);
    height: clamp(14px, 1.1vw, 19px);

    background-image: url("../images/icon_building.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    transform: translateY(-50%);
}


/* =========================================================
   SERVICE BOTTOM LINK
========================================================= */

.service-card__link {
    display: block;

    width: clamp(170px, 13vw, 225px);

    margin:
        clamp(32px, 2.5vw, 44px)
        0
        0
        auto;

    color: #ffffff;

    transition: opacity 0.3s ease;
}


.service-card__link-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 0 10px 10px;
}


.service-card__link-text {
    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: clamp(11px, 0.75vw, 13px);
    font-weight: 500;

    line-height: 1;

    white-space: nowrap;
}


.service-card__link-arrow {
    font-family:
        "Roboto",
        sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1;
}


/*
 * デザインのように、
 * 文字と矢印の下に1本のライン
 */
.service-card__link::after {
    content: "";

    display: block;

    width: 100%;
    height: 1px;

    background-color: rgba(255, 255, 255, 0.7);

    transition: width 0.3s ease;
}


.service-card__link:hover {
    opacity: 0.65;
}


/* =========================================================
   SERVICE RESPONSIVE
   1400px以下
========================================================= */

@media screen and (max-width: 1400px) {

    .service__heading-en {
        font-size: clamp(60px, 5.7vw, 80px);
    }


    .service__heading-ja {
        font-size: clamp(16px, 1.45vw, 20px);
    }


    .service-card {
        padding:
            clamp(30px, 3vw, 44px)
            clamp(25px, 2.7vw, 38px)
            clamp(30px, 3vw, 44px);
    }


    .service-card__side-title {
        width: clamp(52px, 5vw, 70px);

        margin-right: clamp(20px, 2vw, 30px);
    }


    .service-card__content {
        padding-left:
            calc(
                clamp(52px, 5vw, 70px)
                +
                clamp(20px, 2vw, 30px)
            );
    }


    .service-card__title {
        /*
         * 画像にぶつかる前に自然に縮小
         */
        font-size: clamp(22px, 2.05vw, 29px);
    }


    .service-card__text {
        font-size: clamp(11px, 1vw, 14px);
    }


    .service-target__title {
        font-size: clamp(20px, 1.8vw, 25px);
    }


    .service-target__list li {
        font-size: clamp(12px, 1.15vw, 16px);
    }

}

@media screen and (max-width: 1100px) {

    .service-card__text {
        font-size: clamp(11px, 1.15vw, 13px);
    }


    .service-target {
        padding:
            20px
            10px
            23px;
    }


    .service-target__list li {
        margin-right: 7px;

        padding-left: 19px;

        font-size: clamp(10px, 1.15vw, 12px);
    }


    .service-card--personal .service-target__list li::before,
    .service-card--business .service-target__list li::before {
        width: 14px;
        height: 14px;
    }

}


/* =========================================================
   SERVICE RESPONSIVE
   1050px以下
========================================================= */

@media screen and (max-width: 1050px) {

    .service__inner {
        gap: 25px;

        width: calc(100% - 50px);
    }


    .service-card__title {
        font-size: clamp(20px, 2.2vw, 24px);
    }


    .service-card__text {
        font-size: clamp(10px, 1.15vw, 12px);
    }


    .service-target {
        padding: 20px 16px;
    }


    .service-target__list li {
        margin-right: 12px;

        padding-left: 22px;

        font-size: clamp(11px, 1.3vw, 14px);
    }


    .service-card--personal .service-target__list li::before,
    .service-card--business .service-target__list li::before {
        width: 16px;
        height: 16px;
    }

}


/* =========================================================
   SERVICE RESPONSIVE
   850px以下
========================================================= */

@media screen and (max-width: 850px) {

    .service {
        padding:
            clamp(75px, 11vw, 100px)
            0
            clamp(90px, 12vw, 120px);
    }


    .service__inner {
        grid-template-columns: 1fr;

        gap: 35px;

        width: calc(100% - 40px);
        max-width: 720px;
    }


    .service-card {
        padding:
            clamp(30px, 5vw, 45px)
            clamp(25px, 5vw, 40px)
            clamp(35px, 5vw, 45px);
    }


    .service-card__side-title {
        width: clamp(55px, 10vw, 75px);

        margin-right: clamp(24px, 4vw, 35px);
    }


    .service-card__content {
        padding-left:
            calc(
                clamp(55px, 10vw, 75px)
                +
                clamp(24px, 4vw, 35px)
            );
    }


    .service-card__title {
        font-size: clamp(24px, 4vw, 32px);
    }


    .service-card__text {
        font-size: clamp(13px, 2vw, 15px);
    }


    .service-target {
        padding:
            clamp(22px, 4vw, 30px)
            clamp(16px, 3vw, 24px)
            clamp(25px, 4vw, 32px);
    }


    .service-target__list li {
        margin-right: clamp(10px, 2vw, 18px);

        padding-left: clamp(21px, 3vw, 27px);

        font-size: clamp(13px, 2.3vw, 17px);
    }


    .service-target__title {
        font-size: clamp(22px, 3.5vw, 28px);
    }



    /*
     * 1カラムになったので
     * PC指定改行を維持できる
     */
    .service-card__title span {
        white-space: nowrap;
    }

}


/* =========================================================
   SERVICE RESPONSIVE
   600px以下
========================================================= */

@media screen and (max-width: 600px) {

    .service__heading-en {
        font-size: clamp(46px, 12vw, 62px);
    }


    .service__heading-ja {
        font-size: clamp(14px, 3.5vw, 17px);
    }


    .service__inner {
        width: calc(100% - 24px);
    }


    .service-card {
        padding:
            22px
            15px
            28px;
    }


    .service-card__side-title {
        width: 45px;

        margin-right: 16px;
    }


    .service-card__content {
        /*
         * SPではタイトル画像分のインデントを解除
         */
        padding-left: 0;
        padding-top: 24px;
    }


    /*
     * 狭いSPではデザインの強制改行を解除
     */
    .service-card__title span {
        display: inline;

        white-space: normal;
    }


    .service-card__title span + span::before {
        content: " ";
    }


    .service-card__title {
        font-size: clamp(21px, 5.5vw, 27px);

        line-height: 1.6;
    }


    .service-card__text {
        font-size: clamp(11px, 3vw, 13px);
    }


    .service-target {
        padding:
            20px
            14px;
    }


    .service-target__title {
        font-size: clamp(20px, 5.5vw, 25px);
    }


    .service-target__list li {
        display: block;

        width: fit-content;

        margin:
            0
            0
            10px;

        font-size: clamp(13px, 3.7vw, 16px);
    }


    .service-card__link {
        width: min(220px, 70%);

        margin-top: 25px;
    }

}


/* =========================================================
   COMMON SECTION TITLE
========================================================= */

.section-title {
    text-align: center;
}

.section-title__en {
    margin: 0;

    color: #313131;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 80px;
    font-weight: 500;

    line-height: 1;

    /*
     * PSD tracking 75
     */
    letter-spacing: 0.075em;
}

.section-title__ja {
    margin: 10px 0 0;

    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.4;

    /*
     * PSD tracking 50
     */
    letter-spacing: 0.05em;
}




/* =========================================================
   WORK
========================================================= */

.work {
    position: relative;

    width: 100%;

    padding:
        clamp(100px, 7vw, 140px)
        0
        clamp(120px, 8vw, 160px);

    background-color: #ffffff;
}


/* =========================================================
   WORK TITLE
========================================================= */

.work .section-title {
    margin-bottom: clamp(55px, 4vw, 75px);
}


/* =========================================================
   WORK LIST
========================================================= */

.work__list {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(12px, 1.2vw, 22px);

    width: calc(100% - 80px);
    max-width: 1720px;

    margin: 0 auto;
}


/* =========================================================
   WORK ITEM
========================================================= */

.work__item {
    display: block;

    width: 100%;
    min-width: 0;

    overflow: hidden;
}


.work__item img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.45s ease;
}


.work__item:hover img {
    transform: scale(1.04);
}


/* =========================================================
   WORK RESPONSIVE
   1200px以下
========================================================= */

@media screen and (max-width: 1200px) {

    .work {
        padding:
            clamp(80px, 8vw, 100px)
            0
            clamp(90px, 10vw, 120px);
    }


    .work .section-title {
        margin-bottom: clamp(40px, 5vw, 60px);
    }


    .work__list {
        /*
         * 4列は維持
         */
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: clamp(8px, 1.2vw, 14px);

        /*
         * 左右余白も画面に合わせて縮小
         */
        width: calc(100% - clamp(40px, 6vw, 80px));
    }

}


/* =========================================================
   WORK RESPONSIVE
   900px以下
========================================================= */

@media screen and (max-width: 900px) {

    .work__list {
        /*
         * ここでも4列維持
         */
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: clamp(6px, 1vw, 10px);

        width: calc(100% - 40px);
    }

}


/* =========================================================
   WORK RESPONSIVE
   700px以下
========================================================= */

@media screen and (max-width: 700px) {

    .work {
        padding:
            clamp(70px, 12vw, 90px)
            0
            clamp(80px, 14vw, 100px);
    }


    .work .section-title {
        margin-bottom: clamp(35px, 7vw, 45px);
    }


    .work__list {
        /*
         * 700pxでも4列
         */
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 6px;

        width: calc(100% - 30px);
    }

}


/* =========================================================
   WORK RESPONSIVE
   600px以下
========================================================= */

@media screen and (max-width: 600px) {

    .work__list {
        /*
         * ここから2列
         */
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;

        width: calc(100% - 30px);
    }

}


/* =========================================================
   WORK RESPONSIVE
   400px以下
========================================================= */

@media screen and (max-width: 400px) {

    .work__list {
        gap: 6px;

        width: calc(100% - 20px);
    }

}



/* =========================================================
   INFORMATION
========================================================= */

.information {
    position: relative;

    width: 100%;

    padding:
        clamp(90px, 7vw, 130px)
        0
        clamp(100px, 8vw, 145px);

    background-color: #ececec;
}


/* =========================================================
   INFORMATION INNER
========================================================= */

.information__inner {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;
}


/* =========================================================
   COMPANY / ACCESS
========================================================= */

.information__cards {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: clamp(35px, 4vw, 70px);

    margin-bottom: clamp(70px, 6vw, 110px);
}


/* =========================================================
   INFORMATION CARD
========================================================= */

.information-card {
    position: relative;

    display: block;

    min-width: 0;

    aspect-ratio: 2 / 1;

    overflow: hidden;
}



.information-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.information-card:hover img {
    transform: scale(1.035);
}



/* =========================================================
   COMPANY / ACCESS TEXT
========================================================= */

.information-card__text {
    position: absolute;

    z-index: 2;

    right: clamp(18px, 2.2vw, 35px);
    bottom: clamp(16px, 1.8vw, 28px);

    color: #ffffff;

    text-align: right;
}


.information-card__en {
    margin: 0;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 60px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.025em;
}


.information-card__ja {
    margin: 8px 0 0;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.05em;
}


/* =========================================================
   BLOG
========================================================= */

.blog {
    display: grid;

    grid-template-columns:
        clamp(180px, 17vw, 260px)
        minmax(0, 1fr);

    gap: clamp(55px, 6vw, 100px);

    align-items: start;
}


/* =========================================================
   BLOG HEAD
========================================================= */

.blog__head {
    padding-top: 4px;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.blog__title {
    margin: 0 0 clamp(24px, 2vw, 34px);

    color: #28211f;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 60px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.025em;
}


/* =========================================================
   BLOG MORE
========================================================= */

.blog__more {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 115px;

    margin-top: 28px;

    padding:
        0
        8px
        10px;

    color: #d07024;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 12px;
    font-weight: 500;

    line-height: 1;

    transition: opacity 0.3s ease;
}


/*
 * 下側の細いライン
 */
.blog__more::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

    height: 1px;

    background-color: #d07024;
}


.blog__more-text {
    white-space: nowrap;
}


.blog__more-arrow {
    margin-left: 20px;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;
}


.blog__more:hover {
    opacity: 0.6;
}


/* =========================================================
   BLOG LIST
========================================================= */

.blog__list {
    width: 100%;

    border-top: 1px solid rgba(40, 33, 31, 0.25);
}


/* =========================================================
   BLOG ITEM
========================================================= */

.blog__item {
    display: grid;

    grid-template-columns:
        clamp(120px, 10vw, 160px)
        minmax(0, 1fr)
        30px;

    gap: clamp(20px, 2.5vw, 40px);

    align-items: center;

    min-height: clamp(70px, 5vw, 85px);

    border-bottom: 1px solid rgba(40, 33, 31, 0.25);

    transition: opacity 0.3s ease;
}


.blog__item:hover {
    opacity: 0.6;
}


/* =========================================================
   BLOG DATE
========================================================= */

.blog__date {
    color: #28211f;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.05em;

    white-space: nowrap;
}


/* =========================================================
   BLOG ITEM TITLE
========================================================= */

.blog__item-title {
    margin: 0;

    overflow: hidden;

    color: #28211f;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.6;

    letter-spacing: 0.05em;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   BLOG ARROW
========================================================= */

.blog__arrow {
    color: #28211f;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 18px;

    text-align: right;
}


/* =========================================================
   INFORMATION RESPONSIVE
   1200px以下
========================================================= */

@media screen and (max-width: 1200px) {

    .information__inner {
        width: calc(100% - 60px);
    }


    .information-card__en {
        font-size: clamp(42px, 5vw, 60px);
    }


    .information-card__ja {
        font-size: clamp(12px, 1.25vw, 15px);
    }


    .blog__title {
        font-size: clamp(44px, 5vw, 60px);
    }


    .blog__date,
    .blog__item-title {
        font-size: clamp(13px, 1.4vw, 17px);
    }

}


/* =========================================================
   INFORMATION RESPONSIVE
   800px以下
========================================================= */

@media screen and (max-width: 800px) {

    .information {
        padding:
            clamp(70px, 11vw, 90px)
            0
            clamp(80px, 12vw, 100px);
    }


    /*
     * まだ2列を維持
     */
    .information__cards {
        gap: 20px;

        margin-bottom: 70px;
    }


    .information-card__en {
        font-size: clamp(34px, 6.5vw, 48px);
    }


    .information-card__ja {
        margin-top: 8px;

        font-size: clamp(11px, 2vw, 14px);
    }


    /*
     * BLOGは縦積みへ
     */
    .blog {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .blog__head {
        display: flex;

        align-items: center;
        justify-content: space-between;

        padding-top: 0;
    }


    .blog__title {
        margin: 0;

        font-size: clamp(42px, 8vw, 55px);
    }


    .blog__more {
        width: 140px;
        height: 46px;
    }

}


/* =========================================================
   INFORMATION RESPONSIVE
   600px以下
========================================================= */

@media screen and (max-width: 600px) {

    .information__inner {
        width: calc(100% - 30px);
    }


    .information__cards {
        grid-template-columns: 1fr;

        gap: 16px;

        margin-bottom: 60px;
    }


    .information-card {
        aspect-ratio: 2 / 1;
    }


    .information-card__en {
        font-size: clamp(38px, 10vw, 52px);
    }


    .information-card__ja {
        font-size: 13px;
    }


    .blog__head {
        align-items: flex-end;
    }


    .blog__more {
        width: 120px;
        height: 42px;

        padding: 0 14px;

        font-size: 11px;
    }


    .blog__item {
        grid-template-columns:
            90px
            minmax(0, 1fr)
            20px;

        gap: 10px;

        min-height: 62px;
    }


    .blog__date {
        font-size: clamp(11px, 3vw, 13px);
    }


    .blog__item-title {
        font-size: clamp(11px, 3vw, 13px);
    }


    .blog__arrow {
        font-size: 15px;
    }

}



/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;

    width: 100%;

    padding:
        clamp(55px, 4vw, 75px)
        0
        calc(clamp(30px, 2.5vw, 45px) + 100px);

    background-color: #ffffff;
}


/* =========================================================
   FOOTER INNER
========================================================= */

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    width: calc(100% - 80px);
    max-width: 1500px;

    margin: 0 auto;
}


/* =========================================================
   FOOTER COMPANY
========================================================= */

.footer__company {
    flex-shrink: 0;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer__logo {
    display: block;

    width: 209px;

    margin-bottom: 22px;
}


.footer__logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   FOOTER INFO
========================================================= */

.footer__info {
    margin: 0;

    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.8;

    /*
     * PSD tracking 75
     */
    letter-spacing: 0.075em;
}


/* =========================================================
   FOOTER NAV
========================================================= */

.footer__nav {
    max-width: 720px;
}

.footer__nav-list {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-start;

    gap:
        clamp(14px, 1.5vw, 22px)
        clamp(18px, 1.5vw, 26px);

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer__nav-list li {
    margin: 0;

    padding-right: clamp(18px, 1.6vw, 28px);

    border-right: 1px solid #313131;
}

.footer__nav-list a {
    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.075em;

    white-space: nowrap;

    transition: opacity 0.3s ease;
}

.footer__nav-list a:hover {
    opacity: 0.6;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer__copyright {
    width: calc(100% - 80px);
    max-width: 1500px;

    margin:
        clamp(35px, 3vw, 50px)
        auto
        0;

    color: #313131;

    font-family:
        "Noto Sans CJK JP",
        "Noto Sans JP",
        sans-serif;

    font-size: 11px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 0.05em;

    text-align: right;
}


/* =========================================================
   FIXED FOOTER
========================================================= */

.fixed-footer {
    position: fixed;

    right: 0;
    bottom: 0;
    left: 0;

    z-index: 1000;

    height: 78px;

    background-color: #817970;

    /*
     * 初期状態は非表示
     */
    opacity: 0;
    visibility: hidden;

    transform: translateY(100%);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   FIXED FOOTER ACTIVE
========================================================= */

.fixed-footer.is-active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   FIXED FOOTER INNER
========================================================= */

.fixed-footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(60px, 6vw, 110px);

    width: calc(100% - 80px);
    max-width: 1000px;
    height: 100%;

    margin: 0 auto;
}


/* =========================================================
   FIXED FOOTER TEL
========================================================= */

.fixed-footer__tel {
    display: flex;
    align-items: center;

    color: #ffffff;
}


.fixed-footer__tel img {
    display: block;

    width: 25px;
    height: auto;

    margin-right: 8px;
}


.fixed-footer__tel span {
    font-family:
        "Shippori Mincho",
        serif;

    font-size: 26px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.025em;

    white-space: nowrap;
}


/* =========================================================
   FIXED FOOTER CONTACT
========================================================= */

.fixed-footer__contact {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 150px;
    height: 50px;

    border: 1px solid #ffffff;

    color: #ffffff;
    background-color: #d07024;

    font-family:
        "Roboto",
        sans-serif;

    font-size: 18px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0.075em;

    transition: background-color 0.3s ease;
}

.fixed-footer__contact:hover {
    background-color: #222222;
}


/* =========================================================
   FOOTER RESPONSIVE
   1000px以下
========================================================= */

@media screen and (max-width: 1000px) {

    .footer__inner {
        width: calc(100% - 50px);
    }


    .footer__logo {
        width: clamp(160px, 18vw, 209px);
    }


    .footer__info {
        font-size: clamp(11px, 1.3vw, 14px);
    }


    .footer__nav {
        max-width: 55%;
    }


    .footer__nav-list {
        gap:
            12px
            20px;
    }


    .footer__nav-list a {
        font-size: clamp(11px, 1.3vw, 14px);
    }


    .footer__copyright {
        width: calc(100% - 50px);

        font-size: clamp(9px, 1vw, 11px);
    }

}


/* =========================================================
   FOOTER RESPONSIVE
   700px以下
========================================================= */

@media screen and (max-width: 700px) {

    .footer {
        padding:
            45px
            0
            100px;
    }


    .footer__inner {
        display: block;

        width: calc(100% - 40px);
    }


    .footer__logo {
        width: 160px;

        margin-bottom: 18px;
    }


    .footer__info {
        font-size: 12px;
    }


    .footer__nav {
        max-width: none;

        margin-top: 35px;
    }


    .footer__nav-list {
        justify-content: flex-start;

        gap:
            12px
            22px;
    }


    .footer__nav-list a {
        font-size: 12px;
    }


    .footer__copyright {
        width: calc(100% - 40px);

        margin-top: 35px;

        font-size: 9px;

        text-align: left;
    }


    /* =====================================================
       FIXED FOOTER SP
    ===================================================== */

    .fixed-footer {
        height: 68px;
    }


    .fixed-footer__inner {
        gap: 0;

        width: 100%;
        max-width: none;
    }


    .fixed-footer__tel {
        justify-content: center;

        width: 55%;
        height: 100%;
    }


    .fixed-footer__tel img {
        width: 21px;

        margin-right: 6px;
    }


    .fixed-footer__tel span {
        font-size: clamp(18px, 4.5vw, 23px);
    }


    .fixed-footer__contact {
        width: 45%;
        height: 100%;

        font-size: clamp(14px, 3.5vw, 17px);
    }

}


/* =========================================================
   FOOTER RESPONSIVE
   500px以下
========================================================= */

@media screen and (max-width: 500px) {

    .footer__nav-list {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            12px
            15px;
    }


    .footer__nav-list a {
        font-size: 11px;

        white-space: normal;
    }


    .fixed-footer__tel {
        width: 58%;
    }


    .fixed-footer__contact {
        width: 42%;
    }


    .fixed-footer__tel span {
        font-size: clamp(16px, 4.8vw, 20px);
    }

}


/* =========================================================
   PAGE TOP
========================================================= */

.page-top {
    position: fixed;

    z-index: 1100;

    right: clamp(20px, 2.5vw, 45px);

    /*
     * 固定フッター78px
     * ＋フッターとの余白
     */
    bottom: 103px;

    display: block;

    width: clamp(55px, 4.5vw, 75px);
    height: auto;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   PAGE TOP VISIBLE
========================================================= */

.page-top.is-visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   PAGE TOP IMAGE
========================================================= */

.page-top img {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================================
   PAGE TOP HOVER
========================================================= */

.page-top:hover {
    opacity: 0.7;
}

@media screen and (max-width: 700px) {

    .page-top {
        right: 15px;
        bottom: 83px;

        width: clamp(48px, 12vw, 60px);
    }

}