@charset "UTF-8";

/* =================================================== *

  --- ABOUT CSS ---

framework [musubii] https: //musubii.qranoko.jp/getting-started/introduction
mobile~575px
fablet 576px~767px
tablet 768px~991px
desktop 992px~1199px
wide 1200px~

 * =================================================== */
html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	overflow-x: hidden;
	color: #1a1a1a;
	background: #fff;
}

@media (max-width: 575px) {
	body {
		font-size: 1.4rem;
	}
}

/* inner */
.section > .inner {
	width: min(92%, 1600px);
}

/* inner-wide */
.inner-wide {
	width: min(92%, 1600px);
	margin: 0 auto;
}

@media (max-width: 767px) {
	.inner-wide {
		width: 100%;
	}
}

/* inner1200 */
.inner1200 {
	max-width: 1200px;
	margin: 0 auto;
}

/* inner900 */
.inner900 {
	max-width: 900px;
	margin: 0 auto;
}

/* inner500 */
.inner500 {
	max-width: 500px;
	margin: 0 auto;
}

/* main */
main {
	padding: 100px 0;
}

@media (max-width: 767px) {
	main {
		padding: 70px 0;
	}
}

/* 行間 */
p {
	line-height: 2;
}

/* 明朝体 */
.min {
	font-family: "Noto Serif JP", serif;
}

/* 英字 */
.mon {
	font-family: "Montserrat", sans-serif;
}

.os {
	font-family: "Oswald", sans-serif;
}

/* img */
.pic img {
	width: 100%;
	height: auto;
}

/* pc sp 表示 */
.pc-only {
	display: block !important;
}

.sp-only {
	display: none !important;
}

@media (max-width: 767px) {
	.pc-only {
		display: none !important;
	}

	.sp-only {
		display: block !important;
	}
}

/* pc 電話無効 */
@media (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* full */
@media (max-width: 767px) {
	.full {
		width: 100vw;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
	}
}


/*  Header
=================================================== */
body.lock {
	overflow: hidden;
}

header nav {
	position: fixed;
	z-index: 10;
	top: -120%;
	left: 0;
	overflow: auto;
	width: 100%;
	height: 100%;
	padding: 100px 10px 20px 10px;
	transition: all 0.3s ease 0s;
	background-color: rgba(120, 120, 120, 0.9);
}

header nav.active {
	top: 0;
}

.nav__inner {
	font-size: clamp(1.4rem, 3vw, 1.6rem);
	width: 92%;
	max-width: 900px;
	margin: 0 auto;
}

.nav__menu {
	margin-bottom: 20px;
}

.nav__menu h2 {
	font-size: clamp(1.4rem, 5vw, 2.4rem);
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
	color: #fff;
}

.nav__menu h2.os {
	font-size: clamp(2rem, 6vw, 3rem);
}

.nav__menu h2:after {
	display: inline-block;
	flex-grow: 1;
	min-width: 20px;
	height: 2px;
	margin-left: 20px;
	content: "";
	vertical-align: middle;
	background: #fff;
}

.nav__menu h2 span {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: normal;
	margin-left: 20px;
}

.nav__menu ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 30px;
}

.nav__menu ul li {
	flex-basis: calc(50% - 1px);
}

.nav__menu ul li a {
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	transition: 0.3s;
	border-radius: 5px;
	background: #f4f4f4;
}

.nav__menu ul li a:hover {
	background: #bfbfbf;
}

.nav__menu ul li a.insta {
	color: #fff;
	background: linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
}

.nav__menu ul li:nth-child(n + 3) {
	margin-top: 2px;
}

.nav__riyu {
	margin-bottom: 10px;
	padding: 15px;
	background: #1a1a1a;
}

.nav__riyu h3 {
	position: relative;
	cursor: pointer;
	color: #fff;
}

.nav__riyu h3:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 0;
	content: "\f0d7";
}

.nav__riyu h3.open:after {
	content: "\f0d8";
}

.nav__riyu ul {
	display: none;
	padding-top: 20px;
}

.nav__riyu ul li a {
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	transition: 0.3s;
	color: #fff;
	border-bottom: solid 1px #fff;
}

.nav__riyu ul li a:hover {
	color: #bfbfbf;
}

.nav__riyu ul li:last-child a {
	border-bottom: none;
}

.nav__menu2 {
	margin-bottom: 10px;
}

.nav__menu2 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.nav__menu2 ul li {
	flex-basis: 33.333%;
	border-left: solid 1px #bfbfbf;
}

.nav__menu2 ul li:first-child, .nav__menu2 ul li:nth-child(4) {
	border-left: none;
}

