@charset "utf-8";
/* CSS Document */

body {
    font-family: Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, "Noto Sans Japanese", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    /*font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;*/
    /*font-family: "Noto Serif Japanese", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", メイリオ, Meiryo, serif;*/
    padding: 0px;
	margin: 0px;
}
* {
	padding: 0px;
	margin: 0px;
	-webkit-text-size-adjust: 100%;
}
img {
	border:none;
	width:100%;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.fixed {
	position: fixed;
}
@media screen and (min-width: 769px) {
	article {
		min-height:100%;
		background-image:url("../images/bg_pc.jpg");
		background-position:center center;
		background-attachment: fixed;
		background-repeat:no-repeat;
		background-size:cover;
		/*padding-top: 70px;*/
	}
}
@media screen and (max-width: 768px) {
	article:before {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100vh;
		background: url("../images/bg_sp.jpg") center no-repeat;
		background-size: cover;
	}
}
h1 {
	width: 70%;
	margin: 0 auto;
	padding: 0 0 5rem 0;
}
@media screen and (max-width: 768px) {
	h1 {
		width: 94%;
		margin: 0 auto;
		padding: 0.8rem 0 1.5rem 0;
	}
}

/*
-------------------------------------------------------------*/
.slider_box {
	padding: 50px 1.5rem;
	/*background: rgba(255,255,255,0.6);*/
	margin-top: 50px;
	background: linear-gradient(135deg, rgba(255, 221, 40, 0.7), rgba(255, 110, 80, 0.7));
}
.slider_box:first-of-type {
	margin-top: 0px;
}
@media screen and (max-width: 768px) {
	.slider_box {
		padding: 1rem 0.5rem;
		/*background: rgba(255,255,255,0.6);*/
		margin-top: 35px;
		background: linear-gradient(135deg, rgba(255, 221, 40, 0.7), rgba(255, 110, 80, 0.7));
	}
}
.multiple-item li {
	margin: 0 5px;
	/*height: 14.6rem;*/
	height: 16.8rem;
	overflow: hidden;
}
@media screen and (max-width: 768px) {
	.multiple-item li {
		margin: 0 2px;
		height: 8.4rem;
		overflow: hidden;
	}
}
.multiple-item li img {
	border: 3px solid #fff;
	box-sizing: border-box;
}

/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}
/*左右の矢印の位置を変える*/
.slick-next {
    right: 20px;
    z-index: 99;
}
.slick-prev {
     left: 15px;
    z-index: 100;
}
/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #fff;
}
/*スライド画像の横幅可変*/
img {
    max-width: 100%;
     height: auto;
}

.slider_box ul.slider .slick-prev:before {
    content: url("../images/btn_prev.png") !important;
    display: inline-block;
    width: 30px;
    height: 30px;
}
.slider_box ul.slider .slick-next::before {
    content: url("../images/btn_next.png") !important;
    display: inline-block;
    width: 30px;
    height: 30px;
}
.slider_box .slick-prev {
    left: 0.2rem;
	text-align: left;
}
.slider_box .slick-next {
    right: 0.2rem;
	text-align: right;
}
@media screen and (max-width: 768px) {
	.slider_box .slick-prev {
		/*left: 0.2rem;*/
		left: -0.4rem;
		text-align: left;
	}
	.slider_box .slick-next {
		/*right: 0.2rem;*/
		right: -0.4rem;
		text-align: right;
	}
}

/* モーダル
-----------------------------------------------------------------*/
.content{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 5;
	overflow: auto;
	background: rgba(0,0,0,0.85);
}
.modal__bg{
    background: rgba(0,0,0,0.85);
    height: 100vh;
    position: absolute;
	/*position: fixed;*/
    width: 100%;
	overflow: auto;
}
@media screen and (min-width: 769px) {
	.modal__content{
		background: #fff;
		left: 50%;
		padding: 25px 1%;
		/*position: absolute;*/
		position: relative;
		top: 0;
		transform: translate(-50%,0%);
		width: 60%;
		margin: 1% 0;
	}
}
@media screen and (max-width: 768px) {
	.modal__content{
		background: #fff;
		left: 50%;
		padding: 15px 2%;
		position: absolute;
		top: 50%;
		transform: translate(-50%,-50%);
		width: 94%;
	}
}
/*@media screen and (min-width: 769px) {
	.modal__content > img {
		max-width: 100%;
		height: auto;
		margin-top: 20rem;
	}
}*/
.close_btn {
	display: block;
	background: #999;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 2px;
	padding: 5px 0;
	border-radius: 25px;
	margin-top: 7px;
}
@media screen and (max-width: 768px) {
	.close_btn {
		display: block;
		background: #999;
		color: #fff;
		text-align: center;
		font-size: 1.3rem;
		font-weight: bold;
		letter-spacing: 2px;
		padding: 7px 0;
		border-radius: 25px;
		margin: 5px 0;
	}
}

/*
-----------------------------------------------------------------*/
.ttl01 {
	text-align: center;
	font-size: 3rem;
	font-weight: bold;
	padding: 5px 0 10px 0;
}
@media screen and (max-width: 768px) {
	.ttl01 {
		text-align: center;
		font-size: 1.8rem;
		font-weight: bold;
		padding: 5px 0 7px 0;
	}
}
.icon01 {
	width: 2.7%;
	vertical-align: middle;
	padding-right: 10px;
}
@media screen and (max-width: 768px) {
	.icon01 {
		width: 8%;
		vertical-align: text-top;
		padding-right: 5px;
	}
}
.eng {
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	padding: 30px 0;
	text-shadow: 2px 2px 2px #ccc;
}
@media screen and (max-width: 768px) {
	.eng {
		font-size: 1.85rem;
		font-weight: bold;
		text-align: center;
		color: #fff;
		padding: 30px 0;
		text-shadow: 1px 1px 2px #ccc;
	}
}
/* ボタン
--------------------------------------------------------*/
.btn_link {
	display: block;
    width: 60%;
    text-align: center;
    padding: 0.5em 1em;
    margin: 3.5rem auto 0.5rem auto;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    color: rgba(0, 69, 212, 0.47);
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
	background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #c58668;
    font-size: 1.8rem;
}