@charset "UTF-8";

:root {
    --theme-color: #916DAA;
    --sub-color: #916EAA;
    --font-color: #2E2D2D;
}
body {
    background-color: #fff;
    color: var(--font-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
}
img {
    max-width: 100%;
    height: auto;
}
.wrapper {
    margin-top: 100px;
}
.heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.heading.heading--center {
    align-items: center;
}
.heading-en {
    color: var(--sub-color);
    font-size: 16px;
    font-weight: 500;
}
.heading-ja {
    font-size: 40px;
    font-weight: 700;
}
.text {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.6;
}
.gtf-back-to-top {
    position: fixed;
    right: 40px;
    bottom: 80px;
    z-index: 100;
    background-color: var(--theme-color);
    color: #fff;
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
.gtf-back-to-top:hover {
    opacity: 0.7;
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
@media (max-width: 767px) {

    .wrapper {
        margin-top: 80px;
    }
    .heading {
        margin-bottom: 30px;
    }
    .heading-ja {
        font-size: 36px;
    }
    .text {
        font-size: 16px;
    }
    .gtf-back-to-top {
        right: 25px;
        bottom: 25px;
    }
    .gtf-back-to-top.hidden {
        opacity: 0;
        visibility: hidden;
    }
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }

}
@media (hover: hover) and (pointer: fine) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

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

    header

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.16);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 40px;
    height: inherit;
    padding-left: 30px;
}
.header-logo {
    height: inherit;
    margin-bottom: 0;
}
.header-logo a {
    display: inline-grid;
    grid-template-columns: 120px auto;
    align-items: center;
    column-gap: 20px;
    height: inherit;
    transition: opacity 0.3s;
}
.header-logo a:hover {
    opacity: 0.7;
    text-decoration: none;
}
.header-logo a span {
    display: inline-block;
    color: var(--font-color);
    font-size: 18px;
    font-weight: 700;
}
.header-nav {
    display: flex;
    justify-content: flex-end;
    column-gap: 40px;
    height: inherit;
}
.header-items {
    display: flex;
    column-gap: 40px;
    height: inherit;
    padding-left: 0;
    margin-bottom: 0;
}
.header-item {
    list-style: none;
    position: relative;
    height: inherit;
}
.header-item a {
    display: inline-grid;
    place-items: center;
    height: inherit;
    padding: 10px;
    color: #141414;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
}
.header-item:has(.header-child-items) > a {
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
}
.header-item:has(.header-child-items) > a::after {
    display: inline-block;
    width: 10px;
    height: 5px;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: currentColor;
    content: "";
}
.header-item a:hover {
    color: var(--sub-color);
    text-decoration: none;
}
.header-item:last-child a {
    display: inline-flex;
    column-gap: 5px;
}
.header-item:last-child a::before {
    display: inline-block;
    width: 18px;
    background-color: currentColor;
    mask-image: url(../images/icon_mail.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    aspect-ratio: 1 / 1;
    transition: background-color 0.3s;
    content: "";
}
.header-child-items {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    translate: 0 20px;
    width: max-content;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 0.3);
    transition: opacity 0.3s, visibility 0.3s ease-out, translate 0.3s;
}
.header-item:hover .header-child-items {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
}
.header-button {
    height: inherit;
}
.header-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: inherit;
    padding: 10px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.header-button a::before {
    display: inline-block;
    width: 25px;
    aspect-ratio: 1 / 1;
    margin-right: 10px;
    background-image: url(../images/icon_cart.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.header-hamburger {
    display: none;
}
.header-drawer {
    display: none;
}
@media (max-width: 1500px) {

    .header-logo a {
        grid-template-columns: 110px auto;
    }
    .header-items {
        column-gap: 30px;
    }
    .header-button a{
        width: 250px;
    }

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

    .header-inner {
        column-gap: 30px;
    }
    .header-nav {
        column-gap: 30px;
    }
    .header-items {
        column-gap: 20px;
    }

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

    .header-logo a {
        grid-template-columns: 100px auto;
        column-gap: 15px;
    }
    .header-items {
        column-gap: 6px;
    }
    .header-button a {
        width: 240px;
    }

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

    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding-left: 0;
    }
    .header-nav {
        display: none;
    }
    .header-hamburger {
        display: block;
        position: absolute;
        top: 50%;
        translate: 0 -50%;
        left: 50px;
        width: 60px;
        height: inherit;
        border: none;
        background: none;
    }
    .header-hamburger span {
        display: inline-block;
        position: absolute;
        left: 20px;
        width: 15px;
        height: 2px;
        background-color: var(--font-color);
    }
    .header-hamburger span:nth-child(1) {
        top: 42px;
    }
    .header-hamburger span:nth-child(2) {
        top: 50px;
        width: 25px;
    }
    .header-hamburger span:nth-child(3) {
        top: 58px;
    }
    .header-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 10000;
        width: 310px;
        translate: -100%;
        transition: translate 0.5s;
    }
    .header-drawer.is-open {
        translate: 0;
    }
    .header-drawer-bg {
        position: fixed;
        inset: 0;
        opacity: 0;
        z-index: 9999;
        visibility: hidden;
        background-color: rgb(0 0 0 / 0.5);
        transition: opacity 0.3s, visibility 0.3s ease-out;
    }
    .header:has(.header-drawer.is-open) .header-drawer-bg {
        opacity: 1;
        visibility: visible;
    }
    .header-drawer-contents {
        display: flex;
        flex-direction: column;
        position: relative;
        height: 100%;
        background-color: #fff;
    }
    .header-drawer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 5px;
        padding: 20px;
    }
    .header-drawer-logo img {
        width: 120px;
    }
    .header-drawer-logo span {
        font-size: 14px;
    }
    .header-drawer-nav {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .header-drawer-items {
        padding: 20px;
        margin-bottom: 0;
    }
    .header-drawer-item {
        list-style: none;
        margin-bottom: 20px;
    }
    .header-drawer-item:last-child {
        margin-bottom: 0;
    }
    .header-drawer-item a {
        display: flex;
        align-items: center;
        column-gap: 5px;
        position: relative;
        color: var(--font-color);
        padding: 10px 0;
        font-size: 16px;
        font-weight: 700;
        transition: color 0.3s;
    }
    .header-drawer-item a:hover {
        color: var(--sub-color);
        text-decoration: none;
    }
    .header-drawer-item:last-child a::before {
        display: inline-block;
        width: 18px;
        background-color: currentColor;
        mask-image: url(../images/icon_mail.png);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        aspect-ratio: 1 / 1;
        transition: background-color 0.3s;
        content: "";
    }
    .header-drawer-item button {
        display: flex;
        align-items: center;
        column-gap: 5px;
        position: relative;
        width: 100%;
        color: var(--font-color);
        padding: 10px 0;
        background: none;
        border: none;
        font-size: 16px;
        font-weight: 700;
        transition: color 0.3s;
    }
    .header-drawer-item button::after {
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 20px;
        translate: 0 -50%;
        width: 10px;
        height: 5px;
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        background-color: currentColor;
        content: "";
    }
    .header-drawer-item button:hover {
        color: var(--sub-color);
    }
    .header-drawer-sub {
        display: grid; 
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s;
    }
    .header-drawer-item button.is-open + .header-drawer-sub {
        grid-template-rows: 1fr;
    }
    .header-drawer-sub-inner {
        overflow: hidden;
    }
    .header-drawer-child-items {
        list-style: none;
    }
    .header-drawer-button {
        margin-top: 30px;
        text-align: center;
    }
    .header-drawer-button a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 20px 30px;
        background-color: var(--theme-color);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
    }
    .header-drawer-button a::before {
        display: inline-block;
        width: 25px;
        aspect-ratio: 1 / 1;
        margin-right: 10px;
        background-image: url(../images/icon_cart.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
    }
    .header-drawer-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        border: none;
        background: none;
    }
    .header-drawer-close span {
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        width: 20px;
        height: 2px;
        background-color: var(--font-color);
    }
    .header-drawer-close span:first-child {
        rotate: 45deg;
    }
    .header-drawer-close span:last-child {
        rotate: -45deg;
    }

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

    .header {
        height: 80px;
    }
    .header-inner {
        padding-left: 40px;
    }
    .header-logo a {
        grid-template-columns: 80px auto;
        column-gap: 8px;
        vertical-align: bottom;
    }
    .header-logo a span {
        font-size: 20px;
        font-weight: 500;
    }
    .header-hamburger {
        left: 0;
    }
    .header-hamburger span:nth-child(1) {
        top: 32px;
    }
    .header-hamburger span:nth-child(2) {
        top: 40px;
    }
    .header-hamburger span:nth-child(3) {
        top: 48px;
    }

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

    .header-logo a {
        grid-template-columns: 70px auto;
        column-gap: 5px;
    }
    .header-logo a span {
        font-size: 19px;
    }

}


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

    footer

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

