@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900");

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

@font-face {
    font-family: TextaLight;
    src: url("../fonts/TextaLight.ttf") format("truetype");
}

/* Reset */
html {
    font-size: 62.5%;
}

body {
    color: #333333;
    background: #ffffff;
    line-height: 1.6;
    word-spacing: 0;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    overflow-x: hidden;
    letter-spacing: 0.085em;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: bold;
    line-height: 1.3;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

.container {
    margin: 0 auto;
    max-width: 960px;
    width: calc(100% - 40px);
}

@media (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    .sp {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media print {
    body {
        color-adjust: exact;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Header */

.lb2-header ul,
.lb2-header ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lb2-header a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

.lb2-header svg {
    width: 100%;
    height: auto;
}

.lb2-header *,
.lb2-header ::before,
.lb2-header ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

.lb2-header h1,
.lb2-header h2,
.lb2-header h3,
.lb2-header h4,
.lb2-header h5,
.lb2-header h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.lb2-header {
    position: fixed;
    width: 100%;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    line-height: 1.15;
    /* 1 */
}

@media screen and (max-width: 768px) {
    .lb2-header {
        height: 50px;
    }
}

.lb2-header::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: white;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

body.topPage .lb2-header::before {
    background-color: #d7d2cb;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0.85);
    transform-origin: 0 0;
}

body.topPage .lb2-header.is-fixed::before {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.lb2-header__logo {
    position: relative;
    width: 250px;
    z-index: 3;
    transform: translateY(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.lb2-header.is-fixed .lb2-header__logo {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .lb2-header__logo {
        max-width: 217px;
        width: 57.8666666667%;
    }

    .lb2-header.is-fixed .lb2-header__logo {
        transform: scale(0.95);
    }
}

.lb2-header__svg {
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lb2-header__logo .lb2-header__svg {
    fill: #3f2021;
}

.lb2-header.is-fixed .lb2-header__logo .lb2-header__svg {
    fill: #3f2021;
}

body.topPage .lb2-header__logo .lb2-header__svg {
    fill: #e5e1dc;
}

.lb2-header.is-active .lb2-header__logo .lb2-header__svg {
    fill: #e5e1dc;
}

.lb2-header__nav .lb2-header__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .lb2-header__nav .lb2-header__list {
        gap: 20px;
    }
}

.lb2-header__social .lb2-header__list {
    display: flex;
    gap: 15px;
    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    .lb2-header__social .lb2-header__list {
        padding-top: 0;
        margin-left: 15px;
    }
}

.lb2-header__drawer {
    position: absolute;
    top: calc(50% - 12.5px);
    right: 65px;
    width: 25px;
    height: 28px;
    z-index: 2;
    background: none;
    transform: translateY(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.lb2-header.is-fixed .lb2-header__drawer {
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .lb2-header__drawer {
        width: 15px;
        height: 18px;
        right: 5vw;
        top: calc(50% - 9px);
    }
}

.lb2-header__drawer__line {
    width: 100%;
    height: 1px;
    background-color: #3f2021;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lb2-header__drawer__line:nth-child(1) {
    top: 50%;
    left: 50%;
    transform-origin: 0 50%;
    transform: translate(-50%, -12.5px);
}

@media screen and (max-width: 768px) {
    .lb2-header__drawer__line:nth-child(1) {
        transform: translate(-50%, -9px);
    }
}

.lb2-header__drawer__line:nth-child(2) {
    top: 50%;
    left: 0;
}

.lb2-header__drawer__line:nth-child(3) {
    top: 50%;
    left: 50%;
    transform-origin: 0 50%;
    transform: translate(-50%, 12.5px);
}

@media screen and (max-width: 768px) {
    .lb2-header__drawer__line:nth-child(3) {
        transform: translate(-50%, 9px);
    }
}

@media screen and (max-width: 768px) {
    .lb2-header__drawer__line {
        height: 1px;
    }
}

body.topPage .lb2-header.is-fixed .lb2-header__drawer__line {
    background-color: #3f2021;
}

.lb2-header.is-active .lb2-header__drawer__line {
    background-color: #e5e1dc !important;
}

.lb2-header.is-active .lb2-header__drawer__line:nth-child(1) {
    transform: rotate(50deg) scaleX(1.5) translate(-50%, -50%);
}

.lb2-header.is-active .lb2-header__drawer__line:nth-child(2) {
    opacity: 0;
}

.lb2-header.is-active .lb2-header__drawer__line:nth-child(3) {
    transform: rotate(-50deg) scaleX(1.5) translate(-50%, -50%);
}

body.topPage .lb2-header__drawer__line {
    background-color: #e5e1dc;
}

.lb2-header__menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--vh);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lb2-header__menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-color: #3f2021;
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .lb2-header__menu {
        padding-top: 30px;
    }
}

.lb2-header__menu__inner {
    position: relative;
    width: 85vw;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 7vw;
    z-index: 1;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.035);
}

@media screen and (max-width: 1000px) {
    .lb2-header__menu__inner {
        display: block;
        width: 78vw;
    }
}

.lb2-header.is-active .lb2-header__menu__inner {
    transform: scale(1);
}

.lb2-header.is-active .lb2-header__menu {
    opacity: 1;
    visibility: visible;
}

.lb2-header__aside {
    flex: 1;
}

@media screen and (max-width: 1000px) {
    .lb2-header__aside {
        display: none;
    }
}

.lb2-header__body {
    flex: 0.75;
}

.lb2-header__social {
    padding-top: 40px;
}

@media screen and (max-width: 768px) {
    .lb2-header__social {
        padding-top: 30px;
        display: flex;
        align-items: center;
    }
}

.lb2-header__copyright {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: rotate(-90deg) translate(50%, -50%);
    transform-origin: 100% 50%;
    color: #e5e1dc;
    opacity: 0.3;
    font-size: 1rem;
}

@media screen and (max-width: 1000px) {
    .lb2-header__copyright {
        right: 8px;
        transform: rotate(-90deg) translate(50%, -50%) scale(0.8);
    }
}

.lb2-header__item {
    position: relative;
}

.lb2-header__social .lb2-header__item {
    width: 20px;
}

.lb2-header__link {
    display: block;
    transition: all 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (hover: hover) and (pointer: fine) {
    .lb2-header__logo .lb2-header__link:hover {
        opacity: 0.75;
    }
}

.lb2-header__nav .lb2-header__link {
    border-top: 1px solid #e5e1dc;
    padding-top: 15px;
}

@media (hover: hover) and (pointer: fine) {
    .lb2-header__nav .lb2-header__link:hover {
        opacity: 0.5;
    }
}

@media (hover: hover) and (pointer: fine) {
    .lb2-header__social .lb2-header__link:hover {
        opacity: 0.5;
    }
}

.lb2-header__arrow .lb2-header__svg {
    stroke: #e5e1dc;
}

.lb2-header__social .lb2-header__svg {
    fill: #e5e1dc;
}

.lb2-header__label {
    color: #e5e1dc;
}

.lb2-header__label--jp {
    font-size: 2rem;
}

.lb2-header__item:first-child .lb2-header__label--jp {
    transform: translateX(-0.25em);
}

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

.lb2-header__label--en {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    padding-top: 8px;
}

@media screen and (max-width: 768px) {
    .lb2-header__label--en {
        font-size: 1.1rem;
    }
}

.lb2-header__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lb2-header__arrow {
    position: absolute;
    top: 18px;
    right: 0;
    width: 10px;
}

/* Footer */

.lb2-footer ul,
.lb2-footer ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 641px) {

    .lb2-footer ul,
    .lb2-footer ol {
        font-size: 1.4rem;
    }
}

.lb2-footer a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

.lb2-footer svg {
    width: 100%;
    height: auto;
}

.lb2-footer h1,
.lb2-footer h2,
.lb2-footer h3,
.lb2-footer h4,
.lb2-footer h5,
.lb2-footer h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.lb2-footer {
    background-color: #3f2021;
    width: 100%;
    color: #e5e1dc;
    padding: 100px 0;
    position: relative;
    line-height: 1.15;
}

@media screen and (max-width: 768px) {
    .lb2-footer {
        padding: 50px 0 40px;
    }
}

.lb2-footer__contact {
    max-width: 918px;
    width: calc(100% - 160px);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .lb2-footer__contact {
        max-width: none;
        width: 86vw;
    }
}

@media screen and (max-width: 768px) {
    .lb2-footer__contact {
        width: 100%;
    }
}

.lb2-footer__row {
    max-width: 918px;
    width: calc(100% - 160px);
    margin: 0 auto;
    display: flex;
}

@media screen and (max-width: 768px) {
    .lb2-footer__row {
        max-width: none;
        width: 86vw;
    }
}

@media screen and (max-width: 768px) {
    .lb2-footer__row {
        flex-direction: column;
        padding: 0 0 0 11vw;
    }
}

.lb2-footer__row--bottom {
    padding-top: 30px;
    overflow: hidden;
    align-items: end;
}

@media screen and (max-width: 768px) {
    .lb2-footer__row--bottom {
        align-items: start;
        padding-top: 50px;
    }
}

.lb2-footer__col {
    flex: 1;
}

.lb2-footer__col--left {
    padding-right: 30px;
}

.lb2-footer__col--right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .lb2-footer__col--right {
        padding-top: 30px;
    }
}

.lb2-footer__nav {
    padding-top: 0;
}

.lb2-footer__logo {
    width: 220px;
}

@media screen and (max-width: 768px) {
    .lb2-footer__logo {
        width: 79.4223826715%;
    }
}

.lb2-footer__logo--daikyo {
    width: 80px;
    max-height: 51px;
    margin-top: auto;
}

.lb2-footer__logo .lb2-footer__svg {
    fill: #e5e1dc;
}

.lb2-footer__social .lb2-footer__svg {
    fill: #e5e1dc;
}

.lb2-footer__totop .lb2-footer__svg {
    height: 100%;
    stroke: #e5e1dc;
}

.lb2-footer__nav .lb2-footer__list {
    gap: 12px;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
}

@media screen and (max-width: 768px) {
    .lb2-footer__nav .lb2-footer__list {
        display: flex;
        flex-direction: column;
        gap: 17px;
    }
}

.lb2-footer__social .lb2-footer__list {
    display: flex;
    gap: 15px;
    padding-top: 15px;
}

@media screen and (max-width: 768px) {
    .lb2-footer__item--hide {
        display: none;
    }
}

.lb2-footer__social .lb2-footer__item {
    width: 20px;
    max-height: 20px;
}

.lb2-footer__contact .lb2-footer__link {
    position: relative;
    color: #e5e1dc;
    display: block;
    padding: 40px 80px 60px;
    background-color: #371c1d;
    overflow: hidden;
}

.lb2-footer__contact .lb2-footer__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background-color: #2c1717;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 768px) {
    .lb2-footer__contact .lb2-footer__link {
        padding: 40px 7vw 60px 19vw;
    }
}

.lb2-footer__contact .lb2-footer__link.is-hover::before {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lb2-footer__nav .lb2-footer__link {
    color: #e5e1dc;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .lb2-footer__nav .lb2-footer__link:hover {
        opacity: 0.5;
    }
}

.lb2-footer__nav .lb2-footer__link--ex::after {
    font-family: "Material Icons";
    content: "\e89e";
    font-size: 12px;
    margin-left: 5px;
    transform: translateY(0.1em);
}

@media (hover: hover) and (pointer: fine) {
    .lb2-footer__social .lb2-footer__link:hover {
        opacity: 0.5;
    }
}

@media (hover: hover) and (pointer: fine) {
    .lb2-footer__logo .lb2-footer__link:hover {
        opacity: 0.5;
    }
}

.lb2-footer__totop .lb2-footer__link {
    color: #e5e1dc;
    display: flex;
    align-items: center;
}

@media (hover: hover) and (pointer: fine) {
    .lb2-footer__totop .lb2-footer__link:hover {
        opacity: 0.5;
    }
}

.lb2-footer__contact .lb2-footer__label {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.lb2-footer__social .lb2-footer__label {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

.lb2-footer__totop .lb2-footer__label {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

.lb2-footer__copyright {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    font-size: 1rem;
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
    .lb2-footer__copyright {
        white-space: nowrap;
        transform: scale(0.7);
        transform-origin: 0 0;
    }
}

.lb2-footer__totop {
    position: absolute;
    bottom: 100px;
    left: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    transform-origin: 0 100%;
    transform: rotate(90deg) translateX(-100%);
}

@media screen and (max-width: 768px) {
    .lb2-footer__totop {
        left: 5vw;
        font-size: 1.6rem;
        bottom: 45px;
    }
}

.lb2-footer__prepend {
    width: 12px;
    transform: scaleX(-1);
    margin-right: 15px;
}

/* Code main */
main {
    line-height: 1.85;
    color: #401f20;
    background-color: #e5e1dd;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
    font-weight: 500;
    line-height: 1.6;
}

.en {
    font-family: "Montserrat", sans-serif;
}

.container {
    max-width: 916px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.tit20 {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
}

.titEnJp .en {
    font-size: 2rem;
    display: block;
}

.titEnJp .jp {
    font-size: 2.2rem;
    display: block;
}

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

.photo {
    position: relative;
}

.photo figcaption {
    position: absolute;
    font-size: 1rem;
    right: 5px;
    bottom: 5px;
}

.photo .capAbsLeft {
    left: 5px;
    right: auto;
}

.photo .capLeft {
    position: static !important;
    text-align: left;
    margin-top: 5px;
}

.photo .capRight {
    position: static !important;
    text-align: right;
    margin-top: 5px;
}

.btnDark {
    display: block;
    color: #fff;
    background: #401f20 url(../img/ic_arr.svg) no-repeat center right 24px;
    line-height: 1;
    padding: 20px;
    border-radius: 100px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
}

.btnDark:hover {
    background-color: #ab5557;
}

.btnDarkReadMore {
    margin-top: 40px;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 40px;
}

.btnDarkReadMore p {
    width: 289px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #401f20;
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 500;
}

.btnDarkReadMore a {
    position: relative;
}

.btnDarkReadMore a span {
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btnDarkReadMore a:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    body {
        font-size: 1.2rem;
    }

    .zoomSp {
        position: relative;
    }

    .zoomSp::after {
        content: "";
        width: 25px;
        height: 25px;
        /* background: url(../img/ic_zoom.svg) no-repeat top left / cover; */
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

.mv {
    position: relative;
}

.mvTxt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    color: #fff;
}

.mvTxt h2 {
    font-weight: 400;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.mvTxt h2 .en {
    font-size: 2.1rem;
}

.mvTxt h2 .jp {
    font-size: 2.2rem;
}

.mvTxt .scroll {
    position: relative;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.3;
}

.mvTxt .scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 76px;
    background: #fff;
    margin: 0 auto;
}

.mv img {
    width: 100%;
}

.navLinkWrap {
    padding: 40px 0 60px;
    background: #e5e1dd;
}

.navLink {
    max-width: 712px;
}

.navLink a {
    width: 32.5%;
    font-size: 2rem;
    text-align: center;
    display: block;
    border: 1px solid #401f20;
    margin-bottom: 1.25%;
    line-height: 1;
    padding: 25px 0;
    transition: 0.3s;
    font-weight: 500;
}

.navLink a:nth-child(4),
.navLink a:nth-child(5) {
    width: 49.38%;
}

.navLink a:hover {
    background: #3f2021;
    color: #fff;
}

#menu {
    background-color: #e5e1dd;
    padding: 70px 0 0px;
}

#menu2 {
    background: #f8f7f6;
}

#intro {
    padding: 120px 0 60px;
    /* background: #e5e1dd; */
    margin-top: -120px;

}


#intro .tit20 {
    margin-bottom: 10px;
}

#intro p.paraBg {
    background: #F8F7F6;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    padding: 15px;
    border-radius: 16px;
    /* 少し大きめにしてみる */
    margin-bottom: 60px;
    overflow: hidden;
    /* はみ出し防止 */
}

/* PC版：両端を半円にする */
@media (min-width: 768px) {
    #intro p.paraBg {
        border-radius: 50px;
        /* 両端を半円にする */
    }
}

#intro figure {
    text-align: center;
    margin-bottom: 40px;
}

#intro figure p {
    font-weight: bold;

}

#intro .para2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 60px;
}

#intro .chart {
    align-items: center;
}

