@charset "UTF-8";

/* ---------------------------------------------------------
 *	リセット
 *---------------------------------------------------------- */

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
	scroll-behavior: smooth;
}

body {
	color: #000;
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.8;
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	background: #eee;
}

.wrapper {
	overflow-x: hidden;
	position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
figure {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
th {
	font-weight: normal;
}

em,
address {
	font-style: normal;
}

li {
	list-style: none;
}

table,
iframe {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
	font-size: 100%;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
}

svg {
	max-width: 100%;
}

a {
	color: #3d2610;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-decoration: none;
}

a:visited {
	color: #3d2610;
}

a:hover {
	color: #3d2610;
	text-decoration: none;
}

a:active {
	color: #3d2610;
}

select,
input,
textarea,
button {
	font-family: inherit;
	font-size: inherit;
}

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
	padding: 8px 10px;
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
	background-color: #ffeeee;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 5px;
}

select {
	padding: 8px 5px;
	border: 1px solid #ccc;
}

label {
	cursor: pointer;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

::-moz-selection {
	color: #fff;
	background: #3d2610;
}

::selection {
	color: #fff;
	background: #3d2610;
}

::-moz-selection {
	color: #fff;
	background: #3d2610;
}

/* ---------------------------------------------------------
 *	共通
 *---------------------------------------------------------- */

.clear {
	clear: both;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (min-width: 481px) {
	.pc_none {
		display: none;
	}

	.sp_none {
		display: block;
	}
}

@media screen and (max-width: 480px) {
	.pc_none {
		display: block !important;
	}

	.sp_none {
		display: none !important;
	}
}

/* ---------------------------------------------------------
 *	br
 *---------------------------------------------------------- */

br.tb {
	display: none;
}

@media (max-width: 991px) {
	br.pc {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	br.tb {
		display: block;
	}
}

@media (min-width: 992px) {
	br.tbl {
		display: none;
	}
}

@media (min-width: 768px) {
	br.mbt {
		display: none;
	}
}

@media (min-width: 576px) {
	br.mb {
		display: none;
	}
}

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

body {
	--wrapper-mb-width: 100%;
}

@media only screen and (min-width: 769px) {
	body {
		--wrapper-mb-width: 400px;
	}
}

@media only screen and (min-width: 992px) {
	body {
		--wrapper-mb-width: 550px;
	}
}

.wrapper--pc {
	display: none;
}

@media only screen and (min-width: 769px) {
	.wrapper--pc {
		display: block;
		width: calc(100% - var(--wrapper-mb-width));
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		overflow: hidden;
	}
}

.wrapper--mb {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: var(--wrapper-mb-width);
	/* margin-left: calc(100% - var(--wrapper-mb-width)); */
	margin: 0 auto;
	background: #fff;
}

/* ---------------------------------------------------------
 *	スマホメニュー
 *---------------------------------------------------------- */

#spNavArea {
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	user-select: none;
	z-index: 9998;
	text-align: center;
}

#spNavArea div#spNavBody {
	transition: 0.3s ease;
	overflow: auto;
	position: fixed;
	top: 0;
	right: auto;
	left: auto;
	width: var(--wrapper-mb-width);
	height: 100%;
	opacity: 0;
	z-index: 9998;
	background: rgba(255, 255, 255, 0.9);
	padding: 70px 30px 30px;
	pointer-events: none;
}

#spNavArea .logo {
	max-width: 240px;
	width: auto !important;
	margin: 0 auto 30px !important;
}

#spNavArea .tel {
	font-size: 37px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	margin-bottom: 10px;
}

#spNavArea address {
	margin-bottom: 30px;
}

#spNavArea .web_contact {
	margin-bottom: 30px;
}

#spNavArea .web_contact .web {
    line-height: 40px;
    width: auto;
    margin-right: 0;
}

#spNavArea .web_contact div a {
    color: #fff;
    text-align: center;
    max-width: 213px;
    height: 40px;
    line-height: 40px;
    display: block;
    background: #ebb339;
    margin: 0 auto;
    border-radius: 5px;
}

#spNavArea .web_contact .web a {
    background: #ebb339;
    margin-bottom: 10px;
}

#spNavArea .web_contact .web a em {
	font-size: 16px;
    padding-top: 0;
    background: none;
    width: auto;
    height: auto;
    border-radius: none;
}

#spNavArea .web_contact .contact a {
    background: #1279b2;
}

#spNavArea .schedule {
	color: #666;
	text-align: center;
}

