@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100..900&display=swap');

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html,
body {
    color: #555;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a,
a:visited {
    text-decoration: none;
    color: #1977ec;
}

a:hover {
    color: #ec194a;
}

.w12 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

@media screen and (max-width:1240px) {
    .w12 {
        padding: 0 3%;
    }
}

/*=====================================
*
*header
*
=======================================*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}

header>.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    max-width: 1775px;
    padding: 25px 0;
    margin: auto;
}

@media screen and (max-width:1800px) {
    header>.inner {
        padding: 25px 2%;
    }
}

header>.inner .logo-area {
    width: calc((492 / 1775) * 100%);
}

header>.inner .menu-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header>.inner .menu-area ul.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(30px, 5.21vw, 100px);
}

header>.inner .menu-area ul.menu li {
    line-height: 1.0;
    white-space: nowrap;
}

header>.inner .menu-area ul.menu li a {
    font-size: clamp(1.5rem, 1.04vw, 2.0rem);
    color: var(--text-color);
    letter-spacing: 0.05em;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    header>.inner .menu-area ul.menu li a:hover {
        color: #00453f;
    }
}

header>.inner .menu-area .btn-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: clamp(25px, 5.21vw, 100px);
}

header>.inner .menu-area .btn-area .contact-btn {
    width: 195px;
    height: 50px;
}

header>.inner .menu-area .btn-area .contact-btn a {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.0rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    header>.inner .menu-area .btn-area .contact-btn a:hover {
        opacity: 0.75;
    }
}

header>.inner .menu-area .btn-area .contact-btn01 a {
    color: #fff;
    border: solid #2b2b2b 1px;
    background-color: #006462;
}

header>.inner .menu-area .btn-area .contact-btn02 a {
    color: #006462;
    border: solid #006462 1px;
    background-color: #fff;
}

@media screen and (max-width:1400px) {
    header>.inner .logo-area {
        width: 20%;
    }

    header>.inner .menu-area .btn-area .contact-btn {
        width: 170px;
        height: 45px;
    }

    header>.inner .menu-area .btn-area .contact-btn a {
        font-size: 1.6rem;
    }
}

/*ハンバーガーメニュー*/
@media screen and (max-width:1025px) {
    header .pc-menu {
        display: none;
    }

    header>.inner .sp-bg {
        display: none;
    }
}

@media screen and (min-width:1025px) {
    header :is(.sp-menu, .btn-wrapper) {
        display: none !important;
    }
}

@media screen and (max-width:1024px) {
    header>.inner {
        height: 85px;
    }

    header>.inner .menu-area {
        display: none;
    }

    header>.inner .logo-area {
        width: 45%;
    }

    header>.inner .btn-wrapper {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    header>.inner .btn-wrapper .spBtn-area {
        display: flex;
        gap: 5px;
    }

    header>.inner .btn-wrapper .spBtn-area .img-area {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin: 0 auto 2px;
    }

    header>.inner .btn-wrapper .spBtn-area .contact-btn01 .img-area {
        background-color: #00453f;
    }

    header>.inner .btn-wrapper .spBtn-area .contact-btn02 .img-area {
        border: solid 2px #00453f;
    }

    header>.inner .btn-wrapper .spBtn-area .contact-btn a {
        font-size: 11px;
        color: #555;
    }

    header>.inner .hamBtn-area .ham-btn {
        display: flex;
        align-items: end;
        justify-content: flex-end;
        flex-direction: column;
        gap: 5px;
    }

    header>.inner .hamBtn-area span {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 5px;
        background-color: var(--text-color);
    }

    header>.inner .hamBtn-area span:last-of-type {
        width: 20px;
    }

    header>.inner .sp-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 9999;
        transform: translate(-50%, -50%);
        top: 50vh;
        left: 50vw;
        background: #fff;
        height: 60vh;
        width: 80vw;
        max-width: 600px;
        border-radius: 8px;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out;
    }

    header>.inner .sp-menu.active {
        opacity: 1.0;
        pointer-events: auto;
    }

    header>.inner .sp-bg {
        content: "";
        position: fixed;
        display: block;
        top: 0;
        left: 0;
        z-index: 9998;
        width: 100vw;
        height: 100vh;
        background-color: #333;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease-in-out;
    }

    header>.inner .sp-bg.active {
        opacity: 0.75;
        pointer-events: auto;
    }

    header>.inner .sp-menu ul.menu {
        display: block;
    }

    header>.inner .sp-menu ul.menu li {
        text-align: center;
    }

    header>.inner .sp-menu ul.menu li+li {
        margin-top: 30px;
    }

    header>.inner .menu-area ul.menu li a {
        font-size: 2.5rem;
    }

    header>.inner .sp-menu .btn-area {
        display: block;
        margin-left: 0;
    }

    header>.inner .sp-menu .btn-area .contact-btn {
        margin: 30px auto 0;
    }

    header>.inner .menu-area .btn-area .contact-btn {
        width: 250px;
        height: 60px;
    }

    header>.inner .menu-area .btn-area .contact-btn a {
        font-size: 2.5rem;
    }

    header>.inner .menu-area .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        transform: rotate(45deg);
    }

    header>.inner .menu-area .close-btn span {
        position: absolute;
        display: inline-block;
        width: 28px;
        height: 3px;
        border-radius: 5px;
        background-color: #006462;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }

    header>.inner .menu-area .close-btn span::after {
        content: "";
        position: absolute;
        display: inline-block;
        height: 28px;
        width: 3px;
        border-radius: 5px;
        background-color: #006462;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }

    header>.inner .spBtn-area {
        display: flex;
    }

    header>.inner .spBtn-area .contact-btn a {
        display: flex;
        flex-direction: column;
    }

}

/*sp*/
@media screen and (max-width:599px) {
    header>.inner {
        height: 65px;
    }

    header>.inner .sp-menu {
        min-height: 500px;
    }

    header>.inner .menu-area ul.menu li a {
        font-size: 2.0rem;
    }

    header>.inner .menu-area .btn-area .contact-btn {
        width: 200px;
        height: 50px;
    }

    header>.inner .sp-menu .btn-area .contact-btn+.contact-btn {
        margin-top: 15px;
    }

    header>.inner .menu-area .btn-area .contact-btn a {
        font-size: 2.0rem;
    }

    header>.inner .btn-wrapper .spBtn-area .img-area {
        margin-bottom: 0;
    }

    header>.inner .menu-area .close-btn {
        width: 30px;
        height: 30px;
    }

    header>.inner .btn-wrapper .spBtn-area .img-area {
        width: 30px;
        height: 30px;
    }

    header>.inner .btn-wrapper .spBtn-area .img-area img {
        width: 18px;
    }

    header>.inner .btn-wrapper .spBtn-area .contact-btn02 .img-area img {
        width: 15px;
    }
}

/*=====================================
*
*mv
*
=======================================*/
.mv-area {
    position: relative;
    z-index: 1;
    margin-top: 100px;
}

@media screen and (min-width:2000px) {
    .mv-area {
        max-width: 1920px;
    }
}

.mv-area .inner {
    position: absolute;
    left: calc((301/ 1920) * 100%);
    top: calc((137/ 670) * 100%);
}

@media screen and (max-width:1400px) {
    .mv-area .inner {
        left: calc((267/ 1920) * 100%);
        top: calc((137/ 670) * 100%);
    }
}

.mv-area h1 {
    font-size: clamp(25px, 2.6vw, 5.0rem);
    font-family: var(--font-family-title);
}

@media screen and (min-width:1025px) {
    .mv-area h1 {
        text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.9);
    }
}

.mv-area .img-area {
    width: calc((1103 / 1920) * 100%);
    margin-left: auto;
}

.mv-area .text-area p {
    font-family: var(--font-family-title);
    font-size: clamp(1.5rem, 1.04vw, 2.0rem);
    letter-spacing: 0.05em;
    margin-top: 30px;
    margin-bottom: 20px;
}

.mv-area .inner .mv-btn a {
    display: block;
    position: relative;
    width: fit-content;
    font-family: var(--font-family-title);
    font-size: clamp(1.5rem, 1.04vw, 2.0rem);
    color: var(--text-color);
    padding: calc((11 / 20) * 1.0em) calc((100 / 20) * 1.0em) calc((9 / 20) * 1.0em) calc((25 / 20) * 1.0em);
    letter-spacing: 0.05em;
    border: 1px solid #2b2b2b;
}

.mv-area .inner .mv-btn a::after {
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    width: calc((40 / 20) * 1.0em);
    height: 1px;
    background-color: #2b2b2b;
}

/*tb*/
@media screen and (max-width:1024px) {
    .mv-area .inner {
        left: 12%;
        top: 50%;
        transform: translateY(-50%);
    }

    .mv-area {
        margin-top: 85px;
    }
}

@media screen and (max-width:899px) {
    .mv-area .inner {
        left: 7%;
    }
}

@media screen and (max-width:767px) {
    .mv-area h1 {
        font-size: 2.4rem;
    }

    .mv-area .text-area p {
        font-size: 1.4rem;
        margin-top: 20px;
    }

    .mv-area .inner .mv-btn a {
        font-size: 1.4rem;
    }
}

@media screen and (max-width:599px) {
    .mv-area {
        margin-top: 65px;
    }

    .mv-area .inner {
        top: 18%;
        transform: translateY(0);
    }

    .mv-area .img-area {
        width: auto;
        margin: auto;
    }
}

/*=====================================
*
*flow-sec
*
=======================================*/
article.flow-sec {
    margin-bottom: 75px;
}

article.flow-sec .hd-area01 {
    margin-top: 80px;
}

article.flow-sec .flow-cont {
    position: relative;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, 22.08%) 10%;
}

