@charset "utf-8";
@import "anime.css";

/*
------------
waso.css
------------
*/
/* kv_area */
#kv_area {
    width: 100vw;
    height: 100vh;
    opacity: 0;
    background-image: url(../../images/content/waso/kv_img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: waso_kv;
    animation-timing-function: ease;
    animation-duration: 2s;
    animation-delay: 0.25s;
    animation-fill-mode: forwards;
}
#kv_area .inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
#kv_area .inner h2 {
    width: calc(100vw * 1003 / 1400);
    max-width: 1003px;
}
@media only screen and (max-width: 768px) {
    #kv_area {
        height: 100dvh;
        background-position: center;
    }
    #kv_area .inner h2 {
        width: calc(100vw * 300 / 375);
        max-width: 100vw;
        position: relative;
        bottom: 20px;
        right: 20px;
    }
}
/* introduction_area */
#introduction_area {
    margin: 150px 0 0 0;
}
#introduction_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
}
#introduction_area .inner article {
    display: flex;
    justify-content: flex-end;
    gap: min(calc(100vw * 125 / 1400), 125px);
}
#introduction_area .inner article:not(:first-child) {
    margin: 170px 0 0 0;
}
#introduction_area .inner article:nth-child(1),
#introduction_area .inner article:nth-child(3)  {
    flex-direction: row-reverse;
}
#introduction_area .inner article:nth-child(2),
#introduction_area .inner article:nth-child(4) {
    justify-content: flex-end;
}
#introduction_area .inner article p.catch {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: min(calc(100vw * 28 / 1400), 2.8rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 2.5;
    display: inline;
}
#introduction_area .inner article p.catch span {
    position: relative;
}
#introduction_area .inner article p.catch span::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: -5px;
}
#introduction_area .inner article p.catch em {
    display: inline-block;
    font-style: normal;
    margin: 0 0 -0.6em 0;
}
#introduction_area .inner article .element {
    width: calc(100vw * 710 / 1400);
    max-width: 710px;
}
#introduction_area .inner article .element figure {
    width: calc(100vw * 710 / 1400);
    max-width: 710px;
    height: auto;
    aspect-ratio: 710 / 390;
}
#introduction_area .inner article .element h3 {
    margin: 65px 0 0 0;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
#introduction_area .inner article .element p {
    margin: 15px 0 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
