@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Oswald:wght@200..700&display=swap');

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

	custom properties

-----------------------------------*/
:root {
	--mClr1: #0864B1;
	--mClr2: #2EA7E0;
	--mClr3: #F5FCFF;
	--sClr1: #FFF001;
	--fEN: "Oswald", sans-serif;
	--fJP: "IBM Plex Sans JP", sans-serif;
}
/*-----------------------------------

	base

-----------------------------------*/
html {
    overflow-y: auto;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 62.5%;
	overflow-x: hidden;
}
body {
	font: 500 15px/1 "IBM Plex Sans JP", sans-serif;
	color: #000;
	letter-spacing: 0;
	background: #FFF;
	margin: 0;
	width: 100%;
	overflow: hidden;
}
*, *:before, *:after {
	box-sizing: border-box;
}
.contents_inner {
    width: 90%;
	margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
}
a, a:link, a:visited {
	color: #000;
	text-decoration:none;
    cursor: pointer;
	transition: all 0.5s;
}
a:hover {
	opacity: 0.6;
	text-decoration:none;
}
a[href^='tel:'] {
    pointer-events: none;
}
.tab{display: none;}
.sp{display:none;}
.pc{display:block;}
a.link {
	width: 260px;
	height: 70px;
	background: #000 url(../img/common/icon_arrow_wh.svg) no-repeat calc(100% - 27px) center/16px;
	color: #FFF;
	display: grid;
	place-content: center;
	padding-right: 70px;
	position: relative;
	font-weight: 700;
	margin: 0 auto;
}
a.link::before {
	content: "";
	width: 1px;
	height: 100%;
	background: #FFF;
	position: absolute;
	top: 0;
	right: 70px;
}
.none {
	line-height: 1.6;
}
@media screen and (max-width: 840px) {
	.pc{display:none;}	
	.sp{display:none;}
	.tab{display:block;}
}
@media screen and (max-width: 640px) {
	a[href^='tel:'] {
		pointer-events: auto;
	}
	.pc{display:none;}
	.tab{display:none;}
    .sp{display:block;}
}
/*-----------------------------------

	reset(form用)

-----------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
  display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: 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;
	width: 100%;
	height: 120px;
	background: #FFF;
	top: 0;
	left: 0;
	z-index: 999;
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2.5%;
}
header #logo {
	width: 150px;
	line-height: 0;
}
header #nav_menu ul {
	display:flex;
	gap: 0 40px;
}
header #nav_menu ul li a {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 120px;
	position: relative;
}
header #nav_menu ul li.current a,
header #nav_menu ul li a:hover {
	color: var(--mClr1);
	opacity: 1;
}
header #nav_menu ul li.current a::after,
header #nav_menu ul li a::after {
	content: "";
	width: 100%;
	height: 5px;
	background: var(--mClr1);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
}
header #nav_menu ul li a::after {
	transition: all 0.5s;
	opacity: 0;
}
header #nav_menu ul li a:hover::after {
	opacity: 1;
}
header .menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1300px) {
	header #logo {
		width: 110px;
	}
	header #nav_menu ul {
		gap: 0 20px;
	}
	header #nav_menu ul li a {
		font-size: 15px;
	}
}
@media screen and (max-width: 1024px) {
	header {
		height: 90px;
	}
	header .menu_btn_wrap {
        display: block;
		width: 90px;
		height: 90px;
		cursor:pointer;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 999;
	}
	header .menu_btn_wrap .menu_btn {
		width: 40px;
		height: 20px;
		display: block;
		position: absolute;
		top: calc(50% - 10px);
		left: calc(50% - 20px);
		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: 40px;
		height: 2px;
		background: var(--mClr1);
		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: 9px;
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform:rotate(135deg);
		bottom: 9px;
	}	
	header #nav_menu {
        max-width: 460px;
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		background: #FFF;
		position: fixed;
		top: 90px;
		right: -100%;
		padding: 0 30px;
		display:block;
		z-index: 999;
		transition: 0.3s;
		border-top: 1px solid #e8e8e8;
	}
	header #nav_menu.toggle {
		right: 0 !important;
	}
	header #nav_menu ul {
		flex-direction: column;
		gap: 0;
	}
	header #nav_menu ul li {
		border-bottom: 1px solid #e8e8e8;
	}
	header #nav_menu ul li:last-child {
		display: block;
	}
	header #nav_menu ul li a {
		font-size: 16px;
		color: var(--mClr1);
		line-height: 1;
		padding: 20px 0;
	}
	header #nav_menu ul li.current a::after,
	header #nav_menu ul li a::after {
		width: 0;
		height: 0;
		background: none;
	}
}
@media screen and (max-width: 640px) {
	header #nav_menu {
		height: calc(100vh - 160px);
		height: calc(100dvh - 160px);
		padding-bottom: 40px;
	}
}
/*-----------------------------------

	fixed_contact

-----------------------------------*/
#fixed_contact {
	position: fixed;
	bottom: 0;
	right: 20px;
	z-index: 999;
	background: var(--sClr1);
}
#fixed_contact .wrap {
	width: 320px;
	padding: 20px 0 20px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	position: relative;
	background: url(../img/common/icon_arrow_bl.svg) no-repeat calc(100% - 20px) center/16px;
}
#fixed_contact .wrap::before {
	content: "";
	width: 97px;
	height: 97px;
	background: url(../img/common/fixed_deco.svg) no-repeat center/contain;
	position: absolute;
	top: -35px;
	left: -35px;
}
#fixed_contact .wrap .txt {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
#fixed_contact .wrap .tel {
	width: max-content;
	font-size: 30px;
	font-weight: 600;
	font-family: var(--fEN);
	letter-spacing: 0.03em;
	color: var(--mClr1);
	padding: 0 35px;
	text-box: trim-both cap alphabetic;
	background: url(../img/common/icon_tel_bl.svg) no-repeat left center/26px;
}
#fixed_contact .wrap .time {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--mClr1);
}
@media screen and (max-width: 640px) {
	#fixed_contact {
		bottom: 0;
		right: auto;
		left: 0;
		width: 100%;
	}
	#fixed_contact ul {
		display: flex;
	}
	#fixed_contact ul li {
		width: 50%;
	}
	#fixed_contact ul li:first-child {
		border-right: 2px solid #FFF;
	}
	#fixed_contact ul li a {
		display: block;
		height: 70px;
		padding-top: 45px;
		font-weight: 700;
		color: var(--mClr1);
		text-align: center;
		position: relative;
	}
	#fixed_contact ul li.tel a {
		padding-left: 40px;
		font-size: 12px;
	}
	#fixed_contact ul li.mail a {
		font-size: 15px;
	}
	#fixed_contact ul li a::before {
		content: "";
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
	}
	#fixed_contact ul li.tel a::before {
		width: 26px;
		height: 26px;
		background: url(../img/common/icon_tel_bl.svg) no-repeat center/contain;
		left: calc(50% + 20px);
	}
	#fixed_contact ul li.mail a::before {
		width: 29px;
		height: 29px;
		background: url(../img/common/icon_mail_bl.svg) no-repeat center/contain;
		top: 8px;
	}
	#fixed_contact ul li.tel a::after {
		content: "";
		width: 76px;
		height: 76px;
		background: url(../img/common/fixed_deco.svg) no-repeat center/contain;
		position: absolute;
		top: -38px;
		left: 5px;
	}
}
/*-----------------------------------

	contents

-----------------------------------*/
#contents {
	margin-top: 120px;
}
@media screen and (max-width: 1024px) {
	#contents {
		margin-top: 90px;
	}
}
@media screen and (max-width: 640px) {
	#contents {
		margin-top: 27px;
	}
}
/*-----------------------------------

	contact

-----------------------------------*/
#contact {
	max-width: 1170px;
	width: 90%;
	margin: 0 auto;
	background: var(--mClr1);
	color: #FFF;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding: 70px;
	font-weight: 700;
	position: relative;
}
#contact::before {
	content: "";
	width: 97px;
	height: 97px;
	background: url(../img/common/contact_deco.svg) no-repeat center/contain;
	position: absolute;
	top: -35px;
	left: -35px;
}
#contact > div {
	width: max-content;
}
#contact h2 {
	font-size: 40px;
	letter-spacing: 0.05em;
	text-box: trim-both cap alphabetic;
	margin-bottom: 30px;
}
#contact p {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.1em;
}
#contact .ttl {
	background: #FFF;
	color: var(--mClr1);
	font-size: 15px;
	padding: 5px 10px;
	text-align: center;
	margin-bottom: 25px;
	white-space: nowraps;
	text-box: trim-both cap alphabetic;
}
#contact .tel {
	width: max-content;
	display: block;
	margin: 0 auto 10px;
	font-size: 36px;
	font-weight: 600;
	font-family: var(--fEN);
	letter-spacing: 0.03em;
	color: #FFF;
	padding-left: 42px;
	background: url(../img/common/icon_tel_wh.svg) no-repeat left center/32px;
}
#contact .time {
	font-size: 15px;
	letter-spacing: 0.05em;
	padding-left: 42px;
	text-align: center;
}
#contact .item03 {
	width: max(320px,30%) !important;
}
#contact .link {
	width: 100%;
	padding-left: 40px;
}
#contact .link::after {
	content: "";
	width: 29px;
	height: 23px;
	background: url(../img/common/icon_mail_wh.svg) no-repeat center/contain;
	position: absolute;
	top: calc(50% - 11.5px);
	left: calc(50% - 6.5em); 
}
@media screen and (max-width: 1160px) {
	#contact {
		flex-wrap: wrap;
		justify-content: center;
	}
	#contact::before {
		top: 20px;
		left: auto;
		right: 20px;
	}
	#contact .item01 {
		width: 100%;
	}
	#contact .item02, #contact .item03 {
		width: calc((100% - 40px) / 2) !important;
	}
}
@media screen and (max-width: 840px) {
	#contact .item02, #contact .item03 {
		width: 100% !important;
	}
}
@media screen and (max-width: 640px) {
	#contact {
		width: 100vw;
		gap: 30px;
		padding: 40px;
	}
	#contact::before {
		top: 10px;
		right: 10px;
	}
	#contact h2 {
		margin-bottom: 20px;
	}
	#contact p {
		font-size: 14px;
	}
}
/*-----------------------------------

	pagetop

-----------------------------------*/
#pagetop{
    position: fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition-duration: 0.3s;
	background: var(--mClr1);
}
#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);
}
@media screen and (max-width: 640px) {
}
/*-----------------------------------

	footer

-----------------------------------*/
footer {
	background: #333;
	color: #FFF;
	padding: 215px 0 140px;
	margin-top: -130px;
}
footer #footer_wrap {
	display:flex;
}
footer #footer_wrap .details {
	width: min(390px,50%);
}
footer #footer_wrap .details #footer_logo {
	width: 178px;
	margin-bottom: 40px;
}
footer #footer_wrap .details #footer_logo a {
	display: block;
}
footer #footer_wrap .details .address {
	font-size: 15px;
	line-height: 2;
}
footer #footer_wrap nav {
	width: calc(100% - min(390px,50%));
}
footer #footer_wrap nav ul {
	width: min(480px,100%);
	column-count: 2;
}
footer #footer_wrap nav ul li {
	line-height: 2.5;
}
footer #footer_wrap nav ul li a {
	display: block;
	font-size: 15px;
	color: #FFF;
}
footer small {
	display: block;
	font-size: 12px;
	color: #FFFFFF80;
	text-align: right;
}
@media screen and (max-width: 640px) {
	footer {
		padding: 60px 0 120px;
		margin-top: 0;
	}
	footer #footer_wrap {
		flex-direction: column;
		gap: 40px;
		margin-bottom: 40px;
	}
	footer #footer_wrap .details {
		display: contents;
	}
	footer #footer_wrap .details #footer_logo {
		width: 130px;
		order: 1;
		margin-bottom: 0;
	}
	footer #footer_wrap .details .address {
		font-size: 14px;
		order: 3;
	}
	footer #footer_wrap nav {
		width: 100%;
		order: 2;
	}
	footer #footer_wrap nav ul li a {
		font-size: 14px;
	}
	footer small {
		text-align: center;
	}
}
