@charset "utf-8";
/* CSS Document */

.loading .cls-1 {
    animation: loading_ani 3s infinite forwards;
}

@keyframes loading_ani {
    0% { fill: #FFFFFF; }
    40% { fill: #c8b37f; }
    80% { fill: #e6d29e; }
    100% { fill: #FFFFFF; }
}


/* #topmain
----------------------------------------- */
#topmain {
    position: relative;
    height: 100vh;
}

#topmain .slick-slide img {
	width: 100%;
}

#topmain .slider {
    width : 100%;
    height: 100%;
    position: relative;
}
#topmain .slick-list {
    width : 100%;
    height: 100%;
}
#topmain .slick-track {
    width : 100%;
    height: 100%;
}
#topmain .slick-slide {
    overflow: hidden;
}
#topmain .slick-dots {
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#topmain .slick-slide .slide_wrap {
	width: 100%;
    transform: scale(1.05);
    -webkit-transition: all .5s;
	transition: all .5s;
}

#topmain .slick-slide.slick-current .slide_wrap {
    animation: slide_ani 6s 1 forwards;
}

@keyframes slide_ani {
    0% { transform: scale(1);}
    100% { transform: scale(1.05);}
}


#topmain > h1 {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
    padding-top: 100px;
}

#topmain .slider li {
  position: relative;
}

#topmain .slider li div.slide_wrap {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#topmain .slider li a:hover * {
	opacity: 1;  
    filter: alpha(opacity=100);  
	-ms-filter: "alpha( opacity=100 )";
}

#topmain .down {
    -webkit-transition: all .8s;
    transition: all .8s;
}

#topmain .down a {
  display: flex;
  align-items: flex-start;
  position: absolute;
  bottom: 25px;
  right: 25px;
  height: 100px;
  z-index: 2;
}

#topmain .down a p {
  font-size: 1.3rem;
  letter-spacing: 0.3em;
color: #FFFFFF;
    -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

#topmain .down a::before {
  content: '';
  display: block;
  background: url(../images/pagedown.svg) no-repeat bottom center;
  width: 20px;
  height: 50px;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#topmain .down a:hover::before {
  height: 100%;
}



@media only screen and (max-width: 768px) {
    #topmain {
	height : -webkit-calc(100vh + 0px) ;
    height : calc(var(--vh, 1vh) * 100);
}
	#topmain .slick-prev {
    left: 15px;
}

	#topmain .slick-next {
    right: 15px;
}
	#topmain > h1 {
    font-size: 2.0rem;
    letter-spacing: 0.09em;
    color: #FFFFFF;
	top: 0;
	width: 100%;
    max-width: 60%;
	padding-top: 20%;
}
	#topmain > h1 img {
    width: 100%;
	height: auto;
}
	#topmain > h1 p {
    font-size: 3.0rem;
    line-height: 1.4;
    margin-top: 10px;
}
    #topmain .down a {
    margin-bottom: 40px;
}
	#topmain .down a::after {
  content: '';
  display: block;
  background: url(../images/pagedown_sp.svg) no-repeat bottom center;
  width: 9px;
  height: 100%;
}
}


/* #intro
----------------------------------------- */
#intro {
    z-index: 2;
    background: url(../images/intro_bg.jpg) no-repeat center center;
    background-size: cover;
}

#intro .inner {
    max-width: 900px;
    padding: 90px 0 140px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all .8s;
    transition: all .8s;
}

#intro .intro {
	text-align: left;
	margin: 0 auto;
    height: 450px;
    justify-content: center;
    flex-direction: row-reverse;
}

#intro .intro h2 {
    -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
    font-feature-settings: normal;
	font-size: 2.4rem;
	line-height: 2.25;
	letter-spacing: 0.2em;
	margin-left: 90px;
	margin-top: 40px;
    transform-origin: top left;
    height: 100%;
}

#intro .intro .txt_box {
    -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
    font-feature-settings: normal;
	font-size: 1.6rem;
	line-height: 2.37;
	letter-spacing: 0;
    height: 100%;
    padding-top: 70px;
}


/* 基本のスタイル */
#intro.delighter .intro {
transition: all 0.8s ease-out;
transform: translateY(10%);
opacity: 0;
}

/* スタート時のスタイル */
#intro.delighter.started .intro {
transform: none;
opacity: 1;
}


