@charset "UTF-8";

/* Box Sizing Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Base HTML and Body Styles */
html, body {
    overflow: visible;
}
html {
	overflow-x: hidden;
	overflow-y: scroll;
	visibility: visible !important;
	font-size: 20px;
	line-height: 1.875;
	color: #000;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Element Reset */
html, body, div, span, object, iframe, article, aside, canvas, details, pre, figcaption, figure,
h1, h2, h3, h4, h5, h6, p, blockquote, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, input, textarea, select, button, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	vertical-align: baseline;
	list-style: none;
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/* Anchor Styles */
a {
	color: #000;
	text-decoration: none;
	transition: 0.5s ease;
}
a:hover {
	opacity: 0.6;
	cursor: pointer;
}

/* Image Reset */
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	transition: 0.5s ease;
}

/* Responsive Font Size */
@media screen and (max-width: 768px) {
	html {
		font-size: 16px;
	}
}


/*------------------------------------
ページのフェードイン
------------------------------------*/
body {
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/*エフェクト*/
.effect > .ef-fade02 {
	transition: .8s;
}
.ef-fade02 {
	opacity: 0;
	transform: translate(0, 60px);
	-webkit-transform: translate(0, 60px);
}
.fade02 {
	opacity: 1.0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}


/*------------------------------------
#accordion
------------------------------------*/
#accordion > li {
	background-color: #fff;
	border: 1px solid #ddd;
}
#accordion > li:not(:last-child) {
	margin-bottom: 12px;
}
#accordion .que {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 16px 24px;
	cursor: pointer;
}
#accordion .que p {
	flex: 1;
	font-weight: 700;
	color: #006dd2;
}
#accordion .que .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	position: static;
	border: 1px solid #006dd2;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0;
}
#accordion .que .arrow:after {
	content: "";
	background-image: url("../img/arrow.svg");
	background-size: cover;
	width: 6px;
	height: 8px;
	transform: rotate(90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .que.active .arrow:after {
	transform: rotate(-90deg);
	transition: .3s cubic-bezier(.4,.4,0,1);
}
#accordion .ans {
	display: none;
	padding: 0 24px 16px;
}
#accordion .ans p:not(:last-child) {
	margin-bottom: 16px;
}
#accordion .ans p a {
	text-decoration: underline;
}
#accordion .ans p a:hover {
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	#accordion .que {
		padding: 16px;
	}
	#accordion .ans {
		padding: 0 16px 16px;
	}
}


/*------------------------------------
.nav-list
------------------------------------*/
.nav-list {
	border-bottom: 1px solid #adab97;
}
.nav-list ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin: 0;
}
.nav-list li {
	padding: 16px 0;
}
.nav-list li.active {
	border-bottom: 5px solid #cb141d;
}
@media screen and (max-width: 768px) {
	.nav-list {
		white-space: nowrap;
		overflow-x: scroll;
	}
	.nav-list ul {
		justify-content: flex-start;
		gap: 20px;
		margin-left: 20px;
	}
	.nav-list li {
		padding: 8px 0;
	}
}


/*------------------------------------
.topic-path
------------------------------------*/
.topic-path {
	background-color: #f5f5f5;
	padding: 16px 0;
}
.topic-path ul {
	line-height: 1;
	padding: 0 64px;
}
.topic-path ul li,
.topic-path ul span {
	display: inline;
	font-size: 14px;
	line-height: 1.46;
}
.topic-path ul li a:after {
	content: "／";
	padding: 0 8px;
}
@media screen and (max-width: 768px) {
	.topic-path {
		padding: 8px 0;
	}
	.topic-path ul {
		padding: 0 32px;
	}
}


/*------------------------------------
#contact
------------------------------------*/
#contact {
	background-color: #006dd2;
	padding: 64px 0;
}
#contact .container {
	max-width: 1000px;
	width: calc(100% - 10vw);
	text-align: center;
	margin: 0 auto;
}
#contact h2 {
	margin-bottom: 16px;
	margin-top: 24px;
}
#contact .tel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 812px;
	margin: 0 auto;
	padding-top: 18px;
}
#contact .reception {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin-top: 16px;
}
@media screen and (max-width: 768px) {
	#contact .tel {
		gap: 16px;
	}
	#contact .reception {
		font-size: 15px;
	}
}