#intro .chart .colL {
    width: 49%;
}

#intro .chart .colR {
    width: 49%;
    font-size: 1.6rem;
    font-weight: bold;
}

#introColumn {
    max-width: 956px;
    margin: 0 auto;
    padding-top: 80px;
    font-size: 1.3rem;
}

#introColumn .container {
    background: #F7F5F4;
    padding: 50px 0;


}


#introColumn .container .tit20 {
    margin-bottom: 20px;
}

#introColumn .container.caption {
    font-size: 10px;
    background: none;
    padding: 5px 0 0;
}

#introColumn .enelevel p {
    text-align: center;
}

#introColumn .enelevel figure.pc {
    padding-top: 50px;
    max-width: 674px;
    margin: auto;
}

#introColumn .teitanso {
    margin-top: 50px;
}

#introColumn .teitanso p {
    max-width: 690px;
    margin: auto;
}

#introColumn .teitanso figure {
    max-width: 828px;
    margin: auto;
    padding-top: 50px;
}

#shikumi {
    background-color: #f7f6f5;
    padding: 80px 0;
}

#shikumi figure.imgShikumi figcaption {
    font-size: 10px;
}

#shikumi figure.pc.imgShikumi {
    padding: 60px 0 20px;
}


#works .worksNav {
    margin-bottom: 60px;
}

