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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');
/*
font-family: 'Noto Sans JP', sans-serif;
300/Light
400/Regular
*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400&display=swap');
/*
font-family: 'Jost', sans-serif;
300/Light
400/Regular
*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600&display=swap');
/*
font-family: 'Shippori Mincho', serif;
Medium 500
SemiBold 600
*/

  

@font-face {
  font-family: "GilroyHeavy";
  src: url('../../font/GilroyHeavy/font.woff2') format('woff2'), url('../../font/GilroyHeavy/font.woff') format('woff');
}
@font-face {
  font-family: "AllianceNo1SemiBoldItalic";
  src: url('../../font/AllianceNo1SemiBoldItalic/font.woff2') format('woff2'), url('../../font/AllianceNo1SemiBoldItalic/font.woff') format('woff');
}







/*



@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap');
/*
font-family: 'Noto Serif JP', serif;
400/Regular
*/


/*

@import url('https://fonts.googleapis.com/css2?family=Amiri:ital@0;1&display=swap');
/*
font-family: 'Amiri', serif;
Regular 400
Regular 400 Italic
*/






/* ---------- RESET ---------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, b, u, i, center,
ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea, input {
  margin:0;
  padding:0;
  border:0;
  font-size: 100%;
  font:inherit;
  vertical-align: baseline;
  text-decoration:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, textarea, button{
  -webkit-apparence:none;
  border:none;
  background: none;
  outline: none;
}
input:focus, textarea:focus{
  -webkit-apparence:none;
  outline: none;
  border:none;
}
img{
	border:none;
	outline:none;
	vertical-align:top;
	font-size:0;
	line-height:0;
}
img a{
	border:none;
	outline: none;
}
a:focus{
	outline:none;
}
hr {
  height:0;
  margin:0;
  padding:0;
  border:0;
}
h1, h2, h3, h4, h5, h6, p{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration:none;
}

input, textarea, button{
  -webkit-apparence:none;
  border:none;
  background: none;
  outline: none;
}
a{
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

img{
	width:100%;
	height:auto;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
	transform:translate3d(0,0,0);
}
*{
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-box-shadow:none;
    box-shadow:none;   
    outline:none;
	box-sizing:border-box;
	margin:0;
	padding:0;
}

.clear:after,
ul:after,
li:after,
dl:after{
	  content: "";
	  display: table;
	  float:none;
	  clear: both;
}

html{
    width: 100%;
    height: 100%;
}

body{
	color:#51534A;
    background:#FFF;
    width: 100%;
    height: 100%;
    line-height: 1.7;
    font-size: 14px;
    -webkit-text-size-adjust: 100%;   
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'メイリオ', Arial, Meiryo, sans-serif;
    font-weight:400;/*Regular*/
	
}

/* =============================================== */


#loader-bg{
    display:block;
    position:fixed;
    width:100%;
    height:100%;
    bottom:0;
    left:0;
    background:#FFF;
    z-index:1000;
    overflow:hidden;

}
#loader-bg .spinner {
    width: 100px;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#loader-bg .spinner > div {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color:#D0CFCD;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.3s infinite ease-in-out both;
  animation: sk-bouncedelay 1.3s infinite ease-in-out both;
}

#loader-bg .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

#loader-bg .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}




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

/* standard */
.fade,
.fade.delighter{
	opacity:0;
    position: relative;
    top: 40px;
	-webkit-transition: top 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.3s;
	transition: top 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.3s;
}
/* start */
.fade.delighter.started{
	opacity:1;
    top: 0;
}

/* end */
.fade.delighter.ended{
}
/* ---------------- */


/*
body:before{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	left: 50%;
	top: 0;
	background: #FF0004;
	opacity: 0.5;
	z-index: 1000;
}
.guide:before{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	left: 5%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide:after{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	right: 5%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide2:before{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	left: 10%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide2:after{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	right: 10%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide3:before{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	left: 15%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
.guide3:after{
	content: '';
	position: fixed;
	width: 1px;
	height: 200vw;
	right: 15%;
	top: 0;
	background: #FF0004;
	opacity: 0.3;
	z-index: 1000;
}
*/




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

#header{
	width: 100%;
	padding-top: 60%;
	position: relative;
}

#header h1{
	position: absolute;
	width: 81.25%;
	z-index: 50;
	top: 75%;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}

#header h1 span{
	display: block;
	opacity: 0;
	-webkit-transition: opacity 1.2s 0.6s;
	transition: opacity 1.2s 0.6s;
}
#header.start h1 span{opacity: 1;}

#header h1:before{
	content: '';
	position: absolute;
	top: 25%;
	left: 0;
	display: block;
	width: 100%;
	height: 4%;
	opacity: 0;
	background: linear-gradient(90deg, #686058 0%, #686058 54%, #A7641A 54%, #A7641A 100%);
	-webkit-transition: top 1.4s cubic-bezier(0.76, 0, 0.3, 1), opacity 1.4s cubic-bezier(0.76, 0, 0.3, 1);
	transition: top 1.4s cubic-bezier(0.76, 0, 0.3, 1), opacity 1.4s cubic-bezier(0.76, 0, 0.3, 1);
}
#header.start h1:before{top: -15%;opacity: 0.9;}

