@charset "utf-8";

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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&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;
	-webkit-font-smoothing: antialiased;
}

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: #F5A341;
}

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

a img {
	border: 0;
	transition: all .3s;
}

a img:hover {
	opacity: .7;
}

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

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.disabled {
	pointer-events: none;
}

small {
	font-size: 80%;
}

.large {
	font-size: 120%;
}

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

html {
	font-size: 62.5%;
}

body {
	width: 100%;
	min-width: 320px;
	box-sizing: border-box;
	background: #E4F6EA;
	color: #000;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.all_wrap {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
}

.col-right {
	order: 2;
	flex: 1;
}

.col-left {
	order: 1;
	flex: 1;
	max-width: 300px;
	padding-right: 3%;
}

.content-inner {
	background: #fff;
	padding: 0 20px 3rem;
}

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

header.site-header {
	width: 100%;
	text-align: center;
}

h1.site-ttl {
	max-width: 1020px;
	margin: 0 auto;
	padding: 30px 0;
}

h1.site-ttl a {
	display: inline-block;
}

#menu {
	margin: 0;
}

#menu-inner {
	width: 100%;
	margin: 0 auto;
}

#menu-btn {
	display: none;
}

#menu-content {
	margin: 0;
}

#menu-content>li {
	position: relative;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-weight: 500;
	list-style: none;
}

#menu-content>li>a {
	display: block;
	padding: 15px 0;
	color: #007625;
	font-size: 1.7rem;
	border: 1px solid #8EC3A1;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	padding-left: 20px;
	position: relative;
	background-color: #fff;
}

#menu-content>li>a::after {
	content: "";
	background-image: url(../images/arrow-green.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

#menu-content>li>a:hover,
#menu-content>li>a.active {
	background-color: #007625;
	color: #fff;
	border: 1px solid #007625;
}

#menu-content>li>a:hover::after,
#menu-content>li>a.active::after {
	background-image: url(../images/arrow-white.svg);
}

.menu_new {
	display: inline-block;
	height: 18px;
	padding: 0 3px;
	color: #fff;
	font-size: 0.7em;
	line-height: 18px;
	background-color: #E60012;
}

/*===============================
.zimukyoku-wrap, footer
=================================*/
.button-020 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background-color: #007625;
	transition: all .3s;
}

.button-020:hover {
	background-color: #FFF799;
}

.button-020:hover path {
	fill: #007625;
}

.zimukyoku {
	padding-top: 25px;
}

.zimukyoku-content {
	margin-top: 35px;
}

.zimukyoku-heading {
	font-weight: 500;
	font-size: 1.2rem;
	margin-bottom: 10px;
	padding: 5px 10px;
	color: #000;
	background: #FFF799;
}

.zimukyoku-name {
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.zimukyoku-address {
	font-size: 1.2rem;
}

.footer {
	background: #333333;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 75px;
	margin-top: 35px;
	padding: 20px 0;
}

.copyright {
	text-align: center;
	width: 100%;
	max-width: 1260px;
	padding: 0 20px;
	color: #fff;
	font-size: 1.2rem;
}


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

.mb-50 {
	margin-bottom: 50px;
}

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

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

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

.bold {
	font-weight: 700;
}

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

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

.txt-red {
	color: #ec2020;
}

.txt-green {
	color: #007625;
}

.txt-bg-yellow {
	padding: 0 3px 3px;
	background: #fff2ce;
}

.page-heading h2 {
	margin: 0;
	background: #007625;
	color: #FFF799;
	letter-spacing: 0.2rem;
	font-size: 2.4rem;
	font-size: clamp(2.4rem, calc(2.4rem + 0.625vw), 4rem);
	padding: 1.5rem 3rem;
}

#page-content h3 {
	position: relative;
	font-size: 2.3rem;
	color: #007625;
	padding: 8px 12px;
	margin-bottom: 0.8em;
	background: #FFF799;
}

#page-content h3 small {
	font-size: 60%;
}

#page-content h4 {
	position: relative;
	font-size: 2rem;
	color: #222;
	padding: 8px 0 8px 0;
	border-bottom: 2px solid #ffd47e;
	line-height: 1.5;
}

#page-content h5 {
	color: #007625;
}

#page-content {
	font-size: 1.6rem;
	line-height: 1.8;
	margin-bottom: 40px;
	min-height: 60vh;
}

#page-content .ask {
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	font-weight: normal;
	font-size: 14px;
}

.comingsoon {
	min-width: 290px;
	width: 30vw;
	max-width: 100%;
	margin: 100px auto 35vh;
	padding: 20px;
	text-align: center;
	background-color: #fff;
	border: 3px solid #8EC3A1;
}

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

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

.btn {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 400px;
	margin: 20px 0 15px;
	padding: 20px 25px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	background: #F5A341;
	border-radius: 50em;
	border: 2px solid #F5A341;
}

.btn:hover {
	color: #F5A341 !important;
	background: #fff;
	border: 2px solid #F5A341;
}

.btn:active,
.btn:focus,
.btn:hover {
	color: #fff;
	transition: all 0.5s ease;
}

.btn.btn_ex::after {
	content: "";
	display: block;
	background: url(../images/arrow_ex.svg) no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
}

.btn.btn_pdf::after {
	content: "";
	display: block;
	background: url(../images/btn_pdf.svg) no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 15px;
	height: 18px;
}

.btn.btn02 {
	color: #6DC3BA;
	border: 3px solid #6DC3BA;
	box-shadow: 0 10px 10px rgba(41, 177, 43, 0.1);
}

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

.btn.btn03 {
	color: #dd7615;
	border: 3px solid #dd7615;
	box-shadow: 0 10px 10px rgba(177, 120, 41, 0.1);
}

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

.banner-btn {
	background-color: #F5A341;
	border: 1px solid #F5A341;
	border-radius: 0;
	margin: 0;
	max-width: 250px;
	text-align: left;
}

.banner-btn a {
	color: #fff;
}

.banner-btn:hover {
	background-color: #da87b2;
	border: 1px solid #da87b2;
}

/*===============================
table
=================================*/

.table-common {
	width: 100%;
}

.table-common th,
.table-common td {
	padding: 2rem;
}

.table-common th {
	min-width: 6em;
	background-color: #E4F6EA;
	border: 1px solid #d5d5d5;
	text-align: center;
	font-weight: 500;
}

.table-common td {
	border-right: 1px solid #d5d5d5;
	border-bottom: 1px solid #d5d5d5;
}

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

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

.box-green {
	border: 2px solid #8EC3A1;
	padding: 30px 20px;
}

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

/* 追従バナー */
.js-scrolled-btn {
	position: fixed;
	right: 15px;
	bottom: 15px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 10;
}

.js-scrolled-btn.scrolled {
	opacity: 1;
	visibility: visible;
}