/*--------------------------------------------------------------------------
header
--------------------------------------------------------------------------*/
header {
	position: sticky;
	top: 0;
	background-color: #fff;
	padding: 16px 40px;
	z-index: 1001;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}
header h1 {
	font-size: 10px;
	line-height: 1;
	margin-bottom: 8px;
}
header .logo {
	width: 300px;
}
header .logo a {
	display: flex;
	justify-content: center;
	align-items: center;
}
nav ul {
	list-style: none;
	display: flex;
	gap: 1rem;
	white-space: nowrap;
}
nav ul li a {
	font-size: 1.1vw;
	font-weight: 700;
	color: #006dd2;
}
.hamburger {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: fixed;
	top: 25px;
	right: 16px;
	z-index: 1003;
}
.hamburger span {
	background: #000;
	position: absolute;
	width: 100%;
	height: 3px;
	left: 0;
	transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 8px;
}
.hamburger span:nth-child(3) {
	top: 16px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 8px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 8px;
}
.mobile-menu {
	display: block;
	position: fixed;
	top: 0;
	right: -100%;
	background-color: #fff;
	width: 380px;
	height: 100%;
	padding: 50px 24px;
	transition: right 0.3s ease;
	z-index: 1002;
}
.mobile-menu.active {
	right: 0;
	overflow: auto
}
.mobile-menu ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.mobile-menu ul li a {
	font-weight: 700;
}
.mobile-menu ul li.list a {
	display: block;
	line-height: 1.5;
	color: #006dd2;
	margin-bottom: 10px;
}
.mobile-menu #contact {
	margin-top: 32px;
	padding: 40px 0;
}
.mobile-menu #contact .container {
	width: 100%;
}
.mobile-menu #contact h2 {
	margin-top: 20px;
}
.mobile-menu #contact .tel {
	gap: 8px;
	padding-top: 10px;
}
.mobile-menu #contact .reception {
	font-size: 13px;
	line-height: 1.3;
}
@media (max-width: 1109px) {
	header {
		padding: 16px;
	}
	header h1 {
		position: absolute;
		left: -9999px;
	}
	header .logo {
		width: 250px;
	}
	nav ul {
		display: none;
	}
	.hamburger {
		display: block;
	}
}
@media (min-width: 1110px) {
	.mobile-menu {
		display: none !important;
	}
}


/*------------------------------------
.contact-nav
------------------------------------*/
.contact-nav {
	position: fixed;
	top: 200px;
	right: 0;
	z-index: 10;
}
.contact-nav li {
	margin-bottom: 2px;
}
.contact-nav li a {
	display: flex;
	align-items: center;
	background-color: #fcf971;
	font-weight: 700;
	line-height: 1;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding: 16px 12px 24px;
}
.contact-nav li:first-child a {
	background-color: #07b53b;
	color: #fff;
}
.contact-nav li a img {
	width: 24px;
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.contact-nav {
		display: flex;
		gap: 1px;
		top: auto;
		bottom: 0;
		left: 0;
		background-color: #fff;
		width: 100%;
	}
	.contact-nav li {
		width: calc((100% - 2px)/3);
		margin: 0;
	}
	.contact-nav li a {
		justify-content: center;
		height: 48px;
		writing-mode: horizontal-tb;
		padding: 0;
	}
	.contact-nav li a img {
		margin: 0 5px 0 0;
	}
}


/*--------------------------------------------------------------------------
#page-top
--------------------------------------------------------------------------*/
#page-top {
	position: fixed;
	right: 40px;
	bottom: 40px;
	margin: 0;
	z-index: 24;
}
#page-top a {
	display: block;
	background: url("../img/page-top.svg") no-repeat center;
	background-size: 48px auto;/*この場合は高さが自動設定*/
	width: 48px;
	height: 48px;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width: 768px){
	#page-top {
		right: 5%;
		bottom: 80px;
	}
}


/*--------------------------------------------------------------------------
footer
--------------------------------------------------------------------------*/
footer {
	text-align: center;
	padding-bottom: 100px;
}
footer > a {
	display: block;
	margin: 0 auto;
	padding-top: 40px;
}
@media screen and (max-width: 768px) {
	footer {
		padding-bottom: 50px;
	}
	footer > a {
		width: 300px;
		padding-top: 20px;
	}
}