#works .worksNav li {
    width: 32%;
}

#works .worksNav li a {
    justify-content: flex-start;
    gap: 10px;
    line-height: 1.3;
    align-items: center;
    transition: 0.3s;
    border-radius: 100px;
    background: #e5e1dd url(../img/ic_arr_nav.svg) no-repeat center right 20px;
    padding: 5px;
    font-size: 1.6rem;
    font-weight: bold;
}

#works .worksNav li a img {
    width: 71px;
    border-radius: 50%;
    box-shadow: 0px 22px 21px -15px rgba(0, 0, 0, 0.53);
    -webkit-box-shadow: 0px 22px 21px -15px rgba(0, 0, 0, 0.53);
    -moz-box-shadow: 0px 22px 21px -15px rgba(0, 0, 0, 0.53);
}

#works .worksNav li a:hover {
    opacity: 0.8;
}

/* #works .container > figure {
    max-width: 785px;
    width: 100%;
    margin: 0 auto;
} */


#works .para {
    text-align: center;
    /* margin-bottom: 60px; */
    font-weight: bold;
}

#works .worksBlock {
    padding: 20px;
    /* background: #e5e1dd; */
    margin-bottom: 20px;
}

#works .worksBlock .tit20 {
    justify-content: flex-start;
    line-height: 1;
    align-items: center;
    /* gap: 22px; */
    margin-bottom: 20px;
    background: #E5E1DD;
    background: linear-gradient(180deg, rgba(229, 225, 221, 1) 0%, rgba(248, 247, 246, 1) 100%);
    padding: 15px 25px;
    justify-content: space-between;

}

#works .worksBlock .tit20 img {
    width: 8%;
}

#works .worksBlock .tit20 .name {
    width: 40%;
}

#works .worksBlock .tit20 .name {
    width: 58%;
    text-align: left;
}

#works .worksBlock .tit20 .caption {
    font-size: 10px;
}


#works .worksBlock .listItem {
    align-items: stretch;
}

#works .worksBlock .listItem .item {
    width: 32%;
    margin-bottom: 60px;
}

/* #works .worksBlock .listItem .item a {
    display: block;
    background: #fff;
    height: 100%;
    transition: 0.3s;
} */

#works .worksBlock .listItem .item a:hover {
    opacity: 0.8;
}

#works .worksBlock .listItem .item h4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    background: #3F2021;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
}

/* #works .worksBlock .listItem .item>div {
    padding: 10px;
} */

#works .worksBlock .listItem .item figure {
    /* text-align: center;
    background-color: #fff;
    padding: 15px;
    border: 1px solid #E5E1DD; */

    position: relative;
}

#works .worksBlock .listItem .item figure img {
    width: 100%;
}

#works .worksBlock .listItem .item figure .capRight {
    position: absolute !important;
    right: 4px;
    bottom: 4px;
}

#works .worksBlock .listItem .item p {
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
    font-size: 1.3rem;
}

#works .worksBlock .listItem .item a p::after {
    content: "";
    width: 35px;
    height: 36px;
    display: block;
    /* background: url(../img/ic_plus.svg) no-repeat top left / cover; */
}

/* #works #worksBlock01 .listItem .photo img {
    height: 150px;
    width: auto;
} */

#works #worksBlock02.listItem .item figure {
    min-height: 156px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

#works #worksBlock02 .btnKyuto {
    padding-top: 20px;
}



/* #works #worksBlock02 .listItem .item figure figcaption {
    width: 100%;
    text-align: right;
    bottom: -5px;
} */

#works #worksBlock03 .listItem .item:nth-child(2) {
    width: 66%;
}

#works #worksBlock03 .listItem .item:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#works #worksBlock03 .listItem .item:nth-child(2) .photo {
    height: 100%;
}

#works #worksBlock03 .listItem .item:nth-child(2) .photo figcaption {
    bottom: -20px;
    margin-top: 0;
}


#kodanetsu {
    background: #e1ddd8;
    padding: 90px 0 40px;
}



#energySaving {
    padding: 90px 0;
    background: #e5e1dd;
}

#energySaving .tit20 {
    text-align: left;
}

#energySaving .row01 {
    max-width: 912px;
    margin-bottom: 60px;
}

#energySaving .row01 p {
    max-width: 429px;
    width: 100%;
    margin-bottom: 40px;
}

#energySaving #carbon {
    max-width: 1324px;
    width: 100%;
    margin: 0 auto;
    background: #f7f6f4;
    padding: 70px 0;
}

#energySaving #carbon p {
    margin-bottom: 40px;
}

#energySaving #carbon .container {}

#detail {
    background: #f8f7f6;
    /* padding: 150px 0 0; */
}

#detail .detailBlock .fSm {
    font-size: 80%;
}

#detail .detailBlock .bigImg {
    position: relative;
    margin-bottom: 50px;
}

#detail .detailBlock .bigImg figure {
    margin-left: calc((100% - 916px) / 2);
}

#detail .detailBlock .bigImg .txt {
    position: absolute;
    color: #fff;
    bottom: 50px;
    left: 0;
    right: 0;
    padding-left: 30px;
    font-size: 1.3rem;
    line-height: 2;
    font-weight: normal;
}

#detail .detailBlock .bigImg .txt .tit20 {
    text-align: left;
    margin-bottom: 20px;
}

#detail .detailBlock .group {
    margin-bottom: 40px;
}

