@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #fff;
    font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.15rem;
    background-color: #000;
}

body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-image: url(../images/section_bg01.webp);
    background-size: cover;
    background-position: center center;
}

.container {
    overflow: hidden;
}

.inner {
    width: 1000px;
    margin: 0 auto;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.opening_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000;
    z-index: 50;
    overflow: hidden;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    width: 100%;
    padding: 25px 45px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    z-index: 250;
    background-color: #000;
}

.header .logo {
    width: 328px;
    height: 26px;
    line-height: 1;
}

.header .nav_btn_box {
    display: none;
}

.header .nav_btn {
    width: 65px;
    height: 15px;
    position: relative;
    cursor: pointer;
}

.header .nav_btn span {
    display: block;
    width: 65px;
    height: 1px;
    background-color: #D5B45C;
    transition: 0.5s;
}

.header .nav_btn span:first-of-type {
    position: absolute;
    top: 0;
    left: 0;
}

.header .nav_btn.active span:first-of-type {
    transform: translateY(0) rotate(12deg);
    transform-origin: left top;
}

.header .nav_btn span:last-of-type {
    position: absolute;
    bottom: 0;
    left: 0;
}

.header .nav_btn.active span:last-of-type {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(0) rotate(-12deg);
    transform-origin: left bottom;
}

/* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

.nav {
    position: fixed;
    background-color: #D5B45C;
    width: 50vw;
    padding: 0 5vw;
    height: 100vh;
    z-index: 200;
    transform: translateX(50vw);
    right: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.nav.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.nav .menu_list li {
    margin-bottom: 70px;
    box-sizing: border-box;
}

.nav .menu_list li .text {
    color: #fff;
    font-size: 2.8rem;
}

.nav .menu_list li:nth-of-type(3n),
.nav .menu_list li:last-of-type {
    margin-right: 0;
}

.nav .menu_list li:hover img {
    -webkit-animation: pulsation .7s alternate infinite;
    animation: pulsation .7s alternate infinite;
}

.nav .menu_list li a {
    display: block;
    padding-bottom: 5px;
    width: 385px;
    border-bottom: 1px solid #fff;
    transition: 0.5s;
    position: relative;
}

.nav .menu_list li a:hover {
    width: 400px;
}

.nav .menu_list li a:before {
    content: '';
    background-color: #fff;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 1px;
    bottom: -1px;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.nav .menu_list li a:hover {
    opacity: 1;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-image: url(../images/mv_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #f3de9b;
    position: relative;
}

.mv .logo {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(var(--vh, 1vh) * 100);
}

.mv .logo .lottie_img {
    width: 316px;
    height: auto;
}

.mv .text {
    position: absolute;
    margin: 0 auto;
    left: 35%;
    transform: translateX(-50%);
    top: 230px;
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */

.section {
    padding: 100px 0;
}

.section .section_title {
    text-align: center;
    font-size: 3.8rem;
    letter-spacing: 1.3rem;
    position: relative;
    margin-bottom: 250px;
}

.section .section_title:after {
    content: '';
    background-color: #D5B45C;
    width: 1px;
    height: 125px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -150px;
    z-index: 0;
}


/* ----------------------------------------------------------
about
---------------------------------------------------------- */

