/* ----------
	common
---------- */
body {
	background: #fff;
	color: #333;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-family: 'Sacramento', cursive;
	font-family: 'Libre Baskerville', serif;
}
@media (min-width: 768px) {
	body {
		min-width: 1200px;
	}
}
.container {
	overflow-x: hidden;
	width: 100%;
}

.b {
	font-weight: bold;
}
.big {
	font-size: 1.25em;
}
.small {
	font-size: .8em;
}
mark {
	background: linear-gradient(transparent 70%, yellow 70%);
}


/* ---------------
	    header
------------------ */

#site-header {
	display: flex;
	justify-content: space-between;
	padding: 10px;
	width: 100%;
}
@media (max-width: 767px) {
	#site-header {
		align-items: center;
		filter: drop-shadow(0 3px 3px rgba(0,0,0,.2));
		left: 0;
		padding: 8px 12px;
		position: fixed;
		top: 0;
		background: rgba(255,255,255,0.9);
		z-index: 999;
	}
}

#site-header .brand {
	width: 200px;
}
@media (max-width: 767px) {
	#site-header .brand {
		width: 100px;
	}
}

#site-header #nav-switch,
#site-header #nav-close {
	display: none;
}

@media (max-width: 767px) {
	#site-header #nav-switch {
		color: #92617E;
		display: block;
		font-size: 24px;
		transition: .3s;
	}
	#site-header nav {
		background: #92617E;
		bottom: 0;
		filter: opacity(.9);
		min-height: 100vh;
		padding: 40px 20px;
		position: fixed;
		right: 0;
		top: 0;
		transform: translateX(100%);
		transition: .5s;
		width: 50%;
		z-index: 1000;
	}
	#site-header #nav-close {
		color: #fff;
		display: block;
		font-size: 24px;
		position: absolute;
		right: 12px;
		top: 8px;
	}

	/* open */
	#site-header #nav-switch .open {
		filter: opacity(0);
	}
	#site-header nav.open {
		transform: translateX(0);
		padding: 0 20px;
		position: absolute;

	}
}

ul {
  list-style-type: none;
}

a {
  color: #222;
  text-decoration: none;
}



/** =======================
 * Contenedor Principal
 ===========================*/

 .accordion {
  width: 100%;
  max-width: 1400px;
  margin: 10px 30px 10px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: flex;
 }

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 60px;
  color: #222;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li i {
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-angle-up {
	position: relative;
	right: -10px;
	font-size: 20px;
}

.accordion li.open i.fa-angle-up {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*.accordion li.default .submenu {display: block;}*/


/**
 * Submenu
 -----------------------------*/
.submenu {
	display: none;
    background: #fff;
    font-size: 14px;
    position: absolute;
    z-index: 1000
}

.submenu a {
	display: block;
    text-decoration: none;
    color: #222;
    padding: 12px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.submenu a:hover {
    background: #b63b4d;
    color: #FFF;
}

@media (max-width: 767px) {
	.accordion{
		display: block;
		background: none;
		margin: 0;
		margin-top: 40px;
	}
	.accordion .link {
		color: #fff;
		padding: 15px;
	}
	.accordion li i.fa-angle-up {
		right: -13px;
		color: #fff;
	}
	.submenu li {
		width: 160px;
	}
	.submenu a {
		padding-left: 10px;
		text-align: center;
	}
	.submenu li {
		border-bottom: 1px solid #4b4a5e;
	}
	a {
		color: #fff;
	}
}



/* ---------------
	   footer
------------------ */

#site-footer {
	padding: 30px;
	text-align: center;
	width: 100%;
	background-color: #92617E;
	color: #fff;
	font-size: 14px;
}

#site-footer .brand .img {
	width: 200px;
	display: inline-block;
	text-align: center;
}

@media (max-width: 767px) {
	#site-footer .brand .img{
		width: 200px;
	}
}

/* ---------------
	   index
----------------- */

/* common */
.index section {
	padding: 40px 0;
}

.index .body {
	padding: 0 40px;
	max-width: 1200px;
}
@media (max-width: 767px) {
	.index .body {
		padding: 0 20px;
	}
}

