@charset "UTF-8";

html { scroll-behavior: smooth; } /* smooth Scroll css */

body {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: yu-gothic-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 100%;
	letter-spacing: 0.03rem;
	overflow-x: hidden;
}
#wrapper {
	width: 100%;
	height: 100%;
}




/* ------------------
	common
------------------ */

.txt-xsmall { font-size: 70%; }
.txt-small  { font-size: 80%; }
.txt-large  { font-size: 120%; }

.c-01 { color: #716de3; }
.c-02 { color: #04d6c6; }

.font-01 { font-family: azo-sans-web, sans-serif; }
.font-02 { font-family: "clarendon-urw", serif; }

.font-bold { font-weight: bold; }

a { text-decoration: underline; }


.pc-none { display: none; }
.sp-none { display: block; }
@media screen and (min-width:768px) and ( max-width:1100px) { /* --- tablet --- */
	.pc-none { display: none; }
	.sp-none { display: block; }
}

@media screen and (max-width: 768px) { /* --- sp --- */
	.pc-none { display: block; }
	.sp-none { display: none; }
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix { min-height: 1px; }
* html .clearfix {
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

.flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}


/* -----------------
	layout
------------------ */
main {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	transform: translateX(0px);
	transition: transform 500ms ease;
	z-index: 0;
}
main section {
	position: relative;
	display: block;
	margin: 0;
	padding: 50px 0;
    z-index: 100;
}
.mB15 { margin-bottom: 15px !important; }
.mT15 { margin-top: 15px; }

/* -----------------
	navi
------------------ */
.menu {
	position: fixed;
	top: 10px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 50px;
	height: 50px;
	transition: transform 250ms ease;
	cursor: pointer;
	z-index: 200;
}
@media screen and (max-width: 768px) {
	.menu { top: 5px; left: 10px; }
}
.menu span {
	position: relative;
	display: block;
	width: 50%;
	height: 2px;
	background-color: #fff;
	filter: drop-shadow(1px 1px 2px rgb(0, 0, 0, 0.4));
	float: left;
	transform-origin: center center;
	transition: transform 250ms ease;
	z-index: 200;
}
.menu span:nth-of-type(1) { transform: translateY(-5px); }
.menu span:nth-of-type(3) { transform: translateY(5px); }

#menu { display: none; }
#menu:checked ~ .menu {
	background-color: transparent;
	transform: rotate(360deg);
	transition: transform 250ms ease;
}
#menu:checked ~ .menu span {
	background-color: #fff;
	filter: none;
	transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) { transform: translateY(1px) rotate(45deg); }
#menu:checked ~ .menu span:nth-of-type(2) { display: none; }
#menu:checked ~ .menu span:nth-of-type(3) { transform: translateY(-1px) rotate(-45deg); }
#menu:checked ~ .nav { left: 0px; transition: left 500ms ease; }
#menu:checked ~ main { transform: translateX(250px); transition: transform 500ms ease; }

.nav {
	position: fixed;
	top: 0;
	left: -210px;
	width: 300px;
	height: 100vh;
	margin: 0;
	padding: 0;
	background-color: #716de3;
	transition: left 500ms ease;
	z-index: 0;
}
.nav ul {
	position: relative;
	list-style-type: none;
	margin: 100px 0;
	padding: 0;
}
.nav ul li {
	position: relative;
	display: block;
	border-bottom: 1px solid #9b99eb;
}
.nav ul li a {
	font-family: azo-sans-web, sans-serif;
	position: relative;
	display: block;
	margin: 0;
	padding: 15px 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.nav ul li a { font-weight: 400; }
}
.nav ul li a:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	transition: width 250ms ease;
	z-index: -1;
}
.nav ul li a:hover { color: #444; }
.nav ul li a:hover:before {
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: width 250ms ease;
}





/* ------------------------------------
	section-hero
------------------------------------- */
#section-hero {
	position: relative;
	width: 100%;
	padding: 90px 0;
	background: url('../images/hero-bg.jpg') center center no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

#section-hero #logo {
	width: 580px;
	height: auto;
	margin: 0 auto;
}
#section-hero h1,
#section-hero h2 {
	font-family: azo-sans-web, sans-serif;	
	text-align: center;
	color: #5e5552;
}
#section-hero h1 {
	width: 380px;
	position: relative;
    display: block;
    padding: 0 55px;
	margin: 0 auto 25px auto;
	font-size: 2.65rem;
	font-weight: 500;
}
#section-hero h1:before,
#section-hero h1:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #5e5552;
}
#section-hero h1:before { left: 0; }
#section-hero h1:after  { right: 0; }

