@charset "UTF-8";

:root {
    --base-color: #363636;
    --bg-color-pink: #EEE6E7;
    --bg-color-beige: #F0EEEA;
    --bg-color-beige02: #F0EEEB;
    --bg-color-gray: #FAF8F8;
    --base-font: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-jost: "Jost", sans-serif;
    --font-vollkorn: "Vollkorn", serif;
    --font-cardo: "Cardo", serif;
}
body {
    color: var(--base-color);
    font-family: var(--base-font);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--base-font);
    letter-spacing: 0;
    line-height: 1.5;
}
p {
    font-size: 1rem;
}
a {
    color: var(--base-color);
    transition: all 0.4s;
}
img {
    max-width: 100%;
    height: auto;
}
.sp-only {
    display: none !important;
}
.pc-only {
    display: block !important;
}
.bg--smoke {
    background-color: var(--bg-color-beige);
}
.bg--smoke02 {
    background-color: var(--bg-color-beige02);
}
.bg--gray {
    background-color: var(--bg-color-gray);
}
.font--vollkorn {
    font-family: var(--font-vollkorn);
}
.font--cardo {
    font-family: var(--font-cardo);
}
.section-title {
    font-family: var(--font-vollkorn);
    font-size: 3.75rem;
}
@media (max-width: 767px) {

    .sp-only {
        display: block !important;
    }
    .pc-only {
        display: none !important;
    }
    .section-title {
        font-size: 3rem;
    }

}


/*---------------------------------

    animation

---------------------------------*/

.anime-fadeInUp {
    opacity: 0;
    translate: 0 30%;
    transition: opacity 1.2s, translate 1.2s;
}
.anime-fadeInLeft {
    opacity: 0;
    translate: -20%;
    transition: opacity 1.2s, translate 1.2s;
}
.anime-fadeInRight {
    opacity: 0;
    translate: 20%;
    transition: opacity 1.2s, translate 1.2s;
}
.anime-fadeInUp.is-show {
    opacity: 1;
    translate: 0 0;
}
.anime-fadeInLeft.is-show {
    opacity: 1;
    translate: 0;
}
.anime-fadeInRight.is-show {
    opacity: 1;
    translate: 0;
}


/*---------------------------------

    Header

---------------------------------*/

.wsmainwp {
    max-width: 1320px;
}
.logo-black:hover {
    opacity: 0.7;
}
.wsmenu > .wsmenu-list {
    display: flex;
    align-items: center;
}
.wsmenu > .wsmenu-list > li > a {
    position: relative;
    font-size: 1rem;
    letter-spacing: 0;
    text-transform: unset;
}
.wsmenu > .wsmenu-list > li > a::after {
    position: absolute;
    bottom: 15px;
    left: 50%;
    translate: -50%;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.4s;
    content: "";
}
.wsmenu > .wsmenu-list > li > a:hover::after {
    width: calc(100% - 30px);
}
.wsmenu > .wsmenu-list > li a.btn {
    display: inline-flex;
    justify-content: center;
    gap: 0.8em;
    padding: 6px 30px;
    margin: 0 0 0 30px;
    font-size: 1rem;
    line-height: 1.4;
}
.wsmenu > .wsmenu-list > li a.btn::after {
    content: none;
}
.wsmenu > .wsmenu-list > li a.btn svg path {
    transition: fill 0.4s;
}
.wsmenu > .wsmenu-list > li a.btn:hover {
    opacity: 1;
}
.wsmenu > .wsmenu-list > li a.btn:hover svg path {
    fill: #FFF;
}
.wsanimated-arrow span,
.wsanimated-arrow span:before,
.wsanimated-arrow span:after {
    background-color: var(--base-color);
}
@media (max-width: 991px) {

    .wsmenu > .wsmenu-list {
        display: block;
        width: 335px;
    }
    .wsmenu > .wsmenu-list > li > a::after {
        content: none;
    }
    .wsmenu > .wsmenu-list > li a.btn {
        width: 100%;
        padding: 12px 30px;
        margin: 0;
    }
    .wsmenu > .wsmenu-list > li a.btn svg path {
        fill: #FFF;
    }
    .wsmenu > .wsmenu-list > li a.btn:hover {
        opacity: 0.8;
    }

}
@media (max-width: 767px) {

    .wsmobileheader {
        height: 60px;
    }
    .wsactive .wsmobileheader {
        margin-right: 310px;
    }
    .wsmobileheader .smllogo {
        width: 200px;
        margin-top: 15px;
    }
    .wsmobileheader .smllogo a {
        display: inline-block;
    }
    .smllogo img {
        max-width: 100%;
    }
    .wsanimated-arrow {
        margin: 15px 16px 0 0;
    }
    .wsmenu > .wsmenu-list {
        width: 310px;
    }
    .overlapblackbg {
        width: calc(100% - 310px);
    }
    .wsmenu > .wsmenu-list > li > a {
        padding: 7px 32px 7px 20px;
    }

}


