/* ----------
	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.3em;
}
.small {
	font-size: .8em;
}
mark {
	background:linear-gradient(transparent 75%, #cab8d9 75%);
    font-weight:bold;
}

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

/* ---------------
	    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: 1000px;
	margin: 0 auto;
}
@media (max-width: 767px) {
	.index .body {
		padding: 0 20px;
	}
}

.index .tit {
	text-align: center;
}
@media (max-width: 767px) {
	.index .tit {
		margin-top: 70px;
	}
}

.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: 22px;
}

.index h4 {
	font-size: 18px;
}

.index .txt p {
	line-height: 200%;
	text-align: center;
}

/* /common */

h3 {
	background: url(../img/line.png);
	background-repeat: no-repeat; /* 背景画像を繰り返し表示しません。 */
	background-position: center;
	padding: 0 0 30px;
	color: #444;
}

.txt {
	margin-bottom: 60px;
}

#section-1 {
	background: url(../img/fashion.png),
	            url(../img/cat1.png);
	background-repeat: no-repeat,
	                   no-repeat;
	background-position: left -80px top 120px,
	                     right -30px bottom 200px;
	background-size: 23%,
	                 18%;　　　　　　　　　　　
}
@media (max-width: 767px) {
	#section-1 {
		background: none;
	}
}
