@charset "UTF-8";
/* CSS Document */
/*==================================================

container
=================================================*/
html {
	background: #FFF;
}
body {
	position: relative;
	left: 0;
}
/* sp menu setting */
.layer {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1002 !important;
}
body.open {
	width: 100%;
}
#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
/*==================================================

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

header {
	width: 100%;
	position: fixed;
	min-width: 100%;
	background-color: rgba(255, 255, 255, 0);
	top: 0;
	left: 0;
	z-index: 1003 !important;
	padding: 20px 0;
	/* animation */
	transition: all 0.3s;
}
#header-inner {
	width: 100%;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.headerbg {
	background-color: rgba(255, 255, 255, 1);
}
.headerbg #header-inner {
	margin-top: 0;
}
/* header PC */
#header-logo {
	width: 20%;
	max-width: 270px;
	position: absolute;
	font-size: clamp(1rem, 1.3vw, 1.3rem);
	line-height: 0;
	top: 50%;
	left: 5%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 5 !important;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#header-logo.re img {
	filter: grayscale(1) invert(1);
}
.headerbg #header-logo.re img {
	filter: none;
}
/* header img */
#header-logo img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0;
}
/* header SP */
.header-spmenu {
	width: 60px;
	height: 60px;
	display: none;
	cursor: pointer;
	position: relative;
	text-align: center;
	background-color: #00006a;
	margin-right: 3%;
	z-index: 2;
}
.open .header-spmenu {}
.header-spmenu > div {
	width: 32px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.header-spmenu > div span, .header-spmenu > div span::before, .header-spmenu > div span::after {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	background-color: #FFF;
	transform-origin: center center;
	z-index: 1;
	transition: all 0.3s;
}
.header-spmenu > div span {
	top: 50%;
	transform: translate(0, -50%);
}
.header-spmenu > div span::before {
	top: -12px;
}
.header-spmenu > div span::after {
	bottom: -12px;
}
.open .header-spmenu > div span {
	background-color: transparent;
}
.open .header-spmenu > div span::before {
	top: 0;
	transform: rotate(45deg);
}
.open .header-spmenu > div span::after {
	bottom: 0;
	transform: rotate(-45deg);
}
.header-spmenu img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/*==================================================

Navi
=================================================*/
/* header menu */
nav {
	width: 72%;
	max-width: 900px;
	position: relative;
	margin: 0 0 0 auto;
}
nav > ul {
	width: 100%;
	position: relative;
	display: flex;
	flex-flow: row wrap;
}
nav > ul > li {
	position: relative;
	flex: 1;
}

nav > ul > li > a {
	width: 100%;
	display: block;
	position: relative;
	color: #00006a;
	overflow: hidden;
	font-size: clamp(1rem, 1.2vw, 1.5rem);
	text-align: center;
	line-height: 140%;
	text-decoration: none;
	padding: min(10%, 20px) .5em;
}
nav > ul > li > a::before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: .2em;
	background-color: #0017a6;
	top: 0;
	left: 0;
	transform: translate(-110%, 0);
	z-index: 1;
	transition: all 0.5s;
}
nav > ul > li.contact > a {
	color: #FFF;
	background-color: #00006a;
}
@media (hover: hover) {
	nav > ul > li:hover {
		box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	}
	nav > ul > li:hover > a::before {
		transform: translate(0, 0);
	}
	nav > ul > li > a:hover {
		opacity: 1;
		color: #0017a6;
	}
	nav > ul > li:hover > a {
		color: #00006a;
		background-color: rgba(255, 255, 255, 1);
	}
}

