@charset "UTF-8";

/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
    font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	font-size: 15px;
    font-size: 1.5em;
	color: #050505;
    line-height: 2.4em;
	font-weight: 500;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
	box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
.contents_inner{
	width: 1000px;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
    color: #050505;
	text-decoration:none;
    cursor: pointer;
    transition: all 0.5s;
}
a:hover {
    opacity: 0.6;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 1000px) {
	.contents_inner{
		width: 95%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 13px;
		font-size: 1.3em;
		line-height: 1.8em;
		font-weight: normal;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
}

/*-----------------------------------

	clearfix

-----------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}
/*-----------------------------------

	header

-----------------------------------*/
.header_wrap {
    position: fixed;
    width: 100%;
    height: 110px;
    background: rgba(255,255,255,0.5);
    mix-blend-mode: overlay;
    z-index: 90;
    transition: all 1s;
}
.header_wrap.change-color {
    background: rgba(255,255,255,1.0);
    mix-blend-mode: normal;
}
header {
    height: 110px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
header .contents_inner {
    margin-top: 20px;
    position: relative;
    height: 90px;
    max-width: 1000px;
    width: 95%;
}
header h1 {
    width: 160px;
    position: absolute;
    top: 0;
    left: 0;
}
header nav {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 260px;
    margin: auto;
    height: 15px;
    line-height: 1;
}
header nav ul.clearfix {
    display: inline-block;
}
header nav ul li {
    float: left;
    margin-right: 40px;
}
header nav ul li:last-child {
    margin-right: 0;
}
header nav ul li a {
    font-size : 15px;
    color: #646A58 !important;
}
header nav ul li a:hover {
    color: #03596D !important;
    text-decoration: underline;
    opacity: 1;
}
header .header_sns {
    position: absolute;
    top: 0;
    right: 110px;
}
header .header_sns ul li {
    float: left;
}
header .header_sns ul li a {
    display: block;
    width: 64px;
}
header a.header_login {
    width: 100px;
    height: 60px;
    background: url(../img/common/header_login_bg.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: 0;
    text-align: center;
    padding-top: 35px;
    color: #fff;
    line-height: 1;
    font-size : 14px;
}
@media screen and (max-width: 1000px) {
    header nav ul li {
        margin-right: 20px;
    }
}
@media screen and (max-width: 840px) {
    .header_wrap {
        height: 70px;
    }
    header {
        height: 70px;
    }
    header .contents_inner {
        margin-top: 10px;
        height: 60px;
    }
    header h1 {
        width: 120px;
    }
    .menu_btn_wrap {
		width: 70px;
		height: 70px;
		cursor:pointer;
		background: #03596D;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
	}
	.menu_btn {
        width: 34px;
		height: 27px;
		display: block;
		position: absolute;
        top: 21px;
		right: 18px;
		background: #FFF;
		border-top: 12px solid #03596D;
		border-bottom: 12px solid #03596D;
		box-sizing: border-box;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		z-index:999;
	}
	.menu_btn:before {
        content:'';
		position:absolute;
		width: 34px;
		height: 3px;
		background: #FFF;
		top:-12px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn:after {
        content:'';
		position:absolute;
		width: 34px;
		height: 3px;
		background: #FFF;
		bottom:-12px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn.active {
		background:#03596D;
	}
	.menu_btn.active:before{
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:0;
		right:0;
	}
	.menu_btn.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:0;
		right:0;
	}
    header nav {
        display: none;
    }
    header .header_sns {
        display: none;
    }
    header a.header_login {
        display: none;
    }
}
@media screen and (max-width: 640px) {
    header h1 {
    }
}
/*-----------------------------------

	nav

-----------------------------------*/
#nav_sp{
	display:none;
}
@media screen and (max-width: 840px) {
	#nav_pc{
		display:none;
	}
	#nav_sp{
		width: 100%;
		height: calc(100% - 70px);
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #fff;
		position: fixed;
		top:70px;
		right: -100%;
		padding: 20px 2.5% 0;
		display:inline-block;
		z-index: 999;
		box-sizing: border-box;
		-webkit-overflow-scrolling: touch;
		transition: 0.3s;
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
	}
	#nav_sp.toggle{
		right: 0 !important;
	}
    #nav_sp_menu {
        border-top: solid 1px #03596D;
        margin-bottom: 20px;
    }
	#nav_sp_menu li{
		border-bottom: solid 1px #03596D;
	}
	#nav_sp_menu li a{
		font-size: 15px;
		display:block;
		padding: 10px 2.5%;
		position: relative;
        color: #646A58;
	}
    #nav_sp .nav_sp_sns {
        text-align: center;
    }
    #nav_sp .nav_sp_sns ul {
        display: inline-block;
    }
    #nav_sp .nav_sp_sns ul li {
        float: left;
    }
    #nav_sp .nav_sp_sns ul li a {
        display: block;
        width: 64px;
    }
    #nav_sp a.nav_sp_login{
        display: block;
        background: #03596D;
        border-radius: 5px;
        color: #fff;
        margin-top: 15px;
        text-align: center;
        padding: 10px 0;
        font-size: 18px;
        letter-spacing: 0.1em;
    }
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
    padding-top: 110px;
    margin-top: -110px;
}
#contact_block #contact_textArea {
    padding: 30px 0;
    text-align: center;
}
#contact_block #contact_textArea h2 {
    color : #646A58;
    font-size : 24px;
}
#contact_block #contact_textArea p {
    font-size : 16px;
}
#contact_block #contact_detailArea {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
#contact_block #contact_detailArea .mailArea,
#contact_block #contact_detailArea .telArea {
    width: 50%;
    text-align: center;
    padding: 60px 0;
}
#contact_block #contact_detailArea .mailArea {
    padding-left: calc(50% - 500px);
    background: #F2E8DF;
}
#contact_block #contact_detailArea .telArea {
    padding-right: calc(50% - 500px);
    background: #86BEB3;
    color: #fff;
}
#contact_block #contact_detailArea .mailArea p {
    font-size : 16px;
    font-weight: 700;
    color : #03596D;
    margin-bottom: 30px;
    line-height: 1;
}
#contact_block #contact_detailArea .mailArea a {
    display: block;
    max-width: 280px;
    width: 90%;
    padding: 20px 0;
    text-align: center;
    background: #03596D;
    color: #fff;
    border-radius: 40px;
    margin: 0 auto;
    line-height: 1;
    font-size: 16px;
    box-shadow: 0px 6px 0px 0px #04424C;
    position: relative;
    bottom: 0;
    transition: all 0.5s;
}
#contact_block #contact_detailArea .mailArea a::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 15px;
    background: url(../img/common/contact_icon_mail.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
}
#contact_block #contact_detailArea .mailArea a::after {
    content: ">";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 16px;
    height: 16px;
}
#contact_block #contact_detailArea .mailArea a:hover {
    box-shadow: none;
    bottom: -6px;
    opacity: 1;
}
#contact_block #contact_detailArea .telArea p{
    font-size : 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}