#spNavArea .schedule table {
	font-size: 12px;
	width: 100%;
	margin-bottom: 5px;
}

#spNavArea .schedule table th {
	border-bottom: 1px solid #999;
	padding: 5px;
}

#spNavArea .schedule table td {
	color: #f7b52c;
	border-bottom: 1px solid #999;
	padding: 5px;
}

#spNavArea .schedule p {
	font-size: 10px;
}

#spNavArea .schedule span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: url(../img/ico_star_01.svg) no-repeat center center;
	background-size: 10px;
}

#spNavArea.navOpen div#spNavBody {
	opacity: 1;
	pointer-events: auto;
}

#spNavArea.navOpen div#spNavBody .inner {
	margin: 0;
}

#spNavArea .navBtn {
	position: absolute;
	cursor: pointer;
	z-index: 9999;
	width: 61px;
	height: 59px;
	top: 0;
	right: 5px;
	transition: 0.3s ease;
	background: #666;
	padding: 13px 0 0 18px;
	border-radius: 0 0 0 12px;
}

#spNavArea .navBtn:before {
	color: #fff;
	font-size: 10px;
	line-height: 1;
	content: "MENU";
	position: absolute;
	left: 16px;
	bottom: 9px;
}

#spNavArea .navBtn span {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 1px;
	background: #fff;
	transition: all .3s ease-in-out;
	width: 26px;
}

#spNavArea.navOpen .navBtn span:nth-of-type(1) {
	transform: translateY(10px) translateX(0) rotate(45deg);
}

#spNavArea.navOpen .navBtn span:nth-of-type(2) {
	opacity: 0;
}

#spNavArea.navOpen .navBtn span:nth-of-type(3) {
	transform: translateY(-6px) translateX(0) rotate(-45deg);
}

#spNavArea .navBtn span:nth-of-type(2),
#spNavArea .navBtn span:nth-of-type(3) {
	margin-top: 6px;
}

/* ---------------------------------------------------------
 *	Header
 *---------------------------------------------------------- */

#header {
	width: var(--wrapper-mb-width);
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	z-index: 3;
	padding: 0 15px;
	background: rgba(255, 255, 255, 0);
	transition: 0.3s ease;
}

body.fixed #header {
	background: rgba(255, 255, 255, 0.8);
}

#header .logo {
	width: 148px;
	margin-right: 10px;
}

#header nav {
	font-weight: 700;
	margin-bottom: 30px;
}

#header nav a {
	display: block;
	border-bottom: 1px solid #3d2610;
	margin-bottom: 10px;
	padding-bottom: 10px;
}

#header nav .second {
	position: relative;
}

#header nav .second:before {
	font-size: 24px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
	text-align: center;
	line-height: 40px;
	content: "＋";
	position: absolute;
	right: 0;
	top: -2.5px;
	width: 40px;
	height: 34px;
	cursor: pointer;
}

#header nav .second.active:before {
	content: "ー";
}

#header nav .second .accordion {
	height: 0;
	opacity: 0;
	transition: 0.3s ease;
}

#header nav .second.active .accordion {
	height: auto;
	opacity: 1;
	transition: 0.3s ease;
}

#header nav .second a {
	padding-right: 40px;
}

#header nav .second .accordion a {
	padding-right: 0;
}

#header .web {
	font-size: 13px;
	line-height: 1.2;
	text-align: center;
	width: 57px;
	margin-right: 61px;
}

#header .web a {
	color: #fff;
	height: 48px;
	display: block;
}

#header .web a em {
	font-size: 14px;
	display: block;
	padding-top: 8px;
	background: #ebb339;
	width: 57px;
	height: 48px;
	border-radius: 5px;
}

@media (max-width: 991px) {
	#header nav .second:before {
		height: 58px;
		line-height: 64px;
		top: 0;
	}
}

@media (max-width: 768px) {
	#header nav .second:before {
		height: 30px;
		line-height: 35px;
	}
}

@media (max-width: 480px) {
	#header nav .second:before {
		height: 58px;
		line-height: 64px;
		top: 0;
	}
}

/* ---------------------------------------------------------
 *	Footer
 *---------------------------------------------------------- */

#footer {
	position: relative;
}

#footer #footer_nav {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s ease;
}

#footer.active #footer_nav {
	opacity: 1;
	pointer-events: auto;
}

#footer #footer_nav ul {
	text-align: center;
	width: 550px;
	margin: 0 auto;
	display: flex;
}

#footer #footer_nav ul li.web {
	width: calc(50% - 28.5px);
}