nav > ul > li > a br {
	display: none;
}
nav > ul > li > ul {
	width: 240px;
	height: 0;
	overflow: hidden;
	position: absolute;
	visibility: hidden;
	text-align: center;
	border-radius: 0 5px 5px 5px;
	opacity: 0;
	background-color: rgba(255, 255, 255, 1);
	webkit-transition: all .2s ease;
	transition: all .2s ease;
	left: 0;
	padding: 0 5% 0;
	z-index: 1;
}
*::-ms-backdrop, nav > ul > li > ul {
	top: 125px;
}
/* サブメニュー表示設定 */
nav > ul > li:hover ul {
	height: initial;
	height: auto;
	visibility: visible;
	padding: 10px 5% 10px;
	opacity: 1;
	z-index: 2;
}
/* サブメニュー詳細設定 */
nav > ul > li > ul li {
	width: 100%;
}
nav > ul > li > ul li a {
	width: 100%;
	display: block;
	position: relative;
	font-size: clamp(1rem, 1.2vw, 1.5rem);
	color: #00006a;
	text-align: left;
	line-height: 140%;
	text-decoration: none;
	border-bottom: 1px solid #EEE;
	padding: 10px 0 10px .5em;
}
nav > ul > li > ul li a::before {
	content: "-";
	display: inline-block;
	color: #ff7e00;
	vertical-align: middle;
	margin-right: .2em;
}
nav > ul > li > ul li:nth-last-of-type(1) a {
	border-bottom: none;
}
nav > ul > li > ul li p {
	width: 100%;
	display: block;
	font-size: clamp(1rem, 1.4vw, 1.4rem);
	color: #000;
	text-align: left;
	line-height: 140%;
	text-decoration: none;
	background-color: #EEE;
	padding: 10px 0 10px 1em;
}

@media (hover: hover) {
	nav > ul > li > ul li a:hover {
		opacity: 1;
		color: #0017a6;
		background-color: #EFEFEF;
	}
	nav > ul > li > ul li a:hover img {
		opacity: .5;
	}
}

.close-button {
	width: 220px;
	cursor: pointer;
	color: #FFF;
	text-align: center;
	font-size: clamp(1.4rem, 1.6vw, 1.8rem);
	line-height: 160%;
	background-color: #333;
	border-radius: 24px;
	margin: 20px auto 20px;
	padding: 10px 1em;
	
	transition: all 0.3s;
}
.pc-only {
	display: block;
}
.sp-only {
	display: none;
}
/*==================================================

contents
=================================================*/

#contents {
	width: 100%;
	position: relative;
	margin: 0 auto min(12%, 120px);
	z-index: 5 !important;
}
#contents-page {
	width: 100%;
	position: relative;
	margin: min(8%, 100px) auto 0;
	z-index: 5 !important;
}
.contents-inner {
	width: 100%;
	position: relative;
	margin: min(10%, 100px) auto min(18%, 200px);
}
.section-title {
	font-size: clamp(4rem, 8vw, 10rem);
	line-height: 130%;
}
.section-title span {
	width: 100%;
	display: block;
	font-size: 30%;
	text-align: center;
	line-height: 130%;
}
.section-title-l {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	align-items: center; 
	color: #00006a;
	text-align: center;
	margin-bottom: 1.5em;
}
.section-title-l::before {
	content: "";
	flex: 1;
	height: 4px;
	background: #00006a;
}
.section-title-l::after {
	content: "";
	flex: 1;
	height: 4px;
	background: #ff7e00;
}
.section-title-l span {
	display: inline-block;
	padding: 0 2em;
}

.section-bottom {
	width: 100%;
	aspect-ratio: 1 / .06;
	position: absolute;
	background-image: url("../../images/bottom_wave.svg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.opt-load {
	opacity: 0;
	transition: all 0.5s;
}
.load .opt-load {
	opacity: 1;
}

.fade-up {}
.fade-in {}
.fade-left {}
.fade-right {}

.masked-image {
	width: 100%;
	clip-path: inset(0 0 0 0);
}

.youtube {
	width: 100%;
	position: relative;
}
.youtube::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.youtube iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}

.anchor-wrap {
	position: relative;
}
.anchor-item {
	width: 1px;
	height: 1px;
	position: absolute;
	top: -160px;
	left: 0;
}

/* 印刷時 */
@media print {
	header {
		position: absolute;
	}
}
/*==================================================

button
=================================================*/
/* ボタン */
.button {
	width: 100%;
	max-width: 325px;
	display: block;
	position: relative;
	cursor: pointer;
	text-align: center;
	font-size: clamp(1.4rem, 1.6vw, 1.8rem);
	line-height: 160%;
	font-weight: 600;
	color: #FFF;
	background-color: #ff7e00;
	border-radius: 60px;
	text-decoration: none;
	margin: min(4%, 40px) auto 0;
	padding: .9em 1em;
	overflow: hidden;
	/* animation */
	transition: all 0.3s;
	z-index: 1;
}
.button.bl {
	background-color: #000099;
}
.button span {
	display: block;
	position: relative;
	z-index: 2;
}
.button::after {
	content: "";
	display: block;
	position: absolute;
	width: 12px;
	aspect-ratio: .9 / 1;
	background-color: #00006a;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	right: 0;
	transform: translate(-150%, -50%);
	z-index: 2;
	/* animation */
	transition: all 0.3s;
}
.button.bl::after {
	background-color: #ff7e00;
}
.button::before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000099;
	top: 0;
	left: -100%;
	transition: all 0.2s;
	z-index: 1;
}
.button.bl::before {
	background-color: #FFF;
}
.button span {
	display: block;
	position: relative;
	z-index: 2;
}