#detail .detailBlock .group h4 {
    text-align: left !important;
    background: #FFFFFF;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(225, 221, 216, 1) 100%);
    padding: 16px 20px;
}

#detail .detailBlock .group h4 sub {
    font-size: 50%;
}

#detail #detailBlock01 .group .colL {
    width: 46%;
    font-size: 1.3rem;
}

#detail #detailBlock01 .group .colL ul {
    margin-top: 40px;
}

#detail #detailBlock01 .group .colL figure {
    margin-top: 40px;
}

#detail #detailBlock01 .group .colR {
    width: 50%;
}

#detail #detailBlock01 .group .colL img {
    width: 100%;
}

#detail #detailBlock01 .group01 figcaption {
    text-align: right;
    font-size: 10px;
}

#detail #detailBlock01 .group03 .row01,
#detail #detailBlock01 .group03 .row02 {
    background: #fff;
    padding: 25px;
}

#detail #detailBlock01 .group03 .row01 {
    margin-bottom: 15px;
}

#detail #detailBlock01 .group03 h5 {
    font-size: 1.6rem;
    font-weight: bold;
}

/* #detail #detailBlock01 .group03 .row01 {
    margin-bottom: 60px;
} */

#detail #detailBlock01 .group03 .row01 .colL {
    width: 45%;
}

#detail #detailBlock01 .group03 .row01 .colR {
    width: 48%;
}

#detail #detailBlock01 .group03 .row01 .colR img {
    width: 100%;
}

#detail #detailBlock01 .group03 .row02 .colL {
    width: 40%;
}

#detail #detailBlock01 .group03 .row02 .colR {
    width: 55%;
}

#detail #detailBlock01 .group03 .row02 .colR img {
    width: 100%;
}

#detail #detailBlock01 .group03 .caption {
    font-size: 10px;
}

#eco {
    padding: 90px 0 60px;
}

#eco .bigImg .caption {
    text-align: right;
    font-size: 10px;
    margin-right: calc((100% - 916px) / 2);
}


#detail #eco .detailBlock .group h4 {
    background: #F7F6F5;
    background: linear-gradient(270deg, rgba(247, 246, 245, 1) 46%, rgba(225, 221, 216, 1) 100%);
}

#eco #detailBlock02 {
    font-size: 1.3rem;
}

#eco #detailBlock02 figcaption {
    text-align: right;
    font-size: 10px;

}

#eco #detailBlock02 .group03 figcaption {
    text-align: left;
}

#eco #detailBlock02 .group02 .colL {
    width: 50%;
}

#eco #detailBlock02 .group02 .colR {
    width: 50%;
}

#eco #detailBlock02 .group03 figure {
    /* max-width: 850px; */
    /* margin: 0 auto; */
    text-align: center;
}

#eco #detailBlock02 .group03 figure figcaption {
    padding-top: 15px;
}

#detail #detailBlock02 .bigImg figure {
    margin-left: 0;
    margin-right: calc((100% - 916px) / 2);
}

#detail #detailBlock02 .bigImg .txt p {
    max-width: 522px;
    width: 100%;
}

#tax {
    padding: 90px 0 60px;
    background: #e5e1dd;
}

#detail #detailBlock03 {
    font-size: 1.3rem;
}

#detail #detailBlock03 ul li {
    font-size: 1.0rem;
}

#detail #detailBlock03 .bigImg figure {
    margin-left: calc((100% - 916px) / 2);
}

/* #detail #detailBlock03 .bigImg .txt {
    padding-left: 0;
} */

#detail #detailBlock03 .bigImg .txt .caption {
    font-size: 10px;
    display: block;
}

#detail #detailBlock03 .tit20 {
    text-align: left;
}

#detail #detailBlock03 .group h4 {
    background-image: linear-gradient(to right, #fff, #e6e2de);
}

#detail #detailBlock03 .group figure {
    margin: 20px 0 10px;
}

#detail #detailBlock03 .group figure img {
    width: 100%;
}


#future {
    background: #f7f6f5;
    padding: 90px 0 0px;
}

#future01 {
    background: #f8f7f6;
}

#future01 .tit20 {
    text-align: left;
}

#future01 .row01 {
    position: relative;
}

#future01 .row01 .txt {
    position: absolute;
    color: #fff;
    bottom: 50px;
    left: 0;
    right: 0;
    padding-left: 30px;
    font-size: 1.3rem;
    line-height: 2;
    font-weight: normal;
}

#future01 .row01 h2 {
    margin-bottom: 20px;
}

#future01 .row01 h2 .en {
    font-size: 2.7rem;
}

#future01 .row01 h2 .jp {
    font-size: 2rem;
    font-weight: 500;
}

#future01 .row02 {
    padding: 100px 0;
    background: #f8f7f6;
}

#future01 .row02 .colL {
    width: 52%;
    font-size: 1.3rem;
}

#future01 .row02 .colR {
    width: 42.7%;
}

#future01 .row03 {
    background: #e5e1dd;
    padding: 60px 0 120px;
    font-size: 1.3rem;
}

#future01 .row03 figure.pc {
    max-width: 750px;
    margin: 0 auto 50px;
}

#future01 .row03 .cap {
    margin-bottom: 100px;
    /* padding-left: 29%; */
    padding-top: 20px;
    font-size: 10px;
}

#future01 .row03 .colL {
    width: 30%;
}

#future01 .row03 .colL h4 {
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

#future01 .row03 .colR {
    width: 65.2%;
}

#history {
    background: #e5e1dd;
    padding: 0 0 30px;
}

#history .fullImg {
    position: relative;
}

#history .fullImg::after {
    content: "";
    display: block;
    height: 88px;
    width: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}

#history .fullImg img {
    width: 100%;
}

#history .fullImg h2 {
    font-size: 3.2rem;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 143px;
    color: #fff;
    text-align: center;
}

#history .timeLine {
    position: relative;
    padding: 100px 0;
    align-items: stretch;
}

#history .timeLine::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: linear-gradient(to bottom, #401f20, #401f20 95%, #e5e1dd 100%);
}

#history .timeLine h3 {
    font-size: 2.4rem;
    font-weight: bold;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), #fff);
    margin-right: 35px;
    padding: 10px 31px;
    max-width: 391px;
    width: 100%;
    margin-bottom: 35px;
    text-align: right;
}

#history .timeLine .col {
    width: 50%;
    height: 100%;
}

#history .timeLine .col ul {
    height: 100%;
}

#history .timeLine li .year {
    width: 90px;
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    line-height: 1;
    padding-top: 5px;
}

#history .timeLine li .year::after {
    content: "";
    display: block;
    width: 27px;
    height: 1px;
    background: #3f2121;
    position: absolute;
    top: 14px;
    left: 0;
}

#history .timeLine .goverment {
    padding-right: 22px;
    position: relative;
    height: 100%;
}

#history .timeLine .goverment li {
    position: relative;
    top: 0;
    left: 0;
    text-align: right;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
}

#history .timeLine .goverment .y2005 {
    margin-top: 63%;
}

#history .timeLine .goverment .y2013 {
    margin-top: 141%;
}

#history .timeLine .goverment .y2015 {
    margin-top: 166%;
}

#history .timeLine .goverment .y2016 {
    margin-top: 12%;
}

#history .timeLine .goverment .y2018 {
    margin-top: 250%;
}

#history .timeLine .goverment .y2021 {
    margin-top: 223%;
}

#history .timeLine .goverment .y2025 {
    margin-top: 43%;
}

#history .timeLine .goverment .y2030 {
    margin-top: 30%;
}

#history .timeLine .goverment .y2050 {
    margin-top: 10%;
}