article.flow-sec .contents-area {
    margin-top: 40px;
}


article.flow-sec .flow-cont span {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc((1180 / 1200) * 100%);
    height: 0.5px;
    background-color: var(--text-color);
}

@media screen and (max-width:1499px) {
    article.flow-sec .flow-cont span {
        top: 9%;
    }
}

article.flow-sec .flow-cont span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.3px;
    width: 0.5px;
    height: 10px;
    transform-origin: bottom right;
    background-color: var(--text-color);
    transform: rotate(-32.75deg);
}

article.flow-sec .flow-cont>* {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
}

article.flow-sec .flow-cont .cont-2 .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
}

article.flow-sec .flow-cont .cont-3 .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
}

article.flow-sec .flow-cont .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5e9d8;
    text-align: center;
}

article.flow-sec .flow-cont>div:not(:last-of-type) .inner {
    clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
}

article.flow-sec .flow-cont .cont-3 .inner-cont .inner:first-of-type {
    clip-path: initial;
}

article.flow-sec .flow-cont .cont-3 .inner-cont {
    display: grid;
    justify-content: space-between;
    grid-template-columns: calc((120 / 265) * 100%) calc((135 / 265) * 100%);
}

article.flow-sec .flow-cont .cont-3 .inner-cont.two-col {
    clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
    gap: 0;
    background-image: linear-gradient(to right, #f5e9d8 0 46%, #fff 46% 50%, #F5E9D4 50% 100%);
}

article.flow-sec .flow-cont .cont-3 .inner-cont.two-col .inner {
    background-color: transparent;
}

article.flow-sec .flow-cont .inner .img-text {
    padding: 10px 0;
}

@media screen and (max-width:1300px) {
    article.flow-sec .flow-cont .inner .img-text img {
        max-width: 80px;
    }
}

article.flow-sec .flow-cont .inner.green {
    background-color: #006462;
}

article.flow-sec .flow-cont p {
    font-family: var(--font-family-title);
    font-size: clamp(1.4rem, 1.04vw, 2.0rem);
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--text-color);
    margin-bottom: calc((10 / 20) * 1.0em);
}