#header h1:after{
	content: '';
	position: absolute;
	bottom: 25%;
	left: 0;
	display: block;
	width: 100%;
	height: 4%;
	opacity: 0;
	background: linear-gradient(90deg, #A7641A 0%, #A7641A 46%, #686058 46%, #686058 100%);
	-webkit-transition: bottom 1.4s cubic-bezier(0.76, 0, 0.3, 1), opacity 1.4s cubic-bezier(0.76, 0, 0.3, 1);
	transition: bottom 1.4s cubic-bezier(0.76, 0, 0.3, 1), opacity 1.4s cubic-bezier(0.76, 0, 0.3, 1);
}
#header.start h1:after{bottom: -15%;opacity: 0.9;}

#header h2{
	position: absolute;
	width: 100%;
	z-index: 10;
	top: 48%;
	left: 0;
	right: 0;
	margin: 0 auto;
	opacity: 0;
	font-size: 1.6vw;
	font-weight: 400;
	text-align: center;
	line-height: 1.3;
	letter-spacing: 0.03em;
	color: #686058;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transition: top 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.6s 0.5s;
	transition: top 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.6s 0.5s;
}
#header.start h2{opacity: 1;top: 54%;}

#header h2 span{
	display: block;
	letter-spacing: 0.07em;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: 2.1vw;
}

.cover-slider_wrap{
	position: absolute;
	width: 50%;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.cover-slider_wrap.slide01{left: 0;}
.cover-slider_wrap.slide02{right: 0;}

.cover-slider{backface-visibility: hidden;}
.cover-slider_slide{
	position: absolute;
    top: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
	left: 0;
	right:100%;
    background-size:cover;
    background-position: center;
    list-style: none;
    z-index: 1;
}
.cover-slider_slide.active{
	animation-duration: 2000ms;
	animation-fill-mode: forwards;
	animation-name: slidein;
	animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}
.cover-slider_slide.inactive{
	animation-duration: 2000ms;
	animation-fill-mode: forwards;
	animation-name: slideout;
	animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1);
}

.slide01 .cover-slider_slide:nth-child(1){background-image: url("../../images/mainpc_01.jpg");right: 0;}
.slide01 .cover-slider_slide:nth-child(2){background-image: url("../../images/mainpc_02.jpg");}
.slide01 .cover-slider_slide:nth-child(3){background-image: url("../../images/mainpc_03.jpg");}

.slide02 .cover-slider_slide:nth-child(1){background-image: url("../../images/mainpc_04.jpg");right: 0;}
.slide02 .cover-slider_slide:nth-child(2){background-image: url("../../images/mainpc_05.jpg");}
.slide02 .cover-slider_slide:nth-child(3){background-image: url("../../images/mainpc_06.jpg");}

@keyframes slidein{
	0% {left: 0;right: 100%;}
	100%  {left: 0;right: 0%;}
}
@keyframes slideout{
	0% {left: 0;right: 0;}
	100%  {left: 100%;right: 0%;}
}

#header .onward{
	position: absolute;
	width: 85px;
	top: 25px;
	right: 25px;
	z-index: 10;
}
#header .logo23ku{
	position: absolute;
	width: 80px;
	top: 26px;
	left: 26px;
	z-index: 10;
}


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

.scrollbar{
    width: 9px;
    position: absolute;
    left:0;
	right: 0;
	margin: 0 auto;
    bottom: -40px;
    height:80px;
    z-index: 50;
}
.scrollbar p{
    width: 15px;
    margin-left: 8px;
}
.scrollbar .base{
	width:1px;
	height:80px;
	position: absolute;
	bottom:0;
	left: 4px;
	overflow: hidden;
    z-index: 5;
    background:#A7641A;
}
.scrollbar .bar{
	width:1px;
	height:80px;
	position: absolute;
	bottom:0;
	left: 4px;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(
			to bottom,
			rgba(104, 96, 88, 1) 50%,
			rgba(104, 96, 88, 0) 50%
		);
		background-position: 0 -80px;
		background-size: 100% 200%;
		animation: scrolldown 5.0s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
	0% {background-position: 0 -80px;}
	50% {background-position: 0 0;}
	100% {background-position: 0 80px;}
}


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


.categoryBody{
	width: 100%;
	overflow:hidden;
}


.category{
	width: 100%;
	margin-top: 300px;
}


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





.categoryHeader{
	width: 100%;
	line-height: 1;
	color: #51534A;
}

