@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Noto+Sans+JP:wght@400;700&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: 15px;
    font-size: 1.5em;
	color: #222222;
    line-height: 2.13;
	letter-spacing:0.04em;
	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: 1130px;
    width: 90%;
	margin: 0 auto;
}
.contents_inner_s {
	max-width: 960px;
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color: #222222;
	text-decoration:none;
    cursor: pointer;
}
a:hover {
	opacity: 0.8;
	text-decoration:none;
}
.sp{
	display:none;
}
.pc{
	display:block;
}
.left{
	float: left;
}
.right{
	float: right;
}
@media screen and (max-width: 640px) {
	body {
		font-size: 13px;
		font-size: 1.3em;
	}
    .sp{
        display:block;
    }
    .pc{
        display:none;
    }
}
@media screen and (min-width: 640px){
    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 {
	width: 90%;
	height: 110px;
	background: #FFF;
	border-radius: 10px;
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	margin: auto;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 40px;
	box-shadow: 0px 7px 15px -5px rgba(0,0,0,0.1);
	z-index: 999;
}
header #logo {
	width: 180px;
	line-height: 0;
}
header #nav_menu ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	gap: 35px;
	line-height: 1;
}
header #nav_menu ul li {
	-ms-flex-item-align: center;
	align-self: center;
}
header #nav_menu ul li a {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}
header #nav_menu ul li:last-of-type a {
	display: block;
	width: 200px;
	background: #fa6a8c;
	color: #FFF;
	text-align: center;
	padding: 20px 0;
	border-radius: 30px;
}
header #nav_menu ul li:last-of-type a::before {
	content: "";
	width: 23px;
	height: 18px;
	background: url(../img/common/header_icon_mail.png) no-repeat center / contain;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1130px) {
	header {
		width: 95%;
		padding: 20px;
	}
	header #logo {
		width: 160px;
		line-height: 0;
	}	
	header #nav_menu ul {
		gap: 20px;
	}
	header #nav_menu ul li:last-of-type a {
		width: 160px;
	}
}
@media screen and (max-width: 840px) {
	header {
		height: 80px;
		top: 20px;
	}
	.menu_btn_wrap {
        display: block;
		width: 80px;
		height: 80px;
		cursor:pointer;
		background: #fa6a8c;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
		border-radius: 0 10px 10px 0;
	}
	.menu_btn {
		width: 36px;
		height: 30px;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		background: #FFF;
		border-top: 14px solid #fa6a8c;
		border-bottom: 14px solid #fa6a8c;
		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: 36px;
		height: 2px;
		background: #FFF;
		top:-14px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn:after {
		content:'';
		position:absolute;
        width: 36px;
		height: 2px;
		background: #FFF;
		bottom:-14px;
		-moz-transition:all 0.3s;
		-webkit-transition:all 0.3s;
		transition:all 0.3s;
	}
	.menu_btn.active {
		background:#fa6a8c;
	}
	.menu_btn.active:before{
		-moz-transform:rotate(-135deg);
		-webkit-transform:rotate(-135deg);
		transform:rotate(-135deg);
		top:0;
		left:0;
	}
	.menu_btn.active:after {
		-moz-transform:rotate(135deg);
		-webkit-transform:rotate(135deg);
		transform:rotate(135deg);
		bottom:0;
		left:0;
	}
    header #nav_menu {
        max-width: 300px;
		width: 95%;
		height: 0;
		overflow: auto;
		background: #fff;
        border: 0 solid #fa6a8c;
        border-radius: 10px;
		position: fixed;
		top: 110px;
		right: 2.5%;
        padding: 0 20px;
		z-index: 999;
        opacity: 0;
        display: inline-block;
		box-sizing: border-box;
        transition:
          border-top .3s ease-out,
          border-bottom .3s ease-out,
          padding-top .3s ease-out,
          padding-bottom .3s ease-out,
          opacity .3s ease-out,
          height .3s ease-out;
	}
    header #nav_menu.toggle {
		height: auto;
        padding: 30px 20px;
        border: 1px solid #fa6a8c;
        opacity: 1;
        transition:
          border-top .3s ease-out,
          border-bottom .3s ease-out,
          padding-top .3s ease-out,
          padding-bottom .3s ease-out,
          opacity .3s ease-out,
          height .3s ease-out;
	}
	header #nav_menu ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 25px;
	}
	header #nav_menu ul li {
		-ms-flex-item-align: auto;
		align-self: auto;
		text-align: center;
	}
	header #nav_menu ul li:last-of-type a {
		display: block;
		width: 100%;
		padding: 15px 0;
	}
			
}
@media screen and (max-width: 640px) {
	header {
		height: 60px;
	}
	header #logo {
		width: 140px;
		line-height: 0;
	}	
	.menu_btn_wrap {
		width: 60px;
		height: 60px;
	}
	.menu_btn {
		width: 30px;
		height: 26px;
        border-top: 12px solid #fa6a8c;
        border-bottom: 12px solid #fa6a8c;
	}
	.menu_btn:before {
        width: 30px;
		top:-12px;
	}
	.menu_btn:after {
        width: 30px;
		bottom:-12px;
	}
    header #nav_menu {
		top: 90px;
		right: 2.5%;
	}
}
/*-----------------------------------

	contact_block

-----------------------------------*/
#contact_block {
	background: url(../img/index/contact_bg.jpg) no-repeat center center / cover;
	padding: 60px 0;
}
#contact_block .contents_inner_s {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #FFF;
	padding: 100px 60px;
	border-radius: 10px;
}
#contact_block h2 {
	font-size: 14px;
	font-weight: 700;
	color: #858585;
	line-height: 1;
}
#contact_block h2::before {
	content: "CONTACT";
	font-size: 42px;
	font-family: 'Montserrat', sans-serif;
	color: #222222;
	display: block;
	margin-bottom: 30px;
}
#contact_block .tel {
	font-size: 32px;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	line-height: 1;
	padding-left: 40px;
	position: relative;
}
#contact_block .tel::before {
	content: "";
	width: 29px;
	height: 29px;
	background: url(../img/index/contact_icon_tel.png) no-repeat center / contain;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
