@font-face {
    font-family: 'RyuminPro';
    src: url('font/A-OTF-RyuminPro-Medium.otf') format('opentype');
}
img {
    width: 100%;
    height: auto;
}
h1 {
    margin: 0;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style-type: none;
}
a {
    text-decoration: none;
}
p {
    font-family: 'RyuminPro', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', sans-serif;
}

/* スクロールフェードイン */
.js-scroll-trigger {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 言語選択 */
.lang-list {
    color: #fff;
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
}
.lang-list::before {
    content: '';
    display: block;
    background: url(img/lang-icon.png) no-repeat center center / contain;
    width: 20px;
    height: 20px;
    position: relative;
    top: 3px;
}
.lang-list li {
    position: relative;
    margin: 0 10px;
}
.lang-list .is-active {
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.lang-list a , .lang-list a:visited {
    color: #fff;
}
.lang-list__en::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 34px;
    width: 1px;
    height: 15px;
    background-color: #fff;
    -webkit-transform: rotateZ(30deg);
    transform: rotateZ(30deg);
}


.p-select__products-section {
    padding: 30px 0;
    background: url('img/select-bg.jpg');
}
.p-select__product {
    margin-bottom: 75px;
}
.p-select__products-section-title,
.p-select__product-icon,
.p-select__product-name {
    text-align: center;
}
.p-select__products-section-title {
    font-size: 25px;
    margin-bottom: 70px;
}
.p-select__product-icon img {
    width: 60px;
    margin-bottom: 6px;
}
.p-select__product-name {
    font-size: 28px;
    margin-bottom: 8px;
}

.p-select__product-img {
    position: relative;
}

.p-select__product-img.sub {
    margin-bottom: 110px;
}

.p-select__product-img-primary--sub {
    position: absolute;
    bottom: -101px;
    right: 0;
    max-width: 200px;
}

.p-select__product-desc {
    font-size: 16px;
    line-height: 28px;
    text-align: justify;
}

/* オンラインショップ */
.p-select__online-shop {
    width: 72%;
    margin: 200px auto 50px auto;
    text-align: center;
}

.p-select__online-shop__inner {
    border: 2px solid #410102;
    border-radius: 15px;
    padding: 50px 0 60px 0;
    background: #fff;
}

.p-select__online-shop img {
    max-width: 150px;
}

.p-select__online-shop p {
    font-family: a-otf-ryumin-pr6n, serif;
    line-height: 33px;
}

.p-select__online-shop__title {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 35px;
    color: #430000;
    font-weight: bold;
}

.p-select__online-shop__link {
    background: #410102;
    color: #fff;
    padding: 16px 30px;
    border-radius: 25px;
    font-size: 18px;
}

.p-select__online-shop__link:visited {
    color: #fff;
}

.p-select__online-shop__link::before {
    content: '';
    display: inline-block;
    background: url('img/cart.png') no-repeat center center / contain;
    width: 23px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 3px;
}

footer {
    margin: 0;
    padding: 15px 15px 5px 15px;
    background: #410102;
    color: #fff;
}
.footer__company-logo-name {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
}
.footer__company-logo {
    max-width: 33%;
}
.footer__company-name {
    font-size: 22px;
    font-weight: bold;
}
.footer__address {
    margin: 30px auto;
    max-width: 310px;
}
.footer__address p {
    margin: 0 0 5px 0;
}
.footer__address a , .footer__address a:visited {
    color: #fff;
}

.copyright {
    text-align: center;
    margin: 0;
    font-size: 12px;
}

@media (max-width: 768px) {
    .p-select__product-desc-wrp {
        padding: 0 15px;
    }

    .p-select__product-desc {
        margin-top: 15px;
        line-height: 33px;
    }

    .p-select__product-img-secondary {
        max-height: 160px;
        width: auto;
    }

    .p-select__online-shop {
        width: 85%;
        margin: 50px auto;
    }
}

@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    .u-dflex {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 30px;
    }
    .lang-list {
        top: 20px;
        right: 20px;
    }
    .p-select__products-section {
        padding: 30px 15px;
    }

    .p-select__product-name {
        margin-bottom: 20px;
    }

    .p-select__product-img {
        margin-bottom: 20px;
    }

    .p-select__product-img.sub {
        margin-bottom: 170px;
    }

    .p-select__product-img-primary--sub {
        bottom: -165px;
        right: -45px;
        max-width: 300px;
    }

    .p-select__product-desc-wrp {
        max-width: 550px;
    }

    .p-select__product-img-secondary {
        width: auto;
        max-height: 150px;
        margin-bottom: 10px;
    }
    .footer__address {
        max-width: 350px;
    }
}

@media (min-width: 1101px) {
    .p-select__products-section {
        padding: 30px 15px 100px 15px;
    }

    .p-select__product-img,
    .p-select__product-img.sub {
        margin-bottom: 0;
    }

    .p-select__product-img-primary--sub {
        bottom: -105px;
        right: -25px;
    }

    .p-select__product-desc-wrp {
        width: 45%;
    }
}