@charset "utf-8";
/* CSS Document */

/* =========================================================
 * unique-common
 * =========================================================*/
body {
	min-width: 1000px;
}
.width_box1,
.width_box2 {
	width: 1000px;
	margin: 0 auto;
}
.ul_contact {
	display: flex;
}
.ul_contact li {
	width: 50%;
}
.ul_contact li .fas {
	margin-right: 0.5rem;
}
.season_bg {
	background: url(../img/season_bg.jpg) no-repeat bottom center;
}

/* =========================================================
 * sec1
 * =========================================================*/
.sec1 {
	background: rgb(252,252,252);
	background: -moz-linear-gradient(left, rgba(252,252,252,1) 50%, rgba(254,197,68,1) 50%, rgba(254,194,64,1) 90%);
	background: -webkit-linear-gradient(left, rgba(252,252,252,1) 50%,rgba(254,197,68,1) 50%,rgba(254,194,64,1) 90%);
	background: linear-gradient(to right, rgba(252,252,252,1) 50%,rgba(254,197,68,1) 50%,rgba(254,194,64,1) 90%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#fec240',GradientType=1 );
}
.sec1 > a {
	float: right;
	margin: 400px 3rem 0 0;
}
.sec1 > a img {
	width: 190px;
}
.sec1 .width_box2 {
	background: #fec240 url(../img/mainvisual.jpg) no-repeat center;
	height: 608px;
}

/* =========================================================
 * sec2
 * =========================================================*/
.sec2 {
	margin-top: 3rem;
}

/* =========================================================
 * sec3
 * =========================================================*/
.sec3 {
	padding: 2rem 0;
}
.sec3 .width_box1 {
	background: url(../img/sec3_bg.png) no-repeat right top;
}
.sec3 div.first {
	height: 600px;
}
.sec3 div.first div {
	left: 1rem;
	position: absolute;
	z-index: 10;
	background: #fff;
	box-shadow: 0px 0px 20px 3px #bbbbbb;
	border-radius: 5px;
	padding: 2rem;
	overflow: hidden;
}
.sec3 div.first h1 {
	font-weight: 900;
	font-size: 1.1rem;
	line-height: 2.4rem;
}
.sec3 div.first h1 strong {
	font-weight: 900;
	font-size: 2rem;
	display: block;
}
.sec3 div.first h1 span {
	color: #dc1b34;
}
.sec3 div.first ul li {
	margin: 0.5rem auto;
	font-weight: 600;
	font-size: 0.9rem;
}
.sec3 div.first ul li::before {
	content: url("../img/sec3_img1c.jpg");
	margin-right: 0.5rem;
}
.sec3 div.first div img {
	float: right;
	width: 55px;
}
.sec3 div.first > img {
	float: right;
	width: 590px;
	margin-top: 5rem;
}
.sec3 div.second {
	width: 900px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 20px 3px #bbbbbb;
	border-radius: 5px;
	padding-bottom: 2rem;
	clear: both;
}
.sec3 div.second h1 {
	text-align: center;
	font-weight: 900;
	font-size: 1.3rem;
	padding-top: 3rem;
}
.sec3 div.second h1 strong {
	font-size: 4.5rem;
	font-weight: 900;
	display: block;
}
.sec3 div.second h1 span {
	color: #0a51aa;
} 
@keyframes tabAnim {
	0% { opacity: 0; }
	100% { opacity :1; }
}
.tab_wrap {
	width: 770px;
	margin: 3rem auto 0;
}
input[type="radio"] {
	display: none;
}
.tab_area {
	font-size: 0;
	margin: 0 10px;
}
.tab_area label {
	width: 240px;
	margin: 0 5px;
	display: inline-block;
	color: #999;
	text-align: center;
	cursor: pointer;
}
.tab_area .tab1_label {
	background: #000 url(../img/sec3_img2_cover1.jpg) no-repeat center / cover;
}
.tab_area .tab2_label {
	background: #000 url(../img/sec3_img2_cover2.jpg) no-repeat center / cover;
}
.tab_area .tab3_label {
	background: #000 url(../img/sec3_img2_cover3.jpg) no-repeat center / cover;
}
.tab_area label img {
	opacity: 0.2;
	transition: ease 0.2s opacity;
}
.tab_area label img:hover {
	opacity: 0.5;
}
.tab_panel {
	width: 100%;
	opacity: 0;
	padding: 1rem 0 0;
	display: none;
	text-align: center;
}
.tab_panel h2 {
	font-weight: 900;
	font-size: 2rem;
}
.tab_panel h2 span {
	font-size: 4rem;
	margin-left: 0.3rem;
	color: #0a51aa;
}
.tab_panel h3 {
	font-weight: 800;
	font-size: 1.4rem;
	margin-bottom: 0.7rem;
}
.tab_panel p {
	text-align: center;
}
#tab1:checked ~ .tab_area .tab1_label {
	background: #fff;
	color: #000;
}
#tab1:checked ~ .tab_area .tab1_label img {
	opacity: 1;
}
#tab1:checked ~ .panel_area #panel1 {
	display: block;
	animation: tabAnim ease 0.6s forwards;
	-ms-animation: tabAnim ease 0.6s forwards;
}
#tab2:checked ~ .tab_area .tab2_label {
	background: #fff;
	color: #000;
}
#tab2:checked ~ .tab_area .tab2_label img {
	opacity: 1;
}
#tab2:checked ~ .panel_area #panel2 {
	display: block;
	animation: tabAnim ease 0.6s forwards;
	-ms-animation: tabAnim ease 0.6s forwards;
}
#tab3:checked ~ .tab_area .tab3_label {
	background: #fff;
	color: #000;
}
#tab3:checked ~ .tab_area .tab3_label img {
	opacity: 1;
}
#tab3:checked ~ .panel_area #panel3 {
	display: block;
	animation: tabAnim ease 0.6s forwards;
	-ms-animation: tabAnim ease 0.6s forwards;
}