.categoryHeader .cTitle{
	width: 100%;
	position: relative;
}
.c01 .categoryHeader .cTitle{background: linear-gradient(90deg, #BE7F44 0%, #BE7F44 50%, #FFF 50%, #FFF 100%);}
.c02 .categoryHeader .cTitle{background: linear-gradient(90deg, #B1AA96 0%, #B1AA96 50%, #FFF 50%, #FFF 100%);}
.c03 .categoryHeader .cTitle{background: linear-gradient(90deg, #1A4865 0%, #1A4865 50%, #FFF 50%, #FFF 100%);}


.categoryHeader .cTitle .cover,
.categoryHeader .cTitle.delighter .cover{
	position: absolute;
	top: -1px;
	right: calc(50% - 520px);
	bottom: 0;
	width: calc(50% + 520px);
	background: #FFF;
	z-index: 50;
	-webkit-transition: width 1.8s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.categoryHeader .cTitle.delighter.started .cover{width: 0%;}


.categoryHeader .cTitle:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 1px;
	background: #51534A;
}
.categoryHeader .cTitle .inner{
	width: 90.5%;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
}
.c01 .categoryHeader .cTitle .inner{background: linear-gradient(90deg, #6E6661 0%, #6E6661 50%, #FFF 50%, #FFF 100%);}
.c02 .categoryHeader .cTitle .inner{background: linear-gradient(90deg, #6FA5B7 0%, #6FA5B7 50%, #FFF 50%, #FFF 100%);}
.c03 .categoryHeader .cTitle .inner{background: linear-gradient(90deg, #A291B2 0%, #A291B2 50%, #FFF 50%, #FFF 100%);}
.categoryHeader .cTitle .inner:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 93.3%;
	max-width: 1200px;
	height: 1px;
	background: #51534A;
}

.categoryHeader .cTitle .titleBox{
	width: 90%;
	padding: 100px 0 95px;
	margin: 0 auto;
	position: relative;
	background: #FFF;
}

.categoryHeader .text{
	width: 100%;
	position: relative;
	padding-left: 5.5%;
	padding-bottom: 28px;
	box-sizing: border-box;
}

.categoryHeader .text:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 98.1%;
	height: 6px;
}
.c01 .categoryHeader .text:after{background: #6E6661;}
.c02 .categoryHeader .text:after{background: #6FA5B7;}
.c03 .categoryHeader .text:after{background: #A291B2;}


.categoryHeader .num,
.categoryHeader .delighter .num{
	font-family: "GilroyHeavy";
	font-size: 24px;
	display: inline-block;
	border-bottom: 6px solid;
	letter-spacing: 0.03em;
	padding: 0 0.3em;
	opacity: 0;
	left: 4%;
	position: relative;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.2s 0.5s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, opacity 1.2s 0.5s;
}
.categoryHeader .delighter.started .num{left: 0;opacity: 1;}


.c01 .categoryHeader .num{border-color:#6E6661;}
.c02 .categoryHeader .num{border-color:#6FA5B7;}
.c03 .categoryHeader .num{border-color:#A291B2;}

.categoryHeader .num span{font-size: 18px;}

.categoryHeader h2,
.categoryHeader .delighter h2{
	font-family: "GilroyHeavy";
	font-size: 64px;
	letter-spacing: 0.05em;
	margin-top: 10px;
	opacity: 0;
	left: 4%;
	position: relative;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.7s, opacity 1.2s 0.7s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.7s, opacity 1.2s 0.7s;
}
.categoryHeader .delighter.started h2{left: 0;opacity: 1;}

.categoryHeader h3,
.categoryHeader .delighter h3{
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
	font-size: 34px;
	letter-spacing: 0.05em;
	margin-top: 15px;
	opacity: 0;
	left: 4%;
	position: relative;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.4s, opacity 1.2s 1.4s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.4s, opacity 1.2s 1.4s;
}
.categoryHeader .delighter.started h3{left: 0;opacity: 1;}

.categoryHeader h3 br{display: none;}

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

.categoryHeader .cImage{
	width: 100%;
	position: relative;
	padding: 90px 0;
}
.categoryHeader .cImage .bkLeft,
.categoryHeader .cImage.delighter .bkLeft{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0%;
	z-index: 1;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.categoryHeader .cImage.delighter.started .bkLeft{width: 50%;}

.c01 .categoryHeader .cImage .bkLeft{background: #6E6661;}
.c02 .categoryHeader .cImage .bkLeft{background: #6FA5B7;}
.c03 .categoryHeader .cImage .bkLeft{background: #A291B2;}

.categoryHeader .cImage .bkRight,
.categoryHeader .cImage.delighter .bkRight{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 0%;
	z-index: 1;
	background: #BE7F44;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.categoryHeader .cImage.delighter.started .bkRight{width: 50%;}


.c01 .categoryHeader .cImage .bkRight{background: #BE7F44;}
.c02 .categoryHeader .cImage .bkRight{background: #B1AA96;}
.c03 .categoryHeader .cImage .bkRight{background: #1A4865;}

.categoryHeader .imageSet{
	width: 78%;
	max-width: 1020px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
.categoryHeader .imageSet .imageLeft,
.categoryHeader .delighter .imageSet .imageLeft{
	width: 50%;
	padding-top: 60%;
	float: left;
	position: relative;
	left: -5%;
	opacity: 0;
	background-size:cover;
	background-position: center;
	-webkit-transition: left 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.0s 0.8s;
	transition: left 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.0s 0.8s;
}
.categoryHeader .delighter.started .imageSet .imageLeft{left: 0;opacity: 1;}

.c01 .categoryHeader .imageSet .imageLeft{background-image: url("../../images/c01_left_pc.jpg");}
.c02 .categoryHeader .imageSet .imageLeft{background-image: url("../../images/c02_left_pc.jpg");}
.c03 .categoryHeader .imageSet .imageLeft{background-image: url("../../images/c03_left_pc.jpg");}

.categoryHeader .imageSet .imageRight,
.categoryHeader .delighter .imageSet .imageRight{
	width: 50%;
	padding-top: 60%;
	float: right;
	position: relative;
	right: -5%;
	opacity: 0;
	background-size:cover;
	background-position: center;
	-webkit-transition: right 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.0s 0.8s;
	transition: right 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.0s 0.8s;
}
.categoryHeader .delighter.started .imageSet .imageRight{right: 0;opacity: 1;}

.c01 .categoryHeader .imageSet .imageRight{background-image: url("../../images/c01_right_pc.jpg");}
.c02 .categoryHeader .imageSet .imageRight{background-image: url("../../images/c02_right_pc.jpg");}
.c03 .categoryHeader .imageSet .imageRight{background-image: url("../../images/c03_right_pc.jpg");}





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




.itemSet{
	width: 90%;
	max-width: 1155px;
	margin: 280px auto 0;
}

.itemSet .itemSetInner{
	width: 94.4%;
	max-width: 1090px;
}

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

.itemSet .itemHeader{
	width: 90.5%;
	margin: 0 auto;
	text-align: left;
}
.itemSet.rev .itemHeader{text-align: right;}

.itemSet .itemHeader .gender{
	font-family: "AllianceNo1SemiBoldItalic";
	font-size: 30px;
	letter-spacing: 0.12em;
	line-height: 1;
	padding: 0 1.4em 33px;
	position: relative;
	display: inline-block;
}
.itemSet .itemHeader .gender span,
.itemSet .itemHeader.delighter .gender span{
	opacity: 0;
	-webkit-transition: opacity 1.0s;
	transition: opacity 1.0s;
}
.itemSet .itemHeader.delighter.started .gender span{opacity: 1;}


.itemSet .itemHeader .gender:after,
.itemSet .itemHeader.delighter .gender:after{
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 18px;
	-webkit-transition: width 1.2s cubic-bezier(0.76, 0, 0.24, 1);
	transition: width 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}
.itemSet .itemHeader.delighter.started .gender:after{width: 100%;}

.itemSet.c0101 .itemHeader .gender:after{background: #6E6661;}
.itemSet.c0102 .itemHeader .gender:after{background: #BE7F44;}
.itemSet.c0201 .itemHeader .gender:after{background: #B1AA96;}
.itemSet.c0202 .itemHeader .gender:after{background: #6FA5B7;}
.itemSet.c0301 .itemHeader .gender:after{background: #335B75;}
.itemSet.c0302 .itemHeader .gender:after{background: #AB9DB9;}
.itemSet.c0303 .itemHeader .gender:after{background: #335B75;}
.itemSet.c0304 .itemHeader .gender:after{background: #AB9DB9;}


.itemSet .itemHeader p,
.itemSet .itemHeader.delighter p{
	font-size: 16px;
	line-height: 2.1;
	letter-spacing: 0.05em;
	margin-top: 2.4em;
	text-align: left;
	position: relative;
	top: 30px;
	opacity: 0;
	-webkit-transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.7s, opacity 1.0s 0.7s;
	transition: top 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.7s, opacity 1.0s 0.7s;
}

.itemSet .itemHeader.delighter.started p{opacity: 1;top: 0;}





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


.itemSet .detail{
	margin-top: 30px;
}

.itemSet .photoSet{
	width: 53%;
	margin-top: 9%;
	position: relative;
}
.itemSet.sta .photoSet{float: left;}
.itemSet.rev .photoSet{float: right;}

.itemSet .photoSet .photoInner{padding-top: 17%;}

.itemSet .photoSet .image{
	width: 91%;
	position:absolute;
	top:4%;
	opacity: 0;
	z-index: 10;
	overflow: hidden;
}
.itemSet.sta .photoSet .image,
.itemSet.sta .photoSet.delighter .image{
	left: 5%;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.2s 0.8s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s,top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.2s 0.8s;
}
.itemSet.sta .photoSet.delighter.started .image{left: 9%;top: 0;opacity: 1;}
/*4%movement*/

.itemSet.rev .photoSet .image,
.itemSet.rev .photoSet.delighter .image{
	right: 5%;
	-webkit-transition: right 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.2s 0.8s;
	transition: right 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s,top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.8s, opacity 1.2s 0.8s;
}
.itemSet.rev .photoSet.delighter.started .image{right: 9%;top: 0;opacity: 1;}
/*4%movement*/


.crossfade-wrap{
	position: relative;
	width: 100%;
	padding-top: 146%;
	background: #E2EAE8;
}
.cover-fade{
	backface-visibility: hidden;
}
.cover-fade_slide{
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    padding: 0;
    margin: 0;
    background-size:cover;
    background-position: center;
    list-style: none;
    z-index: 0;
}

.c0101 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0101_01.jpg");}
.c0101 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0101_02.jpg");opacity: 0;}
.c0102 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0102_01.jpg");}
.c0102 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0102_02.jpg");opacity: 0;}
.c0201 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0201_01.jpg");}
.c0201 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0201_02.jpg");opacity: 0;}
.c0202 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0202_01.jpg");}
.c0202 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0202_02.jpg");opacity: 0;}
.c0301 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0301_01.jpg");}
.c0301 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0301_02.jpg");opacity: 0;}
.c0302 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0302_01.jpg");}
.c0302 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0302_02.jpg");opacity: 0;}
.c0303 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0303_01.jpg");}
.c0303 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0303_02.jpg");opacity: 0;}
.c0304 .fade01 .cover-fade_slide:nth-child(1){background-image: url("../../images/style0304_01.jpg");}
.c0304 .fade01 .cover-fade_slide:nth-child(2){background-image: url("../../images/style0304_02.jpg");opacity: 0;}



.cover-fade_slide.active {
	animation-duration: 1200ms;
	animation-name: fadein;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
}
.cover-fade_slide.inactive {
	animation-duration: 1200ms;
	animation-name: fadeout;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes fadein {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeout {
	0% {opacity: 1;}
	100% {opacity: 0;}
}


.itemSet .photoSet .colorBK{
	width:100%;
	padding-top: calc(116% + 80px);
	position: relative;
	z-index: 1;
}
.itemSet .photoSet .colorBK span,
.itemSet .photoSet.delighter .colorBK span{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.3, 1);
	transition: width 1.5s cubic-bezier(0.76, 0, 0.3, 1);
}
.itemSet .photoSet.delighter.started .colorBK span{width: 100%;}

.itemSet.c0101 .photoSet .colorBK span{background:#6E6661;}
.itemSet.c0102 .photoSet .colorBK span{background:#BE7F44;}
.itemSet.c0201 .photoSet .colorBK span{background:#B1AA96;}
.itemSet.c0202 .photoSet .colorBK span{background:#6FA5B7;}
.itemSet.c0301 .photoSet .colorBK span{background:#335B75;}
.itemSet.c0302 .photoSet .colorBK span{background:#AB9DB9;}
.itemSet.c0303 .photoSet .colorBK span{background:#335B75;}
.itemSet.c0304 .photoSet .colorBK span{background:#AB9DB9;}

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


.itemSpec,
.delighter .itemSpec{
	position: absolute;
	bottom: 0;
	width: 83%;
	height: 80px;
	z-index: 20;
	color: #FFF;
	line-height: 1.2;
	font-family: 'Jost', sans-serif;
	font-weight: 300;
	letter-spacing: 0.08em;
	opacity: 0;
	-webkit-transition: opacity 1.0s 1.3s;
	transition: opacity 1.0s 1.3s;
}
.delighter.started .itemSpec{opacity: 1;}

.itemSet.sta .itemSpec{left: 12%;}
.itemSet.rev .itemSpec{right: 12%;}

.itemSpec dl{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: block;
	font-size: 0;
	text-align: left;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
 .itemSpec dl .name{
 	width:35%;
	display: inline-block;
	font-size: 14px;
	vertical-align: top;
}
.itemSpec dl .price{
	width: 120px;
	position: absolute;
	top: 0;
	left: 53%;
	font-size: 14px;
	text-align: right;
	vertical-align: top;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
.itemSpec dl .price span{font-size: 12px;padding-left: 5px;}

.itemSpec dl dd{
	width: 70px;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.itemSpec dl dd a{
	text-align: center;
	display: block;
	padding: 6px 0px 6px;
	width: 100%;
	line-height: 1;
	font-family: 'Jost', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

.itemSet.c0101 .itemSpec dl dd a{background:#A87537;color: #FFF;}
.itemSet.c0102 .itemSpec dl dd a{background:#80613F;color: #FFF;}
.itemSet.c0201 .itemSpec dl dd a{background:#6FA5B7;color: #FFF;}
.itemSet.c0202 .itemSpec dl dd a{background:#B1AA96;color: #FFF;}
.itemSet.c0301 .itemSpec dl dd a,
.itemSet.c0303 .itemSpec dl dd a{background:#AB9DB9;color: #FFF;}
.itemSet.c0302 .itemSpec dl dd a,
.itemSet.c0304 .itemSpec dl dd a{background:#244F70;color: #FFF;}

@media(min-width: 769px) {


.itemSet.c0101 .itemSpec dl dd a:hover{background:#FFF;color: #6C5644;}
.itemSet.c0102 .itemSpec dl dd a:hover{background:#FFF;color: #B57130;}
.itemSet.c0201 .itemSpec dl dd a:hover{background:#FFF;color: #A79F88;}
.itemSet.c0202 .itemSpec dl dd a:hover{background:#FFF;color: #5F99AF;}
.itemSet.c0301 .itemSpec dl dd a:hover,
.itemSet.c0303 .itemSpec dl dd a:hover{background:#FFF;color: #003A5D;}
.itemSet.c0302 .itemSpec dl dd a:hover,
.itemSet.c0304 .itemSpec dl dd a:hover{background:#FFF;color: #A191B2;}}



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



.itemSet .itemInfo{
	width: 43.5%;
	position: relative;
}
.itemSet.sta .itemInfo{float: right;}
.itemSet.rev .itemInfo{float: left;}

.itemSet .itemInfo .line,
.itemSet .itemInfo.delighter .line{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	-webkit-transition: height 1.5s cubic-bezier(0.76, 0, 0.3, 1) 0.4s;
	transition: height 1.5s cubic-bezier(0.76, 0, 0.3, 1) 0.4s;
}
.itemSet .itemInfo.delighter.started .line{height: 72%;}

.itemSet.sta .itemInfo .line{border-right:1px solid;}
.itemSet.rev .itemInfo .line{border-left:1px solid;}


.itemSet .itemInfo .line:before,
.itemSet .itemInfo.delighter .line:before{
	content: "";
	position: absolute;
	top: 0;
	width: 0;
	height: 1px;
	-webkit-transition: width 1.5s cubic-bezier(0.76, 0, 0.3, 1) 0.4s;
	transition: width 1.5s cubic-bezier(0.76, 0, 0.3, 1) 0.4s;
}
.itemSet .itemInfo.delighter.started .line:before{width: 100%;}

.itemSet.sta .itemInfo .line:before{right: 0;}
.itemSet.rev .itemInfo .line:before{left: 0;}

.itemSet .itemInfo .line:after{
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	height: 1px;
	-webkit-transition: width 1.3s cubic-bezier(0.76, 0, 0.3, 1) 1.5s;
	transition: width 1.3s cubic-bezier(0.76, 0, 0.3, 1) 1.5s;
}
.itemSet .itemInfo.delighter.started .line:after{width: 50%;}

.itemSet.sta .itemInfo .line:after{right: 0;}
.itemSet.rev .itemInfo .line:after{left: 0;}


.itemSet.c0101 .itemInfo .line{border-color: #7D7772;}
.itemSet.c0101 .itemInfo .line:before{background: #7D7772;}
.itemSet.c0101 .itemInfo .line:after{background: #7D7772;}
.itemSet.c0102 .itemInfo .line{border-color: #BE7F44;}
.itemSet.c0102 .itemInfo .line:before{background: #BE7F44;}
.itemSet.c0102 .itemInfo .line:after{background: #BE7F44;}
.itemSet.c0201 .itemInfo .line{border-color: #B1AA96;}
.itemSet.c0201 .itemInfo .line:before{background: #B1AA96;}
.itemSet.c0201 .itemInfo .line:after{background: #B1AA96;}
.itemSet.c0202 .itemInfo .line{border-color: #6FA5B7;}
.itemSet.c0202 .itemInfo .line:before{background: #6FA5B7;}
.itemSet.c0202 .itemInfo .line:after{background: #6FA5B7;}
.itemSet.c0301 .itemInfo .line,
.itemSet.c0303 .itemInfo .line{border-color: #335B75;}
.itemSet.c0301 .itemInfo .line:before,
.itemSet.c0303 .itemInfo .line:before{background: #335B75;}
.itemSet.c0301 .itemInfo .line:after,
.itemSet.c0303 .itemInfo .line:after{background: #335B75;}
.itemSet.c0302 .itemInfo .line,
.itemSet.c0304 .itemInfo .line{border-color: #AB9DB9;}
.itemSet.c0302 .itemInfo .line:before,
.itemSet.c0304 .itemInfo .line:before{background: #AB9DB9;}
.itemSet.c0302 .itemInfo .line:after,
.itemSet.c0304 .itemInfo .line:after{background: #AB9DB9;}


.itemSet .itemInfo .itemPhoto,
.itemSet .itemInfo.delighter .itemPhoto{
	margin-top: 20.7%;
	margin-left: 7%;
	width: 80%;
	position: relative;
	z-index: 5;
	opacity: 0;
	top: 30px;
	-webkit-transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 2.0s, opacity 1.2s 2.0s;
	transition: top 1.2s cubic-bezier(0.25, 1, 0.5, 1) 2.0s, opacity 1.2s 2.0s;
}
.itemSet .itemInfo.delighter.started .itemPhoto{opacity: 1;top: 0;}

.itemSet.sta .itemInfo .itemPhoto{margin-left: 7%;}
.itemSet.rev .itemInfo .itemPhoto{margin-left: 13%;}

/*
.itemSet .itemInfo .itemPhoto:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	opacity: 0.1;
	z-index: 10;
}
*/

.itemSet .itemInfo .otherPhoto,
.itemSet .itemInfo.delighter .otherPhoto{
	margin-top: 20%;
	width: 54%;
	position: relative;
	z-index: 5;
	opacity: 0;
	left: 30px;
	-webkit-transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 2.0s, opacity 1.2s 2.0s;
	transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1) 2.0s, opacity 1.2s 2.0s;
}
.itemSet.rev .itemInfo .otherPhoto,
.itemSet.rev .itemInfo.delighter .otherPhoto{margin-left: 46%;left: -30px;}

.itemSet .itemInfo.delighter.started .otherPhoto{opacity: 1;left: 0;}


.itemSet .itemInfo span,
.itemSet .itemInfo.delighter span{
	width: 93%;
	display: block;
	position: absolute;
	z-index: 15;
	opacity: 0;
	-webkit-transition: opacity 1.0s 2.7s;
	transition: opacity 1.0s 2.7s;
}
.itemSet .itemInfo.delighter.started span{opacity: 1;}

.itemSet .itemInfo .otherPhoto span{
	width: 137.73%;
	z-index: 15;
}
.itemSet .itemInfo span img{
	-ms-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-ms-user-drag: none;
	-moz-user-drag: none;
	-webkit-user-drag: none;
	user-drag: none;
}

.itemSet .itemInfo .t01{top: -9.5%;}
.itemSet .itemInfo .t02{bottom: -15%;}
.itemSet .itemInfo .t03{bottom: -19%;}

.itemSet.c0101 .itemInfo .t01{right: -12.5%;}
.itemSet.c0101 .itemInfo .t02{right: -6%;}
.itemSet.c0101 .itemInfo .t03{left: 43%;}

.itemSet.c0102 .itemInfo .t01{left: -5%;}
.itemSet.c0102 .itemInfo .t02{right: 0%;}
.itemSet.c0102 .itemInfo .t03{left: -67%;}

.itemSet.c0201 .itemInfo .t01{left: 2%;}
.itemSet.c0201 .itemInfo .t02{right: -2%;}
.itemSet.c0201 .itemInfo .t03{left: 28%;bottom: -26%;}

.itemSet.c0202 .itemInfo .t01{left: -6%;}
.itemSet.c0202 .itemInfo .t02{right: 2%;}
.itemSet.c0202 .itemInfo .t03{left: -67%;bottom: -26%;}

.itemSet.c0301 .itemInfo .t01{left: -1%;}
.itemSet.c0301 .itemInfo .t02{left: 30%;}
.itemSet.c0301 .itemInfo .t03{left: 48%;}

.itemSet.c0302 .itemInfo .t01{left: -6%;}
.itemSet.c0302 .itemInfo .t02{right: 0%;}
.itemSet.c0302 .itemInfo .t03{left: -67%;}

.itemSet.c0303 .itemInfo .t01{right: -10%;}
.itemSet.c0303 .itemInfo .t02{left: 5%;}
.itemSet.c0303 .itemInfo .t03{left: 48%;}

.itemSet.c0304 .itemInfo .t01{left: -13%;top: -16%;}
.itemSet.c0304 .itemInfo .t02{right: -1%;}
.itemSet.c0304 .itemInfo .t03{left: -67%;}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */







.footer{
    width:85%;
	max-width: 1000px;
	margin: 280px auto 0;
    position: relative;
}




.footer .allBanner{
    width: 100%;
    margin: 0 auto;
}
.footer .allBanner a{
	width: 100%;
	display: block;
	color: #51534A;
	border-top:2px solid #A7641A; 
	border-bottom:2px solid #A7641A; 
}
.footer .allBanner a .text{
	width: 50%;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
}
.footer .allBanner a .text h3{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	font-family: 'Shippori Mincho', serif;
	font-size: 28px;
	letter-spacing: 0.03em;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	 -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.footer .allBanner a .text h3 br{display: none;}
.footer .allBanner a .text h3 i{display: none;}

.footer .allBanner a .text h3 span{
	display: block;
	position: absolute;
	top: 38px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 300px;
	padding-top: 5%;
	background:url("../../images/allbanner_arrow.svg") top center no-repeat;
	background-size: 100%;
}

.footer .allBanner a .photo{
	width: 50%;
	margin-left: 50%;
	background:url("../../images/allbanner_pc.jpg") center center no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 20%;
}
.footer .allBanner a .photo p{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	white-space: nowrap;
	font-family: "GilroyHeavy";
    line-height: 1;
	letter-spacing: 0.05em;
	border: 1px solid #51534A;
	font-size: 24px;
	padding: 9px 12px;
	color: #51534A;
	background:rgba(215,164,97,0.65);
	opacity: 0;
	 -webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.footer .allBanner a .photo:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
	background: #FFF;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

@media(min-width:769px) {
.footer .allBanner a:hover .photo p{opacity: 1;}
.footer .allBanner a:hover .photo:after{opacity: 0.4;}
}


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


.footer .footerTitle{
	width: 86%;
	margin: 220px auto 0;
	position: relative;
	padding-bottom: 30px;
}
.footer .footerTitle h3{
	font-family: "GilroyHeavy";
    line-height: 1;
	letter-spacing: 0.05em;
	font-size: 42px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
	text-align: center;
}
.footer .footerTitle .bar{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	margin: 0 auto;
	background: #A7641A;
}


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


.footer .otherContents{
    width: 100%;
    margin: 100px auto 0;
}
.footer .otherContents .otherTitle{
	text-align: center;
	line-height: 1.7;
	font-family: 'Shippori Mincho', serif;
	font-size: 28px;
	letter-spacing: 0.05em;
	font-weight: 500;
}
.footer .otherContents .otherTitle h3{font-size: 30px;}
.footer .otherContents .otherTitle h4{font-size: 24px;margin-top: 1em;}


.footer .otherContents .inner{
    width: 100%;
    margin: 80px auto 0;
}
.footer .otherContents ul{
    width: 107%;
    font-size: 0;
}
.footer .otherContents ul li{
    width: 43%;
    margin-right: 7%;
    display: inline-block;
    vertical-align: top;
	position: relative;
}
.footer .otherContents ul li .bannerImage{
	width: 100%;
	padding-top: 45%;
	background-position:center center;
	background-size: cover;
	position: relative;
	border: 1px solid #A7641A;
}
.footer .otherContents ul li:first-child .bannerImage{background-image: url("../../images/nextbanner01.jpg")}
.footer .otherContents ul li:last-child .bannerImage{background-image: url("../../images/nextbanner02.jpg")}
.footer .otherContents ul li .bannerImage p{
	position: absolute;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 48%;
}
.footer .otherContents ul li .bannerImage p span{
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	width: 95%;
	margin: 0 auto;
	z-index: 10;
}
.footer .otherContents ul li .bannerImage a{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	background: rgba(242,242,242,0.6);
}
@media(min-width: 769px) {
.footer .otherContents ul li .bannerImage a:hover{background: rgba(242,242,242,0);}
}

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


.footer .fullLine{
    width: 110%;
	max-width: 1220px;
    height: 5px;
    margin: 230px  -5%;
	position: relative;
}

.fullLine p,
.fullLine.delighter p{
    width: 0%;
    height: 5px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background: #51534A;
    -webkit-transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1);
	transition: width 1.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.fullLine.delighter.started p{width: 100%;}



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



.footer .golf{
    width: 100%;
    margin: 0 auto;
}
.footer .golf h2{
    width:70%;
    max-width:320px;
    margin: 0 auto;
}

.footer .golf .onlinestore{
	width: 100%;
	margin-top: 90px;
}
.footer .golf .onlinestore h3{
	padding: 0.8em 0 0.7em;
	font-family: "GilroyHeavy";
    line-height: 1;
	letter-spacing: 0.05em;
	font-size: 42px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
.footer .golf .onlinestore h3:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 85%;
	height: 2px;
	background: #A7641A;
}
.footer .golf .onlinestore h3:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 2px;
	background: #A7641A;
}
.footer .golf .onlinestore h4{
	text-align: center;
	line-height: 1.7;
	font-family: 'Shippori Mincho', serif;
	font-size: 30px;
	letter-spacing: 0.08em;
	font-weight: 500;
	margin-top: 20px;
}
	
/*----------------------------*/



.footer .golf ul{
    width: 101.5%;
    font-size: 0;
    text-align: center;
    margin-top: 120px;
}
.footer .golf ul li{
    width: 18.5%;
    margin-right: 1.5%;
    display: inline-block;  
}

.footer .golf ul li a{
    display: block;
	position: relative;
    background: #DBA870;
    border: 2px solid #DBA870;
    box-sizing: border-box;
}
.footer .golf ul li:first-child{
    width: 43%;
	display: block;
	margin-left: 28.5%;
	margin-bottom: 3.5%;
}
.footer .golf ul li:last-child{
    width: 48%;
	display: block;
	margin-left: 26.0%;
	margin-top: 12%;
}	
@media(min-width: 769px) {
.footer .golf ul li a:hover{background: #FFF;border-color:#A1581A;}
}




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

.footer .sns{
    width: 100%;
    text-align: center;
    margin: 200px auto;
}
.footer .sns h3{
	font-family: "GilroyHeavy";
    line-height: 1.4;
	letter-spacing: 0.05em;
    font-size: 21px;
    position: relative;
    display: inline-block;
}
.footer .sns h3:after{
    content: "";
    display: block;
    position: absolute;
	bottom: 0;
	left: -6px;
	right: -6px;
    height: 1px;
    background: #A7641A;
}
.footer .sns .instagram{
    width: 40px;
    margin: 30px auto 0;
}

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

.footer .onwardLogo{
    width: 200px;
    margin: 0 auto;
}


.footer .copyright{
    text-align: center;
	font-family: "GilroyHeavy";
    font-size: 16px;
    letter-spacing: 0.1em;
    padding: 40px 0 40px;
}

.footer .pagetop{
    position: fixed;
    width: 40px;
    bottom: 20px;
    right: -45px;
    cursor: pointer;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	   -moz-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	    -ms-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	        transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer .pagetop.view{
    right: 10px;
}

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



@media(min-width: 769px) {
.footer .sns a:hover,
.footer .onwardLogo a:hover{
    -webkit-opacity:0.6;
	-moz-opacity:0.6;
	-ms-opacity:0.6;
	opacity:0.6;
}
}










/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.sideNavi{
    position: fixed;
    top: 50%;
    right:-85px;
    width: 85px;
    max-width:7%;
    z-index: 100;
    -webkit-transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: right 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}
.sideNavi.view{right: 0;}
.sideNavi ul{}
.sideNavi ul li{
    width: 100%;
    padding: 18px 0;
}
.sideNavi ul li a{
    display: block;
}


.sideNavi ul li a .num{
	width: 100%;
    display: block;
	color: #A9A89F;
	font-family: "GilroyHeavy";
	font-size: 15px;
	line-height: 0.8;
	position: relative;
	padding-bottom: 5px;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}
.sideNavi ul li.current a .num{color: #51534A;}
.sideNavi ul li a .num p{padding-left: 1.9em;letter-spacing: 0.02em;}
.sideNavi ul li a .num p i{font-size: 12px;}


.sideNavi ul li a .num span{
	font-size: 11px;
	position: absolute;
	font-family: "GilroyHeavy";
	top: 0;
	left: 0;
}
.sideNavi ul li a .num:after{
	content: '';
	position: absolute;
	left: 0;
	width:1.4em;
	top: 0.8em;
	height: 1px;
	background: #A9A89F;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
}
.sideNavi ul li.current a .num:after{background: #51534A;}


.sideNavi ul li a .image{
	width: 100%;
    display: block;
	position: relative;
}
.sideNavi ul li a .image:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	opacity: 1;
	background: rgba(206,209,210,0.5);
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi ul li.current a .image:after{opacity:0;}

.sideNavi ul li a:hover .num{opacity:1;}
.sideNavi ul li a:hover .image:after{opacity:0;}

.sideNavi .pagetop{
    width: 45%;
    margin: 15px auto 0;
    cursor: pointer;
}




/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



.spBottomNavi{display: none;}






