@charset "UTF-8";

@font-face {
    font-family: "uzura";
    src:
        url("../fonts/uzura.woff2") format("woff2");
    font-display: auto;
    font-weight: 300 600;
}

.noto-sans,
* {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
}

:root {
    --mainColo: #BEA46E;
    --light: rgba(190, 164, 110, 0.55);
    --white: white;
    --text-color: #363636;
    --light-gray: #BBBBBB;
    --frame-position: 25%;
}

.text-brown {
    color: var(--mainColo);
}

.container {
    padding: 0 20px;
}

.uzura {
    font-family: uzura;
}

.scroll-container {
    scroll-behavior: smooth;
}

.show-under-line {
    text-decoration: underline !important;
}

.hide-under-line {
    text-decoration: none !important;
}

.font-default {
    font-family: sans-serif;
}

.aioseo-breadcrumbs {
    margin-bottom: 8px;

    * {
        font-size: 16px;
    }

    .aioseo-breadcrumb-separator {
        color: #949494;
        font-family: sans-serif;
    }
}

img {
    width: 100%;
    height: auto;
}

.inner {
    width: 100%;
}

body {
    background-color: white;
}


.frame {
    max-width: 768px;
    /* background-color: white; */
    overflow: hidden;
    z-index: 10;
}

span.frame {
    height: 100vh;
    box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.25);
    display: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

@media screen and (min-width:768px) {
    .frame {
        width: 425px;
        /* margin-left: 25vw; */
        margin: 0 auto;
    }

    span.frame {
        display: block;
    }
}

.container {
    padding: 20px;
}

.h2 {
    font-weight: bold;
}

@media (min-width:768px) {
    #frame {
        width: 100%;
        max-width: 425px;
        position: absolute;
        top: 0;
        right: var(--frame-position);
        /* left: 50%; */
        /* translate: 0%; */
        box-shadow: 0 0 14px 7px #00000017;
    }
}


/* --flex-- */
.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
}

.flex-right {
    justify-content: right;
}

.flex-left {
    justify-content: left;
}

.space-between {
    justify-content: space-between;
}

.flex-start {
    justify-content: flex-start;
}

.flex-align-center {
    align-items: center;
}

.flex-align-end {
    align-items: end;
}

.flex-align-start {
    align-items: start;
}

.flex-clumn {
    flex-direction: column;
}

.open-btn {
    width: 60px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-top: 10px;
}

.open-btn span {
    background-color: var(--white);
    width: 100%;
    height: 1px;
}

.open-btn.open span:nth-of-type(1) {
    animation: navSpan1-open 1s both;
}

.open-btn.open span:nth-of-type(2) {
    animation: navSpan2-open 1s both;
}

.open-btn.open span:nth-of-type(3) {
    animation: navSpan3-open 1s both;
}

.open-btn.close span:nth-of-type(1) {
    animation: navSpan1-close 1s both;
}

.open-btn.close span:nth-of-type(2) {
    animation: navSpan2-close 1s both;
}

.open-btn.close span:nth-of-type(3) {
    animation: navSpan3-close 1s both;
}

/* open */
@keyframes navSpan1-open {
    from {
        transform: rotate(0);
    }

    to {
        transform: translate(3px, 7.5px)rotate(42deg);
    }
}

@keyframes navSpan2-open {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-25px);
        opacity: 0;
    }
}

@keyframes navSpan3-open {
    from {
        transform: rotate(0);
    }

    to {
        transform: translate(3px, -7.5px)rotate(-42deg);
    }
}