#contact_block #contact_detailArea .telArea .tel {
    font-weight : 700;
    font-size : 36px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
#contact_block #contact_detailArea .telArea .tel::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 33px;
    background: url(../img/common/contact_icon_tel.png) no-repeat;
    background-size: contain;
    margin-right: 10px;
    vertical-align: middle;
}
#contact_block #contact_detailArea .telArea .time {
    font-size: 16px;
}
@media screen and (max-width: 840px) {
    #contact_block {
        padding-top: 70px;
        margin-top: -70px;
    }
}
@media screen and (max-width: 640px) {
    #contact_block #contact_detailArea {
        -webkit-box-orient: vertical;
      	-webkit-box-direction: normal;
      	-ms-flex-direction: column;
      	flex-direction: column;
    }
    #contact_block #contact_detailArea .mailArea {
        width: 100%;
        padding: 30px 2.5%;
    }
    #contact_block #contact_detailArea .telArea {
        width: 100%;
        padding: 30px 2.5%;
    }
    #contact_block #contact_detailArea .mailArea p {
        margin-bottom: 15px;
    }
    #contact_block #contact_detailArea .telArea .tel {
        font-size : 32px;
    }
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 100px;
    cursor: pointer;
    z-index: 999;
    width: 159px;
    height: 175px;
    background: url(../img/common/pagetop.png) no-repeat;
    background-size: contain;
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
}
#pagetop_sp{
	display:none;
}
@media screen and (max-width: 840px) {
    #pagetop{
        position: fixed;
        right: 20px;
        bottom: 100px;
        cursor: pointer;
        z-index: 999;
        width: 100px;
        height: 112px;
        background: url(../img/common/pagetop.png) no-repeat;
        background-size: contain;
        transition-duration: 0.3s;
        -moz-transition-duration: 0.3s;
        -ms-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        -webkit-transition-duration: 0.3s;
    }
}
@media screen and (max-width: 640px) {
	#pagetop{
		display:none !important;
	}
	#pagetop_sp{
		height: 50px;
		background:#03596D;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        text-align: center;
		transition-duration: 0.3s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
		-webkit-transition-duration: 0.3s;
		padding-top: 15px;
		cursor: pointer;
		display:block;
		box-sizing:border-box;
	}
	#pagetop_sp:hover{
		background:#03596D;
	}
}

/*-----------------------------------

	footer

-----------------------------------*/
footer #footer_logoArea {
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #646A58;
}
footer #footer_logoArea img {
    width: 245px;
}
footer #footer_menuArea {
    padding: 20px 0;
    text-align: center;
}
footer #footer_menuArea .menu {
    border-left: 1px solid #646A58;
    display: inline-block;
    margin-bottom: 20px;
}
footer #footer_menuArea .menu li {
    float: left;
    padding: 0 20px;
    line-height: 1;
    border-right: 1px solid #646A58;
}
footer #footer_menuArea .menu li a {
    color: #646A58;
}
footer #footer_menuArea .sns {
    display: block;
    text-align: left;
}
footer #footer_menuArea .sns li {
    float: left;
    margin-right: 10px;
}
footer #footer_menuArea .sns li a {
    width: 45px;
    display: block;
}
footer small {
    display: block;
    text-align: center;
    font-size : 11px;
    color : #646A58;
}
@media screen and (max-width: 640px) {
    footer #footer_logoArea {
        padding: 20px 0;
    }
    footer #footer_logoArea img {
        width: 200px;
    }
    footer #footer_menuArea {
        padding: 0;
    }
    footer #footer_menuArea .menu {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
        border-left: none;
    }
    footer #footer_menuArea .menu li {
        width: 50%;
        padding: 0;
        border-bottom: 1px solid #646A58;
    }
    footer #footer_menuArea .menu li:nth-child(2n) {
        border-right: none;
    }
    footer #footer_menuArea .menu li a {
        width: 100%;
        padding: 15px 0;
        text-align: center;
        display: block;
    }
    footer #footer_menuArea .sns {
        display: inline-block;
    }

}