@media (hover: hover) {
	.button:hover {
		opacity: 1;
		background-color: #FFF;
	}
	.button.bl:hover {
		color: #000099;
	}
	.button:hover::before {
		left: 0;
	}
	.button:hover::after {
		background-color: #ff7e00;
	}
}


[class^="button"] {
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
/*==================================================

map
=================================================*/
.map {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
.map iframe, .map object, .map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*==================================================

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

.data-t-style {
    width: 100%;
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
    line-height: 160%;
}
.data-t-style tr:nth-of-type(odd) {
    background-color: #ebebeb;
}
.data-t-style th {
    width: 12em;
	position: relative;
    color: #000;
	text-align: center;
	font-weight: normal;
	border-bottom: 2px solid #00006a;
	padding: 1em 2em;
}
.data-t-style.add th {
	width: 15em;
}
.data-t-style td {
	text-align: left;
	border-bottom: 2px solid #ff9000;
	padding: 1em 2em;
}
.data-t-style td span {
	display: inline-block;
	color: #FFF;
	background-color: #00006a;
	margin-bottom: .5em;
	padding: .5em 1em;
}

.paging {
	display: table;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin: 60px auto 0;
}
.paging li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border-left: 1px solid #FFF;
	background-color: #EEE;
}
.paging li:nth-of-type(1) {
	background-color: #999;
}
.paging li:nth-last-of-type(1) {
	background-color: #999;
}
.paging li a {
	display: block;
	color: #999;
	text-decoration: none;
	padding: .5em 1em;
}
.paging li:nth-of-type(1) a {
	color: #FFF;
}
.paging li:nth-last-of-type(1) a {
	color: #FFF;
}
.paging li a.active {
	color: #FFF;
	background-color: #2864c2;
}
.paging li a:hover {
	color: #FFF;
	background-color: #2864c2;
}
/*==================================================

footer
=================================================*/
.pagetop {
	width: 150px;
	height: 45px;
	position: fixed;
	right: -150px;
	bottom: 180px;
	z-index: 1001 !important;
	/* animation */
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.pagetop-visible {
	right: 0;
}
#footer-pagetop {
	width: 100%;
	max-width: 49px;
	text-align: center;
	margin: 5% auto 0;
}
footer {
	width: 100%;
	position: relative;
	background-color: #000;
	background-image: url("../../images/footer_bg.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 6 !important;
}
footer::before {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url("../../images/footer_line.png");
	background-position: center top 120%;
	background-repeat: no-repeat;
	background-size: contain;
	top: 0;
	left: 0;
	z-index: 1;
}
footer .footer-bottom {
	width: 90%;
	max-width: 1320px;
	position: relative;
	margin: 0 auto;
	padding: clamp(80px, 12vw, 120px) 0 min(10%, 100px);
	z-index: 8;
}
footer .footer-bottom .footer-button {
	width: 80%;
	max-width: 820px;
	position: absolute;
	display: flex;
	flex-flow: row wrap;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}
footer .footer-bottom .footer-button li {
	width: 50%;
}
footer .footer-bottom .footer-button li a {
	width: 100%;
	display: block;
	position: relative;
	color: #FFF;
	font-size: clamp(1.4rem, 2.4vw, 2.4rem);
	text-align: center;
	text-decoration: none;
	border: 4px solid #ff7e00;
	background-color: #ff7e00;
	border-radius: 10px 0 0 10px;
	padding: 1.1em 1em;
}
@media (hover: hover) {
	footer .footer-bottom .footer-button li a:hover {
		color: #ff7e00;
		background-color: #FFF!important;
		opacity: 1;
	}
	footer .footer-bottom .footer-button li:nth-of-type(even) a:hover {
		color: #00006a;
	}
}

footer .footer-bottom .footer-button li:nth-of-type(even) a {
	border: 4px solid #00006a;
	background-color: #00006a;
	border-radius: 0 10px 10px 0;
}

footer .footer-bottom .footer-button li a::after {
	content: "";
	display: block;
	position: absolute;
	width: .6em;
	aspect-ratio: .9 / 1;
	background-color: #00006a;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	right: 0;
	transform: translate(clamp(-.8em, -1vw, -.4em), -50%);
	z-index: 2;
	/* animation */
	transition: all 0.3s;
}
footer .footer-bottom .footer-button li:nth-of-type(even) a::after {
	background-color: #ff7e00;
}

footer .footer-bottom img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
footer .footer-bottom .inner {
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0 auto;
}
footer .footer-bottom .inner .footer-logo {
	width: 30%;
	max-width: 270px;
	color: #FFF;
}
footer .footer-bottom .inner .footer-logo h1 {
	line-height: 60%;
}
footer .footer-bottom .inner .footer-logo h1 img {
	max-width: 100%;
}
footer .footer-bottom .inner .footer-logo p {
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	line-height: 180%;
	margin: 2em 0 1em;
}
footer .footer-bottom .inner .footer-logo p span {
	display: inline-block;
}
footer .footer-bottom .inner .footer-logo .button {
	margin-top: 2em;
}

footer .footer-bottom .inner .footer-menu {
	width: 65%;
	max-width: 800px;
	display: flex;
	flex-flow: row wrap;
	gap: 2em; 
	margin: 0 0 0 auto;
}

footer .footer-bottom .inner .footer-menu li a {
	display: block;
	text-decoration: none;
}
footer .footer-bottom .inner .footer-menu > ul {
	
}
footer .footer-bottom .inner .footer-menu > ul > li {
	font-size: clamp(1.4rem, 1.6vw, 1.6rem);
	line-height: 140%;
}
footer .footer-bottom .inner .footer-menu > ul > li > a {
	width: 100%;
	display: block;
	position: relative;
	color: #FFF!important;
	padding-bottom: .5em;
}
footer .footer-bottom .inner .footer-menu li a {
	display: block;
	text-decoration: none;
}
footer .footer-bottom .inner .footer-menu li ul li a {
	display: block;
	position: relative;
	font-size: clamp(1.2rem, 1.4vw, 1.4rem);
	color: #FFF;
	line-height: 140%;
	margin-top: 8px;
	padding-left: .6em;
}
footer .footer-bottom .inner .footer-menu li ul li a::before {
	content: "-";
	display: inline-block;
	position: absolute;
	color: #ff7e00;
	top: 0;
	left: 0;
}
@media (hover: hover) {
	footer .footer-bottom .inner .footer-menu li ul li a:hover {
		opacity: 1;
		color: #ff7e00;
	}
}
footer .footer-bottom #copyright {
	width: 90%;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end; 
	margin: min(10%, 100px) auto 0;
}
footer .footer-bottom #copyright p {
	width: 100%;
	color: #FFF;
	font-size: clamp(1rem, 1.2vw, 1.4rem);
	line-height: 160%;
}
footer .footer-bottom #copyright p a {
	display: inline-block;
	color: #CCC;
	text-decoration: none;
	font-size: clamp(1rem, 1.2vw, 1.2rem);
	margin-top: .5em;
}
footer .footer-bottom #copyright p:nth-last-of-type(1) {
	text-align: right;
}