#footer #footer_nav ul li.contact {
	width: calc(50% - 28.5px);
}

#footer #footer_nav ul li a {
	color: #fff;
	font-weight: 500;
	display: block;
	height: 48px;
	line-height: 48px;
}

#footer #footer_nav ul li.web a {
	background: #ebb339;
}

#footer #footer_nav ul li.contact a {
	background: #1279b2;
}

#footer #footer_nav ul li.pagetop a {
	width: 57px;
	background: url(../img/ico_arrow_01.svg) no-repeat center center, #666;
	background-size: 17px;
}

#footer .bg_01 {
	background: #f7f8f8;
	padding: 80px 40px 70px;
}

#footer .logo {
	margin: 0 10px 20px;
}

#footer address {
	margin: 0 10px 20px;
}

#footer .schedule {
	color: #666;
	text-align: center;
	margin-bottom: 30px;
}

#footer .schedule table {
	font-size: 12px;
	width: 100%;
	margin-bottom: 5px;
}

#footer .schedule table th {
	border-bottom: 1px solid #999;
	padding: 5px;
}

#footer .schedule table td {
	color: #f7b52c;
	border-bottom: 1px solid #999;
	padding: 5px;
}

#footer .schedule p {
	font-size: 10px;
}

#footer .schedule span {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: url(../img/ico_star_01.svg) no-repeat center center;
	background-size: 10px;
}

#footer .tel_web {
	font-size: 14px;
	text-align: center;
}

#footer .tel_web .tel {
	font-size: 37px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	margin-bottom: 10px;
}

#footer .tel_web .web {
	font-weight: 500;
	margin-bottom: 10px;
}

#footer .tel_web .web a {
	color: #fff;
	width: 213px;
	height: 40px;
	line-height: 40px;
	background: #ebb339;
	display: block;
	margin: 0 auto;
	border-radius: 5px;
}

#footer .tel_web .contact {
	font-weight: 500;
}

#footer .tel_web .contact a {
	color: #fff;
	width: 213px;
	height: 40px;
	line-height: 40px;
	background: #1279b2;
	display: block;
	margin: 0 auto;
	border-radius: 5px;
}

#footer .access {
	padding-top: 60px;
}

#footer .access .list_01 {
	margin-bottom: 25px;
}

#footer .access .list_01 li {
	letter-spacing: 0;
	background: #f2f2f2;
	margin-bottom: 20px;
	padding: 15px 20px;
	border-radius: 7px;
}

#footer .access .list_01 li:last-child {
	margin-bottom: 0;
}

#footer .access .list_01 li div {
	padding-left: 80px;
	background-size: 52px !important;
}

#footer .access .list_01 li.train div {
	background: url(../img/ico_train_01.svg) no-repeat left top;
}

#footer .access .list_01 li.car div {
	background: url(../img/ico_car_01.svg) no-repeat left top;
}

#footer .access .list_01 li div h3 {
	font-size: 20px;
	font-weight: 700;
}

#footer .access .slide {
	display: flex;
	align-items: center;
	overflow: hidden;
	margin: 0 -20px 60px;
}

#footer .access .slide .list_02 {
	display: flex;
	animation: infinity-scroll-left 50s infinite linear 0.5s both;
}

#footer .access .slide .list_02 li {
	width: calc(100vw / 5);
	margin: 0 5px;
}

#footer .access .slide .list_02 li img {
	width: 100%;
	border-radius: 5px;
}

@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

#footer .access ul li div strong {
	font-family: FOT-筑紫A丸ゴシック Std B;
	display: block;
}

#footer .access ul li div p {
	font-family: FOT-筑紫A丸ゴシック Std R;
}

#footer .access .pic_01 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}

#footer .access .pic_01 img {
	width: calc(50% - 6px);
	border-radius: 4px;
}

#footer .inner {
	margin: 0 20px;
}

#footer iframe {
	width: 100%;
	height: 176px;
}

#footer .copyright {
	color: #fff;
	font-size: 10px;
	text-align: center;
	padding: 1.5px 20px 49.5px;
	background: #1279b2;
}

.p-contact #footer .copyright {
	padding: 1.5px 20px 1.5px;
}

@media (max-width: 991px) {
	#footer #footer_nav ul {
		width: 400px;
	}
}

@media (max-width: 768px) {
	#footer .access .slide .list_02 li {
		width: calc(100vw / 2);
	}

	#footer #footer_nav ul {
		width: 100%;
	}
}
