@charset "utf-8";

/* -----------------------------------------------------------

common

----------------------------------------------------------- */

/* Font */
@font-face {
	font-family: 'MainFont';
	font-display: swap;
	src: url('../font/NotoSansJP-VariableFont_wght.woff2') format('woff2'),
	('../font/NotoSansJP-VariableFont_wght.ttf') format('truetype');
}

:root {
	--main-color: #00B6C7;
	--main-color2: #0A5282;
	--main-color-rgb: 0, 182, 199;
	--main-color2-rgb: 10, 82, 130;
	--light-main-color: #D4FBFF;
	--dark-main-color: #008591;
	--dark-main-color2: #07385A;
	--text-color: #5E5E5E;
	--danger-color: #d9453d;
	--danger-color2: #a8020f;
}

/* Box sizing rules */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family: 'MainFont', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-color);
}

/* images */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-start: 0;
}

@media (any-hover: hover) {
	a img:hover {
		opacity: 0.8;
	}
}

@media(min-width:992px){
	.pc_none{
		display: none;
	}
}
@media(max-width:991.98px){
	.sp_none{
		display: none;
	}
}

.inner{
	max-width: calc(1000px + 17vw);
	padding: 0 8.5vw;
	margin: 0 auto;
}

/* -----------------------------------------------------------

Colors

----------------------------------------------------------- */
.text-main{ color: var(--main-color);}
.text-dark-main{ color: var(--dark-main-color);}
.text-red{ color: #DE0000;}

/* -----------------------------------------------------------

categorys

----------------------------------------------------------- */
.category_jh, .category_hig, .category_jun, .category_kin, .category_ele{
	display: inline-block;
  width: 4.85em;
  font-weight: 500;
  font-size: .9rem;
  padding: 0 .4em;
	margin-left: .85rem;
  text-align: center;
  border-radius: 4px;
  color: #fff;
}

.category_hig {
	letter-spacing: -0.09em;
}

.category_jh {background-image: linear-gradient(60deg, #3cb878 49%, #2c99ca 50%);}

.category_hig{ background: #2c99ca;}
.category_jun{ background: #3cb878;}
.category_ele{ background: #ffa500;}
.category_kin{ background: #ff7979;}

@media (max-width: 767px) {
	.category_jh, .category_hig, .category_jun, .category_kin, .category_ele{
		font-size: .75rem;
	}
}

/* -----------------------------------------------------------

heading

----------------------------------------------------------- */

.h1, .h2 .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	letter-spacing: .04em
}

h5, .h5 { font-size: clamp(1.0625rem, 0.9943rem + 0.3409vw, 1.25rem); }
h4, .h4 { font-size: clamp(1.1875rem, 1.1193rem + 0.3409vw, 1.375rem); }
h3, .h3 { font-size: clamp(1.25rem, 1.1591rem + 0.4545vw, 1.5rem); }
h2, .h2 { font-size: clamp(1.5rem, 1.4091rem + 0.4545vw, 1.75rem); }
h1, .h1 { font-size: clamp(1.625rem, 1.5341rem + 0.4545vw, 1.875rem); }

.heading-01{
	text-align: center;
	margin-bottom: 1.25em;
}

.heading-01 span{
	position: relative;
	display: inline-block;
	border-bottom: 5px solid var(--main-color);
	padding: .3em .5em;
	font-size: calc(1.325rem + .3vw);
	color: var(--main-color2);
}

.heading-01 span::after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 50%;
	height: 5px;
	background-color: var(--main-color2);
}

.heading-01 p{
	margin:.8rem 0 0;
	font-size: 1rem;
}

@media (max-width: 767px) {
	.heading-01 span{
		font-size: calc(1.325rem + .9vw);
	}
}

.heading-01_01 {
	text-align: center;
	margin-bottom: 1.25em;
}

.heading-01_01 span{
	position: relative;
	display: inline-block;
	border-bottom: 5px solid var(--danger-color);
	padding: .3em .5em;
	font-size: calc(1.325rem + .3vw);
	color: var(--danger-color2);
}

.heading-01_01 span::after{
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 50%;
	height: 5px;
	background-color: var(--danger-color2);
}

.heading-01_01 p{
	margin:.8rem 0 0;
	font-size: 1rem;
}

@media (max-width: 767px) {
	.heading-01_01 span{
		font-size: calc(1.325rem + .9vw);
	}
}

.heading-02{
	position: relative;
	background-color: #f9f8f8;
	padding: .35em .5em .35em 1em;
	box-shadow: 2px 1px 4px rgb(0 0 0 / .2);
}

.heading-02::after{
	position: absolute;
	top: 20%;
	left: .4em;
	width: 5px;
	height: 60%;
	content: '';
	border-radius: 5px;
	background: var(--main-color);
}

.heading-03{
	padding: .3em 0 .2em .85em;
	border-bottom: 2px solid var(--main-color);
	position: relative;
}

.heading-03::before {
	position: absolute;
	top: 0;
	left: .3em;
	transform: rotate(55deg);
	height: .425em;
	width: .475em;
	background: var(--main-color);
	content: '';
}

.heading-03::after {
	position: absolute;
	transform: rotate(15deg);
	top: .6em;
	left: 0;
	height: .325em;
	width: .35em;
	background: var(--main-color);
	content: '';
}

.heading-04{
	padding: .3em 0 .4em 1.3em;
	position: relative;
}

.heading-04:before{
	position: absolute;
	content: "";
	left: 0;
	width: .95em;
	height: 1em;
	border-radius: 50%;
	border: .2em solid var(--main-color);
	top: .5em;
}

.heading-05{
  background-image: linear-gradient(var(--main-color) 50%, var(--light-main-color) 50%);
  background-size: 8px 100%;
  background-repeat: no-repeat;
  padding: .3em 0 .3em 1em;
}

.heading-06{
	padding:.3em 0 .3em .8em;
	border-bottom: 4px dotted var(--light-main-color);
	position: relative;
}

.heading-06::before {
	content: "";
	position: absolute;
	top: 50%; 
	left: 0;
	transform: translateY(-50%);
	border: .3em solid transparent;
	border-left: .5em solid var(--main-color);
}

/* -----------------------------------------------------------

list

----------------------------------------------------------- */

.btn-list-horizon{
	list-style: none;
	margin-bottom: 1.8rem;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.btn-list-vertical{
	list-style: none;
	margin-bottom: 1.8rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.btn-list-vertical li{
	display: flex;
	justify-content: center;
}

.list_style-01, .list_style-02, .list_style-03{
	list-style: none;
	padding-left: 1.5em;
}

.list_style-01 > li::before{
	display: inline-block;
	background-color: var(--main-color);
	position: relative;
	content: '';
	width: .5em;
	height: .5em;
	top: -.15em;
	border-radius: 50%;
	margin-left: -1.3em;
	margin-right: .8em;
}

.list_style-02 > li::before{
	display: inline-block;
	background-color: var(--main-color);
	position: relative;
	content: '';
	width: .9em;
	height: .9em;
	top: .1em;
	margin-right: .6em;
	margin-left: -1.5em;
}

.list_style-03 > li::before{
	display: inline-block;
	border: 2px solid var(--main-color);
	content: '';
	width: .8em;
	height: .8em;
	margin-left: -1.5em;
	margin-right: .7em;
	box-shadow: .2em -.2em var(--light-main-color);
	transform: rotate(45deg);
}

.list_style-04{
	list-style: none;
	padding: 0;
}

.list_style-04 > li{
	padding: .4em 0 .5em .7em;
	margin: .5em 0;
	border-bottom: 1px dashed #aaa;
	border-left: 5px solid var(--main-color);
}

.caution{
	list-style: none;
	padding: 0;
}

.caution > li{
	text-indent: -1em;
	padding-left: 1em;
}

.caution > li::before{
	counter-increment: caution;
	content: "※";
}

.num_list_style-01, .num_list_style-02, .num_list_style-03, .num_list_style-04{
	list-style: none;
	counter-reset: number;
	padding: 0;
}

.num_list_style-01 > li, .num_list_style-02 > li, .num_list_style-03 > li{
	position: relative;
	padding-left: 2em;
	margin-bottom: .2em;
}

.num_list_style-04 > li{
	list-style: none !important;
	position: relative;
	border-bottom: 1px dashed var(--main-color);
	padding: .4em 0 .4em 2em;
}

.num_list_style-04 > li:first-child{
	border-top: 1px dashed var(--main-color);
}

.num_list_style-01 > li::before {
	counter-increment: number;
	content: '(' counter(number) ')';
	letter-spacing: .1em;
	position: absolute;
	left: 0;
}

.num_list_style-02 > li::before, .num_list_style-03 > li::before, .num_list_style-04 > li::before {
	counter-increment: number;
	content: counter(number);
	position: absolute;
	top: .1em;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	text-align: center;
	line-height: 1.5;
}

.num_list_style-02 > li::before {
	border: 1px solid var(--main-color);
	box-shadow: .2em .2em var(--light-main-color);
}

.num_list_style-03 > li::before {
	background-color: var(--main-color);
	color: #fff;
	border-radius: 50%;
}

.num_list_style-04 > li::before {
	background-color: var(--main-color);
	color: #fff;
	top: .5em;
}

/* -----------------------------------------------------------

Buttons

----------------------------------------------------------- */

.btn-01{
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--main-color);
	color: #fff;
	position: relative;
	padding: .5rem 2.5rem .5rem .5rem;
	text-decoration: none;
	width: 220px;
	line-height: 1.3;
}

.btn-01::after{
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	background-image: url("../images/arrow-circle-fill.svg");
	background-size: cover;
	position: absolute;
	right: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
}

@media (any-hover: hover) {
	.btn-01:hover {
		background: var(--dark-main-color);
	}
}

.btn-main {
  --bs-btn-color:#fff;
  --bs-btn-bg: var(--main-color);
  --bs-btn-border-color: var(--main-color);
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg: var(--dark-main-color);
  --bs-btn-hover-border-color: var(--dark-main-color);
  --bs-btn-focus-shadow-rgb: var(--main-color-rgb);
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg: var(--dark-main-color);
  --bs-btn-active-border-color: var(--dark-main-color);
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#fff;
  --bs-btn-disabled-bg: var(--main-color);
  --bs-btn-disabled-border-color: var(--main-color)
}

.btn-main2 {
  --bs-btn-color:#fff;
  --bs-btn-bg: var(--main-color2);
  --bs-btn-border-color: var(--main-color2);
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg: var(--dark-main-color2);
  --bs-btn-hover-border-color: var(--dark-main-color2);
  --bs-btn-focus-shadow-rgb: var(--main-color2-rgb);
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg: var(--dark-main-color2);
  --bs-btn-active-border-color: var(--dark-main-color2);
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#fff;
  --bs-btn-disabled-bg: var(--main-color2);
  --bs-btn-disabled-border-color: var(--main-color2)
}

.btn-outline-main {
  --bs-btn-color: var(--dark-main-color);
  --bs-btn-border-color: var(--dark-main-color);
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg: var(--dark-main-color);
  --bs-btn-hover-border-color: var(--dark-main-color);
  --bs-btn-focus-shadow-rgb: var(--main-color-rgb);
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg: var(--dark-main-color);
  --bs-btn-active-border-color: var(--dark-main-color);
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--dark-main-color);
  --bs-btn-disabled-bg:transparent;
  --bs-btn-disabled-border-color: var(--dark-main-color);
  --bs-gradient:none;
}

.arrow-right, .arrow-right-main{
	padding-right: 1.5em;
	position: relative;
	text-align: left;
}

.arrow-right::after, .arrow-right-main::after{
	display: inline-block;
	content: "";
	width: .7em;
	height: .7em;
	border-radius: 2px;
	transform: rotate(-45deg);
	position: absolute;
	right: .6em;
	top: calc(50% - .35em);
}

.arrow-right::after{
	border-right: 3px solid #fff; 
	border-bottom: 3px solid #fff;
}
.arrow-right-main::after{
	border-right: 3px solid var(--main-color); 
	border-bottom: 3px solid var(--main-color);
}

/* -----------------------------------------------------------

Tables

----------------------------------------------------------- */
.table_style-01{
	width: 100%;
}

.table_style-01 th, .table_style-01 td,
.table_style-02 th, .table_style-02 td{
	background: #fff;
	border: 1px solid #999;
	padding: .3em .5em;
}

.table_style-01 th, .table_style-02 th{
	background-color: var(--light-main-color);
}

@media (max-width: 767px) {
	.table_style-01{
		border-bottom: 1px solid #999;
	}
	.table_style-01 th, .table_style-01 td{
		display: block;
		width: 100%;
		border-bottom: none;
	}
}

/* -----------------------------------------------------------

Background

----------------------------------------------------------- */
.bg_style-01 {background-color: var(--light-main-color);}

.bg_style-02 {background-color: var(--main-color);}

.bg_style-03 {background-image: repeating-linear-gradient(-45deg, var(--light-main-color), var(--light-main-color) 3px, #fff 3px, #fff 6px);}

.bg_style-04{
	background-color: #E2E2E2;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 100 100'%3E%3Crect x='0' y='0' width='98' height='98' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

/* -----------------------------------------------------------

Box

----------------------------------------------------------- */
.box_style-01{
	padding: .7em 1em;
	border-left: solid 5px var(--main-color);
	background-color: #F9F8F8;
	box-shadow: 2px 1px 4px rgb(0 0 0 / .2);
	margin-bottom: 1em;
}

.box_style-02{
	padding: .7em 1em;
	border: 5px solid #eee;
	background-color: #fff;
	position: relative;
	margin-bottom: 1em;
}

.box_style-02::before{
	border-top: 5px solid var(--main-color);
	border-left: 5px solid var(--main-color);
	content: '';
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	width: 20px;
	height: 20px;
	z-index: 1;
}

.box_style-03{
	--border-color: black;
	padding: .7em 1em;
	position: relative;
	margin:0 .5em 1em;
}

.box_style-03::before,
.box_style-03::after {
	content: "";
	height: 100%;
	width: 0.75em;
	position: absolute;
	bottom: 0;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.box_style-03::before {
	border-left: 1px solid var(--border-color);
	left: 0;
}

.box_style-03::after {
	border-right: 1px solid var(--border-color);
	right: 0;
}

.box_style-04{
	margin-bottom: 1em;
	border: 2px solid var(--main-color);
}

.box_style-05{
	margin-bottom: 1em;
	border: 2px solid #DE0000;
}

.box_style-04 .box-title,
.box_style-05 .box-title{
	background-color: var(--main-color);
	color: #fff;
	padding: .3em 1em;
	text-align: center;
	font-weight: bold;
}

.box_style-05 .box-title{
	background-color: #DE0000;
}

.box_style-04 .box-content,
.box_style-05 .box-content{
	padding: .5em 1em;
	background: #fff;
}

.contact-box{
	display: flex;
  flex-wrap: wrap;
	border: 5px solid #eee;
	line-height: 1.4;
	margin: 3rem 0 0;
	position: relative;
}

.contact-box::before{
	border-top: 5px solid var(--main-color);
	border-left: 5px solid var(--main-color);
	content: '';
	display: block;
	position: absolute;
	top: -5px;
	left: -5px;
	width: 20px;
	height: 20px;
	z-index: 1;
}

.contact-box dt{
	width: 15rem;
	background: #f8f8f8;
	text-align: center;
	padding: .7em;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-box dd{
	margin: 0;
  width: calc(100% - 15rem);
  padding: .7em 1.2rem;
}

.contact-box dd .tel{
	font-size: 1.5rem;
	font-weight: bold;
}

@media (max-width: 767px) {
	.contact-box dt{
		width: 100%;
		border-bottom: 1px solid #ddd;
	}

	.contact-box dd{
		width: 100%;
		text-align: center;
	}
}

/* -----------------------------------------------------------

header

----------------------------------------------------------- */
.header-top{
	display: flex;
	justify-content: space-between;
	background: #fff;
	align-items: center;
	padding: 0 2.5%;
}

.header-top h1{
	margin: .8rem .5rem;
}

.header-top h1 a img{
	height: 70px;
}

@media (max-width: 991.98px){
	#header{
		box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.4);
	}
	
	.header-top{
		height: 60px;
		padding: 0;
	}
	.header-top h1{
		margin: .4rem;
	}
	.header-top h1 a img{
		max-height: 45px;
	}
}

.header-top a{
	text-decoration: none;
}

.header-top ul{
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.header-top .top-btn{
	display: flex;
}

.top-btn li{
	list-style: none;
	margin: 0 10px;
	font-size: 0.8em;
	font-weight: 600;
}

.top-btn li:last-child{
	margin-right: 0;
}

.top-btn a {
	color: var(--bs-dark); 
	text-decoration:none;
}

.top-btn li i{
	display: block;
	text-align: center;
}

@media (any-hover: hover) {
	.top-btn a:hover,
	.top-btn button:hover{
		opacity: .7;
	}
}

#search-icon{
	background-color: transparent;
	border: none;
	color: var(--bs-dark);
}

.search-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
}
.search-modal.is-show {
	opacity: 1;
	visibility: visible;
}
.search-modal-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	z-index: 2;
	border-radius: .5rem;
	max-width: 320px;
	width: 100%;
}

#modalCloseButton:hover {
	opacity: 0.7;
}

#modalCloseButton i{
	color: var(--bs-dark);
}

.modalCloseButton {
	position: absolute;
	right: -40px;
	top: -55px;
	width: 40px;
	height: 40px;
	text-align: center;
	transform: translateX(-50%);
	background: #FFF;
	border: 0;
	padding: 0;
	border-radius: 50%;
	font-size: 1.2rem;
}
.search-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: 1;
	cursor: pointer;
}

.icon-box{
	display: none;
}

.icon-box a,
.icon-box button{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: var(--main-color);
	color: #fff;
	font-size: .6rem;
	letter-spacing: -0.1em;
	font-weight: bold;
}

.icon-box a i{
	font-size: 1.95rem;
	line-height: 1.2;
	padding-top: .2rem;
}

.icon-box button{
	font-size: .7rem;
	letter-spacing: 0;
	line-height: 1;
	padding: 0;
	border: none;
	border-left: 1px solid #fff;
}

button .btn-line,
button .btn-line::before,
button .btn-line::after{
	display: block;
	width: 32px;
	height: 4px;
	transition: .2s all;
	border-radius: 2px;
	background-color: #fff;
}

button .btn-line{
	position: relative;
	margin: 1rem auto;
}

button .btn-line::before{
	content: "";
	position: absolute;
	top: -.7rem;
}

button .btn-line::after{
	content: "";
	position: absolute;
	bottom: -.7rem;
}

button.is-opened .btn-line {
	background: transparent;
}

button.is-opened .btn-line::before{
	top: 0;
	transform: rotate(45deg);
}

button.is-opened .btn-line::after{
	top: 0;
	transform: rotate(-45deg);
}

@media (max-width: 991.98px){
	.icon-box{
		display: flex;
	}
}

/* -----------------------------------------------------------

nav

----------------------------------------------------------- */
.g-nav{
	background: var(--main-color);
}

.g-nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.g-nav > ul{
	display: flex;
	justify-content: center;
}

.g-nav > ul > li > a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 1.115rem;
	text-decoration: none;
	padding: 0 1.8rem;
	height: 54px;
	line-height: 1.2;
}

.g-nav > ul > li > a i{
	display: none;
}

@media (min-width: 992px) and (hover: hover){
	.g-nav > ul > li:hover > a {
		box-shadow: inset -2px -2px 0 0 rgba(0, 0, 0, 0.3), inset 1px 1px 0 0 rgba(255, 255, 255, 0.3);
		transition: all .3s;
	}
}

@media (max-width: 991.98px){
	.g-nav{
		display: none;
		overflow-y: scroll;
		height: calc(100vh - 60px);
		background-color: rgba(0,0,0,0.6);
	}
	.g-nav.active{
		display: block;
	}
	.g-nav > ul{
		flex-direction: column;
	}
	.g-nav > ul > li > a{
		border-top: 1px solid #fff;
		width: 100%;
		padding-right: calc(60px + 1.8rem);
		position: relative;
		background: var(--main-color);
	}
	.g-nav > ul > li > a i{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		right: 0;
		width: 60px;
		height: 54px;
		border-top: 1px solid #fff;
		background: var(--light-main-color);
		color: var(--main-color);
		font-size: 1.5rem;
	}
}

.sp-hamburger-bottom{
	background: #e8e8e8;
	padding: 1.25rem 0 0;
}

.sp-hamburger-bottom ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	text-align: center;
}

.sp-hamburger-bottom ul li{
	font-size: 12px;
	list-style: none;
	width: 33.3%;
	margin-bottom: 1.25rem;
	font-weight: normal;
}

.sp-hamburger-bottom ul li a{
	text-decoration: none;
	color: var(--bs-dark);
	display: block;
}

.sp-hamburger-bottom ul li i{
	display: block;
	padding-bottom: .2em;
	font-size: 2.125em;
}

/* -----------------------------------------------------------

footer

----------------------------------------------------------- */

footer{
	position: relative;
	border-top: 4px solid var(--main-color2);
	background: #fff;
}

.pagetop{
	height: 60px;
	width: 60px;
	position: absolute;
	top: -30px;
	right: 15px;
	background: var(--main-color2);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.pagetop-arrow{
	height: 25%;
	width: 25%;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}

@media (any-hover: hover) {
	.pagetop:hover {
		background: var(--dark-main-color2);
	}
}

.footer-top{
	max-width: 1344px;
  padding: 1rem 0;
  margin: 0 auto;
}

.f-name h1{
	margin-bottom: 0;
}

.f-name h1 img{
	max-width: 300px;
	width: 100%;
}

.f-name p{
	font-size: .85rem;
	padding-left: calc(7% + 2rem);
}

.f-name .f-name-button{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: .5rem;
	padding-left: calc(7% + 2rem);
}

@media (max-width: 991.98px) {
	.footer-top{
		max-width: 100%;
		padding: 1rem 0 0;
		margin: 0 auto;
	}

	.f-name{
		padding: .7rem 1rem;
		margin: 0 auto;
	}
	.f-name h1 img{
		margin: 0 auto;
	}
	.f-name p{
		padding: 0;
		text-align: center;
	}
	.f-name .f-name-button{
		justify-content: center;
		padding: 0;
		margin-bottom: 2rem;
	}
}

.footer-top ul{
	list-style: none;
	padding-left: 0;
}

.footer-top-nav{
	margin-bottom: 0;
}

.footer-top-nav li{
	margin-top: .75rem;
}

.footer-top-nav a{
	color: var(--text-color);
	text-decoration: none;
}

.footer-top-nav a i{
	display: none;
}

@media (min-width: 992px) and (hover: hover) {
	.footer-top-nav a:hover{
		text-decoration: underline;
	}
}

@media (max-width: 991.98px) {
	.footer-top-nav li{
		margin: 0;
	}

	.footer-top-nav a{
		border-top: 3px solid var(--main-color2);
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 56px;
		color: var(--main-color2);
		background-color:#fff;
		padding: 0 1.4rem;
		font-size: 1.125rem;
		position: relative;
	}

	.footer-top-nav a i{
		display: inline;
		font-size: 1.25rem;
		margin-right: .3rem;
	}
}

.footer-top_end{
	margin: .75rem 0 0;
}

.footer-top_end li{
	margin-top: .75rem;
}

.footer-top_end a{
	text-decoration: none;
	color: var(--text-color);
}

@media (any-hover: hover) {
	.footer-top_end a:hover{
		text-decoration: underline;
	}
}

@media (max-width: 991.98px) {
	.footer-top_end{
		border-top: 3px solid var(--main-color2);
		display: flex;
		padding: 0;
		margin: 0;
		justify-content: center;
	}

	.footer-top_end li{
		margin: 0;
	}

	.footer-top_end li a{
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 0 1rem;
		font-size: .8rem;
		height: 50px;
	}
}

.footer-bottom{
	background: #e9e9e9;
	font-size: .9rem;
	box-shadow: inset 0px 4px 4px #cbcbcb;
}

.f-common{
	padding: 1.8rem .75rem;
}

.f-common h1{
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	font-weight: bold;
	color: #ffae00;
	margin-bottom: 0;
}

.f-common h1 span{
	font-size: .6em;
	margin-right: .1em;
}

.f-common p{
	margin-bottom: 0;
	color: #000;
}

.f-common ul{
	list-style: none;
	padding: .5rem 0 0 0;
	display: flex;
	width: 280px;
	justify-content: center;
	margin: .5rem 0 0 0;
	border-top: 1px solid #999;
}

.f-common ul li:not(:last-child)::after{
	content: "｜";
	font-size: 1em;
}

.f-common ul li a{
	color: #7B7B7B;
	text-decoration: none;
}

.f-common-nav{
	padding: 1.5rem .75rem;
	color: #000;
}
.f-common-nav .nav-box{
	display: flex;
	margin-top: .5rem;
}
.f-common-nav ul{
	padding-left: 1rem;
	margin-bottom: 0;
}

.f-common-nav ul:not(:last-child){
	margin-right: 9.5%;
}

.f-common-nav ul li a{
	color: #000;
	text-decoration: none;
}

footer .copylight{
	font-size: .8rem;
	background: #fff;
	text-align: center;
	padding: 1em .6em;
	color: #555;
}

@media (any-hover: hover) {
	footer .footer-bottom ul li a:hover {
		text-decoration: underline;
	}
}

@media (max-width: 991.98px) {
	.f-common{
		padding: 1.2rem .75rem 0;
	}

	.f-common h1{
		justify-content: center;
	}

	.f-common p{
		text-align: center;
	}

	.f-common ul{
		margin-left: auto;
		margin-right: auto;
	}
	
	.f-common-nav{
		max-width: 320px;
		margin: 0 auto;
	}

	.f-common-nav .nav-box{
		flex-direction: column;
		justify-content: center;
		padding-left: 1rem;
	}

	.f-common-nav .nav-box ul{
		margin-right: 0;
	}
}
