@charset "UTF-8";



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

kv

------------------------------------------- */
.top-kv {
	position: relative;
    background: #000;
}
#main {
	position: relative;
	overflow: hidden;
	width: 100%;
}
#main,
.CMS-NOT-EDITABLE-AREA {
	height: 100vh;
}
@media screen and (max-width: 768px) {
	#main,
	.CMS-NOT-EDITABLE-AREA {
		height: 48rem;
	}
}
.scroll {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 1rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0);
    color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll::after {
    content: "";
    width: 0.1rem;
    height: 3rem;
    margin-top: 1rem;
    background: #fff;
    animation: scroll infinite 1s;    
}
@keyframes scroll {
    0% {
        transform: scale(1,1);
        transform-origin: bottom;
    }
    100% {
        transform: scale(1,0);
        transform-origin: bottom;
    }
}




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

new

------------------------------------------- */
.top-new {
    background: url(../img/texture.jpg) center top;
    background-size: 96rem auto;
    padding: 8rem 0;
    color: #fff;
}
@media screen and (max-width: 768px) {
    .top-new {
        padding: 8rem 3rem;
    }
}
.top-new a {
    color: #fff;
}
/* ---- cms ---- */
.top-new .CMS-ARTICLE-MORE-READ {
    display: none;
}
.top-new .CMS-ARTICLE-INDEX {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 10rem;
}
.top-new .CMS-ARTICLE-INDEX {
    padding-bottom: 0;
}
.new-item .CMS-ARTICLE-INDEX > * {
    width: 45%;
}
.new-item .CMS-ARTICLE-INDEX > *:nth-of-type(n + 3) {
    margin-top: 4rem;
}
.new-item .CMS-ARTICLE-ITEM a {
    transition: all .3s;
    display: block;
}
.new-item .CMS-ARTICLE-ITEM a:hover {
    opacity: 0.6;
}
.new-item .CMS-ARTICLE-LINK {
    font-size: 1.5rem;
    line-height: 1.6;
    border-bottom: solid 0.1rem #fff;
    padding-bottom: 0.8rem;
    margin-top: 1.2rem;
}
.new-item .CMS-ARTICLE-INDEX > * img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;  
}
@media screen and (max-width: 768px) {
    .top-new .CMS-ARTICLE-INDEX {
        display: block;
    }
    .new-item .CMS-ARTICLE-INDEX > * {
        width: 100%;
    }
    .new-item .CMS-ARTICLE-INDEX > *:not(:last-of-type) {
        margin-bottom: 4rem;
    }
    .new-item .CMS-ARTICLE-INDEX > *:nth-of-type(n + 3) {
        margin-top: 0;
    }
}
/* read more */
.CMS-ARTICLE-MORE-READ {
    background: #000;
    border: none;
    padding: 1.7rem 0 1.8rem 0;
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
    width: 31%;
    display: block;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    font-size: 1.4rem;
    font-weight: 500;
}
.CMS-ARTICLE-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
/* ---- detail ---- */
.CMS-ARTICLE-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.25);
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: 500;
}
.CMS-ARTICLE-TITLE:after {
    border-bottom: solid 3px #000;
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}
.CMS-ARTICLE-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {

}



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

recommend

------------------------------------------- */
.top-recommend {
    background: #fff;
    padding: 8rem 0;
}
@media screen and (max-width: 768px) {
    .top-recommend {
        padding: 8rem 3rem;
    }
}
/* ---- ul ---- */
.top-recommend ul {
    width: 96rem;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}
.top-recommend ul li {
    flex: 1;
}
.top-recommend ul dt {
    margin: 1.5rem 0 0.5rem 0;
    font-weight: bold;
    font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
    .top-recommend ul {
        width: auto;
        display: block;
    }
    .top-recommend ul li:not(:last-child) {
        margin-bottom: 4rem;
    }
    .top-recommend ul dt {
        font-size: 1.8rem;
    }
}
/* ---- top-recommend-more ---- */
.top-recommend-more {
    margin-top: 5rem;
}
.top-recommend-more a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-en);
    font-weight: 500;
    background: url(../img/top-bg-1.jpg) no-repeat center / cover;
    width: 64rem;
    height: 8.8rem;
    margin: 0 auto;
}
.top-recommend-more a img {
    width: 10rem;
    margin-left: 1rem;
}
@media screen and (max-width: 768px) {
    .top-recommend-more {
        margin-top: 4rem;
    }
    .top-recommend-more a {
        height: 10rem;
        width: 100%;
    }
}



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