/* article 01 */
#introduction_area .inner article:nth-child(1) p.catch {
    margin: min(calc(100vw * 195 / 1400), 195px) 0 0 0;
}
/* article 02*/
#introduction_area .inner article:nth-child(2) {
    position: relative;
    right: 100px;
}
#introduction_area .inner article:nth-child(2) .element figure:nth-child(1) {
    margin: 65px 0 0 0;
}
#introduction_area .inner article:nth-child(2) .element figure:nth-child(2) {
    width: calc(100vw * 380 / 1400);
    max-width: 380px;
    height: auto;
    aspect-ratio: 380 / 280;
    margin: 90px 0 0 auto;
    position: relative;
    right: -100px;
}
/* article 03 */
#introduction_area .inner article:nth-child(3) {
    gap: min(calc(100vw * 85 / 1400), 85px);
}
#introduction_area .inner article:nth-child(3) .element {
    margin: 65px 0 0 0;
    width: calc(100vw * 640 / 1400);
    max-width: 640px;
}
#introduction_area .inner article:nth-child(3) .element .product_list {
    width: calc(100vw * 573 / 1400);
    max-width: 573px;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: min(calc(100vw * 8 / 1400), 8px);
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li {
    width: calc(100vw * 282 / 1400);
    max-width: 282px;
    height: auto;
    aspect-ratio: 282 / 197;
    position: relative;
    cursor: pointer;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 6px solid var(--yellow);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li svg {
    width: 29px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s ease, height .3s ease;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li:hover::before {
    opacity: 1;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li:hover svg {
    width: 35px;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li h4 {
    opacity: 1;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    background-color: var(--white);
    padding: 6px 12px;
    pointer-events: none;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li h4 span {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li h4 span em {
    font-style: normal;
    display: inline-block;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li h4 span em:nth-of-type(1) {
    margin: 0 0 0 -0.5em;
}
#introduction_area .inner article:nth-child(3) .element .product_list ul li h4 span em:nth-of-type(2) {
    margin: 0 -0.5em 0 0;
}
/* article 04 */
#introduction_area .inner article:nth-child(4) .element {
    margin: 65px 0 0 0;
}
@media only screen and (max-width: 768px) {
    #introduction_area {
        margin: 85px 0 0 0;
    }
    #introduction_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #introduction_area .inner article {
        display: block;
    }
    #introduction_area .inner article:not(:first-child) {
        margin: 65px 0 0 0;
    }
    #introduction_area .inner article p.catch {
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        font-size: 1.8rem;
        line-height: 2;
    }
    #introduction_area .inner article p.catch span::before {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: -3px;
        left: 0;
    }
    #introduction_area .inner article .element {
        width: 100%;
        max-width: 100%;
        margin: 25px 0 0 0;
    }
    #introduction_area .inner article .element figure {
        width: 100%;
        max-width: 100%;
    }
    #introduction_area .inner article .element h3 {
        margin: 35px 0 0 0;
        font-size: 2rem;
        line-height: 1.6;
    }
    #introduction_area .inner article .element p {
        margin: 10px 0 0 0;
        line-height: 1.6;
    }
    #introduction_area .inner article:nth-child(1) p.catch {
        margin: 0;
    }
    #introduction_area .inner article:nth-child(2) {
        right: 0;
    }
    #introduction_area .inner article:nth-child(2) .element figure:nth-child(2) {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0 0;
        right: 0;
    }
    #introduction_area .inner article:nth-child(2) .element figure:nth-child(1) {
        margin: 0 0 0 0;
    }
    #introduction_area .inner article:nth-child(3) .element {
        margin: 35px 0 0 0;
        width: 100%;
        max-width: 100%;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul {
        gap: min(calc(100vw * 10 / 375), 10px);
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li {
        width: calc((100% / 2) - min(calc(100vw * 5 / 375), 5px));
        max-width: calc((100% / 2) - min(calc(100vw * 5 / 375), 5px));
        aspect-ratio: 282 / 282;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li::before {
        content: none;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li svg {
        width: 26px;
        transition: none;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li:hover svg {
        width: 26px;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li h4 {
        bottom: 5px;
        right: 5px;
        font-size: 1rem;
        line-height: 1.2;
        padding: 3px 6px;
    }
    #introduction_area .inner article:nth-child(3) .element .product_list ul li h4 span {
        font-size: 0.9rem;
        display: block;
        letter-spacing: 0.025em;
    }
    #introduction_area .inner article:nth-child(4) .element {
        margin: 35px 0 0 0;
    }
}
/* case_area */
#case_area {
    margin: 150px 0 0 0;
    padding: 150px 0;
    background-color: #f7f7f7;
}
#case_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
#case_area .inner h3 {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.5;
}
#case_area .inner p {
    margin: 45px 0 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