article.flow-sec .flow-cont .inner h3 {
    font-size: clamp(1.4rem, 1.04vw, 2.0rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: calc(24 /20);
    margin-top: calc((13 / 20) * 1.0em);
}

article.flow-sec .flow-cont .inner.green h3 {
    color: #fff;
}

article.flow-sec p.flow-text {
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    font-weight: 500;
    max-width: 1120px;
    margin: calc((55 / 20) * 1.0em) auto 0;
}

/*tb*/
@media screen and (max-width:1024px) {
    article.flow-sec .flow-cont span {
        width: calc(100% - 10px);
    }

    article.flow-sec .flow-cont p {
        font-size: 1.2rem;
    }

    article.flow-sec .flow-cont span {
        top: 24px;
    }

    article.flow-sec .flow-cont .inner {
        margin-top: 8px;
    }

    article.flow-sec .flow-cont>div .inner+.inner {
        margin-top: 0;
    }
}

@media screen and (max-width:900px) {
    article.flow-sec .contents-area {
        overflow: scroll;
    }

    article.flow-sec .nopc p.scroll {
        position: sticky;
        left: 0;
        display: flex;
        align-items: center;
        gap: 5px;
        width: fit-content;
        font-size: 12px;
        color: #00453f;
        margin-bottom: 10px;
    }

    article.flow-sec .flow-cont {
        width: 150%;
    }

    article.flow-sec .flow-cont .cont-5 .inner .img-text img {
        max-width: 60px;
    }

    article.flow-sec p.flow-text {
        margin: 15px auto 0;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    article.flow-sec .flow-cont {
        width: 187%;
    }

    article.flow-sec .flow-cont .inner h3 {
        font-size: 1.0rem;
    }

    article.flow-sec .flow-cont .cont-3 .inner-cont.two-col {
        background-image: linear-gradient(to right, #f5e9d8 0 45%, #fff 45% 51%, #F5E9D4 51% 100%);
    }
}

/*=====================================
*
*reason-sec
*
=======================================*/
article.reason-sec {
    padding: 100px 0 100px;
    background-color: rgba(223, 183, 127, 0.3);
}

article.reason-sec .contents-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc((25 / 1200) * 100%);
}

article.reason-sec .contents-area .text-area h3 {
    font-family: var(--font-family-title);
    font-size: clamp(2.0rem, 1.56vw, 3.0rem);
    margin: calc((17.5 / 30) * 1.0em) auto calc((5 / 30) * 1.0em);
    letter-spacing: 0.05em;
    padding-left: calc((20 / 30) * 1.0em);
}

article.reason-sec .contents-area .text-area p {
    position: relative;
    font-size: clamp(1.5rem, 1.04vw, 2.0rem);
    font-weight: 500;
    padding: 0 calc((100% - ((320 / 380) * 100%)) / 2);
    margin: auto;
}

article.reason-sec .contents-area .cont:not(:last-of-type) .text-area p:after {
    content: "";
    position: absolute;
    top: calc(50% + 5px);
    right: 0;
    width: 1px;
    height: calc(100% + 50px);
    background-color: #141e1e;
    transform: translateY(-50%) rotate(11deg);
}

/*tb*/
@media screen and (max-width:1024px) {
    article.reason-sec .contents-area .text-area p {
        padding: 0 10px;
    }
}

/*sp*/
@media screen and (max-width:767px) {
    article.reason-sec .contents-area {
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }

    article.reason-sec .contents-area .cont {
        width: fit-content;
        text-align: center;
        margin: auto;
    }

    article.reason-sec .contents-area .text-area h3 {
        padding-left: 0;
        text-align: center;
    }

    article.reason-sec .contents-area .text-area h3 {
        font-size: 2.2rem;
    }


    article.reason-sec .contents-area .text-area p {
        width: fit-content;
        font-size: 1.8rem;
        text-align: center;
    }

    article.reason-sec .contents-area .cont:not(:last-of-type) .text-area p:after {
        content: none;
    }
}

@media screen and (max-width:599px) {
    article.reason-sec {
        padding: 75px 0 75px;
    }
}

/*=====================================
*
*cta-sec
*
=======================================*/
.cta-sec {
    position: relative;
    overflow: hidden;
    background-color: #6b516a;
    padding: 50px 0;
    z-index: 1;
}

.cta-sec>img {
    position: absolute;
    z-index: -1;
    top: 0;
    height: 100%;
}

.cta-sec>img:first-of-type {
    left: 0;
}

.cta-sec>img:last-of-type {
    right: 0;
}


@media screen and (max-width:1599px) {
    .cta-sec>img:first-of-type {
        left: -5.25vw;
    }

    .cta-sec>img:last-of-type {
        right: -5.25vw;
    }
}

@media screen and (max-width:1415px) {
    .cta-sec>img:first-of-type {
        left: -10.00vw;
    }

    .cta-sec>img:last-of-type {
        right: -10.00vw;
    }
}

@media screen and (max-width:1300px) {
    .cta-sec>img:first-of-type {
        left: -15.00vw;
    }

    .cta-sec>img:last-of-type {
        right: -15.00vw;
    }
}

@media screen and (max-width:1200px) {
    .cta-sec>img:first-of-type {
        left: -18.00vw;
    }

    .cta-sec>img:last-of-type {
        right: -18.00vw;
    }
}

@media screen and (max-width:1100px) {
    .cta-sec>img:first-of-type {
        left: -20.00vw;
    }

    .cta-sec>img:last-of-type {
        right: -20.00vw;
    }
}

.cta-sec .cta-cont {
    color: #fff;
    text-align: center;
}

.cta-sec .cta-cont h2 {
    font-size: clamp(2.2rem, 1.56vw, 3.0rem);
    text-shadow: 0px 0px 8px rgba(107, 82, 107, 1);
    letter-spacing: 0.05em;

}

.cta-sec .cta-cont p {
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    text-shadow: 0px 0px 7px rgba(107, 82, 107, 1);
    margin-top: calc((30 / 20) * 1.0em);
}

.cta-sec .cta-cont .cta-btn {
    position: relative;
    width: 460px;
    height: 65px;
    margin: 60px auto 0;
    background-color: #faf7e7;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.cta-sec .cta-cont .cta-btn:hover {
    transform: translateY(-10px);
    opacity: 0.75;
}

.cta-sec .cta-cont .cta-btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.cta-sec .cta-cont .cta-btn a+img {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 4px;
}

/*tb*/
@media screen and (max-width:899px) {
    .cta-sec {
        position: relative;
        overflow: hidden;
        background-color: #6b516a;
        padding: 50px 0;
        z-index: 1;
        background-image: url(../assets/img/cta/cta-bg.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    .cta-sec {
        line-height: 2.0;
    }

    .cta-sec .cta-cont .cta-btn {
        width: 90%;
        max-width: 460px;
        height: 55px;
        margin: 40px auto 0;
    }

    .cta-sec .cta-cont p {
        padding: 0 15px;
        text-align: start;
    }
}

/*=====================================
*
*case-sec
*
=======================================*/
article.case-sec {
    padding: 120px 0 120px;
}

article.case-sec .contents-area .cont {
    display: flex;
    justify-content: space-between;
    border-radius: 0 0 50px 0;
    background-color: #efedeb;
    padding: 35px 0 35px calc((45 / 1200) * 100%);
}

article.case-sec .contents-area .cont.reverse {
    flex-direction: row-reverse;
    border-radius: 0 0 0 50px;
    padding: 45px calc((45 / 1200) * 100%) 35px 0;
}

article.case-sec .contents-area .cont+.cont {
    margin-top: 25px;
}

article.case-sec .contents-area .cont .text-area {
    width: calc((730 / 1200) * 100%);
}

article.case-sec .contents-area .cont .text-area h3 {
    font-size: clamp(2.0rem, 1.56vw, 3.0rem);
    letter-spacing: 0.05em;
    margin-bottom: calc((20 / 30) * 1.0em);
    padding-bottom: calc((20 / 30) * 1.0em);
    border-bottom: 1px #fff solid;
}

article.case-sec .contents-area .cont.reverse .text-area h3 {
    padding-left: 50px;
}

article.case-sec .contents-area .cont .text-area h3 span {
    display: block;
    font-size: calc((20 / 30) * 100%);
}

article.case-sec .contents-area .cont .text-area .text-wrapper {
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    padding: 0 50px 0 0;
}

article.case-sec .contents-area .cont .text-area .text-wrapper .inner+.inner {
    margin-top: 15px;
}

article.case-sec .contents-area .cont .text-area .text-wrapper .inner h4 {
    display: flex;
    align-items: center;
    gap: 3px;
}

article.case-sec .contents-area .cont .text-area .text-wrapper .inner h4::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    margin-bottom: 1px;
    background-color: var(--text-color);
}

article.case-sec .contents-area .cont.reverse .text-area .text-wrapper {
    padding: 0 0 0 50px;
}

article.case-sec .contents-area .cont .text-area .text-wrapper ul {
    line-height: 1.8;
}

article.case-sec .contents-area .cont .text-area .text-wrapper ul li {
    position: relative;
    padding-left: 1.0em;
}

article.case-sec .contents-area .cont .text-area .text-wrapper ul li::before {
    content: "・";
    position: absolute;
    left: 0;
}

article.case-sec .contents-area .cont .text-area p.bold {
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: calc((35 / 20) * 1.0em);
}

article.case-sec .contents-area .cont .text-area span.bold {
    font-weight: 500;
    letter-spacing: 0.05em;
}

article.case-sec .contents-area .cont .text-area p.flex {
    display: grid;
    grid-template-columns: auto 1fr;
}

article.case-sec .contents-area .img-area {
    position: relative;
}

article.case-sec .contents-area .img-area p {
    position: absolute;
    z-index: 2;
    font-family: var(--font-family-title);
    font-size: clamp(3.0rem, 2.08vw, 4.0rem);
    top: calc((18 / 40) * -1.0em);
    left: calc((20 / 40) * -1.0em);
    line-height: 1.0;
}

/*tb*/
@media screen and (max-width:1024px) {
    article.case-sec .contents-area .cont {
        padding: 35px 0 35px calc((45 / 1200) * 100%);
    }

    article.case-sec .contents-area .cont .text-area h3 {
        padding-left: 0;
        padding-right: 20px;
    }

    article.case-sec .contents-area .cont.reverse .text-area h3 {
        padding-left: 20px;
        padding-right: 0;
    }

    article.case-sec .contents-area .cont .text-area .text-wrapper {
        padding: 0 20px 0 0;
    }

    article.case-sec .contents-area .cont.reverse .text-area .text-wrapper {
        padding: 0 0 0 20px;
    }
}


@media screen and (max-width:830px) {
    article.case-sec .contents-area .cont {
        gap: 4%;
        padding: 35px 0 35px calc((45 / 1200) * 100%);
    }

    article.case-sec .contents-area .cont .img-area {
        width: 48%;
    }

    article.case-sec .contents-area .cont .text-area {
        width: 48%;
    }

    article.case-sec .contents-area .cont .text-area h3 {
        padding-left: 0;
        padding-right: 20px;
    }

    article.case-sec .contents-area .cont.reverse .text-area h3 {
        padding-left: 20px;
        padding-right: 0;
    }

    article.case-sec .contents-area .cont .text-area .text-wrapper {
        padding: 0 20px 0 0;
    }

    article.case-sec .contents-area .cont.reverse .text-area .text-wrapper {
        padding: 0 0 0 20px;
    }
}

@media screen and (max-width:767px) {
    article.case-sec .contents-area .cont {
        flex-wrap: wrap;
        gap: 20px;
        padding: 35px 0 35px calc((45 / 1200) * 100%);
    }

    article.case-sec .contents-area .cont .img-area {
        width: 88%;
        max-width: 350px;
        margin: auto;
    }

    article.case-sec .contents-area .cont {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    article.case-sec .contents-area .cont .text-area {
        width: 100%;
    }

    article.case-sec .contents-area .cont .text-area h3 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    article.case-sec .contents-area .cont .text-area .text-wrapper {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

}

/*sp*/
@media screen and (max-width:599px) {
    article.case-sec {
        padding: 75px 0 75px;
    }

    article.case-sec .contents-area .img-area p {
        left: -8px;
    }
}

/*=====================================
*
*feature-sec
*
=======================================*/
article.feature-sec>.inner {
    padding: 100px 0 200px;
    background-color: rgba(223, 183, 127, 0.1);
}

@media screen and (max-width:1500px) {
    article.feature-sec>.inner {
        padding: 100px 0 100px;
    }
}

article.feature-sec .contents-area .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

article.feature-sec .contents-area .cont .hd-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(((600 - 25) / 1200) * 100%);
}

article.feature-sec .contents-area .cont+.cont {
    margin-top: 50px;
}

article.feature-sec .contents-area .cont h3 {
    font-family: var(--font-family-title);
    white-space: nowrap;
    letter-spacing: 0.05em;
    font-size: clamp(2.0rem, 1.56vw, 3.0rem);
}

article.feature-sec .contents-area .cont p {
    width: 50%;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
}

article.feature-sec .contents-area .cont span {
    display: block;
    height: 2px;
    width: 100%;
    margin-left: 25px;
    margin-bottom: 5px;
    background-color: #141e1e;
}

article.feature-sec .deco-area {
    height: 155px;
    background-color: #dfb77f;
}


@media screen and (max-width:1500px) {
    article.feature-sec .deco-area {
        height: 100px;
    }
}

article.feature-sec .deco-area .inner {
    position: relative;
    max-width: 1420px;
    margin: auto;
}

@media screen and (max-width:1500px) {
    article.feature-sec .deco-area .inner {
        margin: 0 3%;
    }
}

article.feature-sec .deco-area .img-cont {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-25%);
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
    width: calc((870 / 1420) * 100%);
    padding: 10px;
    border-radius: 3px;
    background-color: #dfb77f;
}

/*tb*/
@media screen and (max-width:1024px) {
    article.feature-sec .contents-area .cont .hd-area {
        width: calc((54% - 20px));
    }

    article.feature-sec .contents-area .cont h3 {
        font-size: clamp(1.8rem, 1.56vw, 3.0rem);
    }

    article.feature-sec .contents-area .cont span {
        margin-left: 12px;
    }

    article.feature-sec .contents-area .cont p {
        width: 46%;
    }
}

@media screen and (max-width:767px) {
    article.feature-sec>.inner {
        padding: 100px 0 70px;
    }

    article.feature-sec .contents-area .cont {
        display: block;
    }

    article.feature-sec .contents-area .cont h3 {
        font-size: 2.0rem;
        text-align: center;
    }

    article.feature-sec .contents-area .cont .hd-area {
        display: block;
        width: 100% !important;
    }

    article.feature-sec .contents-area .cont span {
        width: 70px !important;
        height: 2px;
        margin: 10px auto 25px;
    }

    article.feature-sec .contents-area .cont p {
        width: 100%;
        font-size: 1.6rem;
    }

    article.feature-sec .deco-area {
        height: auto;
    }

    article.feature-sec .deco-area .img-cont {
        transform: translateY(0);
        position: relative;
        width: 100%;
    }
}

/*sp*/
@media screen and (max-width:767px) {
    article.feature-sec .deco-area .img-cont {
        padding: 10px 0;
    }
}

@media screen and (max-width:599px) {
    article.feature-sec {
        padding-top: 0;
    }

    article.feature-sec>.inner {
        padding-top: 75px;
        padding-bottom: 70px;
    }
}

/*=====================================
*
*showRoom-sec
*
=======================================*/
article.showRoom-sec {
    margin-top: 170px;
    padding-bottom: 100px;
}

article.showRoom-sec .contents-area {
    display: grid;
    justify-content: space-between;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    row-gap: 83px;
    margin-top: 85px;
}

article.showRoom-sec .contents-area .cont h3 {
    font-size: clamp(2.0rem, 1.56vw, 3.0rem);
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}

article.showRoom-sec .contents-area .cont .inner {
    display: grid;
    grid-template-columns: auto calc((240 / 579 * 100%));
}

article.showRoom-sec .contents-area .cont .inner .text p {
    font-size: clamp(1.2rem, 0.83vw, 1.6rem);
    font-weight: 500;
    line-height: 2.0;
}

article.showRoom-sec .contents-area .cont .inner .text a {
    display: block;
    color: inherit;
}

article.showRoom-sec .contents-area .cont .inner .text>p:last-of-type {
    padding-top: calc((32 / 16) * 1.0em);
}

article.showRoom-sec .contents-area .cont .inner .text p.map {
    display: flex;
    align-items: center;
    gap: 9px;
}

article.showRoom-sec .contents-area .cont .inner .text p.map img {
    min-width: fit-content;
}

article.showRoom-sec .contents-area .cont .inner .img-area img {
    aspect-ratio: 240 / 177;
    max-height: 177px;
    object-fit: cover;
}

article.showRoom-sec .contents-area .cont .inner .img-area .btn {
    width: 100%;
    height: 35px;
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    margin-top: 1.0em;
}

article.showRoom-sec .contents-area .cont .inner .img-area .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: #8192c1;
    border-radius: 5px;
    border: solid 1px #8192c1;
    transition: 0.3s ease-in-out;
}

@media (any-hover:hover) {
    article.showRoom-sec .contents-area .cont .inner .img-area .btn a:hover {
        color: #8192c1;
        background-color: #fff;
    }
}

/*tb*/
@media screen and (max-width:1024px) {
    article.showRoom-sec .contents-area .cont .inner .img-area .btn {
        font-size: 14px;
    }
}

@media screen and (max-width:900px) {
    article.showRoom-sec .hd-area02 p.read-text {
        text-align: start;
    }
}


@media screen and (max-width:767px) {
    article.showRoom-sec .contents-area {
        grid-template-columns: 1fr;
        gap: 0;
    }

    article.showRoom-sec .contents-area .cont+.cont {
        margin-top: 50px;
    }

    article.showRoom-sec .contents-area .cont .inner .text p {
        font-size: 1.6rem;
    }

    article.showRoom-sec .contents-area .cont .inner .img-area {
        text-align: center;
    }

}

/*sp*/
@media screen and (max-width:599px) {
    article.showRoom-sec {
        margin-top: 75px;
        padding-bottom: 75px;
    }

    article.showRoom-sec .contents-area {
        margin-top: 55px;
    }

    article.showRoom-sec .contents-area .cont+.cont {
        margin-top: 30px;
    }

    article.showRoom-sec .contents-area .cont h3 {
        margin-bottom: 8px;
    }

    article.showRoom-sec .contents-area .cont .inner {
        gap: 5px;
    }

    article.showRoom-sec .contents-area .cont .inner .text p {
        font-size: 1.3rem;
    }

    article.showRoom-sec .contents-area .cont .inner .img-area .btn {
        font-size: 1.3rem;
    }


    article.showRoom-sec .contents-area .cont .inner .img-area .btn a {
        border-radius: 3px;
    }

}

/*=====================================
*
*faq-sec
*
=======================================*/
article.faq-sec {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgba(223, 183, 127, 0.2);
}

article.faq-sec .contents-area .cont+.cont {
    margin-top: 35px;
}

article.faq-sec .contents-area .cont :is(.question, .answer) .inner {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.0rem;
    font-weight: 600;
}

article.faq-sec .contents-area .cont :is(.question, .answer) .recoleta {
    font-weight: 400;
    font-size: 1.5em;
    min-width: fit-content;
}


article.faq-sec .contents-area .cont .question {
    position: relative;
    padding: 15px 120px 15px 15px;
    background-color: rgba(223, 183, 127, 0.1);
    cursor: pointer;
}

article.faq-sec .contents-area .cont .question.active {
    background-color: rgba(223, 183, 127, 0.3);
}

article.faq-sec .contents-area .cont .question .recoleta {
    color: #8192c1;
}

article.faq-sec .contents-area .cont .question .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 40px;
    width: 40px;
    height: 40px;
    background-color: #8192c1;
    border-radius: 5px;
    cursor: pointer;
    transform: rotate(180deg);

}

article.faq-sec .contents-area .cont .question.active .btn {
    transform: rotate(0);
}

article.faq-sec .contents-area .cont .answer {
    display: none;
    position: relative;
    padding: 45px 15px;
    background-color: #fff;
    border: solid 1px #dfb77f;
}

article.faq-sec .contents-area .cont:first-of-type .answer {
    display: block;
}

article.faq-sec .contents-area .cont .answer .recoleta {
    color: #c1819b;
}

/*sp*/
@media screen and (max-width:599px) {
    article.faq-sec {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    article.faq-sec .contents-area .cont .question {
        padding: 15px 70px 15px 15px;
    }

    article.faq-sec .contents-area .cont :is(.question, .answer) .inner {
        font-size: 1.6rem;
    }


    article.faq-sec .contents-area .cont .question .btn {
        right: 20px;
        width: 30px;
        height: 30px;

    }

    article.faq-sec .contents-area .cont .question .btn img {
        width: 18px;
    }

    article.faq-sec .contents-area .cont .answer {
        padding: 15px;
    }
}

/*=====================================
*
*foot-cont
*
=======================================*/
article.contact-us {
    padding: 60px 0;
    background-color: #f2d180;
}

article.contact-us .inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin: auto;
}

article.contact-us .contact-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background-color: #faf7e8;
    margin-right: 32px;
    padding: 32px 40px;
}