/* close */
@keyframes navSpan1-close {
    from {
        transform: translate(3px, 7.5px)rotate(42deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes navSpan2-close {
    from {
        transform: translateX(-25px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes navSpan3-close {
    from {
        transform: translate(3px, -7.5px)rotate(-42deg);
    }

    to {
        transform: rotate(0);
    }
}

/* nav */
body {
    font-family: arial;
    overflow-x: hidden;
}

.navigation {
    list-style: none;
    /* background: #111; */
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

@media (min-width:768px) {
    .navigation {
        right: var(--frame-position);
    }
}

.nav-trigger {
    display: block;
    width: 0;
    height: 0;
}

/*Navigation Menu Items */
.nav-item {
    width: 300px;
    border-top: 1px solid #111;
    border-bottom: 1px solid #000;
}

.nav-item a {
    color: #fff;
    display: block;
    padding: 1em;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    text-decoration: none;
    transition: color 0.5s, background 0.5s;
}

.nav-item a:hover {
    color: #c74438;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(75, 20, 20, 0.65) 100%);
}

.site-wrapper {
    min-width: 100%;
    min-height: 100%;
    background-color: #ffffff;
    position: relative;
    top: 0;
    bottom: 100%;
    right: 0;
    z-index: 1;

}

label[for="nav-trigger"] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999;
    height: 60px;
    width: 60px;
    cursor: pointer;
    transition: 0.5s;
    @media (min-width:768px) {
        right: calc(var(--frame-position) + 20px);
    }
}

.nav-trigger:checked+label {
    right: 315px;
}

.nav-trigger:checked~.site-wrapper {
    right: 300px;
    /* box-shadow: 5px 0px 9px 0px rgb(0 0 0 / 30%); */
}

.nav-trigger:checked~.navigation {
    box-shadow: inset 5px 0px 9px 0px rgb(0 0 0 / 30%);
}

.nav-trigger,
.site-wrapper {
    transition: 0.5s;
}

.nav-span {
    width: 50px;
    height: 2px;
    background-color: var(--white);
    position: fixed;
    right: 20px;
    transition: .3s;
    z-index: 100;
    @media (min-width:768px) {
        right: calc(var(--frame-position) + 20px);
    }
}

.span1 {
    top: 28px;
}

.span2 {
    top: 37px;
}

.span3 {
    top: 46px;
}

.nav-trigger:checked~.nav-span {
    background-color: var(--text-color);
}

.nav-trigger:checked~.span2 {
    display: none;
}

.nav-trigger:checked~.span1 {
    width: 27px;
    transform: rotate(45deg);
    top: 37px;
    right: 20px;
    @media (min-width:768px) {
        right: calc(var(--frame-position) + 20px);
    }
}

.nav-trigger:checked~.span3 {
    width: 27px;
    transform: rotate(-45deg);
    top: 37px;
    right: 20px;
    @media (min-width:768px) {
        right: calc(var(--frame-position) + 20px);
    }
}
/* nav end */

/* nav container */
.navigation {
    margin-left: auto;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    padding-top: 100px;
    padding-left: 30px;
    background-color: var(--white);
}

.navigation ul,
.navigation li {
    margin-bottom: 0;
    padding-left: 0;
}

.navigation * {
    list-style: none;
    text-decoration: none;
}

.navigation .nav-list {
    font-size: 20px;
    margin-bottom: 1.1em;
}

.navigation .nav-list:last-child {
    margin-bottom: 60px;
}

.navigation .nav-list span {
    display: block;
    font-size: .8em;
    margin-bottom: .1em;
}

.insta-box .sns-icon {
    width: 50px;
    height: 50px;
    margin-top: 30px;
    margin-right: 50px;
    display: block;
}

.insta-box .sns-icon svg {
    fill: var(--text-color);
}

.insta-box p * {
    font-size: 20px;
}

.insta-box .sns-arrow {
    position: absolute;
    top: 50px;
    left: 50px;
}
/* nav container end */

/* header */
.logo-box {
    width: 45px;    
}

header {
    position: fixed !important;
    width: 100%;
    min-height: auto !important;
    min-width: auto !important;
    bottom: auto !important;
    z-index: 10 !important;
    background-color: transparent !important;
    width: 100% !important;
    right: 0 !important;
}

@media (min-width:768px) {
    header {
        width: 425px !important;
        right: var(--frame-position) !important;
    }
}

header .innr {
    padding: 20px 0;
}

header .open-btn span {
    color: white;
    width: 60px;
    height: 1px;
}

.main-vix-text {
    position: absolute;
    right: 20px;
    left: 20px;
    color: white;
}

.main-vis {
    position: relative;
}

h1.site-ttl {
    top: 50%;
    font-size: 30px;
    filter: drop-shadow(0px 0px 4px #444);
}

.site-sabtext {
    top: 60%;
    font-size: 20px;
    filter: drop-shadow(0px 0px 4px #444);
    text-align: right;
}

.introduct {
    background-color: var(--light);
    position: relative;
}

.introduct .text-box {
    background: var(--white);
    width: 70%;
    border-radius: 0 64px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    translate: 0 -80px;
    height: min(80vw, 600px);
}

.introduct .text-box p:first-child {
    color: var(--mainColo);
}

.intro-card-box {
    padding-top: 180px;
    position: relative;
}

.intro-card-box img {
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.25);
}

.intro-card-box img:nth-child(2) {
    margin: 30px 0 40px;
}


/* btn.php */
.btn-container {
    width: 100%;
    display: block;
    text-align: center;
    margin: 1em 0;
}

.btn-container a {
    border-radius: 100vmax;
    text-align: center;
    font-size: 24px;
    text-decoration: none;
    width: 100%;
    display: inline-block;
    padding: .6em 0;
    font-weight: bold;
}

.btn-container.white a {
    background-color: white;
    border: none;
    color: var(--mainColo);
}

.btn-container.brown a {
    background-color: var(--mainColo);
    border: none;
    color: var(--white);
}

.section-sub-ttl.brown {
    color: var(--mainColo);
    text-align: center;
}

.section-sub-ttl.black {
    color: var(--text-color);
    text-align: center;
    display: inline-block;
}

.section-ttl {
    text-align: center;
    margin-bottom: 35px;
}

.section {
    margin-top: 60px;
}

.about .logo-box {
    margin: 45px auto;
}

.about p {
    text-align: center;
}

.illust .flex .img-box:first-child {
    margin-right: 10px;
}

.illust .flex .img-box {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.illust .flex .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.illust .img-box {
    margin-bottom: 1em;
}

/* Q & A */
.cp_qa *,
.cp_qa *:before,
.cp_qa *:after {
    /* font-family: 'FontAwesome', sans-serif; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_qa {
    margin: 0 auto;
    background: #ffffff;
}

.cp_qa input {
    display: none;
}

/* カテゴリー */
.cp_qa #cp_content1,
.cp_qa #cp_content2,
.cp_qa #cp_content3,
.cp_qa #cp_content4 {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid var(--mainColo);
}

.cp_qa label.cp_tabitem {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    text-align: center;
    color: #bbbbbb;
    border: 1px solid transparent;
}

.cp_qa label.cp_tabitem svg {
    fill: var(--mainColo);
    width: auto;
    height: 25px;
}

.cp_qa label.cp_tabitem:before {
    margin-right: 10px;
}

.cp_qa label.cp_tabitem:hover {
    cursor: pointer;
    color: #888888;
}

.cp_qa input:checked+label {
    color: #555555;
    border: 1px solid var(--mainColo);
    border-bottom: 1px solid #ffffff;
}

/* --ブロックのバーの色 */
.cp_qa input:checked+label[for*='1'] {
    border-top: 5px solid var(--mainColo);
}

.cp_qa input:checked+label[for*='2'] {
    border-top: 5px solid var(--mainColo);
}

.cp_qa input:checked+label[for*='3'] {
    border-top: 5px solid var(--mainColo);
}

.cp_qa input:checked+label[for*='4'] {
    border-top: 5px solid var(--mainColo);
}

@media screen and (max-width: 650px) {
    .cp_qa label.cp_tabitem {
        font-size: 0;
    }

    label:before {
        font-size: 18px;
        margin: 0;
    }
}

@media screen and (max-width: 400px) {
    .cp_qa label.cp_tabitem {
        padding: 15px;
    }

    .cp_qa label.cp_tabitem:before {
        margin-right: 0px;
    }
}

/* QAブロック */
.cp_qa #cp_conttab1:checked~#cp_content1,
.cp_qa #cp_conttab2:checked~#cp_content2,
.cp_qa #cp_conttab3:checked~#cp_content3,
.cp_qa #cp_conttab4:checked~#cp_content4 {
    display: block;
}

.qa_box *,
.qa_box *:after,
.qa_box *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.qa_box {
    overflow-x: hidden;
    margin: 0 auto;
    color: #333333;
}

.qa_box .cp_actab {
    padding: 20px 0;
}

.qa_box label {
    font-size: 1.2em;
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 19px 46px;
    cursor: pointer;
    border-radius: 3px;
    background-color: var(--light);
}

.qa_box .cp_actab-content {
    font-size: 1em;
    position: relative;
    overflow: hidden;
    height: 0;
    /* margin: 0 40px; */
    padding: 0 14px 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    opacity: 0;
}

.qa_box .cp_actab input[type=checkbox]:checked~.cp_actab-content {
    height: auto;
    padding: 14px;
    opacity: 1;
}

.qa_box .cp_down {
    font-size: 2.4em;
    line-height: 100%;
    position: absolute;
    z-index: 5;
    margin: 12.5px 0 0 0;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
    right: 30px;
    width: 30px;
    fill: var(--mainColo);
}

.qa_box .icon {
    position: absolute;
    background-color: var(--white);
    border-radius: 100vmax;
    z-index: 5;
    width: 30px;
    height: 30px;
    margin: 12.5px 0 0 8px;
}

.qa_box .icon span {
    color: var(--mainColo);
    text-align: center;
    font-size: 2em;
    display: flex;
    justify-content: center;
    translate: 0 -2px;
}

.qa_box .cp_actab input[type=checkbox]:checked~.cp_down {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.qa_box .cp_actab input[type=checkbox] {
    display: none;
}

/* footer */
.footer-nav {
    margin: 50px 0;
}
.footer-nav * {
    list-style: none;
    text-decoration: none;
}

.footer-nav ul {
    margin-bottom: 0;
    padding-left: 0;
}

.footer-nav li {
    margin-bottom: .5em;
}

.dli-caret-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--mainColo);
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.375em 0.64952em;
    border-left-color: currentColor;
    border-right: 0;
}

.background-wraper {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: block;
    /* padding: 20px; */
}

.splide__track {
    height: 100%;
}

.splide__slide {
    width: 100%;
    height: 100%;
}

.design ,
.design-single {
    padding-top: 100px;
}

.design .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.design .list * {
    text-decoration: none;
}

.design .list .text-box {
    display: grid;
    grid-template-rows: 60px 1fr;
}

.design .list article {
    flex-basis: 48%;
}

.design .list .color {
    display: flex;
}

.design .list .color_icon {
    width: 20px;
    height: 20px;
    display: block;
}

.design .list .color_icon:not(:last-child) {
    margin-right: 8px;
}

.design .list .illustrator-box {
    margin-top: 8px;
    display: flex;
}

.design .list .illustrator {
    background-color: var(--light-gray);
    font-weight: bold;
    color: var(--white);
    padding: .2em;
    border-radius: 100vmax;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.design .list .illustrator:not(:last-child) {
    margin-right: 8px;
}

.design-single .card {
    width: 100%;
    aspect-ratio: 91/55;
    position: relative;
    cursor: pointer;
}

.design-single a {
    text-decoration: none;
}

.design-single .card .back,
.design-single .card .front {
    transition: all 0.6s;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
}

.design-single .card .back {
    transform: rotateY(-180deg);
}

.design-single .card:hover .front {
    transform: rotateY(180deg);
}

.design-single .card:hover .back {
    transform: rotateY(0);
}

.design-single .color-box {
    display: flex;
    margin-top: 20px;
}

.design-single .color-box .color_icon {
    display: block;
    width: 38px;
    height: 38px;
}

.design-single .color-box .color_icon:not(:last-child) {
    margin-right: 16px;
}

.design-single .price {
    font-weight: bold;
    color: var(--text-color);
    font-size: 1.5em;
    margin: 10px 0 40px;
} 

.design-single .illustrator-box {
    display: flex;
    align-items: center;
    font-size: .8em;
}

.design-single .illustrator-box a {
    color: var(--light-gray);
    font-weight: bold;
    display: flex;
    align-items: center;
}

.design-single .illustrator-box a:not(:last-child) {
    margin-right: .8em;
}


.design-single .illustrator-box .icon {
    color: var(--white);
    background-color: var(--light-gray);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vmax;
    font-weight: bold;
    margin-right: .2em;
}

.design-single .item-box {
    margin: 50px 0 100px;
}

.float-btn-box {
    width: 100%;
    position: fixed;
    top: 80vh;
    z-index: 20;
    @media (min-width:768px) {
        width: 425px;
    }
}

.float-btn-box a {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--white);
    background-color: var(--mainColo);
    border-radius: 100vmax;
    padding: .8em 1em;  
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: none;
    box-shadow: 0 5px 6px #9f9f9f8a;
    background: linear-gradient(26deg, var(--mainColo), #d1c2a2);
}


/* logo */
body:has(.front-page) header .left .logo-box svg {
    fill: var(--white);
}

body header .left .logo-box svg {
    fill: var(--mainColo);
}

body:has(.front-page) .nav-span {
    background-color: var(--white);
}

body .nav-span {
    background-color: var(--text-color);
}

.qa-section {
    background-color: var(--white);
}

.ribbon-box {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 25px 0;
}

.ribbon-box img {
    position: absolute;
    left: -30px;
}