.about .text {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    padding: 100px 0;
    background-image: url(../images/about_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.about .box {
    margin: 110px 5% 0;
    position: relative;
}

.about .box .img01 img {
    width: 20vw;
}

.about .box .img02 img {
    width: 41vw;
}

.about .box .img03 img {
    width: 22vw;
}

.about .box .img04 img {
    width: 49vw;
}

.about .box .img02 {
    position: absolute;
    left: 11vw;
    top: 15vw;
}

.about .box .img03 {
    position: absolute;
    right: 22vw;
    top: -6vw;
}

.about .box .img04 {
    text-align: right;
    margin-top: 11vw;
    position: relative;
    z-index: 10;
}


/* ----------------------------------------------------------
story
---------------------------------------------------------- */

.story .layout01 {
    display: flex;
    align-content: center;
}

.story .layout01 .box .img {
    width: 50vw;
    height: 100%;
    background-image: url(../images/story_img01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.story .layout01 .box .img span {
    font-size: 1rem;
    position: absolute;
    right: 10px;
    bottom: 5px;
}

.story .layout01 .box .caption {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    text-align: right;
    margin-top: 10px;
}

.story .layout01 .contents {
    width: 50vw;
    padding: 0 50px;
    box-sizing: border-box;
}

.story .layout01 .text {
    font-size: 2rem;
    line-height: 2.5;
}

.story .layout01 .notes {
    font-size: 1.2rem;
}

.story .layout01 .en_text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 20px;
}

.story .layout02 {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
}

.story .layout02 .img {
    width: calc(33.33vw - 20px);
}

.story .layout02 .img img {
    width: 100%;
}

.story .layout02 .img:first-of-type {
    margin-top: 140px;
}

.story .layout02 .img:nth-of-type(2) {
    margin-top: 70px;
}

/* ----------------------------------------------------------
company
---------------------------------------------------------- */

.company .layout {
    display: flex;
    justify-content: center;
    align-items: center;
}

.company .layout .box {
    position: relative;
}

.company .layout .box a .view_more {
    color: #D5B45C;
    font-size: 0.9rem;
    line-height: 2.5;
    position: absolute;
    right: -20px;
    bottom: 8px;
    border-bottom: 1px solid #D5B45C;
    padding-right: 35px;
}

.company .layout .box a .view_more:after {
    content: '';
    display: block;
    background-color: #D5B45C;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 1px;
    bottom: -1px;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.company .layout .box:nth-of-type(2) {
    margin: 0 -80px;
    position: relative;
    z-index: -10;
}

/* ----------------------------------------------------------
award
---------------------------------------------------------- */

.award .box:first-of-type {
    margin-bottom: 100px;
}

.award .box .logo {
    text-align: center;
    margin-bottom: 50px;
}

.award .box .heading {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
}

.award .box .text {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 30px;
}

.award .box .btn {
    margin-top: 30px;
}

.award .box .btn a {
    color: #fff;
    text-align: center;
    width: 310px;
    padding: 5px 0 7px;
    margin: 0 auto;
    display: block;
    border: 1px solid #fff;
    position: relative;
}

.award .box .btn a span {
    display: block;
    background-color: #D5B45C;
    width: 74px;
    height: 1px;
    position: absolute;
    right: -30px;
    top: 50%;
    transition: 0.5s;
}

.award .box .btn a:hover span {
    right: -35px;
}

.award .box .btn a span:after {
    content: '';
    display: block;
    background-color: #D5B45C;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

/* ----------------------------------------------------------
products
---------------------------------------------------------- */
.products .sample_box .img {
    text-align: center;
}

.products .sample_box .text {
    text-align: center;
    margin-top: 30px;
}

.products .layout {
    display: flex;
    justify-content: space-between;
    padding: 0 5vw;
    margin-top: 150px;
}

.products .layout .img_box {
    width: 50%;
}

.products .layout .img img {
    width: 100%;
}

.products .layout .box {
    width: calc(50% - 70px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products .layout .box .name {
    font-size: 2.8rem;
    font-weight: 500;
}

.products .layout .box .color,
.products .layout .box .size {
    font-size: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.products .layout .box .heading {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.products .layout .box .text {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.products .layout .box .en_text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.products .layout .thumbnail {
    display: flex;
    justify-content: space-between;
}

.products .layout .thumbnail.sp {
    display: none;
}

.products .layout .thumbnail li {
    width: calc(25% - 8px);
    cursor: pointer;
}

.products .layout .thumbnail li img {
    width: 100%;
}

/* ----------------------------------------------------------
custom
---------------------------------------------------------- */

.custom {
    color: #D5B45C;
    background-image: url(../images/custom_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.custom .inner {
    width: 84%;
}

.custom .text {
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
}

.custom .layout {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.custom .layout .box {
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.5;
    background-image: url(../images/custom_text_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 330px;
    padding: 30px 0;
}

.custom .img_box {
    margin-top: 120px;
}

.custom .img_box img {
    width: 100%;
}

.custom .img_box .thumbnail {
    display: flex;
    margin-top: 70px;
}

.custom .img_box .thumbnail li {
    width: 25%;
    cursor: pointer;
}

.custom .layout .box:first-of-type {
    margin-right: 40px;
}

.custom .layout .box span {
    font-size: 2.8rem;
}

.custom .btn_box {
    margin-top: 100px;
}

.custom .btn_box .btn_text {
    margin-top: 100px;
    font-size: 1.8rem;
    text-align: center;
}

.custom .btn_box .btn {
    margin-top: 20px;
}

.custom .btn_box .btn a {
    color: #D5B45C;
    text-align: center;
    width: 450px;
    padding: 5px 0 7px;
    margin: 0 auto;
    display: block;
    border: 1px solid #D5B45C;
    position: relative;
}

.custom .btn_box .btn a span {
    display: block;
    background-color: #fff;
    width: 74px;
    height: 1px;
    position: absolute;
    right: -30px;
    top: 50%;
    transition: 0.5s;
}

.custom .btn_box .btn a:hover span {
    right: -35px;
}

.custom .btn_box .btn a span:after {
    content: '';
    display: block;
    background-color: #fff;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.custom .btn_box .order_text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.custom .btn_box .order_text li:first-of-type,
.custom .btn_box .order_text li:last-of-type {
    height: 1px;
    width: 80px;
    background-color: #D5B45C;
}

.custom .btn_box .order_text li:nth-of-type(2) {
    margin: 0 10px;
}

.custom .btn_box .order_text li a {
    color: #D5B45C;
    text-decoration: underline;
}

.custom .btn_box .order_text li a:hover {
    text-decoration: none;
    opacity: 1;
}

/* ----------------------------------------------------------
contact
---------------------------------------------------------- */

.contact.section {
    padding-bottom: 0;
}

.contact .text {
    font-size: 2rem;
    text-align: center;
}

.contact .btn {
    margin-top: 20px;
}

.contact .btn a {
    color: #fff;
    text-align: center;
    width: 340px;
    padding: 5px 0 7px;
    margin: 0 auto;
    display: block;
    border: 1px solid #fff;
    position: relative;
}

.contact .btn a span {
    display: block;
    background-color: #D5B45C;
    width: 74px;
    height: 1px;
    position: absolute;
    right: -30px;
    top: 50%;
    transition: 0.5s;
}

.contact .btn a:hover span {
    right: -35px;
}

.contact .btn a span:after {
    content: '';
    display: block;
    background-color: #D5B45C;
    width: 10px;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transform-origin: right bottom;
}

.contact .img {
    width: 100vw;
    height: 720px;
    background-image: url(../images/contact_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 100px;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    padding: 20px 0;
}

.footer .copyright {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    text-align: center;
}

.footer .buy_btn {
    position: fixed;
    right: 50px;
    bottom: 30px;
    z-index: 150;
    display: none;
}

.footer .buy_btn a {
    position: relative;
}

.footer .buy_btn a:hover,
.footer .buy_btn a:hover img {
    opacity: 1;
}

.footer .buy_btn a .buy_text {
    color: #fff;
    font-size: 2.2rem;
    text-align: center;
    line-height: 187px;
    letter-spacing: 1rem;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.footer .buy_btn a .buy_text span {
    margin-right: -1rem;
}

.footer .buy_btn a img {
    -webkit-animation: rotateAnimation 10s linear infinite;
    animation: rotateAnimation 10s linear infinite;
}

.footer .buy_btn a:hover img {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes rotateAnimation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1024px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    .inner {
        width: 90%;
        margin: 0 auto;
    }

    /* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

    .nav {
        width: 60vw;
        transform: translateX(60vw);
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv .text {
        top: 200px;
    }

    /* ----------------------------------------------------------
section
---------------------------------------------------------- */

    .section {
        padding: 100px 0;
    }

    .section .section_title {
        font-size: 3.2rem;
        letter-spacing: 1rem;
        margin-bottom: 200px;
    }

    .section .section_title:after {
        height: 110px;
        bottom: -130px;
    }


    /* ----------------------------------------------------------
about
---------------------------------------------------------- */

    .about .text {
        margin: 0 5%;
    }

    /* ----------------------------------------------------------
story
---------------------------------------------------------- */

    .story .layout01 {
        display: block;
    }

    .story .layout01 .box .img {
        width: 100vw;
        height: 500px;
        background-position: top -50px center;
    }

    .story .layout01 .box .caption {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .story .layout01 .contents {
        width: 100vw;
        padding: 0 5%;
    }

    .story .layout01 .text {
        margin-top: 50px;
    }

    .story .layout02 .img {
        width: calc(33.33vw - 10px);
    }

    /* ----------------------------------------------------------
company
---------------------------------------------------------- */

    .company .layout {
        padding: 0 5%;
    }

    /* ----------------------------------------------------------
custom
---------------------------------------------------------- */

    .custom .inner {
        width: 90%;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer .buy_btn {
        right: 30px;
    }
}

@media only screen and (max-width: 599px) {

    body {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header {
        width: 100%;
        padding: 25px;
    }

    /* ----------------------------------------------------------
    nav
    ---------------------------------------------------------- */

    .nav {
        width: 80vw;
        transform: translateX(80vw);
    }

    .nav .menu_list li {
        margin-bottom: 30px;
    }

    .nav .menu_list li .text {
        font-size: 2rem;
    }

    .nav .menu_list li a {
        width: 100%;
    }

    .nav .menu_list li a:hover {
        width: 100%;
    }

    .nav .logo img {
        width: 25px;
        height: 25px;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        background-size: 450%;
    }

    .mv .text {
        top: 20vh;
        left: 40%;
    }

    .mv .logo .lottie_img {
        width: 80vw;
        height: auto;
    }

    /* ----------------------------------------------------------
section
---------------------------------------------------------- */

    .section {
        padding: 10% 0;
    }

    .section .section_title {
        font-size: 2.4rem;
        letter-spacing: 0.3rem;
        margin-bottom: 150px;
    }

    .section .section_title:after {
        height: 100px;
        bottom: -110px;
    }


    /* ----------------------------------------------------------
about
---------------------------------------------------------- */

    .about .text {
        font-size: 1.8rem;
        letter-spacing: 0;
        margin: 0 5%;
        padding: 10% 0;
    }

    .about .box {
        margin: 110px 5% 0;
        position: relative;
    }

    .about .box .img01 img {
        width: 40vw;
    }

    .about .box .img02 img {
        width: 82vw;
    }

    .about .box .img03 img {
        width: 44vw;
    }

    .about .box .img04 img {
        width: 85vw;
    }

    .about .box .img02 {
        position: absolute;
        left: 11vw;
        top: 40vw;
    }

    .about .box .img03 {
        position: absolute;
        right: 2vw;
        top: -20vw;
    }

    .about .box .img04 {
        text-align: left;
        margin-top: 45vw;
    }


    /* ----------------------------------------------------------
story
---------------------------------------------------------- */

    .story .layout01 .box .img {
        width: 100vw;
        height: 60vw;
        background-position: top -30px center;
    }

    .story .layout01 .box .caption {
        font-size: 0.9rem;
    }

    .story .layout01 .text {
        font-size: 1.6rem;
        line-height: 2;
        margin-top: 30px;
    }

    .story .layout01 .notes {
        font-size: 1rem;
        margin-top: 5px;
    }

    .story .layout01 .en_text {
        font-size: 1.3rem;
    }

    .story .layout02 {
        display: block;
        justify-content: space-between;
        margin-top: 10%;
    }

    .story .layout02 .img {
        width: 100vw;
    }

    .story .layout02 .img img {
        width: 80vw;
    }

    .story .layout02 .img:first-of-type {
        margin-top: 0;
    }

    .story .layout02 .img:nth-of-type(2) {
        margin-top: 20px;
        text-align: center;
    }

    .story .layout02 .img:last-of-type {
        margin-top: 20px;
        text-align: right;
    }

    /* ----------------------------------------------------------
company
---------------------------------------------------------- */

    .company .layout {
        display: block;
    }

    .company .layout .box:first-of-type,
    .company .layout .box:last-of-type {
        width: 80%;
        margin: 0 auto;
    }

    .company .layout .box a .view_more {
        color: #D5B45C;
        font-size: 0.9rem;
        line-height: 2.5;
        position: absolute;
        right: -20px;
        bottom: 8px;
        border-bottom: 1px solid #D5B45C;
        padding-right: 35px;
    }

    .company .layout .box a .view_more:after {
        content: '';
        display: block;
        background-color: #D5B45C;
        width: 10px;
        height: 1px;
        position: absolute;
        right: 1px;
        bottom: -1px;
        transform: rotate(45deg);
        transform-origin: right bottom;
    }

    .company .layout .box:nth-of-type(2) {
        margin: -10px 0;
    }

    /* ----------------------------------------------------------
award
---------------------------------------------------------- */

    .award .box:first-of-type {
        margin-bottom: 10%;
    }

    .award .box .logo {
        margin-bottom: 30px;
    }

    .award .box .logo img {
        width: 130px;
        height: auto;
    }

    .award .box .heading {
        font-size: 1.8rem;
    }

    .award .box .text {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .award .box .btn {
        margin-top: 20px;
    }

    .award .box .btn a {
        width: 80%;
    }

    /* ----------------------------------------------------------
products
---------------------------------------------------------- */
    .products .sample_box .img {
        padding: 0 5%;
    }

    .products .sample_box .text {
        margin-top: 10px;
    }

    .products .sample_box .text img {
        width: 200px;
    }

    .products .layout {
        flex-direction: column;
        padding: 0 5vw;
        margin-top: 15%;
    }

    .products .layout .img_box {
        width: 100%;
        order: 0;
    }

    .products .layout .img img {
        width: 100%;
    }

    .products .layout .box {
        width: 100%;
        display: block;
        margin-top: 20px;
        order: 1;
    }

    .products .layout .box .heading {
        font-size: 1.6rem;
        margin-top: 40px;
    }

    .products .layout .box .text {
        font-size: 1.4rem;
    }

    .products .layout .box .en_text {
        font-size: 1.3rem;
        margin-bottom: 0;
    }


    .products .layout .box .name {
        font-size: 2rem;
    }

    .products .layout .box .color,
    .products .layout .box .size {
        font-size: 1.6rem;
    }

    .products .layout .thumbnail.sp {
        display: flex;
        margin-top: 20px;
    }

    .products .layout .thumbnail.pc {
        display: none;
    }

    /* ----------------------------------------------------------
custom
---------------------------------------------------------- */

    .custom .inner {
        width: 90%;
    }

    .custom .text {
        font-size: 1.8rem;
    }

    .custom .layout {
        display: block;
        margin-top: 30px;
    }

    .custom .layout .box {
        font-size: 1.4rem;
        width: 80%;
        padding: 20px 0;
        margin: 20px auto 0;
    }

    .custom .layout .box span {
        font-size: 2rem;
    }

    .custom .layout .box:first-of-type {
        margin: 0 auto;
    }

    .custom .btn_box {
        margin-top: 10%;
    }


    .custom .img_box {
        margin-top: 12%;
    }

    .custom .img_box .thumbnail {
        margin-top: 20px;
    }

    .custom .btn_box .btn_text {
        margin-top: 10%;
        font-size: 1.4rem;
    }

    .custom .btn_box .btn {
        margin-top: 20px;
    }

    .custom .btn_box .btn a {
        width: 90%;
    }

    .custom .btn_box .order_text {
        margin-top: 30px;
    }

    .custom .btn_box .order_text li:first-of-type,
    .custom .btn_box .order_text li:last-of-type {
        width: 100%;
    }

    .custom .btn_box .order_text li:nth-of-type(2) {
        white-space: nowrap
    }

    /* ----------------------------------------------------------
contact
---------------------------------------------------------- */

    .contact .text {
        font-size: 1.6rem;
    }

    .contact .btn {
        margin-top: 10px;
    }

    .contact .btn a {
        width: 80%;
    }

    .contact .img {
        width: 100vw;
        height: 50vw;
        margin-top: 10%;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        padding: 20px 0;
    }

    .footer .buy_btn {
        position: fixed;
        right: 20px;
        bottom: 30px;
    }

    .footer .buy_btn a img {
        width: 100px;
        height: 100px;
    }

    .footer .buy_btn a .buy_text {
        font-size: 1.3rem;
        line-height: 100px;
        letter-spacing: 0.5rem;
    }

    .footer .buy_btn a .buy_text span {
        margin-right: -0.5rem;
    }

    /* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}