article.contact-us .catalog {
    flex: 1;
    background-color: #f1e6e8;
    padding: 32px 40px;
    display: flex;
    flex-direction: row;
}

article.contact-us .contact-box .contact-logo {
    z-index: -1;
    right: -20px;
    position: absolute;
    width: 255px;
    bottom: 20px;
}

article.contact-us .contact-box .contact-title {
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 1px;
    color: #141e1e;
    font-family: Recoleta, serif;
}

article.contact-us .contact-box .contact-detail {
    flex: 1;
    font-family: var(--font-family-title-ja-change-main-en);
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    color: #141e1e;
    margin: 24px 0 32px 0;
}

article.contact-us .contact-box .contact-button-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: var(--font-family-main);
    transition: all .3s ease-in-out;
    padding: 16px 24px;
    border: 0;
    cursor: pointer;
    border-radius: 2px;
    padding-top: 0;
    padding-bottom: 0;
    height: 48px;
    background-color: #006462;
    color: #fff;
}

article.contact-us .contact-box .contact-button-box a:hover {
    background-color: #00453f;
}

article.contact-us .catalog .catalog-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 48px;
}

article.contact-us .catalog .catalog-container .catalog-title {
    font-style: normal;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 1px;
    color: #141e1e;
    font-family: Recoleta, serif;
}