.index .tit {
	text-align: center;
}

.index .tit .en {
	font-family: 'Sacramento', cursive,'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	font-size: 24px;
}

.index h2 {
	font-size: 40px;
	margin: 20px 0;
}
@media (max-width: 767px) {
	.index h2 {
		font-size: 7vw;
	}
}

.index h3 {
	font-size: 24px;
}

.index h5 {
	margin: 20px 0;
}


.index .txt p {
	line-height: 200%;
}
/* /common */

/*--------KV---------*/

.index .kv {
	position: relative;
	overflow: hidden;
}
@media (max-width: 767px) {
	.index .kv {
		height: 100vw;
	}
}

.index .kv .tit h1 {
	display: none;
}

.index .kv .tit h2 {
	background: none;
	font-size: 34px;
}
@media (max-width: 767px) {
	.index .kv .tit h2 {
		font-size: 26px;
		color: #fff;
		text-shadow: 
    #222 2px 0px 2px, #222 -2px 0px 2px,
    #222 0px -2px 2px, #222 -2px 0px 2px,
    #222 2px 2px 2px, #222 -2px 2px 2px,
    #222 2px -2px 2px, #222 -2px -2px 2px,
    #222 1px 2px 2px, #222 -1px 2px 2px,
    #222 1px -2px 2px, #222 -1px -2px 2px,
    #222 2px 1px 2px, #222 -2px 1px 2px,
    #222 2px -1px 2px, #222 -2px -1px 2px,
    #222 1px 1px 2px, #222 -1px 1px 2px,
    #222 1px -1px 2px, #222 -1px -1px 2px;
	}
}

.index .kv .tit {
	color: #222222;
	left: 40%;
	position: absolute;
	top: 40%;
	transform: translate(-50%,-50%);
	z-index: 10;
}
@media (max-width: 767px) {
	.index .kv .tit {
		width: 100%;
		top: 67%;
		left: 50%;
	}
}

.index .kv .tit p {
	font-size: 24px;
	position: absolute;
	color: #982827;
	font-weight: bold;
	top: 180px;
}
@media (max-width: 767px) {
	.index .kv .tit p {
		display: none;
	}
}


.pc { display: block !important; }
.sp { display: none !important; }

	
@media (max-width: 767px) {
	.index .kv {
		height: 120vw;
		margin-top: 55px;
	}
    .pc { display: none !important; }
    .sp { display: block !important; }
}


.text-move {
  opacity: 0;
  display: inline-block;
  transform: scale(1.25) translate(8px, 4px);
  letter-spacing: 0.02em;
}

