@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	height		: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

hr,legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

li {
	list-style-type : none;
}

img[usemap] {
	border		: none;
	height		: auto;
	max-width	: 100%;
	width		: auto;
}

img {
	border		: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
	transform: rotate(0.03deg);
}

th,td,li,h2,h3,h4,h5,h6,h7{
	transform: rotate(0.03deg);
}

/* Flexible Images */
img{
    max-width	: 100%;
    height		: auto;
    width /***/	: auto;
}

submit	{ -webkit-appearance : none;}

*{
	box-sizing: border-box;
}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin		: 0;
	padding		: 0;
	height		: 100%;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size	: 16px;
	font-weight: 500;
	line-height	: 2.0;
	text-align	: center;
	color		: #232323;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
	overflow-x: hidden;
}

#wrap{
	margin		: 0 auto;
	text-align	: center;
}

body > #wrap { height : auto;}


@media screen and (max-width: 767px){
	body{
		font-size: 13px;
	}
}

/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a{
	text-decoration: none;
	color: #000;
}


/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */

header {
	position: fixed;
    height: 102px;
    z-index: 900;
    width: 100%;
	transition: all .3s;
	background-color: #fff;
}

/*　上に上がる動き　*/

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

header h1{
	display: flex;
    align-items: center;
    text-align: left;
}

header h1 a{
	display: block;
	width: 100%;
}

header h1 a img{
	width: 100%;
}

.header_inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

.header_left{
	display: flex;
    justify-content: space-between;
    width: 19%;
    height: 100%;
}

.header_left > figure{
	height: 100%;
    width: 51%;
}

.header_right{
	display: flex;
	justify-content: flex-end;
    width: 58%;
}

.header_nav_wrap{
	width: 76%;
	padding: 8px 0 0;
}

.header_nav_wrap figure{
	text-align: right;
}

.nav_pc{
	padding: 8px 0 0;
}

.nav_pc ul{
	display: flex;
	justify-content: flex-end;
}

.nav_pc ul li{
	transform: rotate(0.03deg);
	border-right: 1px solid #dedede;
}

.nav_pc ul li a{
	display: block;
	padding: 0 15px;
}

.nav_pc ul li a:hover{
	color: #3689b3;
}

.nav_pc ul li:last-of-type{
	border-right: none;
}

.nav_pc ul li:last-of-type a{
	padding: 0 0 0 17px;
}

header .contact_btn{
	max-width: 160px;
    width: 22%;
    margin: 5px 0 0 4.5%;
}

header .contact_btn a{
	display: block;
	background-color: #3689b3;
	border-radius: 8px;border: 1px solid #3689b3;
	color: #fff;
	line-height: 70px;
	padding: 0 0 0 16px;
	transition: all .3s;
}

header .contact_btn a:hover{
	background-color: #fff;
	color: #3689b3;
}

header .contact_btn a:hover .icon_mail:before{
	background-image: url(/common/img/icon/mail_icon_blue.png);
}

.global-nav-header{
	display: none;
}

@media screen and (max-width: 1500px){
	
	.header_right {
		width: 78%;
	}
	
	.header_left{
		width: 19%;
	}
	
	header .contact_btn{
		margin-left: 20px;
	}
}

@media screen and (max-width: 1230px){
	
	.header_right {
    	width: 85%;
	}
}