#section-hero h2 { margin: 30px 0 0 0; font-size: 1.6rem; }

@media screen and (max-width: 750px) {
	#section-hero { padding: 65px 0 50px 0; }
	#section-hero #logo { width: 70%; }
	#section-hero h1 { width: 200px; padding: 0 10px; margin: 0 auto 13px auto; font-size: 1.4rem; }
	#section-hero h1:before,
	#section-hero h1:after { width: 17px; height: 2px; }
	#section-hero h2 { margin: 10px 0 0 0; font-size: 0.9rem; line-height: 1.5; }
}

/* btn */
#section-hero .btn-hero {
	/*position: absolute;
	top: 15px;
	right: 20px;*/
	width: 300px;
	margin: 20px auto 0 auto;
}
#section-hero .btn-hero a {
	display: block;
	font-family: "clarendon-urw", serif;
	padding: 15px 55px 15px 45px;
	text-align: center;
	color: #6f5de5;
	font-size: 1.5rem;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgb(255,255,255,0.5);
	border: 1px solid #fff;
	border-radius: 30px;
	background: rgb(255,255,255);
	background: url('../images/icon-external.svg') right 25px center / 12px 12px no-repeat,
	linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.50) 50%, rgba(255,255,255,1) 100%);
	filter: drop-shadow(1px 1px 2px rgb(95, 82, 86, 0.3));
}
#section-hero .btn-hero a:hover {
	color: #5e5552;
	background: rgb(255,255,255);
	background: url('../images/icon-external.svg') right 25px center / 12px 12px no-repeat,
	linear-gradient(360deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.50) 50%, rgba(255,255,255,1) 100%);
}
@media screen and (max-width: 768px) {
	#section-hero .btn-hero { width: 60%; }
	#section-hero .btn-hero a { font-size: 1.25rem; padding: 10px 35px 10px 25px; background: url('../images/icon-external.svg') right 19px center / 10px 10px no-repeat,
	linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.50) 50%, rgba(255,255,255,1) 100%); }
}


/* JP/EN */
#section-hero .sec-lang {
	position: absolute;
	top: 28px;
	right: 35px;
}
#section-hero .sec-lang p {
	font-family: azo-sans-web, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: #5f5256;
}
@media screen and (max-width: 768px) {
	#section-hero .sec-lang { top: 25px; right: 20px; }
}

/* svg */
svg { width: 100%; height: auto; }
svg {
  .stop1, .stop2, .stop3 {
    animation-name: stop;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  .stop1 { animation-delay: .1s; }
  .stop2 { animation-delay: .2s; }
  .stop3 { animation-delay: .3s; }
  #logo {
    fill: url(#clippath); 
  }
}
@keyframes stop{
  0% { stop-color: #6d59e5; }
  50% { stop-color: #42375c; }
  100% { stop-color: #5f5256; }
}






/* ------------------------------------
	section-concept
------------------------------------- */
#section-concept {
	width: 100%;
	padding: 100px 0 80px 0;
	background-color: #f6f2ee;
	background-image: url('../images/concept-01.png'), url('../images/concept-02.png');
	background-position: left top, right bottom;
	background-size: 20%, 20%;
	background-repeat: no-repeat, no-repeat;
	box-sizing: border-box;
}
#section-concept .inner {
	width: 760px;
	margin: 0 auto;
}

/* ttl */
#section-concept .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-concept .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #5e5552;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-concept .inner .sec-ttl h1 { color: #8e8886; font-size: 1rem; }

/* body */
#section-concept .inner .sec-body {}
#section-concept .inner .sec-body h1 {
	position: relative;
	margin: 0 0 80px 0;
	text-align: center;
	font-size: 2.25rem;
	font-weight: normal;
}
#section-concept .inner .sec-body h1::after {
	content: '';
	width: 180px;
	height: 2px;
	display: inline-block;
	background: linear-gradient(168deg, rgba(128,219,249,1) 0%, rgba(189,172,254,1) 100%);
	position: absolute;
	bottom: -30px;
	left: calc(50% - 90px)
}
#section-concept .inner .sec-body p { 
	margin: 25px 0;
	font-size: 1rem;
	line-height: 1.6;
}