#history .timeLine .goverment li::after {
    content: "";
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #3f2121;
    position: absolute;
    top: 0;
    right: -32px;
}

#history .timeLine .goverment li p {
    font-size: 1.6rem;
    font-weight: bold;
    width: calc(100% - 100px);
}

#history .timeLine .company {
    padding-left: 22px;
}

#history .timeLine .company h3 {
    background-image: linear-gradient(to right, #fff, rgba(0, 0, 0, 0));
    margin-right: 0;
    margin-left: 35px;
    text-align: left;
}

#history .timeLine .company li {
    position: relative;
    margin-bottom: 50px;
}

#history .timeLine .company li::before {
    content: "";
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #3f2121;
    position: absolute;
    top: 0;
    left: -31px;
}

#history .timeLine .company li .year::after {
    left: auto;
    right: 0;
}

#history .timeLine .company li .cont {
    width: calc(100% - 100px);
}

#history .timeLine .company li .cont h4 {
    font-size: 1.45rem;
    font-weight: bold;
}

#history .timeLine .company li .cont .cap {
    font-size: 1rem;
    margin-bottom: 10px;
}

#history .timeLine .company li .cont p {
    margin: 10px 0 20px;
    font-size: 1.3rem;
}

#history .timeLine .company li .cont .btnReadMore {
    margin-top: 15px;
}

#history .timeLine .company li .cont .btnReadMore p span {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
}

#history .timeLine .company li .cont .btnReadMore .lb2-button {
    margin-top: 0 !important;
}

#history .caption {
    font-size: 1rem;
    margin-top: 60px;
}

#history .caption p:not(:last-child) {
    margin-bottom: 10px;
}

#history .caption span {
    color: #f7007b;
}

#history .btnYawatayama {
    padding-top: 20px;
}

#history .btnYawatayama a {
    transition: 0.5s;
}

#history .btnYawatayama a:hover {
    opacity: 0.8;
}

#sus {
    padding: 120px 0;
    background: #d7d2cb;
}

#sus .titEnJp {
    margin-bottom: 40px;
}

#sus .titEnJp .en {
    font-size: 2.4rem;
}

#sus .titEnJp .jp {
    font-size: 1.6rem;
    font-weight: bold;
}

#sus .btnReadMore {
    position: relative;
    display: block;
    margin-top: 40px;
}

#sus .btnReadMore span {
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.3s;
}

#sus .btnReadMore:hover {
    opacity: 0.8;
}

#sus .colL {
    width: 50%;
}

#sus .colR {
    width: 36.69%;
}

/* MEDIA */
@media (max-width: 767px) {
    .tit20 {
        font-size: 4.5vw;
    }

    .photo img {
        width: 100%;
    }

    .mvTxt h2 .en {
        font-size: 5vw;
    }

    .mvTxt h2 .jp {
        font-size: 5vw;
        letter-spacing: 2px;
    }

    .mvTxt .scroll::after {
        height: 38px;
    }

    .navLinkWrap {
        padding-bottom: 40px;
    }

    .navLink a {
        width: 100% !important;
        font-size: 4vw;
        padding: 20px 0;
        font-weight: bold;
    }

    .navLink a:nth-child(1),
    .navLink a:nth-child(2) {
        width: 49% !important;
    }

    #intro .paraBg {
        border-radius: 0;
    }

    #intro .tit20 {
        font-size: 6vw;
    }

    #intro .paraBg {
        font-size: 4vw;
    }

    #intro .chart .colL {
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    #intro .chart .colR {
        width: 100%;
        font-size: 3.5vw;
    }

    #intro figure p {
        text-align: left;
        font-size: 3.8vw;
    }

    #introColumn .container {
        width: 100%;
        padding-bottom: 10px;

    }

    #introColumn .container .caption {
        font-size: 10px;

    }

    #introColumn .container .tit20 {
        font-size: 5vw;
    }

    #introColumn .container.caption {
        padding: 5px 10px;
    }

    #introColumn .enelevel p {
        text-align: left;
        width: calc(100% - 40px);
        margin: 0 auto 30px;
        font-size: 3.8vw;
    }

    #introColumn .enelevel figure {
        padding: 0 20px;
    }

    #introColumn .enelevel figure img {
        width: 100%;
    }

    #introColumn .teitanso p {
        text-align: left;
        width: calc(100% - 40px);
        margin: 0 auto 30px;
        font-size: 3.8vw;
    }

    #introColumn .teitanso figure {
        padding: 0 20px;
    }

    #introColumn .teitanso figure img {
        width: 100%;
    }


    #shikumi .container {
        width: 100%;
    }

    #shikumi .listItem {
        padding: 0 20px;
    }

    #works .worksBlock .tit20 .name {
        width: 78%;
    }

    #works .worksBlock .tit20 .name .caption {
        line-height: 1;
        display: block;
        padding-top: 3px;
    }

    #works {
        padding: 60px 0 0;
    }

    #works .worksBlock {
        padding: 0;
    }

    #works .para {
        font-size: 4vw;
    }

    #works .worksNav {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    #works .imgShikumi {
        padding: 0 20px;
    }

    #works .worksNav li {
        width: 100%;
        margin-bottom: 15px;
    }

    #works .worksNav li a img {
        width: 15vw;
    }

    #works .worksNav li a {
        font-size: 4.5vw;
        gap: 20px;
    }

    #works .zoomSp::after {
        bottom: -30px;
    }

    #works .worksBlock .tit20 {
        text-align: left;
        line-height: 1.4;
    }

    #works .worksBlock .tit20 img {
        width: 15vw;
    }

    #works .slick-track {
        display: flex !important;
    }

    #works .slick-slide {
        height: inherit !important;
        margin: 0 10px;
    }

    #works .slick-slide figure img {
        /* max-height: 100px; */
        width: auto;
        margin: 0 auto;
    }

    #works .slick-dots {
        display: flex;
        justify-content: flex-start;
        line-height: 1;
        margin-top: 20px;
        border: 0;
        width: 100%;
    }

    #works .slick-dots li {
        margin: 0 2px;
        width: auto;
    }

    #works .slick-dots button {
        width: 30px;
        height: 2px;
        border-radius: 0;
        background: #c9c9c9;
        text-indent: -9999px;
    }

    #works .slick-dots li.slick-active button {
        background: #251e1c;
    }

    #works .worksBlock .listItem .item a h4 {
        font-size: 3.5vw;
    }

    #works #worksBlock01 {
        margin-top: 60px;
    }

    #works #worksBlock03 .listItem .item:nth-child(2) {
        order: 1;
        width: 100%;
    }

    #works #worksBlock03 .listItem .item:nth-child(1) {
        order: 2;
        width: 100%;
    }

    #works .worksBlock:last-child {
        margin-bottom: 0;
    }

    #energySaving {
        padding: 60px 0;
    }

    #energySaving .row01 .zoomSp::after {
        bottom: -30px;
    }

    #energySaving #carbon {
        width: calc(100% - 40px);
        padding: 40px 0;
    }

    #energySaving #carbon .tit20 {
        margin-bottom: 20px;
    }

    #detail {
        padding: 0;
    }

    #detail .detailBlock .bigImg .txt {
        padding-left: 0;
        bottom: auto;
        top: 100px;
    }

    #detail #eco .detailBlock .bigImg .txt {
        top: auto;
        bottom: 30px;
    }

    #detail #kodanetsu .caption {
        padding-top: 10px;
    }

    #detail #tax .detailBlock .bigImg .txt {
        top: auto;
        bottom: 30px;
    }



    #detail .detailBlock .bigImg .txt p {
        line-height: 2;
        font-size: 3.8vw;
        padding-top: 20px;
        font-weight: normal;
    }

    #detail #detailBlock01 .group .colL #detail .detailBlock .bigImg {
        margin-bottom: 30px;
    }

    #detail .detailBlock .group h4 {
        padding: 12px;
        margin-bottom: 20px;
    }

    #detail .detailBlock .bigImg figure {
        margin: 0 !important;
    }

    #detail #detailBlock01 .group .colL {
        width: 100%;
        margin-bottom: 20px;
        font-size: 3.4vw;
    }

    #detail .detailBlock .bigImg .txt #detail #detailBlock01 .group .colL ul {
        margin-top: 20px;
    }

    #detail #detailBlock01 .group .colL figure {
        margin-top: 20px;
    }

    #detail #detailBlock01 .group .colR {
        width: 100%;
    }

    #detail #detailBlock01 .group03 .row01 .colL {
        width: 100%;
    }

    #detail #detailBlock01 .group03 .row01 .colR {
        width: 100%;
    }

    #detail #detailBlock01 .group03 .row01 .colR .zoomSp::after {
        bottom: -30px;
    }

    #detail #detailBlock01 .group03 .row02 .colL {
        width: 100%;
        margin-bottom: 20px;
    }

    #detail #detailBlock01 .group03 .row02 .colL figure {
        margin-bottom: 20px;
    }

    #detail #detailBlock01 .group03 .row02 .colR {
        width: 100%;
    }

    #detail #detailBlock02 .group01 ul {
        margin-top: 20px;
    }

    #eco .bigImg .caption {
        margin-right: 3px;
    }

    #eco #detailBlock02 .group02 .colL {
        width: 100%;
        margin-bottom: 30px;
    }

    #eco #detailBlock02 .group02 .colR {
        width: 100%;
    }

    #eco #detailBlock02 .group02 .photo figcaption,
    #eco #detailBlock02 .group03 .photo figcaption {
        right: auto;
        bottom: auto;
        text-align: left;
    }

    #eco #detailBlock02 .group03 .photo {
        padding: 30px 0;
    }

    #detail #detailBlock03 {
        padding: 0 0 60px;
    }

    #detail #detailBlock03 .group figure {
        margin-bottom: 10px;
    }

    #detail #detailBlock01 .group .tit20,
    #detail #detailBlock02 .group .tit20,
    #detail #detailBlock03 .group .tit20 {
        width: calc(100% + 40px);
        margin-left: -20px;
    }

    #future01 .row01 .txt {
        padding-left: 0;
    }

    #future01 .tit20 {
        margin-bottom: 20px;
    }

    #future01 .row02 {
        padding: 60px 0;
    }

    #future01 .row02 .colL {
        width: 100%;
        margin-bottom: 20px;
    }

    #future01 .row02 .colR {
        width: 100%;
        text-align: center;
    }

    #future01 .row03 {
        padding: 40px 0 80px;
    }

    #future01 .row03 .zoomSp::after {
        bottom: -20px;
    }

    #future01 .row03 .cap {
        padding-left: 0;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    #future01 .row03 .colL {
        width: 100%;
        margin-bottom: 20px;
    }

    #future01 .row03 .colR {
        width: 100%;
    }

    #future01 .row03 .colR .zoomSp::after {
        bottom: -20px;
    }

    #history .fullImg {
        margin-bottom: 60px;
    }

    #history .fullImg::after {
        display: none;
    }

    #history .fullImg h2 {
        font-size: 5vw;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        bottom: auto;
    }

    #history .spScroll {
        position: relative;
        line-height: 1;
        font-size: 3.5vw;
        /* max-width: 320px; */
        width: 100%;
        margin: 0 auto 0;
    }

    #history .spScroll img {
        width: 100%;
    }

    #history .timeLine {
        width: calc(100% + 40px);
        margin-left: -20px;
        overflow: auto;
        padding: 20px 0;
    }

    #history .timeLine::after {
        display: none;
    }

    #history .timeLine .inner {
        width: 3100px;
        position: relative
    }

    .btnYawatayama {
        max-width: 211px;
        position: absolute;
        right: 16.2%;
        bottom: -2px;
    }

    #history .timeLine .inner img {
        max-height: 500px;
    }

    #sus {
        padding: 60px 0;
    }

    #sus .colL {
        width: 100%;
        margin-bottom: 20px;
    }

    #sus .colR {
        width: 100%;
    }

    #sus figure {
        width: calc(100% + 20px);
        margin: 0 -20px 60px 0;
    }

    #sus figure img {
        width: 100%;
    }

    #sus .btnReadMore img {
        width: 100%;
    }

    #sus .btnReadMore span {
        top: -5vw;
        font-size: 4vw;
    }

    #sus .titEnJp .en {
        font-size: 6vw;
    }

    #sus .titEnJp .jp {
        font-size: 4vw;
    }

}