.footer {
    position: relative;
    padding: 25px 0;
}
.footer-copy {
    margin-bottom: 0;
    text-align: center;
}
.footer-copy small {
    font-size: 16px;
}
.footer-privacy {
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    border: none;
    background: none;
    width: fit-content;
    font-size: 14px;
    text-decoration: underline;
    color: #2E2D2D;
}
.footer-privacy:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {

    .footer {
        padding: 25px 0 10px;
    }
    .footer-privacy {
        position: static;
        margin: 20px auto 0;
    }

}


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

    modal

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

.cm-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 100000;
}
.cm-modal.is-open {
    display: grid;
	place-items: center;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.6);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 800px;
    max-height: 80vh;
    padding: 60px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 20px;
	right: 20px;
	width: 40px;
    height: 40px;
	cursor: pointer;
    background: none;
    border: none;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 4px;
    background-color: var(--sub-color);
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-title {
    margin-bottom: 40px;
    font-size: 35px;
    text-align: center;
}
.cm-modal-title02 {
    margin: 40px 0 20px;
    font-size: 28px;
}
.cm-modal-img {
    margin-bottom: 50px;
    text-align: center;
}
.cm-modal-img img {
    width: 100%;
    max-width: 60%;
}
.cm-modal-img img.w-80 {
    max-width: 80%;
}
.cm-modal-table-wrap {
    overflow-x: auto;
}
.cm-modal-table-wrap + .cm-modal-table-wrap {
    margin-top: 30px;
}
.cm-modal-table {
    white-space: nowrap;
}
.cm-modal-table th {
    padding: 5px 10px;
    border: 1px solid #707070;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 18px;
}
.cm-modal-table td {
    padding: 5px 10px;
    border: 1px solid #707070;
    font-size: 18px;
    text-align: center;
}
.cm-modal-table tr:nth-child(even) td {
    background-color: rgb(145 109 170 / 0.1);
}
.cm-modal-text {
    font-size: 18px;
    line-height: 1.6;
}
* + .cm-modal-text {
    margin-top: 40px;
}
.cm-modal-title02 + .cm-modal-text {
    margin-top: 20px;
}
.cm-modal-list {
    list-style: none;
    padding-left: 0;
}
.cm-modal-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: 18px;
    line-height: 1.6;
}
.cm-modal-list02 {
    position: relative;
    padding: 20px 0;
}
.cm-modal-list02::before {
    position: absolute;
    top: 0;
    left: 6px;
    translate: -30%;
    width: 2px;
    height: 100%;
    background-color: var(--theme-color);
    content: "";
}
.cm-modal-list02-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 50px;
}
.cm-modal-list02-item:last-child {
    margin-bottom: 0;
}
.cm-modal-list02-item::before {
    position: absolute;
    top: 10px;
    left: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--theme-color);
    content: "";
}
.cm-modal-list02-item-term {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 700;
}
.cm-modal-close {
    margin-top: 60px;
    text-align: center;
}
.cm-modal-close-button {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: 200px;
    height: 60px;
    border: 2px solid var(--theme-color);
    border-radius: 8px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.cm-modal-close-button:hover {
    background-color: #fff;
    color: var(--theme-color);
}
@media (max-width: 767px) {

    .cm-modal-container {
        padding: 60px 30px;
    }
    .cm-modal-title {
        font-size: 28px;
    }
    .cm-modal-title02 {
        font-size: 20px;
    }
    .cm-modal-button {
        top: 15px;
        right: 15px;
    }
    .cm-modal-button::before,
    .cm-modal-button::after {
        width: 35px;
    }
    .cm-modal-table th,
    .cm-modal-table td {
        font-size: 16px;
    }
    .cm-modal-text {
        font-size: 16px;
    }
    .cm-modal-list li {
        font-size: 16px;
    }
    .cm-modal-list02::before {
        left: 5px;
    }
    .cm-modal-list02-item {
        padding-left: 40px;
    }
    .cm-modal-list02-item::before {
        top: 8px;
        width: 11px;
        height: 11px;
    }
    .cm-modal-list02-item-term {
        font-size: 16px;
    }
    .cm-modal-close-button {
        width: 180px;
        height: 50px;
        font-size: 18px;
    }

}

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

    hero

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

.hero {
    position: relative;
}
.hero .slick-slider .slick-track > * {
    height: calc(100vh - 100px);
}
.hero-content {
    position: absolute;
    right: 130px;
    bottom: 100px;
}
.hero-content > * {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.hero-text {
    display: inline-block;
    width: fit-content;
    padding: 5px 30px;
    margin-bottom: 0;
    background-color: #fff;
    color: #313131;
    font-size: 50px;
    font-weight: 700;
    text-align: left;
}
@media (max-width: 1400px) {

    .hero-content {
        right: 100px;
    }
    .hero-content > * {
        gap: 30px;
    }
    .hero-text {
        font-size: 40px;
    }

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

    .hero-content {
        right: 60px;
        bottom: 60px;
    }
    .hero-content > * {
        gap: 24px;
    }
    .hero-text {
        font-size: 32px;
    }

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

    .hero .slick-slider .slick-track > * {
        height: calc(100vh - 250px);
    }
    .hero-content {
        right: unset;
        bottom: 50px;
    }
    .hero-content > * {
        gap: 10px;
    }
    .hero-text {
        width: max-content;
        padding: 5px 15px;
        font-size: 22px;
    }

}


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

    about

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

.about-sec {
    padding-bottom: 60px;
}
.about-sec .row {
    justify-content: center;
}
@media (max-width: 767px) {

    .about-sec {
        padding-bottom: 40px;
    }

}


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

    plasticbag

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

.plasticbag-sec {
    padding-top: 220px;
    padding-bottom: 60px;
    margin-top: -100px;
}
.plasticbag-sec .nav-link {
    color: var(--font-color);
    font-size: 20px;
    font-weight: 700;
}
.plasticbag-sec .nav-link:hover,
.plasticbag-sec .nav-link:focus {
    color: var(--sub-color);
}
.plasticbag-sec .nav-tabs .nav-link.active {
    background-color: unset;
    color: var(--sub-color);
}
.text-hover-underline:before {
    border-top-width: 2px;
}
.card a {
    color: var(--font-color);
}
.card a:hover {
    color: var(--font-color);
    text-decoration: none;
}
.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 390 / 360;
    border: 1px solid #e0dde2;
}
.card-img::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(194 174 208 / 0.5);
    transition: opacity 0.3s, visibility 0.3s ease-out;
    content: "";
}
.card-img::after {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition-duration: 0.5s;
}
.card a:hover .card-img::before {
    opacity: 1;
    visibility: visible;
}
.card a:hover .card-img::after {
    left: 125%;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}