@media screen and (max-width: 850px) {
	#section-concept { padding: 50px 50px 100px 50px; background-size: 27%, 50%; }
	#section-concept .inner { width: 100%; }
	#section-concept .inner .sec-body h1 { margin: 0 0 70px 0; font-size: 1.7rem; }
}






/* ------------------------------------
	section-contents
------------------------------------- */
#section-contents {
	width: 100%;
	padding: 50px;
	background: url('../images/contents-bg.jpg') #fff center top no-repeat;
	background-size: cover;
	box-sizing: border-box;
}
#section-contents .inner {
	width: 1200px;
	margin: 0 auto;
}

/* ttl */
#section-contents .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-contents .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #5e5552;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-contents .inner .sec-ttl h1 { color: #8e8886; font-size: 1rem; }

/* body */
#section-contents .sec-body {}
#section-contents .sec-body ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#section-contents .sec-body ul li {
	width: 32%;
	padding: 40px;
	border-radius: 20px;
	background: rgba(255,255,255,0.5);
	box-sizing: border-box;
}
#section-contents .sec-body ul li:nth-child(1) { box-shadow: -5px 5px 10px rgba(255, 196, 2, 0.2), 5px -5px 10px rgba(70, 153, 240, 0.2); }
#section-contents .sec-body ul li:nth-child(2) { box-shadow: -5px 5px 10px rgba(126, 230, 15, 0.2), 5px -5px 10px rgba(152, 83, 217, 0.2); }
#section-contents .sec-body ul li:nth-child(3) { box-shadow: -5px 5px 10px rgba(230, 15, 91, 0.2), 5px -5px 10px rgba(3, 193, 200, 0.2); }

#section-contents .sec-body ul li h2 {
	font-family: "clarendon-urw", serif;
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.5rem;
	color: #5e5552;
	text-shadow: 1px 1px 1px #fff;
}
#section-contents .sec-body ul li p { margin: 20px 0 0 0; font-size: 0.85rem; line-height: 1.4; text-shadow: 1px 1px 3px #fff; }
#section-contents .sec-body ul li img { width: 100%; height: auto; }

#section-contents .sec-body .link { margin: 10px 0 0; }
#section-contents .sec-body .link a {
	width: 100%;
	display: block;
	padding: 15px 0;
	color: #716de3;
	font-size: 0.85rem;
	text-align: center;
	text-decoration: none;
	background: url('../images/icon-external_purple.svg') right 25px center / 12px 12px #fff no-repeat;
	border: 1px solid #716de3;
	border-radius: 40px;
	filter: drop-shadow(1px 1px 2px rgb(95, 82, 86, 0.3));
}
#section-contents .sec-body .link a:hover { color: #5e5552; border: 1px solid #5e5552; background: url('../images/icon-external.svg') right 25px center / 12px 12px #fff no-repeat; }

#section-contents .sec-body .info-link { font-family: azo-sans-web, sans-serif; margin: 5px 0; display: inline-block; }
#section-contents .sec-body .info-link a {
	min-height: 14px;
	padding: 0 0 0 22px;
	color: #716de3;
	background: url('../images/icon-link.svg') left center / 14px 14px no-repeat;
}

@media screen and (max-width: 1350px) {	
	#section-contents .inner { width: 80%; }
}
@media screen and (max-width: 1200px) {
	#section-contents .sec-body ul li { width: 48%; margin-bottom: 40px; }
}
@media screen and (max-width: 768px) {
	#section-contents { padding: 50px 50px; background: url('../images/contents-bg.jpg') #fff center bottom no-repeat; background-size: cover; }
	#section-contents .inner { width: 100%; }
	#section-contents .sec-body ul li { width: 100%; padding: 25px; }
}





/* ------------------------------------
	section-company
------------------------------------- */
#section-company {
	width: 100%;
	padding: 50px 50px;
	background-color: #f3edea;
	box-sizing: border-box;
}
#section-company .inner {
	width: 1200px;
	margin: 0 auto;
}

