@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@200;300;400;500&display=swap');

/*-----------------------------------

	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: "Noto Sans JP", sans-serif;
	font-size: 16px;
    font-size: 1.6em;
	color: #333333;
    line-height: 2;
	letter-spacing:0.05em;
	font-weight: 400;
	background: #ffffff;
	margin:0 !important;
	width: 100%;
	overflow: hidden;
}
*, *: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{
	max-width: 1100px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	display: block;
	color: #333333;
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}
.tab{
	display: none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 840px) {
	.pc{
		display:none;
	}	
	.sp{
		display:none;
	}
	.tab{
		display:block;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 14px;
		font-size: 1.4em;
	}
	.pc{
        display:none;
    }
	.tab{
        display:none;
	}
    .sp{
        display:block;
    }
}
@media (min-width: 641px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
 }
/*-----------------------------------

	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 {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 95px;
	padding: 0 200px 0 2.5%;
	background: #FFF;
}
header #logo {
	width: 300px;
	line-height: 0;
}

header #logo img {
	width: 300px;
}

header #nav_menu > ul.mainMenu {
	display:flex;
}
header #nav_menu > ul.mainMenu > li {
	height: 100%;
}
header #nav_menu > ul.mainMenu > li > a {
	height: 95px;
	line-height: 95px;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 700;
}
header #nav_menu > ul.mainMenu > li.current > a {
	color: #10436D;
}
header #nav_menu > ul.mainMenu > li:last-child > a {
	padding-right: 0;
}
header #nav_menu > ul.mainMenu li.has-child {
	position: relative;
}
header #nav_menu > ul.mainMenu li.has-child > ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	background: #EEECE8;
	border-radius: 5px;
	width: max-content;
	transition: 0.5s;
	padding: 5px 30px;
}
header #nav_menu > ul.mainMenu li.has-child:hover > ul {
	visibility: visible;
	opacity: 1;
}
header #nav_menu > ul.mainMenu li.has-child > ul li:not(:last-child) {
	border-bottom: 1px solid #C8C8C8;
}
header #nav_menu > ul.mainMenu li.has-child > ul li a {
	padding: 15px 25px 15px 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	background: url(../img/common/header_icon_arrow.svg) no-repeat right center/14px;
}
header #nav_menu ul.subMenu {
	display: none;
}
header .menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1500px) {
	header {
		padding-right: 200px;
	}
}
@media screen and (max-width: 1100px) {
	header {
		height: 70px;
		padding-right: 0;
	}
	header .menu_btn_wrap {
        display: block;
		width: 70px;
		height: 70px;
		cursor:pointer;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	header .menu_btn_wrap .menu_btn {
		width: 34px;
		height: 21px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: all 0.3s;
		z-index:999;
	}
	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .linem,
	header .menu_btn_wrap .menu_btn .lineb {
		position:absolute;
		left: 0;
		width: 34px;
		height: 1px;
		background: #10436D;
		transition:all 0.3s;
	}
	header .menu_btn_wrap .menu_btn .lineh {
		top:0;
	}
	header .menu_btn_wrap .menu_btn .linem {
		top: 50%;
		transform: translateY(-50%);
		opacity: 1;
	}
	header .menu_btn_wrap .menu_btn .lineb {
		bottom: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineh {
		transform:rotate(-135deg);
		top: 10px;
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform:rotate(135deg);
		bottom: 10px;
	}	
	header #nav_menu {
        max-width: 500px;
		width: 100%;
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #EEECE8;
		position: fixed;
		top: 0;
		right: -100%;
		padding: 70px 0 0 0;
		display:inline-block;
		z-index: 999;
		box-sizing: border-box;
		transition: 0.3s;
	}
	header #nav_menu.toggle {
		right: 0 !important;
	}
	header #nav_menu > ul.mainMenu {
		flex-direction: column;
		border-top: 1px solid #C8C8C8;
		margin-bottom: 30px;
	}
	header #nav_menu > ul.mainMenu > li {
		border-bottom: 1px solid #C8C8C8;
	}
	header #nav_menu > ul.mainMenu > li > a {
		height: auto;
		line-height: 1;
		padding: 20px;
	}
	header #nav_menu > ul.mainMenu li.has-child::after {
		content: "";
		width: 10px;
		height: 10px;
		border-right: 1px solid #333333;
		border-bottom: 1px solid #333333;
		transform: rotate(45deg);
		position: absolute;
		top: 20px;
		right: 20px;
		transition: 0.5s;
	}
	header #nav_menu > ul.mainMenu li.has-child.active::after {
		transform: rotate(-135deg);
		top: 25px;
	}
	header #nav_menu > ul.mainMenu li.has-child > ul {
		transform: translateX(0);
		border-radius: 0;
		padding: 0;
		position: relative;
		left:0;
		top:0;
		width:100%;
		visibility:visible;/*JSで制御するため一旦表示*/
		opacity:1;/*JSで制御するため一旦表示*/
		display: none;/*JSのslidetoggleで表示させるため非表示に*/
		transition:none;/*JSで制御するためCSSのアニメーションを切る*/
		background: #e1e1e1;
	}
	header #nav_menu > ul.mainMenu li.has-child > ul li {
		border-top: 1px solid #C8C8C8;
	}
	header #nav_menu > ul.mainMenu li.has-child > ul li:not(:last-child) {
		border-bottom: none;
	}
	header #nav_menu > ul.mainMenu li.has-child > ul li a {
		padding: 15px 40px;
		text-align: left;
		background: none;
	}
	header #nav_menu ul.subMenu {
		display: flex;
		justify-content: center;
		column-gap: 15px;
	}
	header #nav_menu ul.subMenu li {
		width: 122px;
		height: 122px;
	}
	header #nav_menu ul.subMenu li a {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		border: 1px solid #10436D;
		padding-top: 75px;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0;
		line-height: 1.42;
		color: #10436D;
		text-align: center;
	}
	header #nav_menu ul.subMenu li.item01 a {
		background: #FFF url(../img/common/fix_icon01.svg) no-repeat center 27px/34px;
		padding-top: 70px;
	}
	header #nav_menu ul.subMenu li.item02 a {
		background: #FFFDC4 url(../img/common/fix_icon02.svg) no-repeat center 30px/30px;
	}
	header #nav_menu ul.subMenu li.item03 a {
		background: #10436D url(../img/common/fix_icon03.svg) no-repeat center 29px/41px;
		color: #FFF;
	}
}
@media screen and (max-width: 640px) {
	header {
		height: 50px;
	}
	header #logo {
		width: 180px;
	}	
	header .menu_btn_wrap {
		width: 50px;
		height: 50px;
	}
	header .menu_btn_wrap .menu_btn {
		width: 26px;
		height: 15px;
	}
	header .menu_btn_wrap .menu_btn .lineh,
	header .menu_btn_wrap .menu_btn .linem,
	header .menu_btn_wrap .menu_btn .lineb {
		width: 26px;
	}
	header .menu_btn_wrap .menu_btn.active .lineh {
		top: 7px;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		bottom: 7px;
	}
	header #nav_menu {
		padding: 50px 0 0 0;
	}
	header #nav_menu ul.subMenu li {
		width: 90px;
		height: 90px;
	}
	header #nav_menu ul.subMenu li a {
		padding-top: 55px;
		font-size: 12px;
		line-height: 1.2;
	}
	header #nav_menu ul.subMenu li.item01 a {
		background: #FFF url(../img/common/fix_icon01.svg) no-repeat center 18px/27px;
		padding-top: 50px;
	}
	header #nav_menu ul.subMenu li.item02 a {
		background: #FFFDC4 url(../img/common/fix_icon02.svg) no-repeat center 20px/24px;
	}
	header #nav_menu ul.subMenu li.item03 a {
		background: #10436D url(../img/common/fix_icon03.svg) no-repeat center 20px/33px;
	}
}
/*-----------------------------------

	fix_menu

-----------------------------------*/
#fix_menu {
	position: fixed;
	top: 40px;
	right: 40px;
	z-index: 9999;
}
#fix_menu ul li {
	width: 122px;
	height: 122px;
	border-radius: 50%;
	background: #FFF;
}
#fix_menu ul li:not(:last-child) {
	margin-bottom: 20px;
}
#fix_menu ul li a {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #10436D;
	padding-top: 75px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.42;
	color: #10436D;
	text-align: center;
}
#fix_menu ul li.item01 a {
	background: #FFF url(../img/common/fix_icon01.svg) no-repeat center 27px/34px;
	padding-top: 70px;
}
#fix_menu ul li.item02 a {
	background: #FFFDC4 url(../img/common/fix_icon02.svg) no-repeat center 30px/30px;
}
#fix_menu ul li.item03 a {
	background: #10436D url(../img/common/fix_icon03.svg) no-repeat center 29px/41px;
	color: #FFF;
}
@media screen and (max-width: 1100px) {
	#fix_menu {
		display: none;
	}
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
	margin-top: 95px;
}
@media screen and (max-width: 1100px) {
	#contents {
		margin-top: 70px;
	}
}
@media screen and (max-width: 640px) {
	#contents {
		margin-top: 50px;
	}
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
	padding-bottom: 100px;
}
#contact_block .contents_inner {
	background: #F0F4F6;
	border-radius: 60px;
	padding: 80px 0;
	position: relative;
}
#contact_block h2 {
	font-size: 60px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
	line-height: 1;
	color: #655D50;
	white-space: nowrap;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}