article.contact-us .catalog .catalog-container .catalog-detail {
    flex: 1;
    font-family: var(--font-family-title-ja-change-main-en);
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    color: #141e1e;
    margin: 24px 0 32px 0;
}

article.contact-us .catalog .catalog-container .catalog-button-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: var(--font-family-main);
    transition: all .3s ease-in-out;
    padding: 16px 24px;
    border: 0;
    cursor: pointer;
    border-radius: 2px;
    padding-top: 0;
    padding-bottom: 0;
    height: 48px;
    background-color: #006462;
    color: #fff;
}

article.contact-us .catalog .catalog-container .catalog-button-box a:hover {
    background-color: #00453f;
}

article.contact-us .catalog .catalog-img .catalog-logo {
    width: 120px;
}

/*tb*/
@media screen and (max-width:1024px) {
    article.contact-us .contact-box .contact-detail {
        font-size: 1.7rem;
    }


    article.contact-us .catalog .catalog-container .catalog-detail {
        font-size: 1.7rem;
    }
}

@media screen and (max-width:900px) {
    article.contact-us .inner {
        flex-direction: column;
    }

    article.contact-us .contact-box {
        margin-right: 0;
        margin-bottom: 16px;
    }

    article.contact-us .catalog .catalog-img .catalog-logo {
        width: 110px;
    }
}