.text-move:nth-child(1) {
  transition: opacity 1.2s ease 0.1s, transform 1.2s ease 0.2s;
}
.text-move:nth-child(2) {
  transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.25s;
}
.text-move:nth-child(3) {
  transition: opacity 1.2s ease 0.25s, transform 1.2s ease 0.3s;
}
.text-move:nth-child(4) {
  transition: opacity 1.2s ease 0.3s, transform 1.2s ease 0.35s;
}
.text-move:nth-child(5) {
  transition: opacity 1.2s ease 0.35s, transform 1.2s ease 0.4s;
}
.text-move:nth-child(6) {
  transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.45s;
}
.text-move:nth-child(7) {
  transition: opacity 1.2s ease 0.45s, transform 1.2s ease 0.5s;
}
.text-move:nth-child(8) {
  transition: opacity 1.2s ease 0.5s, transform 1.2s ease 0.55s;
}
.text-move:nth-child(9) {
  transition: opacity 1.2s ease 0.55s, transform 1.2s ease 0.6s;
}
.text-move:nth-child(10) {
  transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.65s;
}
.text-move:nth-child(11) {
  transition: opacity 1.2s ease 0.65s, transform 1.2s ease 0.7s;
}
.text-move:nth-child(12) {
  transition: opacity 1.2s ease 0.7s, transform 1.2s ease 0.75s;
}
.text-move:nth-child(13) {
  transition: opacity 1.2s ease 0.75s, transform 1.2s ease 0.8s;
}
.text-move:nth-child(14) {
  transition: opacity 1.2s ease 0.8s, transform 1.2s ease 0.85s;
}
.text-move:nth-child(15) {
  transition: opacity 1.2s ease 0.85s, transform 1.2s ease 0.9s;
}
.text-move:nth-child(16) {
  transition: opacity 1.2s ease 0.9s, transform 1.2s ease 0.95s;
}
.text-move:nth-child(17) {
  transition: opacity 1.2s ease 0.95s, transform 1.2s ease 1s;
}
.text-move:nth-child(18) {
  transition: opacity 1.2s ease 1s, transform 1.2s ease 1.05s;
}
.text-move:nth-child(19) {
  transition: opacity 1.2s ease 1.05s, transform 1.2s ease 1.1s;
}
.text-move:nth-child(20) {
  transition: opacity 1.2s ease 1.1s, transform 1.2s ease 1.15s;
}
.text-move:nth-child(21) {
  transition: opacity 1.2s ease 1.15s, transform 1.2s ease 1.2s;
}
.text-move:nth-child(22) {
  transition: opacity 1.2s ease 1.2s, transform 1.2s ease 1.25s;
}
.text-move:nth-child(23) {
  transition: opacity 1.2s ease 1.25s, transform 1.2s ease 1.3s;
}
.text-move:nth-child(24) {
  transition: opacity 1.2s ease 1.3s, transform 1.2s ease 1.35s;
}
.text-move:nth-child(25) {
  transition: opacity 1.2s ease 1.35s, transform 1.2s ease 1.4s;
}
.text-move:nth-child(26) {
  transition: opacity 1.2s ease 1.4s, transform 1.2s ease 1.45s;
}
.text-move:nth-child(27) {
  transition: opacity 1.2s ease 1.45s, transform 1.2s ease 1.5s;
}

.text.active {
  opacity: 1;
}

.text.active .text-move {
  opacity: 1;
  transform: scale(1) translate(0);
}




/* --------------
   section-1
   ------------ */

.index #section-1 {
	padding: 0 0 80px;
	position: relative;
	top: -50px;	
}

.index #section-1 .txt {
	text-align: center;
}

.index #section-1 {
	background: url(../img/fashion.png),
	            url(../img/cat1.png);
	background-repeat: no-repeat,
	                   no-repeat;
	background-size: 23%,
	                 30%;
	background-position: -5% 30%,
	                     right 100%;
}
@media (max-width: 767px) {
	.index #section-1 {
		background: url(../img/fashion.png),
	            url(../img/cat1.png);
	background-repeat: no-repeat,
	                   no-repeat;
	background-size: 32%,
	                 50%;
	background-position: -5% 57%,
	                     right 100%;
	}
}

h3 {
	background: url(../img/line.png);
	background-repeat: no-repeat; /* 背景画像を繰り返し表示しません。 */
	background-position: center;
	padding: 0 0 30px;
	color: #444;
}
@media (max-width: 767px) {
	.index #section-1 h3 {
		margin-top: 70px;
	}
}

h4 {
	color: #92617E;
	font-size: 24px;
}

.index #section-1 .body {
	margin: 50px auto 0;
}

.body .txt span {
	color: #92617E;
}

@media (max-width: 767px) {
	.index #section-1 .body .txt {
		font-size: 14px;
	}
}


/* --------------------
      section-2 
 ----------------------*/

.index #section-2 {
	background: #92617E;
	color: #fafafa;
	background-size: 10px 10px;
}

.index #section-2 .tit {
	text-align: center;	
}

.index #section-2 .txt {
	text-align: center;
}

.index #section-2 h5 {
	font-size: 24px;
}

.index #section-2 .body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
}

.index #section-2 {
	padding: 0 0 25px;
}

.index #section-2 p {
	line-height: 1.5em;
}


@media (max-width: 767px) {
	.index #section-2 .group {
		margin: 0 auto;
		margin-bottom: 30px;
	}
}


/* 順番にフェードイン用のCSS */
.group:nth-child(1) {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1.3s 0s ease-out;
 }
.group:nth-child(2) {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1.3s 0.3s ease-out;
 }