.nav__menu2 ul li:nth-child(4), .nav__menu2 ul li:last-child {
	flex-basis: 50%;
	border-top: solid 1px #bfbfbf;
}

.nav__menu2 ul li a {
	font-weight: bold;
	display: block;
	height: 100%;
	padding: 15px;
	transition: 0.3s;
	text-align: center;
	color: #fff;
	background: #1a1a1a;
}

.nav__menu2 ul li a img {
	display: block;
	width: 20px;
	margin: 0 auto 5px auto;
}

.nav__menu2 ul li a:hover {
	background: #222;
}

.nav__line a {
	font-weight: bold;
	display: block;
	padding: 15px;
	transition: 0.3s;
	text-align: center;
	color: #fff;
	background: #53b535;
}

.nav__line a:hover {
	background: #53a000;
}

.trigger {
	position: fixed;
	z-index: 100;
	top: 7px;
	left: 5%;
	display: block;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

.trigger span {
	position: absolute;
	width: 100%;
	height: 3px;
	transition: 0.3s;
	background: #1a1a1a;

	filter: drop-shadow(0 0 2px whitesmoke);
}

.trigger span:nth-of-type(1) {
	top: 6px;
}

.trigger span:nth-of-type(2) {
	top: 28px;
}

.trigger span:nth-of-type(3) {
	top: 50px;
}

.trigger.active span {
	background: #fff;

	filter: drop-shadow(0 0 2px rgba(245, 245, 245, 0));
}

.trigger.active span:nth-of-type(1) {
	transform: translateY(22px) rotate(-45deg);
}

.trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.trigger.active span:nth-of-type(3) {
	transform: translateY(-22px) rotate(45deg);
}

@media (max-width: 767px) {
	header nav {
		padding: 60px 10px 20px 10px;
	}

	.trigger {
		top: 0;
		right: 0;
		left: auto;
		width: 50px;
		height: 50px;
		background: #1a1a1a;
	}

	.trigger span {
		left: 10px;
		width: 60%;
		background: #fff;

		filter: drop-shadow(0 0 2px rgba(245, 245, 245, 0));
	}

	.trigger span:nth-of-type(1) {
		top: 10px;
	}

	.trigger span:nth-of-type(2) {
		top: 22px;
	}

	.trigger span:nth-of-type(3) {
		top: 35px;
	}

	.trigger.active span:nth-of-type(1) {
		transform: translateY(13px) rotate(-45deg);
	}

	.trigger.active span:nth-of-type(2) {
		opacity: 0;
	}

	.trigger.active span:nth-of-type(3) {
		transform: translateY(-13px) rotate(45deg);
	}
}


/*  Footer
=================================================== */
footer {
	background: #f4f4f4;
}

.footer-info {
	padding: 50px 0;
	text-align: center;
}

.footer-info h1 {
	max-width: 300px;
	margin: 0 auto 20px auto;
}

.footer-info address {
	margin-bottom: 20px;
}

.footer-tel a {
	font-size: 3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.footer-tel img {
	width: 30px;
	margin-top: 2px;
	margin-right: 10px;
}

.footer-time {
	margin-bottom: 20px;
}

.footer-company a {
	display: inline-block;
	padding: 5px 20px;
	transition: 0.3s;
	color: #fff;
	background: #1a1a1a;
}

.footer-company a:hover {
	opacity: 0.8;
}

.footer-copy {
	padding: 20px 0;
	text-align: center;
	color: #fff;
	background: #1a1a1a;
}

@media (max-width: 767px) {
	.footer-info {
		padding: 7vw 0;
	}

	.footer-info h1 {
		max-width: 50vw;
		margin: 0 auto 4vw auto;
	}

	.footer-info address {
		font-size: 3.7333vw;
		margin-bottom: 4vw;
	}

	.footer-tel a {
		font-size: 6.9333vw;
		margin-bottom: 2vw;
	}

	.footer-tel img {
		width: 7.5%;
		margin-top: 1vw;
		margin-right: 2vw;
	}

	.footer-time {
		font-size: 3.7333vw;
		margin-bottom: 5vw;
	}

	.footer-company a {
		font-size: 3.7333vw;
		padding: 2vw 4vw;
	}

	.footer-copy {
		padding: 6vw 0;
	}
}

/*  Go to top
=================================================== */
#page_top a {
	line-height: 1;
	display: block;
	padding: 5px 0 10px 0;
	transition: 0.3s;
	text-align: center;
	color: #fff;
	background: #000;
}

#page_top a i {
	font-size: 2.4rem;
	display: block;
}

#page_top a:hover {
	opacity: 0.8;
}

@media (max-width: 767px) {
	#page_top {
		right: 10px;
		bottom: 10px;
	}
}