@media screen and (max-width: 768px) {
	#intro {
    z-index: 2;
    background: url(../images/intro_bg_s.jpg) no-repeat center center;
    background-size: cover;
}
	
    #intro .inner {
    width: -webkit-calc(330 / 375 * 100%);
    width: calc(330 / 375 * 100%);
    margin: auto;
    padding: 80px 0 80px;
    margin-top: -30px;
}
	#intro .intro h2 {
	font-size: 2.4rem;
	line-height: 2.5;
	letter-spacing: 0.23em;
	margin-left: 0px;
    display: flex;
    align-items: center;
    height: 260px;
}
	#intro .intro .txt_box {
    -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
    font-feature-settings: normal;
	font-size: 1.5rem;
	line-height: 2;
	letter-spacing: 0.08em;
	padding-top: 0px;
}
    
    #intro .intro {
    height: auto;
}
}



/* #particular
----------------------------------------- */
#particular {
	background: rgb(255,255,255);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 90%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 90%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 90%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#000000',GradientType=0 );
	color: #000000;
}

#particular .inner {
    max-width: 100%;
    padding-bottom: 300px;
}

#particular .particular_wrap > li:first-child {
    width: -webkit-calc(540 / 1366 * 100%);
    width: calc(540 / 1366 * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#particular .particular_wrap > li:last-child {
    width: -webkit-calc(788 / 1366 * 100%);
    width: calc(788 / 1366 * 100%);
    margin-right: -webkit-calc(38 / 1366 * 100%);
    margin-right: calc(38 / 1366 * 100%);
}

#particular .particular_img > li:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 45px;
}
#particular .particular_img > li:first-child img {
    width: -webkit-calc(469 / 788 * 100%);
    width: calc(469 / 788 * 100%);
	height: auto;
}
#particular .particular_img > li:nth-child(2) {
    width: -webkit-calc(425 / 788 * 100%);
    width: calc(425 / 788 * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#particular .particular_img > li:last-child {
    width: -webkit-calc(302 / 788 * 100%);
    width: calc(302 / 788 * 100%);
}

/* 基本のスタイル */
#particular .particular_img li.delighter {
transition: all 0.8s ease-out;
transform: translateY(10%);
opacity: 0;
}

/* スタート時のスタイル */
#particular .particular_img li.delighter.started {
transform: none;
opacity: 1;
}

#particular h2.ttl {
    text-align: left;
}

#particular .txt_box {
    width: 530px;
    max-width: 100%;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: left;
    margin: 0 auto;
}

/* 基本のスタイル */
#particular .txt_box.delighter {
transition: all 0.8s ease-out;
transform: translateY(20%);
opacity: 0;
}

/* スタート時のスタイル */
#particular .txt_box.delighter.started {
transform: none;
opacity: 1;
}


@media screen and (max-width: 768px) {
	#particular .particular_wrap > li:first-child {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
		margin-bottom: 20px;
}
#particular .particular_wrap > li:last-child {
    width: 100%;
    margin-right: -webkit-calc(38 / 1366 * 100%);
    margin-right: calc(38 / 1366 * 100%);
}
#particular .txt_box br {
    display: none;
}
}




/* #products
----------------------------------------- */
#products {
}

#products .inner {
    padding-top: 120px;
    padding-bottom: 120px;
}

#products .products_slide > li {
    width: 32%;
}

#products h2.ttl {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.24em;
    padding-bottom: 40px;
}

#products h3.ttl {
    text-align: center;
    font-size: 2.0rem;
    padding-top: 40px;
}

#products .txt_box {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: center;
    margin: 0 auto 20px;
}

#products .products_slide {
    padding-top: 40px;
    margin-bottom: 100px;
}

#products .products_slide li .txt_box {
    color: #FFFFFF;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: left;
    margin-top: 20px;
}

#products .products_slide li .txt_box h4.ttl {
    font-size: 2.0rem;
}

#products .products_slide li .txt_box h4.ttl span {
    font-size: 1.3rem;
}

#products .products_slide .slick-dots li {
    width: 56px;
}

#products .products_slide .slick-dots li button:before {
    width: 56px;
}

/* 基本のスタイル */
#products .products_slide li.delighter {
transition: all 0.8s ease-out;
transform: translateY(15%);
opacity: 0;
}