#case_area .inner ul {
    width: calc(100vw * 900 / 1400);
    max-width: 900px;
    margin: 65px auto 0 auto;
    display: flex;
    justify-content: center;
    gap: min(calc(100vw * 20 / 1400), 20px);
}
#case_area .inner ul li {
    width: calc((100% - min(calc(100vw * 440 / 1400), 440px)));
}
@media only screen and (max-width: 768px) {
    #case_area {
        margin: 65px 0 0 0;
        padding: 65px 0;
    }
    #case_area .inner {
        width: 85vw;
        max-width: 85vw;
        text-align: left;
    }
    #case_area .inner h3 {
        font-size: 2.4rem;
    }
    #case_area .inner p {
        margin: 25px 0 0 0;
        text-align: justify;
    }
    #case_area .inner ul {
        width: 100%;
        max-width: 100%;
        margin: 45px 0 0 0;
        display: block;
    }
    #case_area .inner ul li {
        width: 100%;
    }
    #case_area .inner ul li:not(:first-child) {
        margin: 10px 0 0 0;
    }
}
/* material_area */
#material_area {
    margin: 150px 0 0 0;
}
#material_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
}
#material_area .inner .item h3 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    padding: 0 0 0 60px;
}
#material_area .inner .item h3::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#material_area .inner .item h4 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 35px 0 0 0;
}
#material_area .inner .item p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 15px 0 0 0;
}
#material_area .inner .list {
    margin: 65px 0 0 0;
    display: flex;
    justify-content: space-between;
}
#material_area .inner .list dl {
    width: calc(100% / 3 - 40px);
}
#material_area .inner .list dl dt {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
#material_area .inner .list dl dd {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 10px 0 0 0;
}
@media only screen and (max-width: 768px) {
    #material_area {
        margin: 65px 0 0 0;
    }
    #material_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #material_area .inner .item {
        width: 100%;
        margin: 45px 0 0 0;
    }
    #material_area .inner .item h3 {
        font-size: 1.6rem;
        padding: 0 0 0 30px;
    }
    #material_area .inner .item h3::before {
        width: 15px;
    }
    #material_area .inner .item h4 {
        line-height: 1.6;
        margin: 25px 0 0 0;
    }
    #material_area .inner .item p {
        line-height: 1.6;
        text-align: justify;
        margin: 15px 0 0 0;
    }
    #material_area .inner .list {
        margin: 45px 0 0 0;
        display: block;
    }
    #material_area .inner .list dl {
        width: 100%;
        background-color: #f7f7f7;
        padding: 20px;
    }
    #material_area .inner .list dl:not(:first-child) {
        margin: 10px 0 0 0;
    }
    #material_area .inner .list dl dt {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    #material_area .inner .list dl dd {
        line-height: 1.6;
    }
}
/* support_area */
#support_area {
    margin: 150px 0 0 0;
}
#support_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
}
#support_area .inner .element {
    width: 100%;
    position: relative;
    padding: 300px 0 0 0;
}
#support_area .inner .element figure {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100vw * 710 / 1400);
    max-width: 710px;
    height: auto;
    aspect-ratio: 710 / 390;
}
#support_area .inner .element .item {
    width: calc(100vw * 580 / 1400);
    max-width: 580px;
    padding: 90px 90px 0 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}
#support_area .inner .element .item h3 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    padding: 0 0 0 60px;
}
#support_area .inner .element .item h3::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#support_area .inner .element .item h4 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 35px 0 0 0;
}
#support_area .inner .element .item p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    text-align: justify;
    margin: 15px 0 0 0;
}
@media only screen and (max-width: 768px) {
    #support_area {
        margin: 65px 0 0 0;
    }
    #support_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #support_area .inner .element {
        padding: 0;
    }
    #support_area .inner .element figure {
        position: static;
        width: 100%;
        max-width: 100%;
    }
    #support_area .inner .element .item {
        width: 100%;
        max-width: 100%;
        padding: 0;
        background-color: transparent;
        margin: 30px 0 0 0;
    }    
    #support_area .inner .element .item h3 {
        font-size: 1.6rem;
        padding: 0 0 0 30px;
    }
    #support_area .inner .element .item h3::before {
        width: 15px;
    }
    #support_area .inner .element .item h4 {
        line-height: 1.6;
        margin: 25px 0 0 0;
    }
    #support_area .inner .element .item p {
        line-height: 1.6;
        text-align: justify;
        margin: 15px 0 0 0;
    }
}
/* culture_area */
#culture_area {
    margin: 150px 0 0 0;
}
#culture_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
}
#culture_area .inner article {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: min(calc(100vw * 125 / 1400), 125px);
}
#culture_area .inner article p.catch {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: min(calc(100vw * 28 / 1400), 2.8rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 2.5;
    display: inline;
}
#culture_area .inner article p.catch span {
    position: relative;
}
#culture_area .inner article p.catch span::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: -5px;
}
#culture_area .inner article p.catch em {
    display: inline-block;
    font-style: normal;
    margin: 0 0 -0.6em 0;
}
#culture_area .inner article .element {
    width: calc(100vw * 710 / 1400);
    max-width: 710px;
    margin: 65px 0 0 0;
}
#culture_area .inner article .element figure {
    width: calc(100vw * 710 / 1400);
    max-width: 710px;
    height: auto;
    aspect-ratio: 710 / 390;
}
#culture_area .inner article .element h3 {
    margin: 65px 0 0 0;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