/* CUSTOM FANCY */
.fancybox-content {
    padding: 0;
    max-width: 916px;
    width: 100%;
}

.fancybox-slide--html .fancybox-close-small {
    padding: 0;
    top: 0px;
    right: 5px;
}

.fancybox-button svg path {
    fill: #fff;
}

@media (max-width: 767px) {
    .fancybox-slide--html .fancybox-close-small {
        width: 30px;
        height: 30px;
        top: 7px;
        right: 0;
    }

    .fancybox-button--zoom {
        display: none !important;
    }
}

/* Custom Arrow Icons */
.fancybox-button--arrow-left,
.fancybox-button--arrow-right {
    font-family: "Material Icons";
    /* 使っているアイコンのフォント */
    font-size: 36px;
}

/* 左矢印 */
.fancybox-button--arrow-left {
    background-image: url("../img/fancy-left.svg") !important;
    /* 画像のパス */
    background-size: 100% 100% !important;
    /* 矢印ボタンの幅と高さに合わせて画像を引き伸ばす */
    background-repeat: no-repeat !important;
    width: 50px;
    /* ボタンの幅 */
    height: 50px;
    /* ボタンの高さ */
    background-color: transparent !important;
    /* 背景色を透明に */
    color: transparent !important;
    /* テキスト色を透明に（矢印が画像で表示されるので） */
}

/* 右矢印 */
.fancybox-button--arrow-right {
    background-image: url("../img/fancy-right.svg") !important;
    /* 画像のパス */
    background-size: 100% 100% !important;
    /* 矢印ボタンの幅と高さに合わせて画像を引き伸ばす */
    background-repeat: no-repeat !important;
    width: 50px;
    /* ボタンの幅 */
    height: 50px;
    /* ボタンの高さ */
    background-color: transparent !important;
    /* 背景色を透明に */
    color: transparent !important;
    /* テキスト色を透明に（矢印が画像で表示されるので） */
}

.fancybox-button--arrow-left,
.fancybox-button--arrow-right {
    background-color: white;
    /* 矢印の背景を白に */
}

/* MODAL */

.modal {
    color: #401f20;
    display: none;
}

.modalHead {
    background: #d7d2cb;
}

.modalHead h4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    background: #3f2021;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.modalCont {
    padding: 20px;
}

.modalCont figure {
    margin-top: 20px;
    text-align: center;
}

/* BUTTON READ MORE */
.lb2-button {
    line-height: 1;
    display: inline-block;
    margin-top: 20px;
    text-align: left;
    width: 294px;
    position: relative;
}




/* タブ切り替え */
.modalCont .tab {
    display: flex;
    flex-wrap: wrap;
    /* max-width: 450px; */
    justify-content: center;
}

.modalCont .tab .leadTxt {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
}


.modalCont .tab .caption {
    font-size: 10px;
}

.modalCont .tab>label {
    flex: 1 1;
    order: -1;
    max-width: 150px;
    width: 100%;
    padding: .9em 1.2em;
    border: #401F20 solid 1px;
    background-color: #f7f6f5;
    color: #401F20;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.modalCont .tab>label:not(:last-of-type) {
    border-right: none;
}