/* ttl */
#section-company .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-company .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #5e5552;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-company .inner .sec-ttl h1 { color: #8e8886; font-size: 1rem; }

/* body */
#section-company .inner .sec-body ul {}
#section-company .inner .sec-body ul li {
	width: 140px;
	margin: 10px;
}
#section-company .inner .sec-body ul li img,
#section-company .inner .sec-body ul li a img { width: 100%; height: auto; }
#section-company .inner .sec-body ul li a img:hover { border: 1px solid #ffd2cf; opacity: 0.7; } 

@media screen and (max-width: 1350px) {	
	#section-company .inner { width: 80%; }
}

@media screen and (max-width: 768px) {
	#section-company .inner { width: 100%; }
	#section-company .inner .sec-body ul li { width: 45%; margin: 0 5px 5px 5px; }
}



/* ------------------------------------
	section-outline
------------------------------------- */
#section-outline {
	width: 100%;
	padding: 50px 0;
	color: #fff;
	background-color: #2b2725;
	box-sizing: border-box;
}
#section-outline .inner {}

/* ttl */
#section-outline .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-outline .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #04d6c6;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-outline .inner .sec-ttl h1 { color: #c8c1bd; font-size: 1rem; }

/* body */
#section-outline .inner .sec-body {
	width: 760px;
	margin: 0 auto;
}
#section-outline .inner .sec-body table { width: 100%; border-top: 1px solid #d0cac3; line-height: 1.5; }
#section-outline .inner .sec-body table th { width: 22%; padding: 15px 0; border-bottom: 1px solid #d0cac3; font-weight: normal; }
#section-outline .inner .sec-body table td { width: 78%; padding: 15px 0; border-bottom: 1px solid #d0cac3; }

@media screen and (max-width: 810px) {
	#section-outline { padding: 50px 30px; }
	#section-outline .inner .sec-body { width: 100%; }
	#section-outline .inner .sec-body table th { display: block; width: 100%; padding: 15px 0 0 0; border-bottom: none; }
	#section-outline .inner .sec-body table td { display: block; width: 100%; padding: 0 0 15px 0; border-bottom: 1px solid #d0cac3; }
}




/* ------------------------------------
	section-speaker
------------------------------------- */
#section-speaker {
	width: 100%;
	padding: 50px 50px;
	background-color: #fff;
	box-sizing: border-box;
}
#section-speaker .inner {}

/* ttl */
#section-speaker .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-speaker .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #5e5552;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-speaker .inner .sec-ttl h1 { color: #8e8886; font-size: 1rem; }

/* body */
#section-speaker .inner .sec-body h2 {
	font-family: azo-sans-web, sans-serif;
	margin: 0 0 15px 0;
	color: #5e5552;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
}
#section-speaker .inner .sec-body ul { margin-bottom: 40px; }
#section-speaker .inner .sec-body ul li {
	width: 240px;
	margin: 10px 15px;
}
#section-speaker .inner .sec-body ul li h3 {
	font-family: azo-sans-web, sans-serif;
	margin: 10px 0 10px 0;
	font-size: 0.8rem;
	text-align: center;
	color: #03b9e0;
	line-height: 1.4;
}
#section-speaker .inner .sec-body ul li h3 em { font-size: 1.12rem; font-style: normal; color: #333; }
#section-speaker .inner .sec-body ul li p { margin: 0 0 5px 0; text-align: center; font-size: 0.75rem; }
#section-speaker .inner .sec-body ul li img { width: 90%; height: auto; margin: 0 auto; border-radius: 140px; }
#section-speaker .inner .sec-body ul li p.info-link a {
	font-family: azo-sans-web, sans-serif;
	padding: 0 15px 0 0;
	background: url('../images/icon-link.svg') right center / 12px 12px no-repeat;
}

@media screen and (max-width: 768px) {
	#section-speaker .inner .sec-body h2 { font-size: 1.45rem; }
	#section-speaker .inner .sec-body ul li { width: 45%; margin: 0 5px 25px 5px; }
}