.card a:hover .card-img img {
    transform: scale(1.2);
}
.card-title {
    font-size: 20px;
}
.button-wrap {
    margin-top: 100px;
    text-align: center;
}
.catalog-button {
    display: inline-block;
    max-width: 80%;
    transition: opacity 0.3s;
}
.catalog-button img {
    max-width: 80%;
}
.catalog-button:hover {
    opacity: 0.7;
}
.catalog-button02 {
    display: inline-grid;
    place-items: center;
    position: relative;
    width: 320px;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    color: #865f9e;
    border: 2px solid;
    border-radius: 6px;
    padding: 10px 20px 10px 50px;
    transition: background-color 0.3s, color 0.3s;
}
.catalog-button02::before {
    position: absolute;
    top: 50%;
    left: 20px;
    translate: 0 -50%;
    width: 30px;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    mask-image: url(../images/icon_book.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: background-color 0.3s;
    content: "";
}
.catalog-button02:hover {
    background-color: #865f9e;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 767px) {

    .plasticbag-sec {
        padding-top: 160px;
        padding-bottom: 20px;
        margin-top: -80px;
    }
    .plasticbag-sec .nav-link {
        font-size: 18px;
    }
    .card-title {
        font-size: 18px;
    }
    .button-wrap {
        margin-top: 60px;
    }
    .catalog-button {
        max-width: 90%;
    }
    .catalog-button img {
        max-width: 100%;
    }
    .catalog-button02 {
        width: 300px;
        padding: 10px 20px 10px 40px;
        font-size: 18px;
    }
    .catalog-button02::before {
        width: 26px;
    }

}

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

    goods

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

.goods-sec {
    padding-top: 220px;
    margin-top: -100px;
}
.goods-sec-slider {
    max-width: 88vw;
    margin: 0 auto;
}
.goods-sec-slider .splide {
    padding-bottom: 80px;
}
.goods-sec-slider .splide__arrow {
    opacity: 1;
    transform: translateY(-150%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme-color);
    background-color: #fff;
    transition: background-color 0.3s;
}
.goods-sec-slider .splide__arrow:disabled {
    opacity: 0;
    visibility: hidden;
}
.goods-sec-slider .splide__arrow:hover {
    opacity: 1;
    background-color: var(--theme-color);
}
.goods-sec-slider .splide__arrow--prev {
    left: -60px;
}
.goods-sec-slider .splide__arrow--next {
    right: -60px;
}
.goods-sec-slider .splide__arrow svg {
    fill: var(--theme-color);
    transition: fill 0.3s;
}
.goods-sec-slider .splide__arrow:hover svg {
    fill: #fff;
}
.goods-sec-slider .splide__pagination {
    bottom: 0;
}
.goods-sec-slider .splide__pagination__page {
    opacity: 1;
    width: 20px;
    height: 20px;
    margin: 0 10px;
    border: 1px solid var(--theme-color);
    background-color: #fff;
}
.goods-sec-slider .splide__pagination__page.is-active {
    transform: unset;
    background-color: var(--theme-color);
}
@media (max-width: 1199px) {

    .goods-sec-slider {
        max-width: 83vw;
    }

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

    .goods-sec-slider {
        max-width: 78vw;
    }
    .goods-sec-slider .splide__arrow--prev {
        left: -50px;
    }
    .goods-sec-slider .splide__arrow--next {
        right: -50px;
    }

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

    .goods-sec {
        padding-top: 160px;
        padding-bottom: 20px;
        margin-top: -80px;
    }

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

    .goods-sec-slider {
        max-width: 74vw;
    }
    .goods-sec-slider .splide {
        padding-bottom: 60px;
    }
    .goods-sec-slider .splide__arrow {
        width: 30px;
        height: 30px;
        transform: translateY(-260%);
    }
    .goods-sec-slider .splide__arrow--prev {
        left: -40px;
    }
    .goods-sec-slider .splide__arrow--next {
        right: -40px;
    }
    .goods-sec-slider .splide__pagination__page {
        width: 14px;
        height: 14px;
        margin: 0 7px;
    }

}

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

    initiatives

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

.initiatives-sec {
    padding-top: 220px;
    margin-top: -100px;
}
.initiatives-sec-text {
    margin-bottom: 80px;
}
.initiatives-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--font-color);
    transition: color 0.3s;
}
a.initiatives-item:hover {
    text-decoration: none;
    color: var(--theme-color);
}
.initiatives-item-img {
    display: grid;
    place-items: center;
    height: 100px;
}
.initiatives-item-img img {
    max-width: 80%;
}
.initiatives-item-title {
    font-size: 20px;
    line-height: 1.4;
}
.initiatives-item[target="_blank"] .initiatives-item-title::after {
    display: inline-block;
    width: 15px;
    margin-left: 10px;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    mask-image: url(../images/icon_external-link.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    content: "";
}
.initiatives-item-text {
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 767px) {

    .initiatives-sec {
        padding-top: 160px;
        padding-bottom: 20px;
        margin-top: -80px;
    }
    .initiatives-sec-text {
        text-align: left !important;
    }
    .initiatives-sec .row > *:nth-child(1) .initiatives-item-img img {
        width: 100px;
    }
    .initiatives-sec .row > *:nth-child(2) .initiatives-item-img img {
        width: 130px;
    }
    .initiatives-sec .row > *:nth-child(3) .initiatives-item-img img {
        width: 170px;
    }
    .initiatives-sec .row > *:nth-child(4) .initiatives-item-img img {
        width: 160px;
    }
    .initiatives-sec .row > *:nth-child(5) .initiatives-item-img img {
        width: 170px;
    }
    .initiatives-sec .row > *:nth-child(6) .initiatives-item-img img {
        width: 100px;
    }
    .initiatives-item-img {
        height: 80px;
    }
    .initiatives-item-body {
        text-align: left !important;
    }
    .initiatives-item-title {
        text-align: center;
    }

}

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

    company

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

.company-sec {
    padding-top: 250px;
    margin-top: -100px;
}
.company-item {
    margin-bottom: 20px;
}
.company-item:last-child {
    margin-bottom: 0;
}
.company-item-term {
    font-size: 18px;
}
.company-item-contents a {
    color: var(--font-color);
}
.company-item-contents a:hover {
    text-decoration: none;
}
.company-item-contents .text.grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 1em;
}
.company-sec-button {
    margin-top: 100px;
    text-align: center;
}
.button {
    display: inline-grid;
    place-items: center;
    min-width: 180px;
    padding: 10px 32px;
    border: 2px solid var(--theme-color);
    border-radius: 4px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.button:hover {
    background-color: #fff;
    color: var(--theme-color);
}
@media (max-width: 991px) {

    .company-sec-button {
        margin-top: 80px;
    }

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

    .company-sec {
        padding-top: 160px;
        margin-top: -80px;
    }
    .company-sec .row > div:last-child {
        margin-top: 10px;
    }
    .company-item {
        margin-bottom: 10px;
    }
    .company-item-contents .text:not(:last-child) {
        margin-bottom: 10px !important;
    }
    .company-sec-button {
        margin-top: 60px;
        text-align: left;
    }
    .button {
        min-width: 150px;
        font-size: 18px;
    }

}

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

    factory

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

.factory-sec {
    padding-top: 130px;
}
.factory-sec-text-area .text {
    padding-right: 100px;
}
.factory-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 100px;
}
@media (max-width: 1199px) {

    .factory-sec-text-area .text {
        padding-right: 0;
    }

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

    .factory-sec .row:first-child {
        flex-direction: column-reverse;
    }
    .factory-sec-text-area {
        padding-top: 0 !important;
    }
    .factory-sec-img {
        margin-top: 40px;
        text-align: center;
    }

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

    .factory-sec {
        padding-top: 100px;
        padding-bottom: 20px;
    }
    .factory-gallery {
        gap: 8px;
        margin-top: 60px;
    }

}


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

    contact

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