about

------------------------------------------- */
.top-about {
    background: url(../img/texture.jpg) center top;
    background-size: 96rem auto;
    padding: 8rem 0;
    color: #fff;
    display: flex;
    align-items: center;
}
.top-about > * {
    width: 50%;
}
.top-about > div {
    padding: 0 10rem 0 5rem;
}
.top-about h2 {
    text-align: left;
    border-bottom: solid 0.1rem #fff;
    padding-bottom: 0.5rem;
}
.top-about h3 {
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 1.8rem;
}
.top-about p {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0 4rem 0;
}
.top-about p .en {
    margin-top: 2rem;
    font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
    .top-about {
        padding: 8rem 3rem;
        display: block;
    }
    .top-about > * {
        width: 100%;
    }
    .top-about > div {
        padding: 0;
        margin-top: 3rem;
    }
    .top-about h2 {
        padding-bottom: 0.8rem;
    }
    .top-about h3 {
        font-size: 2.4rem;
    }
}



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

parallax

------------------------------------------- */
.bg-parallax {
    height: 30rem;
}
.bg-parallax::before {
    content: "";
    background: url(../img/bg-pa.jpg) no-repeat center / cover;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}



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

news

------------------------------------------- */
.top-news {
    padding: 8rem 0 12rem 0;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .top-news {
        padding: 8rem 3rem;
    }   
}
/* ---- more ---- */
.top-news .more {
    margin: 5rem auto 0 auto;
}
/* ---- cms ---- */
.top-news .CMS-NEWS-INDEX {
    padding-bottom: 0;
}
.top-news .CMS-NEWS-MORE-READ {
    display: none;
}



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

tab

------------------------------------------- */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.tab-label {
    background: #fff;
    order: -1;
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    position: relative;
    border-left: solid 0.1rem #000;
    line-height: 1.3;
}
@media screen and (max-width: 768px) {
    .tab-label {
        font-size: 1.2rem;
    }
}
.tab-label:last-of-type {
    border-right: solid 0.1rem #000;   
}
.tab-label:hover {
    cursor: pointer;
}
.tab-label:hover::before {
	content: "";
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #000;
	position: absolute;
	left: calc(50% - 0.35rem);
	top: -1.2rem;
	transition: all .3s;
}
.tab-content {
    width: 70%;
    display: none;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
    .tab-content {
        width: 100%;
        margin-top: 2.5rem;
    }
}
/* ---- active ---- */
.tab-switch:checked+.tab-label::before {
	content: "";
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #000;
	position: absolute;
	left: calc(50% - 0.35rem);
	top: -1.2rem;
	transition: all .3s;
}
.tab-switch:checked + .tab-label + .tab-content {
    display: block;
}
/* radio */
.tab-switch {
    display: none;
}



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

other

------------------------------------------- */
.top-other {
    background: #fff;
    display: flex;
    justify-content: center;
    padding-bottom: 12rem;
}
.top-other > * {
    width: 42rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8rem 5rem;
    color: #fff;
}
.top-other > * p {
    margin-bottom: 4rem;
}
.top-shop {
    margin-right: 4rem;
    background: url(../img/top-bg-2.jpg) no-repeat center / cover;
}
.top-contact {
    background: url(../img/top-bg-3.jpg) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
    .top-other {
        display: block;
        padding: 0;
    }
    .top-other > * {
        width: 100%;
        padding: 8rem 3rem;
    }
}



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

instagram