/* =========================================================
 * sec4
 * =========================================================*/
.sec4 .width_box2 {
	position: relative;
	height: 1225px;
}
.sec4 img {
	width: auto;
	position: absolute;
}
.sec4 .width_box2 div {
	position: absolute;
}
.sec4 .width_box2 div h2 {
	font-weight: 900;
	font-size: 1.3rem;
	background: linear-gradient(transparent 60%, #ffff66 60%);
	margin-bottom: 0.5rem;
}
.sec4 div h2 span {
	font-size: 1.7rem;
}
.sec4 .width_box2 div p {
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.7);
	clear: both;
}
.sec4 .img1 {
	right: 0;
}
.sec4 .img2 {
	z-index: 10;
}
.sec4 .img3 {
	right: 150px;
	top: 365px;
	z-index: 10;
}
.sec4 .img4 {
	right: 0;
	top: 610px;
}
.sec4 .img5 {
	top: 600px;
	z-index: 10;
}
.sec4 .img6 {
	bottom: 0;
}
.sec4 .q1 {
	width: 750px;
	top: 200px;
	left: 180px;
}
.sec4 .q1 h2 {
	padding-left: 150px;
	width: 400px;
}
.sec4 .q1 p {
	padding: 0 15px 0 175px;
}
.sec4 .q2 {
	width: 810px;
	right: 160px;
	top: 450px;
}
.sec4 .q2 h2 {
	text-align: right;
	width: 420px;
	float: right;
	margin-right: 100px;
	padding-right: 80px;
}
.sec4 .q2 p {
	text-align: right;
	padding-right: 175px;
}
.sec4 .q3,
.sec4 .q4,
.sec4 .q5 {
	width: 300px;
}
.sec4 div.q3 h2,
.sec4 div.q4 h2,
.sec4 div.q5 h2 {
	background: linear-gradient(transparent 80%, #ffff66 80%);
	text-align: center;
}
.sec4 div.q3 p,
.sec4 div.q4 p,
.sec4 div.q5 p {
	padding: 0 20px;
}
.sec4 .q3 {
	top: 750px;
	left: 10px;
}
.sec4 .q4 {
	top: 825px;
	left: 315px;
}
.sec4 .q5 {
	right: 80px;
	bottom: 110px;
}

/* =========================================================
 * sec5
 * =========================================================*/
.sec5 {
	box-shadow: 0px 0px 15px 5px #6d6d6d inset;
	min-height: 1000px;
}
.sec5 .width_box2 {
	background: url(../img/sec5_bg.png) no-repeat 30px 99%;
	padding-bottom: 2rem;
}
.sec5 h1 {
	text-align: center;
	font-weight: 900;
	font-size: 1.3rem;
	padding-top: 3rem;
	margin-bottom: 1rem;
}
.sec5 h1 strong {
	font-size: 3.3rem;
	font-weight: 900;
	display: block;
}
.sec5 h1 span {
	color: #c9c9c9;
}

/* ===== swiper =====*/
.sec5 .swiper-pagination-bullet {
	background: #fff;
}
.sec5 .swiper-pagination-bullet-active {
	background: #c9c9c9;
}
.sec5 .swiper-slide {
	padding: 5rem 0 4rem;
	overflow: hidden;
	min-height: 400px;
}
.sec5 .slide1 {
	background: #393939 url(../img/sec5_slide1.jpg) no-repeat center / cover;
}
.sec5 .slide2 {
	background: #393939 url(../img/sec5_slide2.jpg) no-repeat center / cover;
}
.sec5 .slide3 {
	background: #393939 url(../img/sec5_slide3.jpg) no-repeat center / cover;
}
.sec5 .slide4 {
	background: #393939 url(../img/sec5_slide4.jpg) no-repeat center / cover;
}
.sec5 .slide5 {
	background: #393939 url(../img/sec5_slide5.jpg) no-repeat center / cover;
}
.sec5 h2,
.sec5 p {
	color: #fff;
	padding: 0 6rem;
}
.sec5 h2 {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 3rem;
}
.sec5 p {
	line-height: 2.5rem;
}
.sec5 p span {
	font-family: 'Allura', cursive;
	display: block;
	float: right;
	font-size: 3rem;
	margin-top: 2rem;
}
/* ===== banner =====*/
.sec5 ul {
	display: flex;
	max-width: 750px;
	margin: 1rem auto;
}
.sec5 ul.first {
	max-width: 255px;
}
.sec5 ul li {
	margin: 0 0.5rem;
}
.sec5 ul.first li {
	margin: 0 auto;
}

/* =========================================================
 * sec6
 * =========================================================*/
.sec6 .width_box1 > div {
	width: 800px;
	margin: 6rem auto 4rem;
	box-shadow: 0px 0px 20px 3px #bbbbbb;
	border-radius: 5px;
	padding: 2rem;
}
.sec6 ul.first {
	display: flex;
	float: right;
	margin-bottom: 0.3rem;
}
.sec6 ul.first li {
	margin: 0 0 0 1rem;
}
.sec6 ul.first li a {
	color: #000;
	font-weight: 700;
	transition: 0.2s;
}
.sec6 ul.first li a:hover {
	color: #777;
}
.sec6 ul.first li a .fas {
	margin-right: 0.5rem;
}
.sec6 h1 {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 900;
	letter-spacing: 2px;
	margin: 2rem auto;
}
.sec6 h1 strong {
	font-size: 2.2rem;
	display: block;
	font-weight: 900;
	margin-bottom: -5px;
	letter-spacing: 0;
}
.sec6 .width_box1 > div > dl {
	border-bottom: 1px solid #d8d8d8;
	padding-bottom: 0.5rem;
	margin-bottom: 0.7rem;
}
.sec6 .width_box1 > div > dl dt {
	font-size: 1.2rem;
	font-weight: bold;
}
.sec6 .width_box1 > div > dl dt span {
	font-size: 1.1rem;
	background: #e5e5e5;
	padding: 0 0.7rem;
	margin-left: 1rem;
}
.sec6 .width_box1 > div > dl dt span.en {
	background: #959595;
	color: #fff;
	font-weight: 500;
}
.sec6 .width_box1 > div > dl dd {
	padding-left: 1rem;
}
.sec6 .width_box1 > div > dl dd span {
	font-size: 1.1rem;
	font-weight: bold;
	margin-top: 0.5rem;
	display: block;
}
.sec6 p.te_right {
	color: #dc1b34;
	line-height: 1.3rem;
	font-size: 0.9rem;
}
.sec6 .width_box1 div div {
	background: #eeeeee;
	padding: 1rem;
	margin: 0 auto 2rem;
}
.sec6 .width_box1 div div dl {
	display: flex;
	margin: 1rem auto;
}
.sec6 .width_box1 div div dt,
.sec6 .width_box1 div div dd {
	font-size: 1.2rem;
	font-weight: bold;
}
.sec6 .width_box1 div div dt {
	background: #fff;
    padding: 0.3rem 1.5rem;
	box-shadow: 1px 1px 3px 1px #bbbbbb;
	min-width: 172px;
	text-align: center;
}
.sec6 .width_box1 div div dd {
    padding: 0.3rem 0 0 0.5rem;
}
.sec6 .width_box1 div div table {
	width: 100%;
	margin: 1rem auto 0.7rem;
}
.sec6 .width_box1 div div tr {
	border-bottom: 2px solid #fff;
}
.sec6 .width_box1 div div tr:last-child {
	border: none;
}
.sec6 .width_box1 div div th,
.sec6 .width_box1 div div td {
	font-size: 1.2rem;
}
.sec6 .width_box1 div div th span,
.sec6 .width_box1 div div td span {
	font-size: 80%;
}
.sec6 .width_box1 div div th {
	font-weight: bold;
	width: 200px;
	text-align: left;
}

/* =========================================================
 * responsive
 * =========================================================*/
@media screen and (min-width:1025px){
	/* ===== unique-common =====*/
	.width_box2 {
		width: 1200px;
		margin: 0 auto;
	}
	/* ===== sec3 =====*/
	.sec3 div.first div {
		left: auto;
	}
	/* ===== sec4 =====*/
	.sec4 .img5 {
		top: 630px;
	}
	.sec4 .q3 {
		left: 75px;
	}
	.sec4 .q4 {
		left: 445px;
	}
	.sec4 .q5 {
		bottom: 110px;
	}
	/* ===== sec5 =====*/
	.sec5 .swiper-slide {
		min-height: auto;
	}
}