.group:nth-child(3) {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1.3s 0.6s ease-out;
 }
.group:nth-child(4) {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1.3s 0.9s ease-out;
 }
.group:nth-child(5) {
   opacity: 0;
   transform: translateY(20px);
   transition: all 1.3s 1.2s ease-out;
 }


/*-----------------------
　　リンクボタンの設置
-----------------------*/

.btn-open {
  display: inline-block;
  width: 250px;
  height:40px;
  text-align: center;
  background-color: #fff;
  font-size: 14px;
  line-height: 40px;
  color: #92617E;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #fff;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  z-index: 1;
}
.btn-open:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #92617E;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .2s;
  z-index: -1;
}
.btn-open:hover{
  color: #CC5B3B;
}
.btn-open:hover:after{
  height: 240%;
  opacity: 1;
}
.btn-open:active:after{
  height: 340%;
  opacity: 1;
}

.group-2 .btn-open {
	top: 120px;
}

@media (max-width: 767px) {
	.index #section-2 .group-2 .btn-open {
		top: 0;
	}
}

.group-3 .btn-open {
	top: 37px;
}
@media (max-width: 767px) {
	.index #section-2 .group-3 .btn-open {
		top: 0;
	}
}


/*-------------------
     section-3 
---------------------*/
.index #section-3 .body {
	margin: 40px auto 0;
	max-width: 1000px;
}

.img-menu {
	position: relative;
	width: 100%;
	height: 850px;
}

.hp-menu {
	position: absolute;
	left: 48px;
	width: 42%;
}

.banner-menu {
	position: absolute;
	left: 430px;
	top: 110px;
	width: 42%;
}

.document-menu {
	position: absolute;
	width: 42%;
	top: 380px;
	left: 120px;
}

.ameblo-menu {
	position: absolute;
	left: 490px;
	top: 490px;
	width: 42%;
}

.index #section-3 img {
	transition: .3s;
	overflow: hidden;
	transition: .3s;
}


.index #section-3 img:hover {
	opacity: .7;
	transform: scale(1.2);
}


@media (max-width: 767px) {
	.img-menu {
		height: 1200px;
		position: static;
	}
}

@media (max-width: 767px) {
	.index #section-3 img {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.hp-menu {
		width: 100%;
		left: 0;
		position: static;
	}
}

@media (max-width: 767px) {
	.banner-menu {
		width: 100%;
		left: 0;
		position: static;
	}
}

@media (max-width: 767px) {
	.document-menu {
		width: 100%;
		left: 0;
		position: static;
	}
}

@media (max-width: 767px) {
	.ameblo-menu {
		width: 100%;
		left: 0;
		position: static;
	}
}

/* ----------------------
      section-4
-------------------------- */
.index #section-4 {
	background: url(../img/cat2.png);
	background-repeat: no-repeat; 
	background-size: 23%;
	background-position: 0 -5vw;               
}

.index #section-4 .body {
	margin: 20px auto 0;
}

.link-page {
	position: relative;
	width: 110%;
}

.link-page p {
	position: absolute;
	top: 30%;
	left: 30%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	color: #222222;
}


.link-page img {
	width: 90%;
}

.link-page a {/*aタグを画像の真ん中に*/
  position: absolute;
  top: 50%;
  left: 25%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.link-page a {
  display: inline-block;
  width: 200px;
  height:40px;
  text-align: center;
  background-color: #982827;
  font-size: 14px;
  line-height: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  margin-top: auto;
  border: none;
}

@media (max-width: 767px) {
	.index #section-4 {
		margin: 40px 0;
		background-position: -3vw 3vw;
	}
}


@media (max-width: 767px) {
	.link-page p {
		font-size: 14px;
		left: 29%;
		top: 40%;
		/*padding: 0 10px;*/
	}
}

@media (max-width: 767px) {
	.link-page {
		width: 110%;
	}
}

@media (max-width: 767px) {
	.link-page a {
		top: 150px;
		left: 45%;
	}
}


/* 画面外にいる状態 */
.fadein {
	opacity : 0.1;
	transform : translate(0, 100px);
	transition : all 1000ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

