@charset "UTF-8";
/* CSSリセットここから */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,body, div, span, applet, object, iframe,
 h1,h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, section {
	display: block;
}

input, label, select, button, textarea {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  word-break: normal;
  vertical-align: middle;
  white-space: normal;
  -webkit-appearance: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
	width: 100%;
    height: 100%;
	font-size: 62.5%;
    overflow-x: hidden;
    position: relative;
}
body {
    width: 100%;
	font-size:1.6rem;/* 16px*/
	line-height: 1;
	/*スマホで勝手に文字が大きくなる対策*/
	    -webkit-text-size-adjust: 100%;
}
.wrap{
    width: 100%;
    height: 100%;
    min-width:280px;
    position: relative;
	overflow-x: hidden;
}
.text{
	font-size: 1.6rem;
    line-height:1.8;
	text-align: justify;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*Chromeのみ画像縮小表示のぼやけを回避*/
_:lang(x)::-internal-media-controls-overlay-cast-button, img {
image-rendering: -webkit-optimize-contrast;
}
	
.bold{
	font-weight:bold;
	}
a{
	text-decoration:none;
	}
#wrap{
	overflow:hidden;
	position:relative;
	}
body{
	font-family: "游ゴシック", YuGothic, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 2;
	color: #333333;
	}	

/*ID pタグの文字を大きくしたくない場合*/
	p {
	    /*Androidブラウザフォントバグ対策*/
	    max-height: 999999px;  
	}

.clear{ clear:both; }
.clearfix{
	*zoom:1;
}
.clearfix:after{
    content:".";
	height:0;
    display:block;
    clear:both;
	overflow:hidden;
}

.text_center{
	text-align:center;
	}
.text_left{
	text-align: left;
}
.text_right{
	text-align: right;
}
a:hover img{
	opacity:1;
	}
a:hover{
	color:#9B8ED0;
	}
a:hover u{
	color:#9B8ED0;
	}
a,i,u{
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  }		

a:hover img.opa{
	opacity:0.7; transition: all 0.3s ease-in-out 0s;
}

.indent{
	text-indent:-1.0em;
	padding-left:1.0em;
	}

.inline{
	display:inline-block;
	}