/*---------------------------------

    Footer

---------------------------------*/

.footer {
    padding-top: 30px;
    padding-bottom: 20px;
    text-align: center;
}
@media (max-width: 767px) {

    .footer {
        padding-top: 20px;
        padding-bottom: 15px;
    }
    .footer p {
        font-size: 0.875rem;
    }
    .footer p small {
        font-size: 0.75rem;
    }

}


/*---------------------------------

    To Top

---------------------------------*/

#scrollUp {
    display: inline-block;
    position: fixed;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s ease-out, background-color 0.4s;
}
#scrollUp.is-active {
    opacity: 1;
    visibility: visible;
}


/*---------------------------------

    Modal

---------------------------------*/

.hc-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 9999;
}
.hc-modal.is-open {
    display: grid;
	place-items: center;
}
.hc-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.hc-modal-container {
	position: relative;
	width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 60px 50px 50px;
    overflow-y: auto;
    background-color: #fff;
}
.hc-modal-close {
	position: absolute;
    top: 30px;
	right: 30px;
	width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    outline: none;
    background: none;
	cursor: pointer;
}
.hc-modal-close::before,
.hc-modal-close::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 1px;
    background-color: var(--base-color);
    content: "";
}
.hc-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hc-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.hc-modal-title {
    padding: 0 30px;
    margin-bottom: 60px;
    font-size: 1.875rem;
    text-align: center;
}
.hc-modal-img {
    margin-bottom: 20px;
    text-align: center;
}
.hc-modal-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}
.hc-modal-product a {
    display: block;
}
.hc-modal-product a:hover {
    opacity: 0.7;
}
.hc-modal-product-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.hc-modal-product-body {
    padding-top: 20px;
    text-align: center;
}
.hc-modal-product-title {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: bold;
}
.hc-modal-product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    font-size: 0.875rem;
    font-weight: 500;
}
.hc-modal-product-link::after {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    background-image: url(../images/icon_external-link.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.hc-modal-button {
    margin-top: 50px;
    text-align: center;
}
.hc-modal-button button {
    padding: 11px 60px;
    border: 1px solid;
    background-color: #FFF;
    color: var(--base-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}
.hc-modal-button button:hover {
    background-color: var(--base-color);
    color: #FFF;
}
@media (max-width: 767px) {

    .hc-modal-container {
        padding: 60px 20px 50px;
    }
    .hc-modal-title {
        padding: 0;
        margin-bottom: 40px;
        font-size: 1.5rem;
    }
    .hc-modal-close {
        top: 20px;
        right: 20px;
        width: 27px;
        height: 27px;
    }
    .hc-modal-close::before,
    .hc-modal-close::after {
        width: 35px;
    }
    .hc-modal-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .hc-modal-product-title {
        font-size: 0.875rem;
    }
    .hc-modal-product-link {
        font-size: 0.75rem;
    }

}


/*---------------------------------

    Hero

---------------------------------*/

#hero-3 {
    padding-top: 50px;
}
#hero-3:after {
    height: 600px;
    background-color: var(--bg-color-pink);
}
.hero-section {
    z-index: 4;
}
.hero-3-txt {
    padding: 0;
    margin-bottom: 10px;
}
.hero-3-txt p {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-vollkorn);
    font-size: 4.2rem;
    letter-spacing: 0.01em;
}
.slider {
    height: 570px;
}
.slider .slides {
    height: inherit;
}
@media (max-width: 1300px) {

    #hero-3 {
        padding-top: 30px;
    }
    #hero-3:after {
        height: 450px;
    }
    .slider {
        width: 90%;
        height: 400px;
        margin: 0 auto;
    }
    .hero-3-txt p {
        line-height: 1.2;
    }

}
@media (max-width: 1199px) {

    .hero-3-txt p {
        font-size: 3.7rem;
    }

}
@media (max-width: 991px) {

    .hero-3-txt p {
        font-size: 3.5rem;
    }

}
@media (max-width: 767px) {

    #hero-3 {
        margin-top: 60px;
        padding-top: 16px;
    }
    #hero-3:after {
        height: 410px;
    }
    .hero-3-txt p {
        font-size: 1.75rem;
        line-height: 1.6;
    }
    .slider {
        width: 100%;
        height: 400px;
    }
    .slider .slides li img {
        object-fit: cover;
    }

}


/*---------------------------------

    News

---------------------------------*/