/* ------------------------------------
	section-timetable
------------------------------------- */
#section-timetable {
	width: 100%;
	padding: 50px 50px;
	color: #5e5552;
	background-color:hsla(0,100%,92%,1);
	background-image:
	radial-gradient(at 40% 20%, hsla(28,100%,74%,0.5) 0px, transparent 50%),
	radial-gradient(at 80% 0%, hsla(174,100%,56%,0.5) 0px, transparent 50%),
	radial-gradient(at 0% 48%, hsla(338,74%,97%,0.5) 0px, transparent 50%),
	radial-gradient(at 80% 50%, hsla(340,88%,88%,0.5) 0px, transparent 50%),
	radial-gradient(at 0% 100%, hsla(42,100%,77%,0.5) 0px, transparent 50%),
	radial-gradient(at 80% 100%, hsla(220,100%,76%,0.5) 0px, transparent 50%),
	radial-gradient(at 0% 0%, hsla(343,100%,87%,0.5) 0px, transparent 50%);
}
#section-timetable .inner {
	width: 1200px;
	margin: 0 auto;
}

/* ttl */
#section-timetable .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-timetable .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-timetable .inner .sec-ttl h1 { font-size: 1rem; }

/* body */
#section-timetable .inner .sec-body {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
#section-timetable .inner .sec-body div { width: 48%; }
#section-timetable .inner .sec-body h2 {
	margin-bottom: 25px;
	font-family: azo-sans-web, sans-serif;
	font-weight: 400;
	line-height: 2;
	text-align: center;
	font-size: 2.1rem;
	border-bottom: 3px solid #5e5552;
}

/* table */
#section-timetable .inner .sec-body table.stage,
#section-timetable .inner .sec-body table.room {
	width: 100%;
	margin: 15px 0;
	border-radius: 10px;
	background: rgba(255,255,255,0.3);
	box-shadow:
    -2px 2px 5px rgba(230, 180, 15, 0.2),
    1px -1px 5px rgba(8, 131, 161, 0.2);
}
#section-timetable .inner .sec-body table.room { margin: 294px 0 0 0; }
#section-timetable .inner .sec-body table.stage th,
#section-timetable .inner .sec-body table.stage td,
#section-timetable .inner .sec-body table.room th,
#section-timetable .inner .sec-body table.room td {
	font-family: azo-sans-web, sans-serif;
	font-weight: 400;
	line-height: 1.35;
	text-shadow: 1px 1px 1px rgb(255,255,255,0.5);
	vertical-align: middle;
}
#section-timetable .inner .sec-body table.stage th,
#section-timetable .inner .sec-body table.room th {
	width: 22%;
	padding: 15px;
	color: #716de3;
	font-weight: 400;
}
#section-timetable .inner .sec-body table.stage td,
#section-timetable .inner .sec-body table.room td {
	width: 78%;
	border-left: 1px solid #fff;
}
#section-timetable .inner .sec-body table.stage td { padding: 20px 15px 20px 20px; line-height: 1.6; }
#section-timetable .inner .sec-body table.room td  { padding: 35px 15px 35px 20px; line-height: 1.6; }

#section-timetable .inner .sec-body .info-link a {
	padding: 0 22px 0 0;
	background: url('../images/icon-link.svg') right center / 18px 18px no-repeat;
}


#section-timetable .bB { border-bottom: 1px solid #fff; }


@media screen and (max-width: 1350px) {	
	#section-timetable .inner { width: 80%; }
}
@media screen and (max-width: 1050px) {
	#section-timetable .inner .sec-body { display: block; }
	#section-timetable .inner .sec-body div { width: 100%; }
}
@media screen and (max-width: 768px) {
	#section-timetable { padding: 50px 25px; }
	#section-timetable .inner { width: 100%; }
	#section-timetable .inner .sec-body h2 { font-size: 1.45rem; font-weight: 500; }
	#section-timetable .inner .sec-body table.room { margin: 15px 0; }
	#section-timetable .inner .sec-body table.stage th,
	#section-timetable .inner .sec-body table.stage td,
	#section-timetable .inner .sec-body table.room th,
	#section-timetable .inner .sec-body table.room td { padding: 10px 15px; }
}



/* ------------------------------------
	section-partner
------------------------------------- */
#section-partner {
	width: 100%;
	padding: 50px 0;
	background-color: #fff;
	box-sizing: border-box;
}
#section-partner .inner {}

