@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

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

	custom properties

-----------------------------------*/
:root {
	--mClr1: #208cd5;
	--mClr2: #0a1e39;
	--fEN: 'Exo 2', sans-serif;
	--fJP: 'Noto 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 16px/1 "Noto Sans JP", sans-serif;
	color: #000;
	letter-spacing: 0;
	background: #FFF;
	margin: 0;
	width: 100%;
	transition: 0.3s;
}
body.home {
	overflow: hidden;
}
body.is-locked {
	width: 100%;
	position: fixed;
	overflow: hidden;
}
*, *:before, *:after {
	box-sizing: border-box;
}
.contents_inner {
    width: 88%;
	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;}
@media screen and (max-width: 840px) {
	.pc{display:none;}	
	.sp{display:none;}
	.tab{display:block;}
}
@media screen and (max-width: 640px) {
	body {
		font: 500 14px/1 "Noto Sans JP", sans-serif;
	}
	.contents_inner {
		width: 90%;
	}
	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: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 110px;
	background: rgba(255, 255, 255, 0);
    transition: background 0.3s, color 0.3s;
    z-index: 100;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2.5%;
}
header.fixed {
	position: fixed;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	animation: slideDown 0.4s ease forwards;
}
body.is-locked header {
	position: fixed;
}
@keyframes slideDown {
    0% {
      transform: translateY(-100%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}
header #logo {
	width: 305px;
	line-height: 0;
	background: url(../img/common/logo_header_bk.png) no-repeat center/contain;
	position: relative;
	z-index: 9999;
}
header.fixed #logo img {
	opacity: 0;
}
header #nav_menu {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 40px;
	grid-row-gap: 10px;
}
header #nav_menu .nav01_01,
header #nav_menu .nav02 {
	display: flex;
	justify-content: end;
	gap: 30px;
}
header #nav_menu .nav01_01 {
	grid-area: 1 / 1 / 2 / 2;
}
header #nav_menu .nav01_02 {
	display: none;
}
header #nav_menu .nav02 {
	grid-area: 2 / 1 / 3 / 2;
}
header #nav_menu .nav01_01 li a {
	color: #bcdcf2;
	font-size: 13px;
	font-weight: 400;
}
header.fixed #nav_menu .nav01_01 li a {
	color: #808080;
}
header #nav_menu .nav02 li a {
	color: #FFF;
	font-size: 15px;
}
header.fixed #nav_menu .nav02 li a {
	color: #000;
}
header #nav_menu .nav01_01 li.tel a {
	display: block;
	font-size: 21px;
	font-weight: 600;
	font-family: var(--fEN);
	color: var(--mClr1);
	padding: 1px 0 1px 20px;
	background: url(../img/common/icon_tel_bl.svg) no-repeat left center/14px;
	text-box: trim-both cap alphabetic;
}
header #nav_menu .contact {
	grid-area: 1 / 2 / 3 / 3;
	background: var(--mClr1);
	color: #FFF;
	font-size: 15px;
	letter-spacing: 0.05em;
	padding: 23px 65px 23px 25px;
	border-radius: calc(1px/0);
	text-box: trim-both cap alphabetic;
	position: relative;
}
header #nav_menu .contact::after {
	content: "";
	width: 48px;
	height: 48px;
	background: #0e7bbc url(../img/common/icon_mail.svg) no-repeat center center/21px;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 24px);
	right: 5px;
}
header #nav_menu .privacy {
	display: none;
}
header .menu_btn_wrap {
    display: none;
}
@media screen and (max-width: 1180px) {
	header #logo {
		width: 225px;
	}
	header #nav_menu {
		grid-column-gap: 20px;
	}
	header #nav_menu .nav01_01 {
		gap: 15px;
	}
	header #nav_menu .nav02 {
		gap: 15px;
	}
	header #nav_menu .contact {
		padding: 15px;
	}
	header #nav_menu .contact {
		letter-spacing: 0;
		padding: 23px 60px 23px 20px;
	}
	header #nav_menu .contact::after {
		width: 46px;
		height: 46px;
		top: calc(50% - 23px);
	}
}
@media screen and (max-width: 1000px) {
	header {
		height: 80px;
	}
	header .menu_btn_wrap {
		display: block;
		width: 80px;
		height: 80px;
		cursor: pointer;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1001;
		-webkit-tap-highlight-color: transparent; /* iOSでの点滅防止 */
	}
	header .menu_btn_wrap .menu_btn {
		width: 28px;
		height: 18px;
		position: absolute;
		top: calc(50% - 9px);
		left: calc(50% - 14px);
		transition: transform 0.3s ease;
		z-index: 1001;
	}
	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: 28px;
		height: 2px;
		background: #cccacb;
		transition: all 0.3s ease;
		transform-origin: center;
		will-change: transform, opacity;
	}
	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: translateY(8px) rotate(-45deg);
	}
	header .menu_btn_wrap .menu_btn.active .linem {
		opacity: 0;
	}
	header .menu_btn_wrap .menu_btn.active .lineb {
		transform: translateY(-8px) rotate(45deg);
	}
	header #nav_menu {
		width: 100%;
		height: 100vh;
		height: 100dvh;/* これを追加しないとiPhoneのアドレスバーで高さが狂う */
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: var(--mClr2);
		position: fixed;
		top: 0;
		right: -100%;
		padding: 80px 0 30px 0;
		display: block;
		z-index: 1000;
		transition: right 0.4s ease;
		will-change: right; /* Safariでのスムーズ化 */
	}
	header #nav_menu.toggle {
		right: 0;
	}
	header #nav_menu .nav01_01 {
		display: none;
	}
	header #nav_menu .nav01_02 {
		display: block;
		padding-bottom: 20px;
		border-bottom: 1px solid #344770;
		margin-bottom: 20px;
	}
	header #nav_menu .nav01_02 p {
		color: #8fc5ea;
		font-size: 13px;
		line-height: 1.54;
		text-align: center;
		white-space: pre-line;
		margin-bottom: 20px;
	}
	header #nav_menu .nav01_02 ul {
		display: flex;
		justify-content: center;
		gap: 20px;
	}
	header #nav_menu .nav01_02 ul li.tel a {
		display: block;
		width: 58px;
		height: 58px;
		background: var(--mClr1);
		border-radius: 50%;
		position: relative;
	}
	header #nav_menu .nav01_02 ul li.tel a::before {
		content: "";
		width: 48px;
		height: 48px;
		background: #0e7bbc url(../img/common/icon_tel_wh.svg) no-repeat center center/17px;
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 24px);
		left: calc(50% - 24px);
	}
	header #nav_menu .nav01_02 ul li.mail a  {
		display: block;
		background: var(--mClr1);
		color: #FFF;
		font-size: 13px;
		letter-spacing: 0.03em;
		padding: 23px 65px 23px 25px;
		border-radius: calc(1px/0);
		text-box: trim-both cap alphabetic;
		position: relative;
	}
	header #nav_menu .nav01_02 ul li.mail a::after {
		content: "";
		width: 48px;
		height: 48px;
		background: #0e7bbc url(../img/common/icon_mail.svg) no-repeat center center/21px;
		border-radius: 50%;
		position: absolute;
		top: calc(50% - 24px);
		right: 5px;
	}
	header #nav_menu .nav02 {
		display: flex;
		flex-wrap: wrap;
		justify-content: normal;
		gap: 20px 40px;
		padding: 0 40px;
		margin-bottom: 30px;
	}
	header #nav_menu .nav02 li {
		width: calc((100% - 40px) / 2);
	}
	header #nav_menu .nav02 li a {
		display: block;
		font-size: 16px;
		line-height: 30px;
		background: url(../img/common/icon_arrow.svg) no-repeat right center/30px;
	}
	header #nav_menu .nav02 .sp {	
		display: block;
	}
	header #nav_menu > .contact {
		display: none;
	}
	header #nav_menu .privacy {
		width: 100%;
		display: block;
		padding: 0 40px;
		font-size: 13px;
		color: #8792ab;
	}
}
@media screen and (max-width: 640px) {
	header {
		height: 50px;
	}
	header .menu_btn_wrap {
		width: 50px;
		height: 50px;
	}
	header #nav_menu .nav02 li {
		width: 100%;
	}
}
/*-----------------------------------

	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: #0a1e39;
	color: #FFF;
	padding: 240px 0 30px;
	position: relative;
}
@media screen and (max-width: 840px) {
	footer {
		padding: 140px 0 30px;
	}
}
@media screen and (max-width: 640px) {
	footer {
		padding: 440px 0 15px;
	}
}
/*-- contact --*/
footer #contact {
	background: var(--mClr1);
	color: #FFF;
	padding: 60px 100px;
	clip-path: polygon(40px 0%, calc(100% - 40px) 0%, 100% 40px, 100% 100%, 0 100%, 0 40px);
	position: absolute;
	top: -170px;
	left: 6%;
	width: 88%;
}
footer #contact .intro {
	display: flex;
	align-items:last baseline;
	gap: 0 40px;
	margin-bottom: 70px;
}
footer #contact h2 {
	width: max-content;
	white-space: nowrap;
	font-size: 22px;
	font-weight: 700;
	position: relative;
}
footer #contact h2::before {
	content: "CONTACT";
	font-size: 13px;
	font-family: var(--fEN);
	text-box: trim-both cap alphabetic;
	color: #63aee2;
	padding-left: 15px;
	display: block;
	margin-bottom: 10px;
}
footer #contact h2::after {
	content: "";
	width: 12px;
	height: 12px;
	background: #63aee2;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	position: absolute;
	top: -2px;
	left: 0;
}
footer #contact .intro p {
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: 0.03em;
}
footer #contact ul {
	display: flex;
}
footer #contact ul li {
	flex: 1;
	text-align: center;
	padding: 20px 0;
	letter-spacing: 0.03em;
}
footer #contact ul li:not(:last-child) {
	border-right: 1px solid #63aee2;
}
footer #contact ul li .ttl {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 15px;
}
footer #contact ul li .tel {
	display: block;
	font-size: 37px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 15px;
}
footer #contact ul li .time {
	font-size: 14px;
	font-weight: 400;
}
footer #contact ul li .btn {
	display: block;
	width: 74%;
	background: #FFF;
	color: var(--mClr1);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 25px 0;
	text-align: center;
	border-radius: calc(1px/0);
	margin: 0 auto;
}
@media screen and (max-width: 1180px) {
	footer #contact {
		padding: 60px 40px;
	}
	footer #contact ul li .tel {
		font-size: 31px;
	}
	footer #contact ul li .btn {
		width: 84%;
	}
}
@media screen and (max-width: 840px) {
	footer #contact {
		padding: 30px;
	}
	footer #contact .intro {
		flex-direction: column;
		align-items: normal;
		gap: 20px 0;
		margin-bottom: 20px;
	}
	footer #contact .intro p {
		font-size: 12px;
	}
	footer #contact ul li .ttl {
		font-size: 12px;
		margin-bottom: 10px;
	}
	footer #contact ul li .tel {
		font-size: 27px;
		margin-bottom: 10px;
	}
	footer #contact ul li .time {
		font-size: 10px;
	}
	footer #contact ul li .btn {
		font-size: 11px;
		padding: 20px 0;
	}
}
@media screen and (max-width: 640px) {
	footer #contact {
		width: 90%;
		top: -95px;
		left: 5%;
		clip-path: polygon(20px 0%, calc(100% - 20px) 0%, 100% 20px, 100% 100%, 0 100%, 0 20px);
	}
	footer #contact .intro {
		margin-bottom: 20px;
	}
	footer #contact ul {
		flex-direction: column;
		width: max-content;
		margin: 0 auto;
	}
	footer #contact ul li {
		flex: none;
	}
	footer #contact ul li:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #63aee2;
	}
	footer #contact ul li .btn {
		width: 100%;
	}
}
/*-- footer --*/
footer .contents_inner {
	width: 80%;
}
footer .bnr {
	display: flex;
	gap: 0 2.66%;
	margin-bottom: 60px;
}
footer .bnr li {
	width: 23%;
	background: #ccc;
	aspect-ratio: 25 / 8;
}
footer .bnr li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
footer #footer_wrap {
	display:flex;
	justify-content: space-between;
	padding-bottom: 12.4vw;
	margin-bottom: 30px;
	position: relative;
}
footer #footer_wrap::after {
	content: "KIMURA KATAN";
	font: 700 11.33vw/1 var(--fEN);
	font-style: italic;
	letter-spacing: 0.13em;
	color: var(--mClr1);
	width: 100vw;
	text-align: center;
	text-box: trim-both cap alphabetic;
	position: absolute;
	bottom: 0;
	left: calc(50% - 50vw);
}
footer #footer_wrap .details #footer_logo {
	width: 220px;
	margin-bottom: 20px;
}
footer #footer_wrap .details #footer_logo a {
	display: block;
}
footer #footer_wrap .details .other {
	font-size: 14px;
	font-weight: 400;
	line-height: 2.14;
	color: #8792ab;
	white-space: pre-line;
}
footer #footer_wrap nav ul {
	column-width: 200px;
	column-count: 2;
}
footer #footer_wrap nav ul li {
	line-height: 2.5;
}
footer #footer_wrap nav ul li a {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #b7becd;
}
footer small {
	display: block;
	font-size: 11px;
	color: #4c5c81;
	text-align: center;
}
@media screen and (max-width: 1180px) {
	footer #footer_wrap nav ul {
		column-width: auto;
	}
	footer #footer_wrap nav ul li a {
		font-size: 13px;
	}
}
@media screen and (max-width: 640px) {
	footer .contents_inner {
		width: 90%;
	}
	footer .bnr {
		flex-wrap: wrap;
		gap: 10px 2%;
		margin-bottom: 40px;
	}
	footer .bnr li {
		width: 49%;
	}
	footer #footer_wrap {
		justify-content: center;
		padding-bottom: 44vw;
		margin-bottom: 30px;
	}
	footer #footer_wrap::after {
		content: "KIMURA\AKATAN";
		white-space: pre;
		font-size: 20.8vw;
		width: 100vw;
		text-align: left;
		display: flex;
		justify-content: center;
	}
	footer #footer_wrap .details #footer_logo {
		width: 196px;
	}
	footer #footer_wrap .details .other {
		font-size: 12px;
	}
	footer #footer_wrap nav {
		display: none;
	}
}