.modalCont .tab>label:hover {
    opacity: .8;
}

.modalCont .tab input {
    display: none;
}

.modalCont .tab>div {
    display: none;
    width: 100%;
    padding: 1em 1em;
    background-color: #fff;
}



.modalCont .tab label:has(:checked) {
    background: #401F20;
    color: #fff
}

.modalCont .tab label:has(:checked)+div {
    display: block;
}

@media screen and (max-width: 768px) {
    .lb2-button {
        width: 85%;
    }
}

.lb2-button--inversion {
    width: 100%;
    margin-top: 0;
}

.lb2-button--rect {
    width: 100%;
    border: 1px solid #3f2021;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    line-height: 1.5;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 768px) {
    .lb2-button--rect {
        padding: 15px;
    }
}

.lb2-button--rect.is-hover {
    background-color: rgba(63, 32, 33, 0.03);
}

.lb2-button--rect[target="_blank"]::after {
    font-family: "Material Icons";
    content: "\e89e";
    font-size: 14px;
    transform: translateY(0.1em);
}

.lb2-button--rect[target="_self"]::after {
    font-family: "Material Icons";
    content: "\e5cc";
    font-size: 24px;
}

.lb2-button--row {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 312px;
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .lb2-button--row {
        width: 100%;
    }
}

@media (hover: hover) and (pointer: fine) {
    .lb2-button--row:hover {
        max-width: 332px;
    }
}

@media screen and (max-width: 768px) {
    .lb2-button--brandbook {
        margin-top: 0;
    }
}

.lb2-button--anchor {
    width: 100%;
    border: 1px solid #3f2021;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    line-height: 1.5;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 768px) {
    .lb2-button--anchor {
        padding: 25px;
    }

    .lb2-button--anchor:first-child {
        margin-bottom: 10px;
    }
}

.lb2-button--anchor.is-hover {
    background-color: rgba(63, 32, 33, 0.03);
}

.lb2-button--anchor::after {
    font-family: "Material Icons";
    content: "\e5cf";
    font-size: 14px;
    transform: translateY(0.1em);
}

.lb2-button--guideline {
    width: 100%;
    border: 1px solid #3f2021;
    padding: 25px 15px 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    line-height: 1.5;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 768px) {
    .lb2-button--guideline {
        padding: 15px;
        margin-top: 10px;
    }
}

.lb2-button--guideline.is-hover {
    background-color: rgba(63, 32, 33, 0.03);
}

.lb2-button--guideline:first-child {
    margin-top: 0;
}

.lb2-button--zipfile::after {
    font-family: "Material Icons";
    content: "\eb2c";
    font-size: 20px;
}

.lb2-button--pdffile::after {
    font-family: "Material Icons";
    content: "\e415";
    font-size: 20px;
}

.lb2-button--excelfile::after {
    font-family: "Material Icons";
    content: "\e873";
    font-size: 20px;
}

.lb2-button--desktop::after {
    font-family: "Material Icons";
    content: "\e30c";
    font-size: 20px;
}

.lb2-button__label {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    display: inline-block;
    margin: 20px 0;
    overflow: hidden;
    line-height: 1;
    height: 18px;
}

.lb2-button__label--br {
    display: none;
}

@media screen and (max-width: 768px) {
    .lb2-button__label--br {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .lb2-button {
        margin-top: 0;
    }

    .lb2-button--project .lb2-button__label {
        margin: 10px 0;
    }

    .lb2-button--project .lb2-button__label--sp {
        display: none;
    }
}

.lb2-button__label:only-child {
    margin: 0;
}

.lb2-button--inversion .lb2-button__label {
    font-size: 2rem;
}

.lb2-button--rect .lb2-button__label,
.lb2-button--anchor .lb2-button__label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.085em;
    font-size: 1.3rem;
}

.lb2-button--guideline .lb2-button__label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.085em;
    font-size: 1.2rem;
}

.lb2-button--row .lb2-button__label {
    font-size: 1.6rem;
    padding-right: 15px;
}

.lb2-button--small .lb2-button__label {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .lb2-button--small .lb2-button__label {
        font-size: 1.3rem;
    }
}

.lb2-button__label__inner-1 {
    transform-origin: 100% 100%;
    white-space: no-wrap;
    translate: none;
    rotate: none;
    scale: none;
    transform: translate(0px);
    transition: 1s;
}

.lb2-button__label__inner-2 {
    transform-origin: 0 0;
    white-space: nowrap;
    translate: none;
    rotate: none;
    scale: none;
    transform: skew(0deg, 9deg);
    transition: 1s;
}

.lb2-button:hover .lb2-button__label__inner-1 {
    transform: translate(0, -100%) skew(0deg, 9deg);
}

.lb2-button:hover .lb2-button__label__inner-2 {
    transform: translate(0, -100%);
}

.lb2-button:hover .lb2-button__arrow {
    width: 100%;
}

.lb2-button__sublabel {
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    margin-top: -12px;
    padding-bottom: 20px;
    letter-spacing: 0.1em;
}

.lb2-button__arrow {
    position: relative;
    width: 85%;
    transition: 1s;
}

.lb2-button--row .lb2-button__arrow {
    width: auto;
    flex: 1;
}

.lb2-button--inversion .lb2-button__arrow {
    width: 294px;
}

@media screen and (max-width: 768px) {
    .lb2-button--inversion .lb2-button__arrow {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .lb2-button__arrow {
        width: 100%;
    }
}

.lb2-button__arrow::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #3f2021;
}

.lb2-button--inversion .lb2-button__arrow::before {
    background-color: #e5e1dc;
}

.lb2-button__append {
    width: 10px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(1.5px) translateY(-50%) translateY(0.5px);
}

.lb2-button__svg {
    fill: none;
    stroke: #3f2021;
    width: 100%;
    height: auto;
}

.lb2-button--inversion .lb2-button__svg {
    stroke: #e5e1dc;
}

/* ----------------------------------- */
/* ----------------------------------- */
/* メニュー全体のスタイル */
/* .menu-wrapper {
    max-width: 916px;
    margin: 0 auto;
} */

/* .menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
} */

/* .menu-item {
    padding: 10px;
    border: 1px solid #401f20;
    text-align: center;
    color: #3f2021;
    width: calc(33.3333%); 
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.menu-item.active {
    background-color: #401f20;
}

.menu-item.active a {
    color: #f8f7f6;
}

/* メニューアイテムのホバー時 */
.menu-item:hover {
    background-color: #d6d2cc;
}

/* メニューリンク */
.menu-item a {
    text-decoration: none;
    color: #3f2021;
    font-size: 16px;
    display: block;
    padding: 10px 0;
}

/* メニューリンクのホバー時 */
/* .menu-item a:hover {
    color: #7d6c6b;
} */

/* スマホ表示 (最大幅768px) */
@media (max-width: 768px) {
    .menu-item {
        width: 100%;
        /* スマホでは1列 */
        padding: 20px 10px;
        /* アイテム間の余白を調整 */
    }
}

/* タブレット表示 (最小幅768px) */
@media (min-width: 768px) {
    .menu-item {
        width: calc(33.3333%);
        /* 3列にする */
    }
}

@media (max-width: 768px) {
    .menu-wrapper {
        padding: 0 20px;
    }

    .menu-item {
        line-height: 1.3;
        padding: 0;
        min-height: 8vh;
    }
}

/* タッチ操作を考慮した改善 */
@media (max-width: 480px) {
    .menu-item a {
        font-size: 14px;
        /* タッチ操作を考慮して文字サイズを少し小さく */
    }
}