/*sp*/
@media screen and (max-width:600px) {
    article.contact-us .contact-box .contact-logo {
        width: 164.57px;
    }
}

@media screen and (max-width:560px) {
    article.contact-us .contact-box {
        padding: 24px 20px;
    }

    article.contact-us .contact-box .contact-title {
        font-size: 3.2rem;
    }

    article.contact-us .contact-box .contact-detail {
        font-size: 1.6rem;
    }

    article.contact-us .catalog {
        padding: 24px 20px;
    }

    article.contact-us .catalog .catalog-container .catalog-title {
        font-size: 3.2rem;
    }

    article.contact-us .catalog .catalog-container .catalog-detail {
        font-size: 1.8rem;
    }

}

/*=====================================
*
*company-info
*
=======================================*/
article.company-info {
    padding: 100px 0 100px;
}

article.company-info .contents-area {
    margin: auto;
    max-width: 800px;
}

article.company-info .contents-area .grid-table {
    display: grid;
    grid-template-columns: calc((230 / 800) * 100%) 1fr;
    font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    font-weight: 600;
    letter-spacing: 0.05em;
}

article.company-info .contents-area .grid-table :is(.grid-hd, .grid-cont) {
    padding: 1.0em 0;
    border-bottom: 1px solid #efedeb;
}