@media screen and (max-width: 940px){
	header{
		height: 65px;
		z-index: 900;
	}
	
	#header.is-animation {
		height: 50px;
	}
	
	.header_left{
		max-width: 160px;
    	width: 45%;
	}
	
	.header_right{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		background-color: #3689b3;
		margin-top: 65px;
		padding: 30px 20px 120px;
		transform: translateX(100%);
	}
	
	header.is-animation .header_right{
		margin-top: 50px;
	}
	
	.header_right:before{
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		background: url(../img/bg/bg_01_sp.png) no-repeat center /cover;
		aspect-ratio: 1 / 0.25;
		z-index: -1;
	}
	
	.header_right.open{
		transform: translateX(0);
		transition: all .3s;
	}
	
	.header_nav_wrap figure{
		display: none;
	}
	
	.global-nav-header{
		display: block;
	}
	
	#nav-toggle{
		position: relative;
		width: 30px;
    	height: 20px;
		cursor: pointer;
	}
	
	#nav-toggle span{
		position: absolute;
		left: 50%;
		display: inline-block;
		width: 100%;
		height: 2px;
		background-color: #3689b3;
		transform: translateX(-50%);
		transition: 0.3s ease;
	}
	
	#nav-toggle span:first-of-type{
		top: 0;
	}
	
	#nav-toggle span:nth-of-type(2){
		top: calc(50% - 2px);
	}
	
	#nav-toggle span:last-of-type{
		bottom: 0;
	}
	
	#nav-toggle.active span:first-of-type{
		transform: rotate(-45deg) translateY(-25px);
    	top: 25px;
	}
	
	#nav-toggle.active span:nth-of-type(2){
		opacity: 0;
    	transition: 0s ease-in-out;
	}
	
	#nav-toggle.active span:last-of-type{
		transform: rotate(45deg) translateY(24px);
    	bottom: 27px;
	}
	
	.header_nav_wrap{
		width: 100%;
	}
	
	.header_nav{
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100vh - 60px);
		transform: translateX(100%);
		overflow: auto;
		z-index: 999;
	}
	
	.header_nav.open{
		transform: translateX(0);
	}
	
	.header_nav ul{
		display: block;
	}
	
	.nav_pc ul{
		flex-direction: column;
	}
	
	.nav_pc ul li{
		position: relative;
		border-bottom: 1px solid #c8d9e4;
		border-right: none;
	}
	
	.nav_pc ul li:first-of-type{
		border-top: 1px solid #c8d9e4;
	}
	
	.nav_pc ul li:before{
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width: 6px;
		height: 6px;
		border-right: solid 1px #fff;
		border-bottom: solid 1px #fff;
		transform: rotate(-45deg) translateY(-50%);
		transform-origin: center center;
	}
	
	.nav_pc ul li a,
	.nav_pc ul li:last-of-type a{
		text-align: left;
		color: #fff;
		padding: 15px;
		font-size: 1.4rem;
	}
	
	.nav_pc ul li a:hover{
		color: #c8d9e4;
	}
	
	header .contact_btn{
		position: relative;
		max-width: none;
		width: 100%;
		margin: 20px auto 0;
		overflow: hidden;
	}
	
	header .contact_btn:before{
		content: "";
		position: absolute;
		top: 5px;
		top: 5px;
		left: 7px;
		width: 70px;
		height: 61px;
		background-image: url(/common/img/icon/chara03.png);
		background-repeat: no-repeat;
		background-size: contain;
		z-index: 10;
	}
	
	header .contact_btn a:after{
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width: 6px;
		height: 6px;
		border-right: solid 1px #3689b3;
		border-bottom: solid 1px #3689b3;
		transform: rotate(-45deg) translateY(-50%);
		transform-origin: center center;
		transition: all .3s;
	}
	
	header .contact_btn a{
		position: relative;
		background-color: #fff;
		color: #3689b3;
		border-radius: 28px;
		line-height: 54px;
		font-size: 1.4rem;
		border: 1px solid #fff;
		transition: all .3s;
	}
	
	header .contact_btn a:hover{
		background-color: #3689b3;
		color: #fff;
	}
	
	header .contact_btn a:hover:after{
		border-right: solid 1px #fff;
		border-bottom: solid 1px #fff
	}
	
	header .contact_btn a:hover .icon_mail:before{
		background-image: url("/common/img/icon/mail_icon.png");
	}
	
	header .contact_btn a .icon_mail{
		padding: 0;
	}
	
	header .contact_btn a .icon_mail:before{
		background-image: url("/common/img/icon/mail_icon_blue.png");
		width: 20px;
		height: 12px;
		left: -22px;
	}

}



/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#mainBlock {
	padding-top: 102px;
}

.contents{
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
}

.mainVisual{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 320px;
}

.mainVisual > .mv_ttl{
	font-size: 3.2rem;
	color: #fff;
	line-height: 1.4;
}

.mainVisual > .mv_ttl span{
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	color: #c8d9e4;
}

section{
	margin: 64px auto 0;
}

@media screen and (max-width: 940px){
	#mainBlock{
		padding-top: 65px;
	}
	
	.mainVisual{
		height: 220px;
	}
	
	.mainVisual > .mv_ttl{
		font-size: 2.8rem;
	}
	
	section{
		margin: 48px auto 0;
	}
}

/* パンクズ
--------------------------------------------------------------------------- */

.crumb{
	padding: 16px 0;
}

.crumb ul{
	display: flex;
	justify-content: flex-end;
}

.crumb ul li{
	font-size: 1.4rem;
}

.crumb ul li a{
	color: #dbdbdb;
	transition: all .3s;
}

.crumb ul li a:hover{
    color: #232323;
}

.crumb ul li a:after{
	content: ">";
	padding: 0 5px;
	color: #dbdbdb;
}

/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	position: relative;
	background-color: #f5f5f5;
	margin-top: 200px;
}

footer:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 186px;
    background: url(../img/bg/bg_01_pc.png) no-repeat center /cover;
    border-bottom: 1px solid #c8d9e4;
    aspect-ratio: 1 / 0.117;
    z-index: -1;
    transform: translateY(-100%);
}

.contact_area{
	transform: translateY(-40px);
}

.contact_area > .flex{
	justify-content: space-between;
    align-items: center;
    background-color: #3689b3;
    border-radius: 20px;
    padding:40px;
}