/*==================================================

size m
=================================================*/


@media only screen and (min-width:1px) and (max-width: 768px) {
	#wrapper {
		width: 100%;
		min-width: 100%;
	}
	/*==================================================
	
	header
	=================================================*/
	header {
		width: 100%;
		min-width: 100%;
		position: fixed;
		background-color: rgba(255, 255, 255, 1);
		top: 0;
		padding: 0;
	}
	.side-item {
		display: none;
	}
	.side-navi {
		display: none;
	}
	#header-inner {
		width: 100%;
		position: relative;
		margin: 0 auto;
		padding: 0;
	}
	.headerbg #header-inner {
		padding: 0;
	}
	#header-logo {
		width: 55%;
		max-width: 300px;
		position: absolute;
		text-align: left;
		line-height: 100%;
		top: 50%;
		left: 5%;
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	.headerbg {
		background-color: rgba(255, 255, 255, 1);
	}
	.headerbg #header-logo {
		width: 55%;
		max-width: 300px;
		position: absolute;
	}
	#header-logo.re img {
		filter: none;
	}
	#header-logo img {
		width: 100%;
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}
	.header-spmenu {
		display: block;
		position: relative;
		text-align: center;
		cursor: pointer;
		margin: 0 0 0 auto;
	}
	.open .header-spmenu {
		margin: 0 0 0 auto;
	}
	.open .header-spmenu::after {
		content: " ";
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 1;
	}
	nav {
		/* モバイルメニュー幅 */
		width: 100%;
		height: 100dvh;
		position: fixed;
		top: 60px;
		right: -110%;
		background-color: #FFF;
		margin: 0;
		padding: 0;
		z-index: 1003 !important;
		/* animation */
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}
	.open nav {
		right: 0;
	}
	.open nav > ul {
		width: 100%;
		height: 100%;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
	}
	.open nav > ul::-webkit-scrollbar {
		width: 5px;
	}
	.open nav > ul::-webkit-scrollbar-track {
		border-radius: 0;
		background-color: #999;
	}
	.open nav > ul::-webkit-scrollbar-thumb {
		background-color: #666;
		border-radius: 0;
	}
	nav > ul {
		width: 100%;
		max-width: 100%;
		height: 100%;
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 30px 5%;
	}
	nav > ul::after{
		content:"";
		display:block;
		height: 160px;
	}
	nav > ul > li {
		width: 100%;
		display: block;
		flex: none;
		text-align: center;
		background-image: none;
		border-left: none;
		margin: 10px 0 0;
		padding: 0;
	}
	nav > ul > li:nth-of-type(1) {
		border-left: none;
	}
	nav > ul > li > a {
		width: 100%;
		max-width: 480px;
		font-size: 1.6rem;
		line-height: 180%;
		text-align: center;
		color: #FFF;
		text-decoration: none;
		background-color: #00006a;
		border-left: 5px solid #ff7e00;
		margin: 0 auto;
		padding: .8em 1em;
	}
	nav > ul > li > a::before {
		display: none;
	}
	nav > ul > li:hover ul {
		height: initial;
		height: auto;
		visibility: visible;
		padding: 0;
		opacity: 1;
		z-index: 2;
	}
	@media (hover: hover) {
		nav > ul > li:hover {
			box-shadow: none;
		}
		nav > ul > li > a:hover {
			opacity: 1;
			color: #FFF;
		}
		nav > ul > li:hover > a {
			color: #FFF;
			background-color: #00006a;
		}
	}
	nav > ul > li:nth-of-type(1) > a {
		border-top: none;
	}
	nav > ul > li > a br {
		display: none;
	}
	nav > ul > li > ul {
		width: 100%;
		max-width: 480px;
		height: initial;
		height: auto;
		display: flex;
		flex-flow: row wrap;
		position: relative;
		visibility: visible;
		opacity: 1;
		/*border-top: 1px solid #CCC;*/
		background-color: transparent;
		background-image: none;
		border-radius: 0;
		margin: 0 auto;
		padding: .5em 0;
	}
	/* サブメニュー詳細設定 */
	nav > ul > li:hover ul {
		height: initial;
		height: auto;
		visibility: visible;
		padding: .5em 0;
		opacity: 1;
		z-index: 2;
	}
	nav > ul > li > ul li {
		width: initial;
		width: auto;
		width: 100%;
		display: block;
		margin: 0;
		padding: 0;
	}
	nav > ul > li > ul li a {
		width: 100%;
		display: block;
		font-size: 1.4rem;
		color: #000;
		text-align: left;
		text-decoration: none;
		background-position: left .8em center;
		background-size: 14px;
		border: none;
		border-bottom: 1px solid #DDD;
		padding: .5em 1em;
	}
	nav > ul > li > ul li p {
		width: 100%;
		display: block;
		font-size: 1.4rem;
		color: #000;
		text-align: left;
		padding: .5em 2.3em;
	}
	nav > ul > li > ul li a br {
		display: none;
	}
	nav > ul > li > ul li a:hover {
		background-color: transparent;
	}
	
	/*  img */
	nav > ul > li > ul li a img {
		display: none;
	}
	.header-option {
		display: none;
	}
	.p-navi ul {
		width: 100%;
	}
	.p-navi ul li {
		font-size: 1.1rem;
		padding: 0 1.5em 0 .5em;
	}
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
	/*==================================================
	
	contents
	==================================================*/
	
	#contents {
		margin: 10px auto 10%;
	}
	#contents-page {
		margin: 60px auto 0;
	}
	.type-menu h2 {
		margin: 0 auto 2%;
	}
	.type-menu li a::after {
		margin: 5% auto 0;
		transition: all 0.3s;
	}
	
	.anchor-item {
		top: -80px;
	}
	.paging {
		margin: 8% auto 0;
	}
	.paging li a {
		padding: .4em .8em;
	}
	
	/*==================================================
	
	button
	==================================================*/
	
	.button {
		max-width: 280px;
		text-align: center;
		padding: .8em 1em;
	}
	.button::after {
		width: .7em;
	}
	
	/*==================================================
	
	map
	==================================================*/
	.map {
		width: 100%;
		height: 350px;
	}
	/*==================================================
	
	table
	==================================================*/
	
	.data-t-style {
		width: 100%;
		border: none;
	}
	.data-t-style th {
		width: 100%;
		display: block;
		border: none;
		background-color: #DDD;
		padding: .8em 1em;
	}
	.data-t-style.add th {
		width: 100%;
	}
	.data-t-style th br {
		display: none;
	}
	.data-t-style td {
		width: 100%;
		display: block;
		padding: .8em 1em;
		border: none;
	}
	.data-t-style tr:nth-of-type(odd) {
		background-color: transparent;
	}
	
	/*==================================================
	
	footer
	=================================================*/
	.pagetop {
		bottom: 100px;
	}
	.pagetop-visible {
		right: -100px;
	}
	footer {
		width: 100%;
		position: relative;
		z-index: 6 !important;
	}
	footer::before {
		background-position: center bottom 10%;
		background-repeat: no-repeat;
		background-size: 200%;
		top: 0;
		left: 0;
		z-index: 1;
	}
	footer .footer-bottom .footer-button {
		width: 100%;
	}
	footer .footer-bottom .footer-button li a {
		border: 2px solid #ff7e00;
		padding: .8em 1em;
	}
	footer .footer-bottom .footer-button li:nth-of-type(even) a {
		border: 2px solid #00006a;
	}
	
	footer .footer-bottom .inner {
		width: 90%;
		max-width: 1200px;
		display: block;
		margin: 0 auto;
	}
	footer .footer-bottom .inner .footer-logo {
		width: 100%;
		max-width: 270px;
		text-align: center;
		margin: 0 auto;
	}
	footer .footer-bottom .inner .footer-menu {
		gap: 0;
	}
	footer .footer-bottom .inner .footer-menu > ul {
		width: 50%;
		border-bottom: 1px solid #999;
		padding-bottom: 1em;
		margin-bottom: 5%;
	}
	footer .footer-bottom .inner .footer-menu > ul:nth-last-of-type(1) {
		border-bottom: none;
	}
	footer .footer-bottom .inner .footer-menu {
		width: 100%;
		max-width: 400px;
		margin: 0 auto 0;
	}
	footer .footer-bottom .inner .footer-menu > ul > li > a {
		padding: 0 0 .5em;
	}
	footer .footer-bottom .inner .footer-menu li ul li a {
		margin-top: 5px;
	}
	footer .footer-bottom #copyright {
		display: block;
	}
	footer .footer-bottom #copyright p {
		width: 100%;
		text-align: center;
	}
	footer .footer-bottom #copyright p:nth-last-of-type(1) {
		width: 100%;
		text-align: center;
		margin-top: 1em;
	}
}
/*==================================================

size s
==================================================*/
@media only screen and (min-width:1px) and (max-width: 568px) {
	/*==================================================
	
	header
	==================================================*/
	/*==================================================
	
	Navi
	==================================================*/
	/*==================================================
	
	contents
	==================================================*/
	/*==================================================
	
	footer
	==================================================*/
}
@media only screen and (min-width:1px) and (max-width: 480px) {
	/*==================================================
	
	header
	==================================================*/
	/*==================================================
	
	Navi
	==================================================*/
	/*==================================================
	
	contents
	==================================================*/
	/*==================================================
	
	table
	==================================================*/
	/*==================================================
	
	footer
	==================================================*/
}