#news {
    padding-top: 240px;
    padding-bottom: 120px;
    margin-top: -152px;
}
#news .container {
    max-width: 1140px;
}
#news .row {
    padding-right: 30px;
    padding-left: 30px;
}
#news .row > div {
    max-width: 550px;
    margin: 0 auto;
}
.news-post {
    height: 100%;
    max-height: 405px;
    overflow-y: auto;
    padding: 40px;
    background-color: #FFF;
}
.news-post li {
    border-bottom: 1px solid;
}
.news-post li + li {
    margin-top: 30px;
}
.news-post a {
    display: flex;
    padding-bottom: 10px;
}
.news-post a.no-link {
    cursor: default;
}
.news-post time {
    flex-shrink: 0;
    translate: 0 -1%;
    margin-right: 20px;
    font-family: var(--font-cardo);
    font-size: 1rem;
}
.news-post h3 {
    font-family: var(--font-cardo);
    font-size: 1rem;
}
.news-post a:not(.no-link):hover h3 {
    text-decoration: underline;
}
.timeline {
    max-height: 410px;
    overflow-y: auto;
}
.timeline > div {
    width: 100%;
    max-width: unset !important;
    margin: 0 !important;
}
@media (max-width: 991px) {

    .twitter-timeline {
        width: 100%;
    }

}
@media (max-width: 767px) {

    #news {
        margin-top: -62px;
        padding-top: 158px;
    }
    #news .row {
        padding-right: 0;
        padding-left: 0;
    }
    .news-post {
        padding: 30px 20px;
    }

}


/*---------------------------------

    Line

---------------------------------*/

.line-card a {
    display: block;
}
.line-card-img {
    overflow: hidden;
    background-color: #FFF;
}
.line-card-img img {
    width: 100%;
    aspect-ratio: 420 / 310;
    object-fit: contain;
    transition: scale 0.4s;
}
.line-card-body {
    padding-top: 30px;
}
.line-card-title {
    margin-bottom: 10px;
    font-family: var(--font-vollkorn);
    font-size: 1.875rem;
}
.line-card-text {
    padding: 0 3px;
    font-size: 0.875rem;
    line-height: 1.5;
}
.line-card a:hover .line-card-img img {
    scale: 1.05;
}
@media (max-width: 767px) {

    .line-card-title {
        font-size: 1.75rem;
    }
    .line-card-text {
        font-size: 0.875rem;
    }

}


/*---------------------------------

    Philosophy

---------------------------------*/

#philosophy {
    padding-top: 96px;
    padding-bottom: 230px;
}
.shape--01:after {
    top: 280px;
    bottom: 150px;
    width: 43%;
    height: unset;
    background-color: var(--bg-color-beige02);
}
#philosophy .section-title {
    margin-bottom: 180px;
}
.sub-title {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 0.875rem;
}
.title {
    font-size: 2.75rem;
}
#philosophy .title {
    margin-bottom: 64px;
}
.text {
    font-size: 1rem;
    line-height: 2.2;
}
@media (max-width: 1199px) {

    .shape--01:after {
        top: 310px;
        bottom: 265px;
    }
    .title {
        font-size: 2.375rem;
    }

}
@media (max-width: 991px) {

    #philosophy {
        padding-bottom: 120px;
    }
    #philosophy .section-title {
        margin-bottom: 60px;
    }
    .shape--01:after {
        top: 710px;
        bottom: 80px;
        width: 75%;
    }
    .ct-01 .txt-block {
        margin-top: 0;
    }

}
@media (max-width: 767px) {

    #philosophy {
        padding-bottom: 96px;
    }
    .shape--01:after {
        content: none;
    }
    .title {
        font-size: 1.875rem;
    }
    #philosophy .title {
        margin-bottom: 40px;
    }
    .text {
        font-size: 0.875rem;
    }

}


/*---------------------------------

    Company

---------------------------------*/

.table-wrap {
    max-width: 1040px;
    margin: 0 auto;
}
.table-wrap table {
    width: 100%;
}
.table-wrap table th,
.table-wrap table td {
    padding: 30px 20px;
    border-bottom: 1px solid #C8C6C4;
    font-size: 1rem;
    font-weight: 400;
}
.table-wrap table th {
    width: 200px;
}
@media (max-width: 767px) {

    .table-wrap table th,
    .table-wrap table td {
        padding: 20px 10px;
        font-size: 0.875rem;
    }
    .table-wrap table th {
        width: 120px;
    }

}


/*---------------------------------

    Contact

---------------------------------*/

.button {
    display: inline-block;
    padding: 13px 40px 10px;
    border: 1px solid;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}
.button:hover,
a.button:hover {
    background-color: var(--base-color);
    color: #FFF;
}
.social-list {
    gap: 40px;
}
.social-list li a {
    display: inline-grid;
    place-items: center;
    opacity: 0.8;
}
.social-list li a:hover {
    opacity: 1;
}
.social-list li a span {
    display: inline-grid;
    place-items: center;
}
span[class^="flaticon-"]:before,
span[class*=" flaticon-"]:before {
    font-size: 1.75rem;
}
.social-list li:last-child span[class^="flaticon-"]:before,
.social-list li:last-child span[class*=" flaticon-"]:before {
    font-size: 2rem;
}
