/* ----------
	common
---------- */
body {
	background: #fafafa;
	color: #333;
	font-family: "ヒラギノ丸ゴ ProN","Hiragino Maru Gothic ProN","游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
}
@media (min-width: 768px) {
	body {
		min-width: 1400px;
	}
}
.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 {
	background-color: #e1e8f0;
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 96px;
}
@media (max-width: 767px) {
	#site-header {
		height: 80px;
		align-items: center;
		filter: drop-shadow(0 3px 3px rgba(0,0,0,.2));
		left: 0;
		padding: 8px 12px;
		position: fixed;
		top: 0;
		z-index: 999;
	}
}

#site-header .brand {
	width: 200px;
	padding: 24px;
}
@media (max-width: 767px) {
	#site-header .brand {
		width: 150px;
		padding: 5px;
	}
}

#site-header #nav-switch,
#site-header #nav-close {
	display: none;
}
@media (max-width: 767px) {
	#site-header #nav-switch {
		color: #9068be;
		display: block;
		font-size: 24px;
		transition: .3s;
	}
	#site-header nav {
		background: #9068be;
		bottom: 0;
		filter: opacity(.9);
		min-height: 100vh;
		padding: 40px 15px;
		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: 23px;
		position: absolute;
		right: 12px;
		top: 8px;
	}

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

#site-header ul {
	display: flex;
	height: 100%;
	margin: 0;
	font-size: 18px;
}
@media (max-width: 767px) {
	#site-header ul {
		align-content: flex-start;
		flex-wrap: wrap;
	}
	#site-header li {
		width: 100%;
	}
}

#site-header li a {
	align-items: center;
	color: #9068be;
	display: flex;
	justify-content: center;
	height: 100%;
	padding: 0 30px;
	text-decoration: none;
}
@media (max-width: 767px) {
	#site-header li a {
		color: #fff;
		justify-content: flex-start;
		margin: 0 0 20px;
		padding: 0 20px;
	}
}

#site-header li a:hover {
	color: #e62739;
}
#site-header .contact a {
	border: 2px solid #e62739;
	background-color:  #e62739;
	color: #fff;
	cursor: pointer;
	margin-left: 40px;
	transition: .3s;
}
@media (max-width: 767px) {
	#site-header .contact a {
		color: #fff;
		margin-left: 0;
		border-radius: 30px;
	}
}

#site-header .contact a:hover {
	background: #e1e8f0;
	color: #e62739;
}


/* ----------
	footer
---------- */
#site-footer {
	padding: 30px;
	width: 100%;
	background-color: #9068be;
	color: #fff;
	height: 200px;
	position: relative;
	z-index: 0;
}
@media (max-width: 767px) {
	#site-footer {
		height: 250px;
	}
}

#site-footer .footer-logo {
   font-size: 32px;
   float: left;
}

#site-footer .footer-logo p{
   font-size: 14px;
   line-height: 10px;
}

#site-footer .footer-list small {
  position: absolute;
  float: right;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 767px) {
	#site-footer .footer-list small {
  		text-align: center;
	}
}


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

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

.index .tit {
	text-align: center;
	line-height: 120px;
}

.index .tit .en {
	color: #22819e;
	font-family: 'Amatic SC', cursive;
	font-size: 24px;
}

.index .area {
	margin-top: 50px;
}

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

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

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


.index .br_pc {
	display: block;
}
.index .br_sp {
	display: none;
}
@media (max-width: 767px) {
	.index .br_sp {
		display: block;
	}
	.index .br_pc {
		display: none;
	}
}

.index .fadeup {
	animation-name:fadeUpAnime;
	animation-duration:2.0s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeup_trigger {
    opacity: 0;
}


/* / key visual */
.index .kv {
	height: 700px;
	position: relative;
	overflow: hidden;
	margin-top: -24px;
	padding: 0;
}
@media (max-width: 767px) {
	.index .kv {
		width: 100%;
	}
}

.index .fadein {
    font-size: 30px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 4s;
}
@keyframes fadein {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@media (max-width: 767px) {
	.index .kv {
		height: 100vw;
	}
}

.index .kv .tit {
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	text-align: center;
	line-height: normal;
}
@media (max-width: 767px) {
	.index .kv .tit {
		top: 60%;
		width: 100%;
		line-height: 5px;
	}
}

.index .kv h1 {
	font-family: 'Asap Condensed', sans-serif;
	font-size: 100px;
	font-weight: normal;
}
@media (max-width: 767px) {
	.index .kv h1 {
		font-size: 60px;
		line-height: normal;
		margin-bottom: -30px;
	}
}

.index .kv p {
	font-size: 20px;
	line-height: normal;
}
@media (max-width: 767px) {
	.index .kv p {
	font-size: 18px;
	line-height: normal;
}
}


.index .kv img {
	position: absolute;
	top: 0;
	width: 100%;
}
@media (max-width: 767px) {
	.index .kv img {
		height: 120%;
	}
}


/* section-1 & 2 */
 .index .flexbox {
 	display: flex;
 	margin: 0 200px;
 	flex-wrap: wrap;
 	align-items: center;
 }

@media (max-width: 767px) {
 	.index .flexbox {
 		flex-wrap: wrap;
 		margin: 0;
 	}
}


/* section-1 */
.index .main {
	width: 70%;
}
@media (max-width: 767px) {
	.index .main {
		width: 100%;
	}
}

.index #section_1 {
	margin: 0 20px;
}
@media (max-width: 767px){
	.index #section_1 {
		margin-top: -70px;
	}
}

