@charset "utf-8";

/*===============================
reset & new role
=================================*/

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

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

* {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	scroll-behavior: smooth;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
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,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}

a {
	word-break: break-all;
	color: #b08a45;
}
.page-content a {
	color: #a137ac;
}
.footer a {
	color: #000;
}

a:hover,
a:active {
	text-decoration: unset;
	color: #b08a45;
}

a img {
	border: 0;
}

img {
	max-width: 100%;
	height: auto;
	width: 100%;
	backface-visibility: hidden;
}

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.disabled {
	pointer-events: none;
}

/*===============================
wrapper, box, content
=================================*/

body,
html {
	width: 100%;
	min-width: 320px;
	box-sizing: border-box;
	color: #000;
	font-family:"游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-font-smoothing: antialiased;
}

.site-wrapper {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 0;
	font-size: 1.4rem;
	max-width: 1200px;
}

.top-page .header-title {
	margin: 0 30px 50px;
	padding-top: 50px;
	width: 400px;
}
.top-page .container {
	max-width: 1200px;
	width: 1200px;
}
@media (max-width: 1200px) {
	.top-page .container {
		max-width: 100%;
		width: 100%;
	}
}
.header-title {
	width: 215px;
}

#left {
	width: 280px;
	flex-shrink: 0;
	background: #074689 url("../images/side_bg.png") no-repeat bottom;
	background-size: 100% auto;
	color: #fff;
}
.top-page #left {
	width: 520px;
	flex-shrink: 0;
	background: rgb(11 44 104 / 65%);
}

#right {
	width: 870px;
	padding: 0 0 5rem;
	margin: 110px 0 0 50px;
}
.top-page #right {
	width: 100%;
	padding: 0 0 5rem;
	margin: 50px 0;
}

/*===============================
header
=================================*/

.header-title a {
	display: flex;
	align-items: center;
	padding: 0;
	cursor: pointer;
}

.sp-menubtn {
	display: none;
}

/*===============================
#left - nav
=================================*/
#side-menu {
	padding: 0 15px;
}
.top-page #side-menu {
	padding: 0 30px;
}

ul.menu {
	width: 100%;
	list-style: none;
	margin-bottom: 2rem;
}

ul.menu a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 9px 0 9px 28px;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: -.01rem;
	transition: all 0.3s ease;
	line-height: 1.2;
}

ul.menu a:hover {
	color: #b08a45;
}
ul.menu .active a {
	color: #fff;
}

ul.menu a::before,
ul.menu .active a::before {
	content: "";
	height: 15px;
	width: 15px;
	background: url(../images/arw.png) no-repeat center;
	background-size: contain;
	position: absolute;
	top: 17px;
	left: 0;
	bottom: 0;
}

ul.menu a:hover::before,
ul.menu .active a::before {
	opacity: 1;
}

.side_date {
	margin: 8rem 0 2rem;
}
.side_add {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .01px;
}
.side_add span {
	font-size: 1.6rem;
}
.side_add p {
	margin-bottom: 1rem;
}
@media (max-width: 1200px) {
	.side_date, .side_add {
		margin: 8rem 1.5rem 1.5rem;
	}
}

/*===============================
.zimukyoku-wrap, footer
=================================*/

.zimukyoku-wrap>div {
	gap: 7rem;
}

.zimukyoku {
	display: flex;
	align-items: center;
	flex: 1;
	font-weight: 700;
	font-size: 14px;
}

.zimukyoku:first-child {
	display: flex;
	justify-content: start;
	max-width: 400px;
}

.zimukyoku-name {
	line-height: 1.5;
	margin-bottom: 1rem;

}

.zimukyoku-address {
	line-height: 1.5;
}



.footer {
	position: relative;
	padding: 30px 0 0 0;
	background: #e8e8e8;
}
.footer .container {
	padding: 0;
}

.copyright {
	text-align: right;
	font-size: 1.2rem;
	padding: 0.8rem;
	margin-top: 2.2rem;
}


/*===============================
margin padding
=================================*/

.mb-50 {
	margin-bottom: 50px !important;
}
.mb-20 {
	margin-bottom: 20px !important;
}
.mr-50 {
	margin-right: 50px;
}
.mb-6r {
	margin-bottom: 6rem;
}
.h100 {
	height: 100%;
}

/*===============================
text
=================================*/

.indent1em {
	text-indent: -1em;
	margin-left: 1em;
}

.indent2em {
	text-indent: -2em;
	margin-left: 2em;
}

.bold {
	font-weight: 700;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.line-through-red {
	color: #d34b4b;
	text-decoration: line-through;
}

.line-through-red span {
	color: #000;
}

.txt-red {
	color: #d34b4b;
}

.page-heading h2 {
	margin: 0;
	color: #204a91;
	font-size: 4.8rem;
	font-weight: 400;
	padding: 0;
}

.page-content h3 {
	font-size: 2.8rem;
	color: #204a91;
	display: flex;
	align-items: stretch;
	justify-content: start;
	gap: 1rem;
	margin: 0 0 2rem;
}

.page-content h4 {
	font-size: 2.2rem;
	color: #b08a45;
	border-bottom: 1px solid #b08a45;
	padding-bottom: 0.75rem;
	margin-bottom: 1.5rem;
}

.page-content h5 {
	font-size: 1.9rem;
	color: #b08a45;
	margin-bottom: 1rem;
}

.page-content p {
	font-size: 1.6rem;
	line-height: 1.8;
}

.comingsoon {
	width: 40vw;
	margin: 100px auto 50vh;
	padding: 20px;
	text-align: center;
	background-color: #eee;
	border-radius: 5px;
	font-weight: 500;
}

ol.decimal-leading {
	list-style-type: decimal-leading-zero;
}


/*===============================
btn
=================================*/

.btn {
	display: inline-block;
	width: 100%;
	max-width: 400px;
	margin: 20px 0;
	padding: 1.2em;
	color: #b08a45;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	background-color: #fff;
	border: 3px solid #b08a45;
	border-radius: 10rem;
}

.btn:active,
.btn:focus,
.btn:hover {
	text-decoration: none;
	background-color: #b08a45;
	color: #fff;
	transition: all 0.5s ease;
}
.btn.btn02 {
	color: #003570;
	border: 3px solid #003570;
}

.btn.btn02:active,
.btn.btn02:focus,
.btn.btn02:hover {
	text-decoration: none;
	background-color: #003570;
	color: #fff;
	transition: all 0.5s ease;
}

.btn.btn03 {
	color: #dd7615;
	border: 3px solid #dd7615;
}

.btn.btn03:active,
.btn.btn03:focus,
.btn.btn03:hover {
	text-decoration: none;
	background-color: #dd7615;
	color: #fff;
	transition: all 0.5s ease;
}

/*===============================
box
=================================*/

.box-red {
	border: 2px solid #d34b4b;
	padding: 30px 20px;
}

.box-yellow {
	padding: 1em 1.5em;
	background-color: #fcf0da;
}

.flex_end {
	display: flex;
	align-items: flex-end;
}


/*===============================
box
=================================*/

.pre-content {
	display: flex;
    justify-content: center;
    align-items: center;
    height: 70% !important;
    margin-bottom: 30%;
}

@media (max-width: 1200px) {
	.pre-content {
	    height: 40% !important;
	    margin: 30% 0%;
	}
}