.contact-sec {
    padding-top: 250px;
    padding-bottom: 100px;
    margin-top: -100px;
}
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px;
    background-color: rgb(228 222 234 / 0.4);
    text-align: center;
}
.contact-box-title {
    font-size: 20px;
}
.contact-box-text {
    font-size: 20px;
}
.contact-box-text a {
    color: var(--font-color);
}
.contact-box-text a[href^="tel:"] {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
}
.contact-box-text a[href^="tel:"]::before {
    display: inline-block;
    translate: 0 9px;
    width: 30px;
    aspect-ratio: 225 / 150;
    background-image: url(../images/icon_free-dial.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.contact-box-title02 {
    margin-bottom: 20px;
    font-size: 25px;
}
.contact-box-button a {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    place-items: center;
    column-gap: 10px;
    width: 100%;
    padding: 10px 30px;
    border: 2px solid var(--theme-color);
    border-radius: 4px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}
.contact-box-button a::before {
    display: inline-block;
    width: 20px;
    aspect-ratio: 1 / 1;
    background-color: currentColor;
    mask-image: url(../images/icon_mail_white.png);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    transition: background-color 0.3s;
    content: "";
}
.contact-box-button a:hover {
    background-color: #fff;
    color: var(--theme-color);
    text-decoration: none;
}
@media (max-width: 767px) {

    .contact-sec {
        padding-top: 160px;
        margin-top: -80px;
    }
    .contact-box {
        min-height: 320px;
        padding: 50px 30px;
    }
    .contact-box-title {
        font-size: 18px;
    }
    .contact-box-title02 {
        font-size: 20px;
    }
    .contact-box-text {
        font-size: 18px;
    }
    .contact-box-text a[href^="tel:"]::before {
        translate: 0 8px;
    }

}