.index #section_1 .tit {
	width: 400px;
	margin-left: auto;
  	margin-right: auto;
}
@media (max-width: 767px) {
 	.index #section_1 .tit {
 		width: 300px;
 	}
}

.index #section_1 .body {
	background-color: #b695db;
	position: relative;
	width: 100%;
	padding: 40px 80px;
}
@media (max-width: 767px) {
	.index #section_1 .body {
		width: 100%;
		padding: 30px;
	}
}

.index #section_1 p {
	color:  #fff;
	font-size: 25px;
	line-height: normal;
}
@media (max-width: 767px) {
	.index #section_1 p {
		font-size: 24px;
	}
}

.index #section_1 .btn a {
	background: #e62739;
	border: 2px solid #e62739;
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 10px auto;
	padding: 16px 0;
	text-decoration: none;
	transition: .3s;
	width: 300px;
}
.index #section_1 .btn a:hover {
	border: 2px solid #fafafa;
	background: #b695db;
	color: #fafafa;
}

.index #section_1 .body img {
	width: 170px;
	position: absolute; 
	bottom: 130px; 
	right: 80px;
}
@media (max-width: 767px) {
	.index #section_1 .body img {
		width: 60px;
		bottom: 330px; 
		right: 20px;
	}
}


/* section-2 */
.index .side {
	width: 30%;
}
@media (max-width: 767px) {
	.index .side {
		width: 100%;
		margin-top: -100px;
	}
}
.index #section_2 {
	margin: 0 20px;
}

.index #section_2 .tit {
	width: 250px;
	margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
	.index #section_2 .group {
		flex-wrap: wrap;
		justify-content: center;
	}
}

.index #section_2 .body {
	border: solid 1px #e1e8f0;
	height: 500px;
	padding: 0;
	overflow: hidden;
}

.index #section_2 .img_t img {
	width: 100%;
}

@media (max-width: 767px) {
	.index #section_2 .img {
		margin-right: 0;
	}
}


/* section-3 */
.index #section-3 {
	background: #e1e8f0;
	background-size: 10px 10px;
	position: relative;
	z-index: 1;
}
@media (max-width: 767px) {
	.index #section-3 {
		padding: 50px 10px;
	}
}

.index #section-3 .body {
	margin: 0 200px;
}
@media (max-width: 767px) {
	.index #section-3 .body {
		margin: 0 10px;
	}
}

.index #section-3 .tit {
	width: 250px;
 	margin-left: auto;
 	margin-right: auto;
}

.index #section-3 ul {
	list-style: none;
	padding: 0;
}

.index #section-3 li {
	border-bottom: 2px dashed #9068be;
	display: flex;
	padding: 24px;
}
@media (max-width: 767px) {
	.index #section-3 li {
		font-size: 14px;
		padding: 24px 12px;
	}
}

.index #section-3 p {
	color: #9068be;
	flex-shrink: 0;
	font-weight: bold;
	margin-right: 40px;
	width: 100px;
}
@media (max-width: 767px) {
	.index #section-3 p {
		width: 60px;
	}
}

.index #section-3 span {
	flex-shrink: 0;
	font-weight: bold;
	padding: 15px 0;
}

.index #section-3 .img {
	width: 170px;
	position: absolute; 
	bottom: -20px; 
	right: 60px;
}
@media (max-width: 767px) {
	.index #section-3 .img {
		width: 80px;
		position: absolute; 
		bottom: -30px; 
		right: 10px;
	}
}

.index #section-3 .btn a {
	align-items: center;
	background: #e62739;
	border: 2px solid #e62739;
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	margin: 64px auto 0;
	padding: 16px 0;
	text-decoration: none;
	transition: .3s;
	width: 300px;
}
.index #section-3 .btn a:hover {
	background: #e1e8f0;
	color: #e62739;
}


/* section-3 */
.index .content_4 {
	background-color: #fafafa;
	padding: 80px 0;
}
.index .content_4 .btn {
	text-align: center;
}

.index .content_4 .btn a {
	background-color: #6ed3cf;
	color: #fafafa;
	padding: 30px 50px;
	border-radius: 10px;
	border: 2px solid #6ed3cf;
	text-decoration: none;
	margin: 0 auto;
	transition: .3s;
}
.index .content_4 .btn a:hover {
	background: #fafafa;
	color: #6ed3cf;
}