#culture_area .inner article .element p {
    margin: 15px 0 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
@media only screen and (max-width: 768px) {
    #culture_area {
        margin: 65px 0 0 0;
    }
    #culture_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #culture_area .inner article {
        display: block
    }
    #culture_area .inner article p.catch {
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        font-size: 1.8rem;
        line-height: 2;
    }
    #culture_area .inner article p.catch span::before {
        width: 100%;
        height: 1px;
        top: auto;
        bottom: -3px;
        left: 0;
    }
    #culture_area .inner article .element {
        width: 100%;
        max-width: 100%;
        margin: 25px 0 0 0;
    }
    #culture_area .inner article .element figure {
        width: 100%;
        max-width: 100%;
    }
    #culture_area .inner article .element h3 {
        margin: 35px 0 0 0;
        font-size: 2rem;
        line-height: 1.6;
    }
    #culture_area .inner article .element p {
        margin: 10px 0 0 0;
        line-height: 1.6;
    }
}
/* faq_area */
#faq_area {
    margin: 150px 0 0 0;
}
#faq_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
}
#faq_area .inner h3 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}
#faq_area .inner .faq_list {
    margin: 45px 0 0 0;
}
#faq_area .inner .faq_list details {
    background-color: #f2f2f2;
}
#faq_area .inner .faq_list details:not(:first-child) {
    margin: 5px 0 0 0;
}
#faq_area .inner .faq_list details summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    padding: 20px 30px;
    transition: bakcground-color .3s ease, color .3s ease;
}
#faq_area .inner .faq_list details summary:hover {
    background-color: var(--black);
    color: #fff;
}
#faq_area .inner .faq_list details summary::-webkit-details-marker {
    display: none;
}
#faq_area .inner .faq_list details summary::before,
#faq_area .inner .faq_list details summary::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 16px;
    height: 2px;
    background: var(--black);
    transition: .3s ease;
}
#faq_area .inner .faq_list details summary:hover::before,
#faq_area .inner .faq_list details summary:hover::after {
    background: var(--white);
}
#faq_area .inner .faq_list details summary::before {
    transform: translateY(-50%);
}
#faq_area .inner .faq_list details summary::after {
    transform: translateY(-50%) rotate(90deg);
}
#faq_area .inner .faq_list details[open] summary::after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}
#faq_area .inner .faq_list details .answer {
    padding: 15px 30px 30px 30px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}