/* スタート時のスタイル */
#products .products_slide li.delighter.started {
transform: none;
opacity: 1;
}


#products .remodal img {
	width: auto;
	height: auto;
}

.modal_wrap .slick-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    margin: auto;
}

.modal_wrap .slick-dots > li:only-child {
    display: none;
}


@media screen and (max-width: 768px) {
#products .products_slide > li {
    width: 100%;
	margin-bottom: 60px;
}
	#products .txt_box {
    text-align: left;
}
	#products .txt_box br {
    display: none;
}
	#products .inner {
    padding-bottom: 100px;
}
    #products .products_slide {
    margin-bottom: 0px;
}
.modal_wrap .slick-slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    margin: auto;
}
}




/* #detail
----------------------------------------- */
#detail {
}

#detail .inner {
}

#detail h2.ttl {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.24em;
    padding-bottom: 40px;
}

#detail .d_slider .slick-slide {
    position: relative;
}

#detail .d_slider img {
    width: 100%;
    height: auto;
}

#detail .d_slider img.slick-arrow {
    width: auto;
    height: auto;
}


/* 基本のスタイル */
#detail .d_slider.delighter {
transition: all 0.8s ease-out;
transform: translateY(15%);
opacity: 0;
}

/* スタート時のスタイル */
#detail .d_slider.delighter.started {
transform: none;
opacity: 1;
}

#detail .txt_box {
    position: absolute;
    top: -webkit-calc(80 / 1200 * 100%);
    top: calc(80 / 1200 * 100%);
    left: -webkit-calc(80 / 1200 * 100%);
    left: calc(80 / 1200 * 100%);
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: left;
    color: #000000;
}

#detail .txt_box h3 {
    font-size: 2.3rem;
    letter-spacing: 0;
}


@media screen and (max-width: 768px) {
	#detail .txt_box {
    position: relative;
	left: 0;
    top: 0;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: left;
    color: #FFFFFF;
	margin-bottom: 20px;
}
	#detail .d_slider img.slick-arrow {
    display: none !important;
}
	#detail .txt_box br {
    display: none;
}
}




/* #craft
----------------------------------------- */
#craft {
    background: url(../images/craft_bg.jpg) no-repeat center 200px;
    background-size: contain;
}

#craft .inner {
    max-width: 100%;
}

#craft h2.ttl {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 0.24em;
    padding-bottom: 80px;
}

#craft .txt_box {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: center;
    margin: 0 auto 100px;
}

#craft .btn {
}

#craft .btn p {
    font-size: 2.0rem;
    letter-spacing: 0;
    line-height: 1.9;
    -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
    font-feature-settings: normal;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#craft .craft_list {
    width: 100%;
    max-width: 1054px;
    margin: 0 auto 500px;
	justify-content: center;
}

#craft .craft_list > li {
    width: -webkit-calc(214 / 1054 * 100%);
    width: calc(214 / 1054 * 100%);
	margin-right: 60px;
    height: 320px;
}

#craft .craft_list > li:last-child {
    margin-right: 0px;
}

/* 基本のスタイル */
#craft .craft_list > li.delighter {
transition: all 0.8s ease-out;
transform: translateY(15%);
opacity: 0;
}

/* スタート時のスタイル */
#craft .craft_list > li.delighter.started {
transform: none;
opacity: 1;
}

#craft .craft_detail {
     margin-bottom: 80px;
}

#craft .craft_detail > li:first-child.img {
    width: -webkit-calc(654 / 1366 * 100%);
    width: calc(654 / 1366 * 100%);
}
#craft .craft_detail > li:last-child.txt {
    width: -webkit-calc(602 / 1366 * 100%);
    width: calc(602 / 1366 * 100%);
    margin-right: -webkit-calc(110 / 1366 * 100%);
    margin-right: calc(110 / 1366 * 100%);
	padding-left: -webkit-calc(50 / 1366 * 100%);
    padding-left: calc(50 / 1366 * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#craft .craft_detail > li:first-child.txt {
    width: -webkit-calc(602 / 1366 * 100%);
    width: calc(602 / 1366 * 100%);
    margin-left: -webkit-calc(110 / 1366 * 100%);
    margin-left: calc(110 / 1366 * 100%);
	padding-right: -webkit-calc(50 / 1366 * 100%);
    padding-right: calc(50 / 1366 * 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
#craft .craft_detail > li:last-child.img {
    width: -webkit-calc(654 / 1366 * 100%);
    width: calc(654 / 1366 * 100%);
}

/* 基本のスタイル */
#craft .craft_detail > li:first-child.img.delighter {
transition: all 0.8s ease-out;
transform: translateX(-15%);
opacity: 0;
}