/* アニメーション */
.fi-up {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: 1.3s;
	-o-transition: 1.3s;
	transition: 1.3s;
}
.fi-up.on {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.fi-left {
	opacity: 0;
	-webkit-transform: translateX(50px);
	-ms-transform: translateX(50px);
	transform: translateX(50px);
	-webkit-transition: 1.3s;
	-o-transition: 1.3s;
	transition: 1.3s;
}
.fi-left.on {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.fi-right {
	opacity: 0;
	-webkit-transform: translateX(-50px);
	-ms-transform: translateX(-50px);
	transform: translateX(-50px);
	-webkit-transition: 1.3s;
	-o-transition: 1.3s;
	transition: 1.3s;
}
.fi-right.on {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.pc_only{
		display:none;
	}
	.sp_only{
		display:block;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	body,html{
		width:100%;
		overflow-x: visible;
	}
	.pc_only{
		display:block;
	}	
	.sp_only{
		display:none;
	}
	.wrap{
		width: 100%;
		min-width:1150px;
		padding-bottom:0px;
		}
	.fl {
		float:left;
	}
	.fr {
		float:right;
	}
}

.header{
    width: 100%;
}
.header_wrap {
    width: 100%;
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.logo img{
	vertical-align: bottom;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.header{
		height:70px;
	}
	.header_wrap {
		height: 70px;
	}
	.logo{
		width: 100%;
		margin-left: 1%;
	}
	.logo a{
		display: block;
		width: 100%;
		max-width: 250px;
	}
	.logo img{
		width: 100%;
		height:auto;
	}
}


/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.header{
        height:110px;
    }
	.header_wrap{
		width: 1000px;
        height: 110px;
		margin: 0 auto;
		text-align: right;
		-webkit-box-pack: justify;
		justify-content: space-between;
    }
    .logo img {
        width: 430px;
    }
	.header_info address{
		line-height: 1.0;
	}
    .header_info .header_phone{
		font-family: "Arial", sans-serif;
		padding-top:10px;
		line-height: 1.0;
		letter-spacing: 0.05em;
    }
	.header_info .header_phone a{
		font-size: 3.0rem;
		font-weight: 600;
		color: #B39861;
		pointer-events: none;
    }
	.header_info .header_phone_top{
		font-size: 2.4rem;
		font-weight: normal;
		letter-spacing: normal;
	}
}

/* グローバルナビ */
.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    position: fixed;;
    border: none;
    appearance: none;
    cursor: pointer;
    top:0;
    right:0;
	background: #3C42B5;
    z-index:6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.menu-trigger span.ico_hanbarger {
   position: absolute;
	display: block;
	left: 50%;
	transform: translateX(-50%);
}
.ico_hanbarger_item {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	transform-origin: center;
	transition: all .3s;
}
.ico_hanbarger_item:nth-child(1) {
	top: 0;
	transform: translate(-50%, 0);
}
.ico_hanbarger_item:nth-child(2) {
	top: 50%;
	transform: translate(-50%, -50%);
}
.ico_hanbarger_item:nth-child(3) {
	bottom: 0;
	transform: translate(-50%, 0);
}
.menu-trigger::after {
    position: absolute;
    left: 0;
    content: 'MENU';
    display: block;
    width: 100%;
    color: #fff;
	font-family: "Arial", sans-serif;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all .4s;
}
.menu-trigger.active::after {
    content: 'CLOSE';
}
.menu-trigger.active .ico_hanbarger_item:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
	width: 22px;
	top: 50%;
	left: 48%;
}
.menu-trigger.active .ico_hanbarger_item:nth-of-type(2) {
    transform: translate(-50%, -50%);
	opacity: 0;
}
.menu-trigger.active .ico_hanbarger_item:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
	width: 22px;
	top: 50%;
	bottom: auto;
	left: 48%;
}

.gnav{
    opacity: 0;
	visibility: hidden;
    position:fixed;
	top:0;
    left:0;
	width:100%;
	height: 100%;
	transition: all 0.6s;
	transform: translateY(-50px);
	z-index: 5;
	background-color: #fff;
}
/*アクティブクラスがついたら位置を0に*/
.gnav.panelactive{
    opacity: 1;
	visibility: visible;
	width:100%;
    height:100%;
    transform: translateY(0);
}
.gnav_list_wrap{
	position: relative;
	top:0;
    left:0;
	width:100%;
    height:100%;
    overflow: scroll;
}
.gnav_logo img{
	vertical-align: bottom;
}
.gnav_list{
    margin-left: auto;
    margin-right: auto;
}
/*ナビゲーション*/
.gnav>ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 3;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/
.gnav>ul>li{
	list-style: none;
    text-align: center; 
}
.gnav>ul>li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
.gnav_item {
  box-sizing: border-box;
  border-bottom: 1px solid #3C42B5;
}
.gnav_item a{
	color: #3C42B5;
    font-weight: bold;
}
.gnav_logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.menu-trigger {
		width: 70px;
		height: 70px;
	}
	.menu-trigger span.ico_hanbarger {
		width: 22px;
		height: 16px;
		top: 18px;
	}
	.menu-trigger::after {
		bottom: 10px;
		font-size: 12px;
	}
	.menu-trigger.active::after {
		bottom:10px;
		left: 2px;
		transform: translateX(-2px);
	}
	.gnav_logo{
		width: 100%;
		height: 70px;
	}
	.gnav_logo a {
		display: block;
		width: 100%;
		max-width: 250px;
		padding-left: 1%;
	}
	.gnav_logo a img {
		width: 100%;
		max-width: 250px;
		height: auto;
	}
	.gnav_list{
		width: 88%;
		padding:40px 0;
	}
	.gnav_item {
		padding: 15px 10px 15px 10px;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.menu-trigger {
		width: 110px;
		height: 110px;
	}
	.menu-trigger:hover{
		background-color: #9B8ED0;
	}
	.menu-trigger::after{
		font-size:1.5rem;
		bottom:18px;
	}
	.menu-trigger.active::after {
		bottom: 18px;
	}
	.menu-trigger span.ico_hanbarger {
		width: 36px;
		height: 26px;
		top: 32px;
	}
	.menu-trigger.active .ico_hanbarger_item:nth-of-type(1) {
		width: 36px;
	}
	.menu-trigger.active .ico_hanbarger_item:nth-of-type(3) {
		width: 36px;
	}
	
	.gnav {
        padding-bottom: 100px;
		width: 100%;
        height: 300px;
        overflow: hidden;
    }
    .gnav.panelactive .gnav_list_wrap{
        height:300px;
    }
    .gnav.panelactive {
        width: 100%;
        height: 300px;
    }
    .gnav_list_wrap{
        width: 100%;
        margin-left: auto;
        margin-right: auto;
		overflow: hidden;
    }
	.gnav_logo {;
		width: 1000px;
		height: 86px;
		margin-left: auto;
		margin-right: auto;
		padding: 12px 0;
		-webkit-box-align: start;
		align-items: flex-start;
	}
	.gnav_logo a img {
		width: 384px;
	}
    .gnav_list {
        width: 1000px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
		flex-wrap: wrap;
        padding-top: 60px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .gnav_item {
        width: 220px;
		margin: 0 40px 40px 0;
    }
	.gnav_item:nth-child(4){
		margin-right: 0;
	}
	.gnav_item a{
		font-size: 1.8rem;
	}
	.gnav_item a:hover{
		color: #9B8ED0;
	}
    .gnav_bg{
        width: 100%;
        background: rgba(0, 0, 0, .4);
        position: fixed;
        top: 0;
        left: 0;
    }
    .gnav_bg.isVisible{
        height: 100%;
        opacity: 1;
        z-index: 4;
    }
}


/*---スマホ表示時のみ下部ついてくるナビ---*/	
.mobile_under_nav{
	width: 100%;
	height: 50px;
	position: fixed;
	left:0;
	bottom: 0;
	background: #fff;
	z-index: 4;
}
.mobile_under_nav ul {
    width: 100%;
    padding: 8px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mobile_under_nav li{
	width:25%;
	height:34px;
	box-sizing: border-box;
	
}
.mobile_under_nav li:not(:last-child){
    border-right:1px solid #ccc;
}
.mobile_under_nav a{
	width:100%;
	height:34px;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
}	
.mobile_under_nav li img{
	width:auto;
	max-width: 25px;
	height:20px;
}
.mobile_under_nav li span{
	font-size: 1.2rem;
	font-weight: 600;
	color: #3C42B5;
	text-align: center;
	line-height: 1.0;
}

h2.ttl{
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	font-weight: 600;
    text-align: center;
    line-height: 1.0;
}
h2.ttl span{
	display: block;
    font-family: "Arial", sans-serif;
	font-weight: 600;
	color:#9B8ED0;
    text-align: center;
    line-height: 1.0;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	h2.ttl{
		font-size: 2.8rem;
	}
	h2.ttl span{
		font-size: 1.5rem;
		padding-top:8px;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	h2.ttl{
		font-size: 3.2rem;
	}
	h2.ttl span{
		font-size: 1.6rem;
		padding-top:8px;
	}
}

.text_note{
	padding-left: 1.4rem;
	text-indent: -1.6rem;
}
.text_note span{
	color:#ED8F94;
}

.acrd_wrap{
    display: none;
}
.acrd_wrap a{
    font-weight:600;
	color:#333;
    text-decoration: underline;
}
.acrd_wrap a:hover{
    color:#9B8ED0;
}

.common_btn a{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height:60px;
	font-size: 1.8rem;
	font-weight: 600;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color:#fff;
	border:solid 1px #3C42B5;
	background:#3C42B5;
	border-radius: 30px;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
}
.common_btn a:hover{
	color:#3C42B5;
	background:#fff;
}
.common_btn a:hover::before, .common_btn a:hover::after {
  right: 15px;
}
.common_btn a:hover::before {
  opacity: 0;
}
.common_btn a:hover::after {
  opacity: 1;
}
.common_btn a::before, .common_btn a::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 10px;
	height: 16px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: center/contain no-repeat;
}
.common_btn a::before {
	background-image: url("../img/common/ico_arrow_white.svg");
}
.common_btn a::after {
	opacity: 0;
	background-image: url("../img/common/ico_arrow_blue.svg");
}


.footer {
	background:#EDEDF7;
}
.footer_wrap{
	margin-left: auto;
    margin-right: auto;
}
.footer_logo img{
	max-width: 384px;
	vertical-align: bottom;
}
.footer_right address{
	line-height: 1.4;
}
.footer_phone{
	font-family: "Arial", sans-serif;
	line-height: 1.0;
	letter-spacing: 0.05em;
}
.footer_phone a{
	font-size: 3.0rem;
	font-weight: 600;
	color: #3C42B5;
}
.footer_phone_top{
	font-size: 2.4rem;
	font-weight: normal;
	letter-spacing: normal;
}
.copyright{
    width: 100%;
    background:#3C42B5;
    padding: 20px 0 70px 0;
    text-align: center;
}
.copyright a{
	color:#fff;
}
.copyright a:hover{
	color:#9B8ED0;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
	.footer{
		padding-top:3.0rem;
	}
	.footer_wrap{
		width: 92%;
	}
	.footer_right{
		margin-top: 2.0rem;
	}
	.footer_phone{
		margin-top:0.5rem;
	}
	.copyright{
		margin-top:3.0rem;
	}
}

/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, (min-width: 768px) {
	.footer{
		padding-top:50px;
	}
	.footer_wrap{
		width: 1000px;
		display: -webkit-box;
		display: flex;
		-webkit-box-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		align-items: center;
	}
	.footer_left{
		width: 384px;
	}
	.footer_right{
		width: 500px;
		text-align: right;
	}
	.footer_phone{
		margin-top:10px;
	}
	.footer_phone a{
		pointer-events: none;
	}
    
    .copyright {
		margin-top: 20px;
        padding: 14px 0;
    }
	.copyright a:hover,.copyright a:hover span{
		color: #ffeea9;
	}
	
	.mobile_under_nav{
		display: none!important;
		opacity: 0;
	}
    
    h3.ttl{
        font-size:2.8rem;
    }
    
    .cont_wrap{
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .cont_box_text{
        width: 500px;
    }
    .cont_box_img{
        width: 400px;
        margin-top: 0;
    }	
	
	.go_top{
		width: 60px;
		height:60px;
		text-align: center;
		position: fixed;
		right:25px;
		bottom:3%;
		z-index: 3;
	}
	.go_top img{
		width:60px;
		height:60px;
	}
	
}

@media print {
		.go_top {
			display: none !important;
		}
	}

/*------ タブレット -----*/
@media screen and (min-width:768px) and ( max-width:1024px) {	
	.header_wrap{
		width: 880px;
	}
}