------------------------------------------- */
.top-insta {
	padding: 8rem 0;
    background: url(../img/texture.jpg) center top;
    background-size: 96rem auto;
    padding: 8rem 0;
    color: #fff;    
}
/* ---- wrap ---- */
.top-insta .wrap {
	margin: 0 auto;
	width: 80rem;
}
@media screen and (max-width: 768px) {
	.top-insta .wrap {
		padding: 0 3rem;
		width: auto;
	}
}
/* ---- cms ---- */
.CMS-INSTAGRAM-LIST {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
.CMS-INSTAGRAM-LIST > * {
    margin-right: 1rem;
	width: calc((100% - 2rem) / 3);
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(3n) {
    margin-right: 0;
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 4) {
    margin-top: 1rem;
}
.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
    display: none;
}



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

about

------------------------------------------- */
.about h3 {
    font-weight: 500;
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 3rem;
}
.about p {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    .about p {
        text-align: left;
        line-height: 1.8;
    }
}



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

item

------------------------------------------- */
/* ---- cms ---- */
.item .CMS-ARTICLE-INDEX {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 10rem;
}
.item .CMS-ARTICLE-INDEX > * {
    width: 31%;
    margin-right: 3.5%;
}
.item .CMS-ARTICLE-INDEX > *:nth-of-type(3n) {
    margin-right: 0;
}
.item .CMS-ARTICLE-INDEX > *:nth-of-type(n + 4) {
    margin-top: 3rem;
}
.item .CMS-ARTICLE-ITEM a {
    transition: all .3s;
    display: block;
}
.item .CMS-ARTICLE-ITEM a:hover {
    opacity: 0.6;
}
.item .CMS-ARTICLE-LINK {
    line-height: 1.6;
    margin-top: 0.5rem;
}
.item .CMS-ARTICLE-INDEX > * img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;  
}
@media screen and (max-width: 768px) {
    .item .CMS-ARTICLE-INDEX {
        display: block;
    }
    .item .CMS-ARTICLE-INDEX > * {
        width: auto;
        margin-right: 0;
    }
    .item .CMS-ARTICLE-INDEX > *:nth-of-type(n + 5) {
        margin-top: 0;
    }
    .item .CMS-ARTICLE-INDEX > *:not(:last-of-type) {
        margin-bottom: 3rem;
    }    
}



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

contact

------------------------------------------- */
.contact dt {
    display: flex;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}