@media only screen and (max-width: 768px) {
    #faq_area {
        margin: 65px 0 0 0;
    }
    #faq_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #faq_area .inner h3 {
        font-size: 2.4rem;
    }
    #faq_area .inner .faq_list {
        margin: 30px 0 0 0;
    }
    #faq_area .inner .faq_list details summary {
        line-height: 1.6;
        padding: 15px 50px 15px 20px;
    }
    #faq_area .inner .faq_list details summary:hover {
        background-color: #f2f2f2;
        color: var(--black);
    }
    #faq_area .inner .faq_list details summary:hover::before,
    #faq_area .inner .faq_list details summary:hover::after {
        background: var(--black);
    }
    #faq_area .inner .faq_list details .answer {
        padding: 15px 20px 20px 20px;
        line-height: 1.6;
    }
}
/* waso_contact_area */
#waso_contact_area {
    margin: 200px 0 0 0;
    padding: 150px 0;
    background-image: url(../../images/content/waso/contactBg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
#waso_contact_area::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
}
#waso_contact_area .inner {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
    margin: 0 auto;
    color: var(--white);
    position: relative;
    z-index: 1;
}
#waso_contact_area .inner h3 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    padding: 0 0 0 60px;
}
#waso_contact_area .inner h3::before {
    content: "";
    width: 40px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#waso_contact_area .inner h4 {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin: 35px 0 0 0;
}
#waso_contact_area .inner p {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
    text-align: justify;
    margin: 15px 0 0 0;
}
#waso_contact_area .inner ul {
    margin: 45px 0 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#waso_contact_area .inner ul li {
    width: calc(100% / 3 - 6px);
}
#waso_contact_area .inner ul li a {
    display: block;
    border: 1px solid var(--white);
    background-color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 35px 0;
    position: relative;
    transition: color .3s ease, background-color .3s ease;
}
#waso_contact_area .inner ul li a svg {
    width: 14px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    fill: var(--black);
    transition: fill .3s ease,
}
#waso_contact_area .inner ul li a:hover {
    background-color: var(--black);
    color: var(--white);
}
#waso_contact_area .inner ul li a:hover svg {
    fill: var(--white);
}
@media only screen and (max-width: 768px) {
    #waso_contact_area {
        margin: 65px 0 0 0;
        padding: 65px 0;
    }
    #waso_contact_area .inner {
        width: 85vw;
        max-width: 85vw;
    }
    #waso_contact_area .inner h3 {
        font-size: 1.6rem;
        padding: 0 0 0 30px;
    }
    #waso_contact_area .inner h3::before {
        width: 15px;
    }
    #waso_contact_area .inner h4 {
        font-size: 1.8rem;
        line-height: 1.6;
        margin: 25px 0 0 0;
    }
    #waso_contact_area .inner p {
        line-height: 1.6;
        text-align: justify;
        margin: 15px 0 0 0;
    }
    #waso_contact_area .inner ul {
        margin: 30px 0 0 0;
        display: block;
    }
    #waso_contact_area .inner ul li {
        width: 100%;
    }
    #waso_contact_area .inner ul li:not(:first-child) {
        margin: 5px 0 0 0;
    }
    #waso_contact_area .inner ul li a {
        padding: 25px 0;
        transition: none;
    }
    #waso_contact_area .inner ul li a svg {
        transition: none;
    }
    #waso_contact_area .inner ul li a:hover {
        background-color: var(--white);
        color: var(--black);
    }
    #waso_contact_area .inner ul li a:hover svg {
        fill: var(--black);
    }
}
/* catch */
#introduction_area .inner article p.catch.is-anime span::before,
#culture_area .inner article p.catch.is-anime span::before {
    height: 0;
    transition: height 1s ease 0s;
}
#introduction_area .inner article p.catch.is-show span::before,
#culture_area .inner article p.catch.is-show span::before {
    height: 100%;
}
@media only screen and (max-width: 768px) {
    #introduction_area .inner article p.catch.is-anime span::before,
    #culture_area .inner article p.catch.is-anime span::before {
        width: 0;
        height: 1px;
        transition: width 1s ease 0s;
    }
    #introduction_area .inner article p.catch.is-show span::before,
    #culture_area .inner article p.catch.is-show span::before {
        width: 100%;
        height: 1px;
    }
}
/* modal */
:root {
    --brown: #7a6447;
}
body.modal_open {
    overflow: hidden;
}
.modal_wrap {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.modal_wrap.show {
    opacity: 1;
    visibility: visible;
}
.modal_wrap .modal {
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.modal_wrap .modal.show {
    transform: translateY(0);
}
.modal_wrap .modal .modal_inner {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding: 125px 0;
}
.modal_wrap .modal .modal_close {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    text-align: inherit;
    line-height: inherit;
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2;
    transition: opacity .3s ease;
}
.modal_wrap .modal .modal_close svg {
    width: 30px;
    height: auto;
    aspect-ratio: 1 / 1;
}
.modal_wrap .modal .modal_close:hover {
    opacity: .6;
}
.modal_inner .head_area,
.modal_inner p.lead,
.modal_inner .info_area,
.modal_inner .img_area {
    width: calc(100vw * 1100 / 1400);
    max-width: 1100px;
}
.modal_inner .head_area {
    margin: 0 auto;
}
.modal_inner .head_area span {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
.modal_inner .head_area h3 {
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
.modal_inner .head_area h3 span {
    font-size: 2rem;
}
.modal_inner .head_area p {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
.modal_inner p.lead {
    margin: 35px auto 0 auto;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
.modal_inner .info_area {
    margin: 65px auto 0 auto;
    padding: 65px 0 0 0;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: min(calc(100vw * 50 / 1400), 50px);
}
.modal_inner .info_area article {
    width: calc(100% / 2 - min(calc(100vw * 50 / 1400), 50px));
}
.modal_inner .info_area article h4 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0 0 10px 0;
}
.modal_inner .info_area article dl {
    margin: 25px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 5px 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.6;
}
.modal_inner .info_area article dl dt {
    width: 180px;
    background-color: #f7f7f7;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_inner .info_area article dl dd {
    width: calc(100% - 180px);
    padding: 15px;
}
.modal_inner .img_area {
    margin: 125px auto 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: min(calc(100vw * 25 / 1400), 25px);
}
.modal_inner .img_area figure {
    width: calc(100vw * 350 / 1400);
    max-width: 350px;
}
.modal_inner .img_area figure figcaption {
    margin: 10px 0 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
}
@media only screen and (max-width: 768px) {
    .modal_wrap .modal .modal_inner {
        padding: 85px 0;
    }
    .modal_wrap .modal .modal_close {
        transition: none;
    }
    .modal_wrap .modal .modal_close svg {
        width: 26px;
    }
    .modal_wrap .modal .modal_close:hover {
        opacity: 1;
    }
    .modal_inner .head_area,
    .modal_inner p.lead,
    .modal_inner .info_area,
    .modal_inner .img_area {
        width: 85vw;
        max-width: 85vw;
    }
    .modal_inner .head_area h3 {
        font-size: 2.6rem;
    }
    .modal_inner .head_area h3 span {
        font-size: 1.4rem;
    }
    .modal_inner .head_area p {
        line-height: 1.6;
    }
    .modal_inner p.lead {
        margin: 30px auto 0 auto;
        line-height: 1.6;
    }
    .modal_inner .info_area {
        margin: 45px auto 0 auto;
        padding: 45px 0 0 0;
        display: block;
    }
    .modal_inner .info_area article {
        width: 100%;
    }
    .modal_inner .info_area article:nth-child(2) {
        margin: 45px 0 0 0;
    }
    .modal_inner .info_area article dl dt {
        width: calc(100vw * 120 / 375);
        padding: 10px;
        font-size: 1.4rem;
    }
    .modal_inner .info_area article dl dd {
        width: calc(100% - (100vw * 120 / 375));
        padding: 10px;
        font-size: 1.4rem;
    }
    .modal_inner .img_area {
        margin: 65px auto 0 auto;
        display: block;
    }
    .modal_inner .img_area figure {
        width: 100%;
        max-width: 100%;
    }
    .modal_inner .img_area figure:not(:first-child) {
        margin: 35px 0 0 0;
    }
    .modal_inner .img_area figure figcaption {
        font-size: 1.4rem;
    }
}