.contact_area > .flex .more_btn{
	margin: 0;
}

.contact_area > .flex .more_btn a:hover{
	border: 1px solid #fff;
}

.contact_area .hd02{
	color: #fff;
}

.footer_top{
	padding: 0 0 20px;
}

.footer_top > .flex{
	justify-content: space-between;
}

.footer_top > .flex figure.logo{
	text-align: left;
}

.footer_top > .flex figure.icon{
	margin: 0 30px 0 0;
}

.footer_nav{
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0 0;
}

.footer_nav li{
	padding: 0 14px;
    border-left: 1px solid #dedede;
	transform: rotate(0.03deg);
}

.footer_nav li:first-of-type{
	padding: 0 20px 0 0;
	border-left: none;
}

.footer_nav li a:hover{
	color: #3689b3;
}

.footer_right{
	display: flex;
	align-items: flex-end;
}

.footer_right dl{
	display: flex;
	align-items: center;
}

.footer_right dl:not(:first-of-type){
	margin: 5px 0 0;
}

.footer_right dt{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	background-color: #3689b3;
	line-height: 32px;
	border-radius: 8px;
	width: 160px;
	margin-right: 15px;
	transform: rotate(0.03deg);
}

.footer_right dd{
	color: #3689b3;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: left;
	line-height: 1.2;
	transform: rotate(0.03deg);
	width: calc(100% - 170px);
}

.footer_bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #c8d9e4;
	padding: 25px 0 20px;
}

.footer_bottom_nav{
	display: flex;
}

.footer_bottom_nav li{
	padding: 0 8px;
	transform: rotate(0.03deg);
}

.footer_bottom_nav li:first-of-type{
	padding: 0 4px 0 0;
}

.footer_bottom_nav li a{
	font-size: 1.4rem;
	color: #9bbed3;
}

.footer_bottom_nav li a:hover{
	text-decoration: underline;
}

.copy{
	font-size: 1.4rem;
	text-align: left;
}

@media screen and (max-width: 940px){
	footer{
		margin-top: 96px;
	}
	
	footer:before{
		background: url(../img/bg/bg_01_sp.png) no-repeat center /cover;
		height: 112px;
	}
	
	.contact_area{
		transform: translateY(-24px);
	}
	
	.contact_area > .flex{
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 25px;
		border-radius: 10px;
	}
	
	.contact_area > .flex .more_btn {
    	margin: 20px auto 0;
	}
	
	.footer_top {
		padding: 0 0 10px;
	}
	
	.footer_top > .flex{
		flex-direction: column;
	}
	
	.footer_top > .flex figure{
		width: 100%;
		max-width: 230px;
		margin: 0 auto;
	}
	
	.footer_right{
		margin: 30px 0 0;
	}
	
	.footer_nav{
		flex-direction: column;
		margin: 30px 0 0;
	}
	
	.footer_right dt{
		width: 130px;
		line-height: 28px;
		border-radius: 4px;
		font-size: 1.4rem;
	}
	
	.footer_right dd{
		width: calc(100% - 140px);
		font-size: 1.6rem;
	}
	
	
	.footer_top > .flex figure.icon{
		order: 2;
		margin: 0 0 0 10px;
		width: 20%;
	}
	
	.footer_detail{
		order: 1;
		width: 80%;
	}
	.footer_nav li{
		position: relative;
		border-left: none;
		border-bottom: 1px solid #dedede;
	}
	
	.footer_nav li:first-of-type{
		border-top: 1px solid #dedede;
		padding: 0 14px;
	}
	
	.footer_nav li a{
		display: block;
		text-align: left;
		line-height: 56px;
		font-size: 1.6rem;
	}
	
	.footer_nav li:before{
		content: "";
		position: absolute;
		top: 50%;
		right: 15px;
		width: 6px;
		height: 6px;
		border-right: solid 2px #232323;
		border-bottom: solid 2px #232323;
		transform: rotate(-45deg) translateY(-50%);
		transform-origin: center center;
	}
	
	.footer_bottom{
		flex-direction: column;
		border-top: none;
		padding: 10px 0 20px;
	}
	
	.footer_bottom_nav li{
		padding: 0 4px;
	}
	
	.footer_bottom_nav li:last-of-type{
		padding: 0 0 0 4px;
	}
	
	.footer_bottom_nav li a {
    	font-size: 1.1rem;
	}
	
	.copy{
		font-size: 1.2rem;
		margin: 10px 0 0;
	}
}

@media screen and (max-width: 400px){
	.footer_right dt{
		width: 110px;
		font-size: 1.3rem;
		margin-right: 10px;
	}
	
	.footer_right dd{
		width: calc(100% - 120px);
		font-size: 1.4rem;
	}
	
}

/* ------------------------------------------------------------------------ */

/* トップへ戻るボタン

/* ------------------------------------------------------------------------ */