.contact dt::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    margin-right: 1rem;
    margin-top: 1rem;
    background: #000;
}
.contact dd:not(:last-of-type) {
    margin-bottom: 2rem;
}
.contact dd {
    padding-left: 1.8rem;
}
.contact dd ul {
    margin-bottom: 1rem;
    font-family: var(--font-en);
}
.contact dd ul li:nth-child(1) {
    font-weight: bold;
    font-size: 2rem;
}
.contact dd ul li:not(:last-child) {
    margin-bottom: 0.3rem;
}
.contact a.mail {
    border-bottom: solid 0.1rem #66a6ef;
    color: #66a6ef;
}
.contact-form {
    margin-top: 6rem;
    margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {

}



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

form

------------------------------------------- */
.CMS-FORM-GROUP {
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP {
        display: block;
    }
}
.CMS-FORM-GROUP:not(:last-of-type) {
    margin-bottom: 4rem;
}
.CMS-FORM-GROUP > label {
    width: 30%;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP label {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    padding: 2rem;
    width: 70%;
}
.CMS-FORM-GROUP textarea {
    -webkit-appearance: none;
    appearance: none;
    border: #ddd solid 1px;
    width: 70%;
    height: 16rem;
    padding: 2rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-INPUT,
    .CMS-FORM-EMAIL,
    .CMS-FORM-GROUP textarea {
        width: 100%;
    }
}
/* ---- radio ---- */
.CMS-FORM-RADIO {
    flex-direction: column;
    display: flex;
    flex-wrap: wrap;
    white-space: nowrap;
    width: 70%;
}
.CMS-FORM-RADIO > div:not(:last-of-type) {
    margin-right: 2.5rem;
    margin-bottom: 1.2rem;
}
.CMS-FORM-RADIO > div {
    display: flex;
    align-items: center;
    width: calc(100% - 18px);
}
.CMS-FORM-RADIO > div label {
    margin-left: 0.5rem;
    margin-top: 0.3rem;
}
_::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
    margin-top: 0;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-RADIO {
        display: block;
        width: 100%;
        white-space:unset;
    }
    .CMS-FORM-RADIO > div:not(:last-of-type) {
        margin-bottom: 1.2rem;
    }
    .CMS-FORM-RADIO > div label {
        width: calc(100% - 24px);
    }
    _::-webkit-full-page-media, _:future, :root .CMS-FORM-RADIO > div label {
        margin-top: 0.7rem;
    }   
}
input[type="radio"] {
    position: relative;
    width: 18px;
    height: 18px;
    background: rgba(245,245,245,1);
    border: solid 1px #ddd;
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
input[type="radio"]:checked:before {
    content: "";
    background: var(--prime);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
}
@media screen and (max-width: 768px) {
    input[type="radio"] {
        width: 24px;
        height: 24px;
    }
    input[type="radio"]:checked:before {
        width: 12px;
        height: 12px;
    }
}
/* ---- submit ---- */
.CMS-FORM-GROUP input[type="submit"] {
    background: var(--prime);
    color: #fff;
    display: block;
    font-size: 1.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.75rem 0;
    transition: all .3s;
    width: 24rem;
    font-weight: bold;
}
.CMS-FORM-GROUP input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.5;
}
input[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration {
    display: none;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input[type="submit"] {
        width: 100%;
        font-size: 1.7rem;
    }   
}
/* ---- calendar ---- */
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    background: #fff;
    border: #ddd solid 1px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 2rem;
    width: 70%;
}
@media screen and (max-width: 768px) {
    input[type="date"] {
        width: 100%;
    }
}
/* ---- select ---- */
.select-wrap {
    position: relative;
    width: 70%;
}
.select-wrap::before {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: solid 0.15rem #333;
    border-bottom: solid 0.15rem #333;
    transform: rotate(45deg);
    position: absolute;
    right: 1.2rem;
    top: calc(50% - 0.6rem);
    z-index: 10;
}
select {
    appearance: none;
    background: #fff;
    border: solid 1px #ccc;
    border-radius: 0;
    color: #000;
    font-size: 1.4rem;
    padding: 1.6rem 4rem 1.5rem 1.5rem;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .select-wrap {
        width: 100%;
    }
}
/* ---- required ---- */
.required {
    background: rgba(220,0,0,1);
    color: #fff;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1;
    margin-left: 1.0rem;
    padding: 0.2rem 0.7rem 0.35rem 0.7rem;
    vertical-align: 0.1rem;
}
@media screen and (max-width: 768px) {
    .CMS-FORM-GROUP input:focus,
    .CMS-FORM-GROUP textarea:focus {
        font-size: 16px;
    }
}



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

privacy

------------------------------------------- */
.privacy {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    height: 20rem;
    overflow: auto;
    padding: 1.7rem 2rem;
}
.privacy-note {
    font-size: 1.2rem;
    margin: 5rem 0 2rem 0;
}



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

thanx

------------------------------------------- */
.thanx {
    text-align: center;
}
@media screen and (max-width: 768px) {
    .thanx {
        text-align: left;
    }
}
.back {
    display: block;
    text-align: center;
}
.back a {
    color: var(--prime);
}



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

shop

------------------------------------------- */
table {
    width: 100%;
    border-collapse: collapse;
    border: solid 0.17rem;
    font-size: 1.2rem;
    line-height: 1.5;
}
table th,
table td {
    vertical-align: middle;
    border: solid 0.1rem #000;
    padding: 1.2rem 1.2rem 1.3rem 1.2rem;
}
table th {
    background: #eee;
    width: 25%;
    text-align: left;
    font-family: var(--font-en);
}
table td:nth-of-type(1) {
    width: 30%;
}
table td:nth-of-type(2) {
    width: 15%;
    text-align: center;
}
table td:nth-of-type(3) {
    width: 30%;
}
table td:nth-of-type(3) a {
    width: 30%;
}
table a.link {
    color: #66a6ef; 
    word-break: break-all;
    font-family: var(--font-en);    
}
table.web td:nth-of-type(1) {
    width: 70%;
}
@media screen and (max-width: 768px) {
    table {
        font-size: 1.4rem;
    }
    table tr {
        display: flex;
        flex-direction: column;
    }
    table th {
        width: 100%;
        background: #000;
        color: #fff;
    }
    table td:nth-of-type(1) {
        width: 100%;
    }
    table td:nth-of-type(2) {
        width: 100%;
        text-align: left;
    }
    table td:nth-of-type(3) {
        width: 100%;
    }
    table td:nth-of-type(3) a {
        width: 100%;
    }
    table.web td:nth-of-type(1) {
        width: 100%;
    }
}