/* スタート時のスタイル */
#craft .craft_detail > li:first-child.img.delighter.started {
transform: none;
opacity: 1;
}

/* 基本のスタイル */
#craft .craft_detail > li:last-child.txt.delighter {
transition: all 0.8s ease-out;
transform: translateX(15%);
opacity: 0;
}

/* スタート時のスタイル */
#craft .craft_detail > li:last-child.txt.delighter.started {
transform: none;
opacity: 1;
}

/* 基本のスタイル */
#craft .craft_detail > li:first-child.txt.delighter {
transition: all 0.8s ease-out;
transform: translateX(-15%);
opacity: 0;
}

/* スタート時のスタイル */
#craft .craft_detail > li:first-child.txt.delighter.started {
transform: none;
opacity: 1;
}

/* 基本のスタイル */
#craft .craft_detail > li:last-child.img.delighter {
transition: all 0.8s ease-out;
transform: translateX(15%);
opacity: 0;
}

/* スタート時のスタイル */
#craft .craft_detail > li:last-child.img.delighter.started {
transform: none;
opacity: 1;
}



#craft .craft_detail > li.txt .txt_box {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: left;
    margin: 0;
}

#craft .craft_detail > li.txt .txt_box h3 {
    font-size: 3.0rem;
    letter-spacing: 0;
    line-height: 1;
    text-align: left;
    margin-bottom: 50px;
}


@media screen and (max-width: 768px) {
	#craft {
    background: url(../images/craft_bg.jpg) no-repeat center 260px;
	background-size: contain;
}
	#craft h2.ttl {
    padding-bottom: 40px;
}
	#craft .txt_box {
    text-align: left;
}
	#craft .txt_box {
    margin: 0 auto 60px;
}
	#craft .btn {
}
	#craft .btn p {
    font-size: 1.8rem;
}
	
	#craft .craft_list {
    margin: 0 auto 60px;
}
	#craft .craft_list > li {
    width: -webkit-calc(214 / 1054 * 100%);
    width: calc(214 / 1054 * 100%);
    height: 280px;
    margin-right: 30px;
}
	#craft .craft_detail {
    margin-bottom: 60px;
}
	
	#craft .craft_detail > li:first-child.img {
    width: 100%;
	margin-bottom: 20px;
}
	#craft .craft_detail > li:last-child.txt {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
	#craft .craft_detail > li:first-child.txt {
    width: 100%;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
	#craft .craft_detail > li:last-child.img {
    width: 100%;
	margin-bottom: 40px;
}
	#craft .craft_detail > li.txt .txt_box h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
	#craft .craft_detail > li.txt .txt_box br {
    display: none;
}
}




/* #shop
----------------------------------------- */
#shop {
}

#shop .inner {
}

#shop h2.ttl {
}

#shop .txt_box {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: center;
    margin: 0 auto 100px;
}

@media screen and (max-width: 768px) {
#shop .txt_box {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2.375;
    text-align: center;
    margin: 0 auto 60px;
}
}




/* #contact
----------------------------------------- */
#contact {
}

#contact .inner {
}

#contact h2.ttl {
}

#contact .contact_wrap {
    justify-content: center;
}

#contact .contact_wrap li {
    margin-right: 45px;
}

#contact .contact_wrap li:last-child {
    margin-right: 0px;
}


/* 基本のスタイル */
#contact .contact_wrap li.delighter {
transition: all 0.8s ease-out;
transform: translateY(15%);
opacity: 0;
}

/* スタート時のスタイル */
#contact .contact_wrap li.delighter.started {
transform: none;
opacity: 1;
}

#contact .btn {
    width: 348px;
    height: 96px;
}

#contact .btn::after {
    display: none;
}

@media screen and (max-width: 768px) {
	#contact .contact_wrap li {
    margin-right: 0;
	width: 100%;
}
	#contact .contact_wrap li:first-child {
    margin-bottom: 20px;
}
	#contact .btn {
    width: 100%;
    height: 60px;
}
}
