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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

address {
	font-style: normal;
}

button {
	background: inherit;
}

@font-face {
	font-family: "KozukaGothicPr6N";
	font-style: normal;
	font-weight: normal;
	src: url("/assets/fonts/KozGoPr6N-Regular.otf") format("opentype");
}

@font-face {
	font-family: "DINBold";
	font-style: normal;
	font-weight: bold;
	src: url("/assets/fonts/DINBold.ttf") format("truetype");
}

@font-face {
	font-family: "Arial";
	font-style: normal;
	font-weight: normal;
	src: url("/assets/fonts/Arial.ttf") format("truetype");
}

@font-face {
	font-family: "Arial";
	font-style: normal;
	font-weight: bold;
	src: url("/assets/fonts/Arial Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Carosello";
	font-style: normal;
	font-weight: normal;
	src: url("/assets/fonts/Carosello-Regular.otf") format("opentype");
}

body {
	background: #fff;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
	line-height: 1.5;
}

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

a {
	color: inherit;
}

.l-inner {
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.u-separate {
	margin-bottom: 24px;
	margin-top: 24px;
}

body {
	font-size: 14px;
	line-height: 1.7;
	margin-left: auto;
	margin-right: auto;
	max-width: 1500px;
	padding-bottom: 100px;
}

a:hover {
	opacity: 0.7;
}

.hidden-sp {
	display: none;
}

.header {
	background: #fff;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.header-box {
	align-items: center;
	display: flex;
	height: 80px;
	justify-content: space-between;
	padding: 20px;
}

.header__icon {
	min-width: 200px;
	width: 265px;
}

.header__icon img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.header__right-box {
	display: none;
}

.header__right-box-head {
	align-items: center;
	display: flex;
	gap: 20px;
}

.header-link-btn {
	border: 1px solid #333;
	border-radius: 30px;
	font-size: 17px;
	padding: 1px 10px;
}

.right-box-head__tel {
	width: 228px;
}

.right-box-head__tel img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.right-box-head__btn {
	width: 218px;
}

.right-box-nav__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	white-space: nowrap;
}

.right-box-nav__link {
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 4px;
	margin-right: 30px;
}

.right-box-nav__link:nth-last-child(1) {
	margin-right: 0;
}

.right-box-nav__link-open {
	font-size: 21px;
	letter-spacing: 4px;
}

.right-box-nav-sub {
	display: none;
}

.drawer {
	background: #fff;
	height: calc(100vh - 80px);
	position: fixed;
	top: 80px;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
	width: 100%;
	z-index: 99;
}

.drawer.is-checked {
	transform: translateX(0%);
}

.drawer-item {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 350px;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.drawer__link {
	margin-bottom: 15px;
}

.drawer__link span {
	margin-right: 30px;
}

.drawer__link a {
	white-space: nowrap;
}

.drawer__link-text {
	border-bottom: 1px solid #aaa;
	font-size: 15px;
	margin-right: 30px;
}

.drawer__link-open {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 4px;
}

.drawer__link-sub-item li {
	border-bottom: 1px solid #9f9fa0;
	padding: 5px 0 5px 20px;
}

.drawer__foot {
	font-size: 15px;
	margin-top: 30px;
}

.drawer__foot p {
	margin-bottom: 5px;
}

.drawer-open {
	align-items: center;
	display: inline-block;
	height: 21px;
	position: relative;
	width: 28px;
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(1) {
	background: #333;
	top: 9px;
	transform: rotate(45deg);
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(2) {
	background: #333;
	display: none;
}

.drawer-open.is-checked .drawer-open__bar:nth-of-type(3) {
	background: #333;
	top: 9px;
	transform: rotate(-45deg);
}

.drawer-open__bar {
	background: #333;
	border-radius: 30px;
	height: 2px;
	left: 0;
	position: absolute;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 28px;
}

.drawer-open__bar:nth-child(1) {
	top: 0;
}

.drawer-open__bar:nth-child(2) {
	top: 7px;
	width: 28px;
}

.drawer-open__bar:nth-child(3) {
	top: 15px;
	width: 28px;
}

.right-box-nav__link.has-sub {
	position: relative; /* サブメニューの基準 */
}

.right-box-nav__link.has-sub.active::after {
	background: url(../img/2x/sankaku@2x.webp) no-repeat center center/cover;
	bottom: -7px;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	width: 10px;
}

.right-box-nav-sub {
	background: #fff;
	display: none;
	left: -10px;
	min-width: 210px;
	padding: 10px;
	position: absolute;
	top: 120%; /* ボタンの真下に出る */
	z-index: 100;
}

.right-box-nav-sub__link {
	border-bottom: 1px solid #9f9fa0;
	color: #333;
	display: block;
	padding: 5px 40px 5px 12px;
	position: relative;
	text-decoration: none;
}

.right-box-nav-sub__link::after {
	background: url(../img/2x/link-ar@2x.webp) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: 14px;
	top: 40%;
	width: 10px;
}

.right-box-nav-sub__link:hover {
	background: #f5f5f5;
}

.right-box-nav__link.has-sub.active .right-box-nav-sub {
	display: block;
}

.drawer__link-sub-item {
	max-height: 0; /* 初期は閉じる */
	overflow: hidden;
	padding-left: 20px; /* インデント */
	transition: max-height 0.3s ease;
}

.drawer__link.has-sub.active .drawer__link-sub-item {
	max-height: 500px; /* 十分な高さを指定 */
}

.btm-btn {
	background: #fff;
	bottom: 0;
	color: #fff;
	display: flex;
	font-size: 18px;
	height: 60px;
	justify-content: space-between;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 100;
}

.top-contact-btn {
	align-items: center;
	background: #2f2f2f;
	bottom: 0;
	color: #fff;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	height: 65px;
	justify-content: center;
	position: fixed;
	width: 100%;
	z-index: 100;
}

.top-contact-btn span {
	margin-right: 15px;
	margin-top: -8px;
	width: 32px;
}

.fv-dox {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 80px;
}

.fv {
	position: relative;
}

.fv img {
	height: auto;
	width: 100%;
}

.fv {
	overflow: hidden;
	position: relative;
}

.fv-slid-box {
	background: rgba(255, 255, 255, 0.5019607843);
	bottom: 10px;
	padding-bottom: 20px;
	padding-top: 20px;
	position: absolute;
}

/* スライダー表示領域（fvの横幅に収める） */

.fv-slid {
	overflow: hidden;
	width: 100%; /* ← fv内に収める */
}

/* 横並びトラック */

.fv-slid-track {
	animation: fv-slide-sp 25s linear infinite;
	display: flex;
	gap: 5px;
	width: -moz-max-content;
	width: max-content;
}

/* 1枚 140px × 100px */

.slid-item {
	flex-shrink: 0;
	height: 100px;
	width: 140px;
}

.slid-item img {
	-o-object-fit: cover;
	display: block;
	height: 100px;
	object-fit: cover;
	width: 140px;
}

.fv-text {
	display: none;
}

.footer {
	display: none;
}

.footer__right {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-icon {
	width: 350px;
}

.footer-tel {
	font-size: 26px;
}

.footer-fax {
	font-size: 26px;
}

.footer__left {
	display: flex;
	flex: 1;
	flex-direction: row;
	font-weight: 700;
	justify-content: space-between;
	max-width: 750px;
}

.footer-flex {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-flex-item {
	display: flex;
	flex-direction: column;
}

.footer-flex-item.last {
	margin-top: 147px;
}

.section {
	margin-top: 100px;
}

.top-news {
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}

.top-news-head {
	align-items: center;
	border-bottom: 3px solid #ccc;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	width: 200px;
}

.top-news-head-ja {
	font-size: 18px;
	font-weight: 600;
}

.top-news-head-en {
	color: #9fc238;
	font-size: 12px;
	font-weight: 600;
}

.top-news-body {
	margin-top: 30px;
}

.top-news-link {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin-bottom: 15px;
}

.top-news-date {
	color: #9fc238;
	font-size: 13px;
}

.top-news-title {
	font-size: 15px;
}

.top-items {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.top-item-img {
	position: relative;
}

.top-item-img img {
	-o-object-fit: contain;
	object-fit: contain;
}

.top-item-title {
	background: #fff;
	bottom: -10px;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 5px;
	padding-right: 10px;
	padding-top: 5px;
	position: absolute;
}

.top-item-body {
	border-left: 3px solid #9fc238;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
	padding-left: 20px;
}

.top-item-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.top-item-btn {
	font-size: 12px;
	font-weight: 700;
	height: 30px;
	width: 135px;
}

.btn-1 {
	align-items: center;
	border: 2px solid #333;
	display: flex;
	justify-content: center;
}

.btn-2 {
	align-items: center;
	background: #9fc238;
	color: #fff;
	display: flex;
	justify-content: center;
}

.top-item-pc {
	display: none;
}

.top-item-pc-img {
	position: relative;
}

.top-item-pc-flex {
	align-items: center;
	bottom: -200px;
	display: flex;
	justify-content: center;
	position: absolute;
	width: 100%;
}

.top-item-pc-flex.top-item-pc-flex-2 {
	bottom: -140px;
}

.top-item-pc-body {
	background: #fff;
	width: 50%;
}

.top-item-pc-body-head {
	font-size: 36px;
	font-weight: 700;
	padding-top: 10px;
}

.top-item-pc-body-content {
	border-left: 3px solid #9fc238;
	font-size: 19px;
	margin-top: 30px;
	padding-left: 30px;
}

.top-item-pc-body-content p {
	margin-bottom: 10px;
}

.top-item-pc-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 50%;
}

.top-item-pc-btns.mt {
	margin-top: 40px;
}

.top-links {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.top-links-link-img {
	margin-left: auto;
	margin-right: auto;
	max-width: 275px;
	width: 100%;
}

.top-btm-btn-link {
	align-items: center;
	background: #333;
	color: #fff;
	display: flex;
	font-size: 16px;
	height: 41px;
	justify-content: center;
	max-width: 280px;
	width: 100%;
}

.top-btm-btns {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	margin-bottom: 100px;
}

.top-btm-btn {
	align-items: center;
	background: #333;
	color: #fff;
	display: flex;
	font-size: 16px;
	height: 41px;
	justify-content: center;
	max-width: 280px;
	position: relative;
	width: 100%;
}

.top-btm-btn::after {
	background: url(../img/2x/btm-btn-arw@2x.webp) no-repeat center center/cover;
	content: "";
	height: 5px;
	position: absolute;
	right: 10px;
	top: 45%;
	width: 35px;
}

.page-head {
	padding-top: 80px;
	width: 100%;
}

.page-head img {
	width: 100%;
}

.page-head-ja {
	display: flex;
	flex-direction: column;
	font-size: 24px;
	font-weight: 700;
	margin-top: 100px;
	text-align: center;
}

.page-head-ja span {
	color: #9fc238;
	font-size: 13px;
}

.contact-body {
	margin-bottom: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	max-width: 660px;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

label {
	align-items: center;
	color: #222;
	display: flex;
	font-size: 17px;
	font-weight: 600;
	gap: 10px;
}

.required {
	background: #d81e2a;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	padding: 4px 8px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
	background: #efefef;
	border: 0;
	border-radius: 2px;
	box-sizing: border-box;
	color: #333;
	font-size: 18px;
	outline: none;
	padding: 20px 22px;
	width: 100%;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #9b9b9b;
	letter-spacing: 0.18em;
}

input::placeholder,
textarea::placeholder {
	color: #9b9b9b;
	letter-spacing: 0.18em;
}

textarea {
	line-height: 1.6;
	min-height: 260px;
	resize: vertical;
}

.btn-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	margin-top: 10px;
}

button[type=submit] {
	background: #4f93f7;
	border: 0;
	border-radius: 28px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	min-width: 280px;
	padding: 22px 48px;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

button[type=submit]:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

button[type=submit]:active {
	transform: translateY(1px);
}

.wpcf7 input[type=submit] {
	background: #4f93f7;
	border: 0;
	border-radius: 28px;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	min-width: 280px;
	padding: 22px 48px;
	transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.wpcf7 input[type=submit]:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.wpcf7 input[type=submit]:active {
	transform: translateY(1px);
}

.contact-top {
	margin-top: 50px;
	text-align: center;
}

.contact-tel {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 280px;
	text-align: center;
	width: 100%;
}

.contact-tel-text {
	margin-top: 5px;
	text-align: center;
}

.contact-btm {
	margin-top: 50px;
	text-align: center;
}

.news {
	padding-top: 80px;
}

.news-body {
	margin-bottom: 100px;
	margin-top: 100px;
}

.news-links {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-left: auto;
	margin-right: auto;
	max-width: 250px;
	width: 100%;
}

.news-link {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 5px;
}

.news-date {
	color: #9fc238;
}

.single {
	padding-bottom: 100px;
	padding-top: 100px;
}

.single-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1040px;
	width: 100%;
}

.single__title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
}

.single__date {
	color: #9fc238;
	font-size: 14px;
	font-weight: bold;
	margin-top: 40px;
}

.single__sns {
	margin-top: 30px;
}

.single__content {
	font-size: 14px;
	line-height: 1.4;
	margin-top: 50px;
}

.single__content p:not(:first-of-type) {
	margin-top: 30px;
}

.single__img {
	background: #ccc;
	height: 200px;
	margin-top: 40px;
	width: 100%;
}

.single__img img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
}

.single-side {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 80px;
}

.single-side__head {
	border-bottom: 2px solid #ccc;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}

.single-side__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.single-side__link {
	font-size: 16px;
}

.page-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	justify-content: center;
	margin-top: 80px;
}

.page-link {
	border-right: 1px solid #333;
	line-height: 1;
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
	text-decoration: underline;
}

.page-link:nth-last-child(1) {
	border-right: none;
}

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

.sec-head-ja {
	font-size: 20px;
}

.sec-head-en {
	color: #9fc238;
	font-size: 13px;
}

.yumeari-floor-img {
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	max-width: 800px;
	width: 100%;
}

.yumeari-mid {
	padding-top: 100px;
}

.yumeari-mid-head {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	height: 30px;
	justify-content: center;
	margin-top: 100px;
	width: 100%;
}

.yumeari-mid-head.gr {
	background: #00cd09;
}

.yumeari-mid-head.br {
	background: #006fc4;
}

.yumeari-mid-body {
	display: flex;
	flex-direction: column;
	gap: 80px;
	margin-top: 100px;
	width: 100%;
}

.yumeari-mid-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-left: auto;
	margin-right: auto;
	max-width: 350px;
	width: 100%;
}

.yumeari-mid-item.item2 {
	font-size: 14px;
}

.yumeari-mid-item.item2 span {
	font-weight: 500;
}

.item1-flex {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.yumeari-mid-img {
	width: 100%;
}

.yumeari-mid-title {
	font-size: 20px;
	font-weight: 600;
}

.yumeari-mid-bar {
	background: #00cd09;
	height: 3px;
	width: 100%;
}

.yumeari-mid-bar.br {
	background: #006fc4;
}

.yumeari-mid-text {
	font-size: 14px;
}

.yumeari-guid-body {
	padding-top: 100px;
}

.yumeari-guid-item {
	border-top: 1px solid #ccc;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-bottom: 20px;
	padding-top: 20px;
}

.yumeari-guid-item:nth-last-child(1) {
	border-bottom: 1px solid #ccc;
}

.yumeari-fee-items {
	display: flex;
	flex-direction: column;
	gap: 100px;
	padding-top: 100px;
}

.yumeari-fee-items p {
	margin-top: -80px;
}

.yumeari-fee-item1 {
	overflow: scroll;
	width: 100%;
}

.yumeari-fee-item1 img {
	max-width: 700px;
}

.yumeari-fee-item2 {
	overflow: scroll;
	width: 100%;
}

.yumeari-fee-item2 img {
	max-width: 370px;
}

.yumeari-fee-item3 {
	overflow: scroll;
	width: 100%;
}

.yumeari-fee-item3 img {
	max-width: 370px;
}

.yumeari-fee-item4 {
	overflow: scroll;
	width: 100%;
}

.yumeari-fee-item4 img {
	max-width: 448px;
}

.yumeari-access-map {
	height: 375px;
	margin-top: 50px;
	width: 100%;
}

.yumeari-access-text {
	margin-bottom: 50px;
	margin-top: 30px;
	text-align: center;
}

.over-his-top {
	align-items: center;
	border: 1px solid #aaa;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	height: 40px;
	justify-content: center;
	margin-bottom: 100px;
	width: 100%;
}

.over-his-item {
	margin-top: 100px;
}

.over-che-img {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	margin-top: 100px;
	max-width: 750px;
	width: 100%;
}

.matu-map-top {
	margin-top: 50px;
}

.matu-map-body {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 100px;
}

.matu-map-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-left: auto;
	margin-right: auto;
	max-width: 450px;
	width: 100%;
}

.matu-map-item-title {
	font-size: 18px;
	font-weight: 600;
}

.over-fee-item1 {
	overflow: scroll;
	width: 100%;
}

.over-fee-item1 img {
	max-width: 686px;
}

.over-fee-item2 {
	overflow: scroll;
	width: 100%;
}

.over-fee-item2 img {
	max-width: 480px;
}

.over-fee-item3 {
	overflow: scroll;
	width: 100%;
}

.over-fee-item3 img {
	max-width: 480px;
}

.dome-fee-item1 {
	overflow: scroll;
	width: 100%;
}

.dome-fee-item1 img {
	max-width: 686px;
}

.download {
	padding-top: 100px;
}

.download-title {
	color: #4f93f7;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 150px;
	text-align: center;
}

.download-flex {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-bottom: 100px;
}

.download-block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.download-head {
	font-size: 16px;
	font-weight: 700;
}

.download-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.download-item {
	align-items: center;
	background: #4f93f7;
	border-radius: 8px;
	color: #fff;
	display: flex;
	font-size: 12px;
	font-weight: 600;
	height: 35px;
	max-width: 470px;
	padding-left: 50px;
	position: relative;
	width: 100%;
}

.download-item::after {
	background: url(../img/2x/dw-f@2x.webp) no-repeat center center/cover;
	content: "";
	height: 23px;
	left: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.pri {
	margin-bottom: 200px;
	margin-top: 200px;
}

.pri span {
	display: block;
	text-align: right;
}

.group {
	margin-bottom: 200px;
}

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

.group-hread h2 {
	font-size: 20px;
}

.table-wrap {
	margin-top: 100px;
}

.g-top table {
	font-weight: 600;
	width: 100%;
}

.g-top thead {
	background: #9fc238;
	color: #fff;
	text-align: left;
}

.g-top td {
	border-bottom: 1px solid #9fc238;
	padding-left: 10px;
}

.g-top table {
	border-collapse: collapse;
	width: 100%;
}

.g-top th,
.g-top td {
	padding: 10px 12px;
}

.g-mid-head {
	border: 2px solid #aaa;
	font-size: 20px;
	font-weight: 600;
	height: 46px;
	padding-left: 20px;
	width: 100%;
}

.g-mid-box {
	margin-top: 100px;
}

.g-mid-box table {
	font-weight: 600;
	width: 100%;
}

.g-mid-box thead {
	background: #9fc238;
	color: #fff;
	text-align: left;
}

.g-mid-box td {
	border-bottom: 1px solid #9fc238;
}

.g-mid-box table {
	border-collapse: collapse;
	width: 100%;
}

.g-mid-box th,
.g-mid-box td {
	padding: 1px 8px;
}

.g-mid-item-box {
	display: flex;
	flex-direction: column;
	gap: 100px;
	margin-top: 50px;
}

.g-mid-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.g-mid-left {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}

.g-mid-left-title {
	font-size: 22px;
	font-weight: 600;
}

.g-mid-left-flex {
	max-width: 340px;
	width: 100%;
}

.g-mid-left-text {
	background: rgba(159, 194, 56, 0.1882352941);
	padding: 10px;
	width: 100%;
}

.g-mid-right {
	height: 210px;
	position: relative;
	width: 100%;
}

.g-mid-right img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.g-mid-right-link {
	align-items: center;
	background: #fff;
	border: 2px solid #9fc238;
	border-radius: 15px;
	bottom: -15px;
	color: #9fc238;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	height: 38px;
	justify-content: center;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 180px;
}

.ent-body {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 100px;
}

.ent-item-title {
	font-size: 20px;
	font-weight: 600;
	text-align: left;
}

.ent-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

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

.ent-item-left-head {
	background: #5795d2;
	color: #fff;
	padding: 3px 5px;
}

.ent-item-left-body {
	background: rgba(87, 149, 210, 0.3137254902);
	padding: 3px 5px;
}

.ent-item-left-2 {
	display: flex;
}

.ent-item-left-body-box {
	width: 25%;
}

.ent-item-left-body-box:nth-child(1) {
	width: 50%;
}

.ent-item-left-body-box.puls {
	width: 50%;
}

.ent-item-left-3 {
	width: 100%;
}

.ent-item-sp-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.ent-item-right {
	height: 196px;
	margin-left: auto;
	margin-right: auto;
	max-width: 300px;
	width: 100%;
}

.ent-item-right img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ent-item-pc-btns {
	display: none;
}

.e-btn-g {
	align-items: center;
	background: #fff;
	border: 2px solid #9fc238;
	border-radius: 15px;
	color: #9fc238;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	height: 35px;
	justify-content: center;
	width: 144px;
}

.e-btn-c {
	align-items: center;
	background: #ccc;
	border-radius: 15px;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	height: 35px;
	justify-content: center;
	width: 144px;
}

.ent-item-left-1 {
	align-items: stretch;
	display: flex;
	flex-direction: column;
}

.ent-item-left-2 {
	align-items: stretch;
	display: flex;
}

.ent-item-left-body-box {
	display: flex;
	flex-direction: column;
}

.ent-item-left-body {
	flex: 1;
}

.ent-item-left-body,
.ent-item-left-head {
	border: 1px solid #fff;
}

.ent {
	margin-bottom: 100px;
}

@media screen and (min-width: 768px) {

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1120px;
	padding-left: 30px;
	padding-right: 30px;
}

body {
	font-size: 17px;
	padding-bottom: 0;
}

.hidden-pc {
	display: none;
}

.hidden-sp {
	display: block;
}

.header {
	position: relative;
}

.header-box {
	gap: 30px;
	height: 160px;
}

.header__icon {
	width: 350px;
}

.header__right-box {
	align-items: end;
	display: flex;
	flex-direction: column;
	gap: 30px;
	height: 100%;
	justify-content: center;
}

.drawer {
	display: none;
}

.drawer-open {
	display: none;
}

.btm-btn {
	display: none;
}

.top-contact-btn {
	font-size: 20px;
	height: 300px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 70px;
	writing-mode: vertical-rl;
}

.top-contact-btn span {
	margin-bottom: 15px;
	margin-left: 10px;
	margin-right: 0;
	margin-top: 0;
	width: 28px;
}

.fv-dox {
	padding-top: 20px;
}

.fv-slid-box {
	padding-bottom: 0;
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 0;
	right: 6%;
	top: 0;
}

.fv-slid {
	width: 336px;
}

.fv-slid-track {
	animation: fv-slide-pc 25s linear infinite;
	flex-direction: column;
}

.slid-item {
	height: 240px;
	width: 336px;
}

.slid-item img {
	height: 240px;
	width: 336px;
}

.fv-text {
	display: block;
	height: 134px;
	position: absolute;
	right: 200px;
	top: 450px;
	width: 463px;
}

.footer {
	display: flex;
	gap: 100px;
	justify-content: space-between;
	padding: 40px 40px 20px 40px;
}

.section {
	margin-top: 150px;
}

.top-news-box {
	align-items: center;
	display: flex;
	justify-content: center;
}

.top-news-head {
	border-bottom: none;
	border-right: 3px solid #ccc;
	height: 150px;
	margin-left: 0;
	margin-right: 0;
}

.top-news-head-ja {
	font-size: 20px;
}

.top-news-head-en {
	font-size: 14px;
}

.top-news-body {
	margin-left: 30px;
	margin-top: 0;
}

.top-news-link {
	flex-direction: row;
	gap: 20px;
}

.top-news-date {
	font-size: 18px;
}

.top-news-title {
	font-size: 18px;
}

.top-item-sp {
	display: none;
}

.top-item-btn {
	font-size: 17px;
	height: 42px;
	width: 190px;
}

.top-item-pc {
	display: block;
	min-height: 600px;
}

.top-links {
	flex-direction: row;
	gap: 10px;
}

.top-links-link-img {
	max-width: 32%;
}

.top-btm-btn-link {
	font-size: 26px;
	height: 70px;
	max-width: 480px;
}

.top-btm-btn::after {
	height: 10px;
	top: 40%;
	width: 80px;
}

.top-btm-btn {
	font-size: 26px;
	height: 70px;
	max-width: 480px;
}

.page-head {
	padding-top: 0;
}

.page-head-ja span {
	font-size: 23px;
}

.page-head-ja {
	font-size: 50px;
}

button[type=submit] {
	min-width: 330px;
}

label {
	font-size: 18px;
}

input[type=text],
input[type=email],
textarea {
	font-size: 18px;
	padding: 16px;
}

button[type=submit] {
	border-radius: 22px;
	font-size: 18px;
	min-width: 220px;
	padding: 18px 26px;
}

.wpcf7 input[type=submit] {
	border-radius: 22px;
	font-size: 18px;
	min-width: 220px;
	padding: 18px 26px;
}

.contact-tel {
	max-width: 365px;
}

.news {
	padding-top: 0;
}

.news-links {
	max-width: 400px;
}

.news-link {
	flex-direction: row;
	font-size: 18px;
	gap: 20px;
}

.single-inner {
	display: flex;
	justify-content: space-between;
}

.single__main {
	flex-shrink: 0;
	width: 70%;
}

.single__title {
	font-size: 28px;
}

.single__date {
	font-size: 18px;
}

.single__content p {
	font-size: 18px;
}

.single__img {
	height: 366px;
}

.single-side {
	flex-shrink: 0;
	margin-top: 0;
	width: 23%;
}

.single-side.blog-side {
	margin-top: 50px;
}

.page-links {
	font-size: 28px;
}

.page-link {
	padding-left: 40px;
	padding-right: 40px;
}

.sec-head-ja {
	font-size: 40px;
}

.sec-head-en {
	font-size: 18px;
}

.yumeari-mid-head {
	font-size: 36px;
	height: 70px;
}

.yumeari-mid-body {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
	justify-content: space-between;
}

.yumeari-mid-item.item1 {
	display: flex;
	flex-direction: row;
	gap: 30px;
	max-width: 100%;
}

.yumeari-mid-item.item1 .yumeari-mid-bar {
	width: 320px;
}

.yumeari-mid-item.item2 {
	font-size: 17px;
	max-width: 100%;
	width: 100%;
}

.yumeari-mid-item {
	margin-bottom: 100px;
	max-width: 47%;
}

.yumeari-mid-title {
	font-size: 32px;
}

.yumeari-mid-bar {
	width: 260px;
}

.yumeari-mid-text {
	font-size: 17px;
}

.yumeari-guid-item {
	flex-direction: row;
}

.yumeari-guid-top {
	flex-shrink: 0;
	width: 400px;
}

.yumeari-fee-item1 img {
	max-width: 980px;
}

.yumeari-fee-item2 img {
	max-width: 528px;
}

.yumeari-fee-item3 img {
	max-width: 528px;
}

.yumeari-fee-item4 img {
	max-width: 640px;
}

.yumeari-access-map {
	height: 750px;
}

.over-his-top {
	font-size: 24px;
	height: 50px;
}

.matu-map-body {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
	justify-content: space-between;
	margin-top: 200px;
}

.matu-map-item {
	margin-bottom: 50px;
	max-width: 47%;
}

.matu-map-item-title {
	font-size: 26px;
}

.over-fee-item1 img {
	max-width: 980px;
}

.over-fee-item2 img {
	max-width: 700px;
}

.over-fee-item3 img {
	max-width: 700px;
}

.dome-fee-item1 img {
	max-width: 980px;
}

.download-title {
	font-size: 42px;
}

.download-flex {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

.download-block {
	width: 47%;
}

.download-head {
	font-size: 24px;
}

.download-item::after {
	height: 27px;
	width: 23px;
}

.download-item {
	font-size: 16px;
	height: 50px;
}

.group-hread h2 {
	font-size: 42px;
}

.g-mid-head {
	font-size: 25px;
}

.g-mid-item {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.g-mid-left {
	width: 60%;
}

.g-mid-left-title {
	font-size: 32px;
}

.g-mid-right {
	height: 250px;
	width: 38%;
}

.g-mid-right-link {
	font-size: 20px;
	height: 50px;
	left: 65%;
	width: 240px;
}

.ent-body {
	gap: 100px;
}

.ent-item-title {
	font-size: 32px;
	margin-bottom: 20px;
	width: 100%;
}

.ent-item {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0;
}

.ent-item-left {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	width: 730px;
}

.ent-item-left-1 {
	width: 40%;
}

.ent-item-left-body {
	display: flex;
	gap: 30px;
}

.ent-item-left-2 {
	width: 60%;
}

.ent-item-sp-btns {
	display: none;
}

.ent-item-pc-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 30px;
}

.e-btn-g {
	font-size: 20px;
	height: 50px;
	width: 233px;
}

.e-btn-c {
	font-size: 20px;
	height: 50px;
	width: 233px;
}

}

@media (min-width: 1024px) {

.wpcf7 input[type=submit] {
	min-width: 330px;
}

}

@media (max-width: 768px) {

.anchor-offset {
	scroll-margin-top: 80px;
}

}

@keyframes fv-slide-sp {

from {
	transform: translateX(0);
}

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

}

@keyframes fv-slide-pc {

from {
	transform: translateY(0);
}

to {
	transform: translateY(-50%);
}

}