/* メニュー全体のスタイル */
.menu-wrapper {
    max-width: 916px;
    margin: 0 auto 90px;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    /* アイテムが折り返すように設定 */
    justify-content: center;
    /* 横方向で中央揃え */
    /* padding: 20px; */
    border-bottom: 1px solid #401f20;
    border-right: 1px solid #401f20;
}

.menu-item {
    /* padding: 10px; */
    border-top: 1px solid #401f20;
    border-left: 1px solid #401f20;
    text-align: center;
    color: #3f2021;
    width: calc(33.3333%);
    /* 1行3列 */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    /* 高さ方向で中央揃え */
    justify-content: center;
    /* 横方向で中央揃え */
}

.menu-item.active {
    background-color: #401f20;
}

.menu-item.active a {
    color: #f8f7f6;
}

/* メニューアイテムのホバー時 */
.menu-item:hover {
    background-color: #d6d2cc;
    /* ホバー時の背景色 */
}

/* メニューリンク */
.menu-item a {
    text-decoration: none;
    color: #3f2021;
    font-size: 16px;
    display: block;
    padding: 16px 0;
    transition: 0.5s;
    width: 100%;

}

/* メニューリンクのホバー時 */
.menu-item a:hover {
    background-color: #401f20;
    color: white;
}

/* スマホ表示 (最大幅768px) */
@media (max-width: 768px) {
    .menu-item {
        width: calc(50%);
        /* 2列にする */
    }
}

/* デスクトップ表示 (最小幅768px) */
@media (min-width: 768px) {
    .menu-item {
        width: calc(33.3333%);
        /* 3列にする */
    }
}

/* ----------------------------------- */
/* イントロセクションのスタイル */
.intro-container {
    background-color: #f8f7f6;
    padding: 10px;
    color: #3b2222;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    /* 左右の要素を間隔を空けて配置 */
    flex-wrap: wrap;
    /* 画面サイズに応じて折り返し */
    width: 100%;
}

/* テキストのスタイル */
.intro-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #3b2222;
}

/* PC時 */
@media (min-width: 768px) {
    .intro-container {
        width: 926px;
        /* 最大幅926px */
        height: 90px;
        /* 高さ90px */
        border-radius: 45px;
        /* 両端半円 */
    }
}

/* SP時 */
@media (max-width: 768px) {
    .intro-container {
        width: 90%;
        /* 幅を90%に */
    }
}

.iblock {
    text-align: center;
    /* 中央揃えにする */
}

.ib {
    display: inline-block;
    width: 45%;
    padding: 20px;
    margin: 0;
    text-align: center;
    vertical-align: top;
    text-align: left;
}

.intro-container {
    background-color: #f8f7f6;
    padding: 40px 20px;
    /* 上下に十分な余白を */
    color: #3b2222;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    /* 横中央 */
    align-items: center;
    /* 縦中央 */
    text-align: center;
    /* テキストを中央揃え */
    border-radius: 50px;
    /* 丸みをつける */
    width: 100%;
    max-width: 1200px;
    /* 最大幅を設定 */
    margin: 0 auto;
}

/* h3 タグの調整 (文字サイズ、余白、色など) */
h3 {
    font-size: 1.8rem;
    /* サイズを少し小さめに設定 */
    line-height: 1.4;
    color: #fff;
    /* 見出しの色 */
    margin-bottom: 20px;
    /* 下に余白 */
}

/* テキストのスタイルを微調整 */
.intro-container p {
    font-size: 1.4rem;
    /* 文字サイズを少し大きく */
    line-height: 1.8;
    /* 行間を広げて読みやすく */
    color: #3b2222;
    max-width: 900px;
    /* 最大幅を設定して、長すぎないように */
    margin: 0 auto;
}

/* 必要に応じてレスポンシブ対応 */
@media (max-width: 768px) {
    .intro-container {
        width: 90%;
        /* モバイルでは90%に */
        padding: 20px;
        /* スマホ用の余白調整 */
        border-radius: 20px;
        /* 丸みを少し小さめに */
    }

    h3 {
        font-size: 2rem;
        /* モバイル用に少し小さく */
    }

    .intro-container p {
        font-size: 1.2rem;
        /* モバイル用に少し小さく */
    }
}

/* PC版：改行を2行に */
.pc-break {
    display: block;
    /* PCでは改行を表示 */
}

/* スマホ版：改行を5行に */
@media (max-width: 768px) {

    /* PC用の改行タグを非表示 */
    .pc-break {
        display: none;
    }

    /* スマホ版用の改行タグを表示 */
    .sp-break {
        display: block;
    }

    /* スマホ表示用のテキスト調整 */
    .intro-container p {
        font-size: 1.2rem;
        /* スマホ用に少し小さく */
        line-height: 1.8;
        /* 行間を広げる */
    }
}

.content-container {
    padding: 20px;
    text-align: center;
}

.info-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-header p {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.equipment-item {
    text-align: center;
}

.equipment-item img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.equipment-item span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
}

.more-info-btn {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #401f20;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.more-info-btn:hover {
    background-color: #2e1414;
}


.gratotoop {
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
}

.darkbrown {
    color: #401f20;
}

.r500 {
    font-weight: 500 !important;
}

.f400 {
    font-weight: 400 !important;
}


/* 画像の上にグラデーション */
.image-with-gradient {
    position: relative;
    /* 親要素の位置を相対的にする */
    display: inline-block;
}

.image-with-gradient img {
    width: 100%;
    /* 画像の幅 */
    height: auto;
    /* 高さを自動調整 */
}

.image-with-gradient::after {
    content: '';
    position: absolute;
    /* 親要素に対して絶対配置 */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    /* 黒のグラデーション（上から下） */
    pointer-events: none;
    /* グラデーションが画像を操作しないようにする */
}
/* ===== 5個表示時：上3つ / 下2つ をきれいに揃える ===== */
@media (min-width: 768px) {
    .menu-container.is-five .menu-item { width: calc(33.3333%); }
    .menu-container.is-five .menu-item:nth-child(n+4) { width: 50%; }
}
/* ===== 5個表示：SPは 2列×2段 + 最後は横100% ===== */
@media (max-width: 768px) {
  .menu-container.is-five .menu-item { width: 50%; }
  .menu-container.is-five .menu-item:nth-child(5) { width: 100%; }
}
.co2 {
    font-size: 0.7em;
    vertical-align: baseline;
    position: relative;
    bottom: -0.2em;
}
.sub-co2{
  font-size: 0.8em;
  vertical-align: baseline;
  position: relative;
  top: -0.3 em;
}

#history .timeLine .goverment .y2020{ margin-top: 190%; }
#history .timeLine .goverment .y2021{ margin-top: 40%; } 


/* トップナビゲーション */
.nav-link{
    background-color: #D7D2CB;
}
.nav-link_list {
    padding: 45px 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 1000px;
    margin: 0 auto;
}
.nav-link_list li {
    font-size: clamp(14px, 1.8vw, 18px);
    text-align: center;
    flex-basis: calc((100% - 10px)/3);
    white-space: nowrap;
}
.nav-link_list a span{ transition: all 0.3s;}
.nav-link_list a:hover span{
    width: 100%;
    border-bottom: 1px solid #401F20;
}
@media (max-width: 768px) {
    .nav-link_list {
        padding: 34px 30px;
        flex-direction: column;
    }
    .nav-link_list li{
        width: 100%;
        text-align: left;
    }
    .nav-link_list li:not(:last-child){
        margin-bottom: 1em;
    }
}
/* THE LIONS「ZEH」トップボタン */
.btnDark {
    background: #401f20 url(../../img/ic_arr.svg) no-repeat center right 24px;
}
.top-button .btnDark {
    max-width: 370px;
    margin: 68px auto;
}
.btnDark:hover {
    background-color: #401f20;
    opacity: 0.8;
}