#contact_block .mail {
	display: block;
	width: 260px;
	background: #fa6a8c;
	color: #FFF;
	text-align: center;
	padding: 20px 0;
	border-radius: 30px;
	line-height: 1;
	font-weight: 700;
}
#contact_block .mail::before {
	content: "";
	width: 23px;
	height: 18px;
	background: url(../img/index/contact_icon_mail.png) no-repeat center / contain;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
@media screen and (max-width: 1130px) {
	#contact_block h2::before {
		font-size: 38px;
		letter-spacing: 0;
	}
	#contact_block .tel {
		font-size: 28px;
		padding-left: 35px;
		letter-spacing: 0;
	}
	#contact_block .mail {
		width: 220px;
		letter-spacing: 0;
	}
}
@media screen and (max-width: 840px) {
	#contact_block .contents_inner_s {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
		padding: 60px;
	}
	#contact_block h2 {
		text-align: center;
	}
	#contact_block h2::before {
		margin-bottom: 20px;
	}
	#contact_block .mail {
		width: 260px;
	}
	
}
@media screen and (max-width: 640px) {
	#contact_block {
		background: url(../img/index/contact_bg.jpg) no-repeat center center / cover;
		padding: 40px 0;
	}
	#contact_block .contents_inner_s {
		padding: 40px;
	}
	#contact_block h2 {
		font-size: 12px;
	}
	#contact_block h2::before {
		font-size: 34px;
		margin-bottom: 20px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #222222;
    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: 15px;
	height: 15px;
	border-top: 2px solid #222222;
	border-right: 2px solid #222222;
	transform: rotate(-45deg);
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
	margin: auto;
}
@media screen and (max-width: 640px) {
	#pagetop{
		width: 40px;
		height: 40px;
	}
	#pagetop::after {
		width: 10px;
		height: 10px;
		top: 15px;
	}
}

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

	footer

-----------------------------------*/
footer {
	padding: 60px 0;
}
footer .contents_inner_s {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}
footer .logo {
	width: 200px;
	line-height: 0;
}
footer nav {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	padding-top: 20px;
}
footer nav ul {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-weight: 700;
	line-height: 1;
}
footer nav .nav_top {
	gap: 65px;
}
footer nav .nav_bottom {
	gap: 20px;
}
footer nav .nav_bottom li a {
	color: #9b9b9b;
}
footer small {
	width: 100%;
	text-align: right;
	font-size: 15px;
	font-weight: 700;
}
@media screen and (max-width: 1130px) {
	footer nav .nav_top {
		gap: 30px;
	}
}
@media screen and (max-width: 840px) {
	footer .contents_inner_s {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	footer .logo {
		width: 160px;
	}
	footer nav {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 20px;
		padding-top: 0;
	}
	footer nav .nav_top {
		gap: 10px 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (max-width: 640px) {
	footer {
		padding: 40px 0;
	}
}