/* ttl */
#section-partner .inner .sec-ttl {
	margin: 0 0 40px 0;
	text-align: center;
}
#section-partner .inner .sec-ttl h1 em {
	font-family: "clarendon-urw", serif;
	color: #5e5552;
	font-size: 3rem;
	font-style: normal;
	line-height: 1.5;
}
#section-partner .inner .sec-ttl h1 { color: #8e8886; font-size: 1rem; }

/* sec-body */
.container { width: 100%; margin: 0 auto; }


/* slick */
.slider { width: 80%; margin: 50px auto; }
.slick-slide { margin: 0px 10px; }
.slick-slide img { width: 100%; }
.slick-slide { transition: all ease-in-out .3s; }
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev { left: -50px; }
.slick-next { right: -50px; }
.slick-arrow:before {
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
}
.slick-next:before {
    background: url('../images/arrow-next.svg') center center no-repeat !important;
    background-size: contain!important;
}
.slick-prev:before {
    background: url('../images/arrow-prev.svg') center center no-repeat !important;
    background-size: contain!important;
}

@media screen and (max-width: 768px) {
	#section-partner { padding: 50px; }
	.container { width: 100%; }
}






/* ------------------------------------
	footer
------------------------------------- */
#section-footer {
	width: 100%;
	padding: 50px 0;
	background-color: #2b2725;
	box-sizing: border-box;
}
#section-footer .inner {
	width: 1200px;
	margin: 0 auto;
	text-align: center;
}
#section-footer .inner small { font-family: azo-sans-web, sans-serif; color: #b2a49e; font-weight: 300; }

@media screen and (max-width: 1250px) {
	#section-footer .inner { width: 100%; }
}
@media screen and (max-width: 768px) {
	#section-footer { padding: 50px 20px 100px 20px; }
	#section-footer .inner small { font-weight: 400; }
}





/* ------------------------------------
	固定ボタン(PC)
------------------------------------- */
#side-btn {
	position: fixed;
	width: 50px;
	right: 0px;
	bottom: 20px;
	font-size: 0;
	opacity: 1;
	z-index: 99;
	filter:drop-shadow(-1px -1px 2px rgb(201, 186, 160, 0.4)) drop-shadow(-1px 1px 2px rgb(201, 186, 160, 0.4));
}
/* ------ 固定ボタン(PC/EN) ------ */
#side-btn-en {
	position: fixed;
	width: 90px;
	right: 0px;
	bottom: 20px;
	font-size: 0;
	opacity: 1;
	z-index: 99;
	filter:drop-shadow(-1px -1px 2px rgb(201, 186, 160, 0.4)) drop-shadow(-1px 1px 2px rgb(201, 186, 160, 0.4));
}

#side-btn ul,
#side-btn-en ul {
	width: 100%;
	display: block;
	padding: 0;
	margin: 0;
}
#side-btn li,
#side-btn-en li {
	width: 100%;
	padding: 0;
	margin: 0 0 5px 0;
	border-radius: 10px 0 0 10px;
	background: rgba(255,255,255,0.75);
}
#side-btn li a,
#side-btn-en li a {
	display: block;
	width: 100%;
}
#side-btn li a:hover,
#side-btn-en li a:hover { opacity: 0.65; }
#side-btn li a img,
#side-btn-en li a img { width: 100%; height: auto; }

#fixed-btn-sp { display: none; }



/* ------------------------------------
	固定ボタン(SP)
------------------------------------- */
@media screen and (max-width: 768px) {
	#side-btn,
	#side-btn-en { display: none; }
	#fixed-btn-sp {
		position: fixed;
		display: block;
		width: 100%;
		bottom: 0;
		font-size: 0;
		opacity: 1;
		z-index: 99;
		filter: drop-shadow(-1px 0px 2px rgb(201, 186, 160, 0.6));
	}
	#fixed-btn-sp ul { display: flex; padding: 0; margin: 0; }
	#fixed-btn-sp li { width: 50%; margin: 0; border-radius: 0; background: rgba(255,255,255,0.95); }
	#fixed-btn-sp li:not(:last-child) { border-right: 1px solid #fff; }
	#fixed-btn-sp li a { display: block; padding: 0; text-align: center; box-sizing: border-box; }
	#fixed-btn-sp li a img { width: 100%; height: auto; }
}