#contact_block .contact_inner {
	display: flex;
	justify-content: center;
}
#contact_block .contact_inner .contact_box {
	width: 48%;
	text-align: center;
}
#contact_block .contact_inner .contact_box:first-of-type {
	border-right: 1px solid #655D50;
}
#contact_block .contact_inner .contact_box .ttl {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
}
#contact_block .contact_inner .contact_box a.btn {
	max-width: 320px;
	width: 80%;
	background: #10436D;
	color: #FFF;
	border-radius: 10px;
	padding: 30px 0;
	margin: 0 auto;
}
#contact_block .contact_inner .contact_box a.btn span {
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
#contact_block .contact_inner .contact_box a.btn span::before {
	content: "";
	width: 28px;
	height: 24px;
	background: url(../img/common/contact_icon01.svg) no-repeat center/contain;
}
#contact_block .contact_inner .contact_box a.tel {
	width: fit-content;
	margin: 20px auto 0;
}
#contact_block .contact_inner .contact_box a.tel span {
	font-size: 34px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	line-height: 1;
	letter-spacing: 0;
	color: #10436D;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
#contact_block .contact_inner .contact_box a.tel span::before {
	content: "";
	width: 27px;
	height: 29px;
	background: url(../img/common/contact_icon02.svg) no-repeat center/contain;
}
#contact_block .contact_inner .contact_box .time {
	width: 280px;
	margin: 0 auto;
	text-align: right;
	font-size: 14px;
	color: #10436D;
}
#contact_block .contact_inner .contact_box .time span {
	font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 840px) {
	#contact_block h2 {
		font-size: 46px;
		top: -23px;
	}
	#contact_block .contact_inner {
		flex-wrap: wrap;
	}
	#contact_block .contact_inner .contact_box {
		width: 80%;
	}
	#contact_block .contact_inner .contact_box:first-of-type {
		border-right: none;
		border-bottom: 1px solid #655D50;
		padding-bottom: 40px;
	}
	#contact_block .contact_inner .contact_box:last-of-type {
		padding-top: 40px;
	}
}
@media screen and (max-width: 640px) {
	#contact_block {
		padding-bottom: 50px;
	}
	#contact_block .contents_inner {
		border-radius: 30px;
		padding: 50px 0;
	}
	#contact_block h2 {
		font-size: 32px;
		top: -16px;
	}
	#contact_block .contact_inner .contact_box:first-of-type {
		padding-bottom: 30px;
	}
	#contact_block .contact_inner .contact_box:last-of-type {
		padding-top: 30px;
	}
	#contact_block .contact_inner .contact_box .ttl {
		font-size: 16px;
		margin-bottom: 10px;
	}
	#contact_block .contact_inner .contact_box a.btn {
		max-width: 280px;
		width: 100%;
		padding: 20px 0;
	}
	#contact_block .contact_inner .contact_box a.btn span {
		font-size: 18px;
		gap: 5px;
	}
	#contact_block .contact_inner .contact_box a.btn span::before {
		width: 22px;
		height: 19px;
	}
	#contact_block .contact_inner .contact_box a.tel {
		margin: 15px auto 0;
	}
	#contact_block .contact_inner .contact_box a.tel span {
		font-size: 28px;
		gap: 5px;
	}
	#contact_block .contact_inner .contact_box a.tel span::before {
		width: 22px;
		height: 23px;
	}
	#contact_block .contact_inner .contact_box .time {
		width: 227px;
		font-size: 12px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 40px;
    height: 40px;
	background: -moz-linear-gradient(left,  #4273c8 0%, #19c9b7 100%);
	background: -webkit-linear-gradient(left,  #4273c8 0%,#19c9b7 100%);
	background: linear-gradient(to right,  #4273c8 0%,#19c9b7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4273c8', endColorstr='#19c9b7',GradientType=1 );	
    border-radius: 50%;
    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::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    position: absolute;
	top: 17px;
    left: 14px;
    transform: rotate(-45deg);
}
#pagetop:hover {
    background: #0099FF;
}
#pagetop:hover::after {
    background: url(../img/common/pagetop_icon_wh.png) no-repeat;
    background-size: contain;
}
@media screen and (max-width: 640px) {
}