article.company-info .contents-area .grid-table .grid-hd {
    padding-left: 10px;
}

article.company-info .contents-area .grid-table .grid-cont {
    padding-right: 10px;
}

/*tb*/
@media screen and (max-width:900px) {
    article.company-info .contents-area {
        padding: 0 3%;
    }
}

/*sp*/
@media screen and (max-width:599px) {
    article.company-info {
        padding: 75px 0;
    }

    article.company-info .contents-area .grid-table {
        grid-template-columns: auto 1fr;
        font-size: clamp(1.6rem, 1.04vw, 2.0rem);
    }

    article.company-info .contents-area .grid-table .grid-hd {
        padding-right: 15px;
    }
}

/*=====================================
*
*footer
*
=======================================*/
footer {
    position: relative;
    z-index: 9991;
}

footer .foot-menu {
    padding: 30px 3% 20px;
    background-color: #006462;
}

footer .foot-menu .inner .logo-area {
    max-width: 492px;
    margin: auto;
}

footer .foot-menu .inner ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

footer .foot-menu .inner ul li a {
    font-size: clamp(1.0rem, 0.73vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

footer .copyright p {
    font-size: clamp(1.0rem, 0.73vw, 1.4rem);
    color: #141e1e;
    text-align: center;
    padding: calc((10 / 14) * 1.0em) 3%;
    background-color: #fff;
}

/*sp*/
@media screen and (max-width:599px) {
    footer .foot-menu {
        padding: 30px 1% 20px;
        background-color: #006462;
    }

    footer .foot-menu .inner ul {
        gap: 10px;
        margin-top: 20px;
    }
}