/*-----------------------------------

	footer

-----------------------------------*/
footer .contents_inner {
	max-width: 1300px;
	width: 95%;
	border-top: 1px solid #10436D;
	padding: 50px 0 30px;
	letter-spacing: 0;
	line-height: 1;
}
footer #footer_logo {
	line-height: 0;
	width: 300px;
	margin: 0 auto 50px;
}
footer #footer_logo a img {
	width: 100%;
}
footer nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
footer nav ul.nav {
	display: flex;
	justify-content: space-between;
	width: calc(100% - 250px);
}
footer nav ul.nav > li > a {
	font-size: 14px;
	font-weight: 700;
	color: #10436D;
}
footer nav ul.nav > li > ul {
	margin-top: 15px;
}
footer nav ul.nav > li > ul > li:not(:last-child) {
	margin-bottom: 15px;
}
footer nav ul.nav > li > ul > li > a {
	font-size: 14px;
	font-weight: 500;
}
footer nav ul.btn li.item01 {
	margin-bottom: 20px;
}
footer nav ul.btn li a {
	width: 190px;
	text-align: center;
	font-size: 15px;
	border-radius: 24px;
	padding: 13px 0;
	border: 1px solid #655D50;
}
footer nav ul.btn li.item01 a {
	background: #FFF;
	color: #655D50;
}
footer nav ul.btn li.item02 a {
	background: #655D50;
	color: #FFF;
}
footer small {
	display: block;
	text-align: center;
	font-size: 13px;
	font-weight: 300;
	font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 1100px) {
	footer nav ul.nav {
		width: calc(100% - 160px);
	}
	footer nav ul.nav > li > a {
		font-size: 13px;
	}
	footer nav ul.nav > li > ul > li > a {
		font-size: 13px;
	}	
	footer nav ul.btn li a {
		width: 140px;
		font-size: 14px;
	}
}
@media screen and (max-width: 840px) {
	footer nav {
		flex-direction: column;
	}
	footer nav ul.nav {
		width: 100%;
		margin-bottom: 20px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 30px;
	}
	footer nav ul.nav > li > ul {
		margin-top: 10px;
	}
	footer nav ul.nav > li > ul > li:not(:last-child) {
		margin-bottom: 10px;
	}
	footer nav ul.btn {
		display: flex;
		justify-content: center;
		column-gap: 20px;
	}
	footer nav ul.btn li.item01 {
		margin-bottom: 0;
	}
	footer nav ul.btn li a {
		width: 160px;
	}
}
@media screen and (max-width: 640px) {
	footer .contents_inner {
		padding: 30px 0 20px;
	}
	footer #footer_logo {
		width: 220px;
		margin: 0 auto 30px;
	}
	footer nav ul.nav {
		flex-direction: column;
		width: fit-content;
		margin: 0 auto 20px;
	}
	footer nav ul.nav > li > ul {
		margin-left: 10px;
	}
	footer nav ul.btn {
		flex-direction: column;
		align-items: center;
		gap: 10px 0;
	}
	footer nav ul.btn li a {
		width: 140px;
		padding: 10px 0;
		font-size: 13px;
	}
	footer small {
		font-size: 11px;
	}
}
