@charset "UTF-8";

@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}
	30% {
		height: 30px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}
@keyframes displayAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html {
	font-family: "Noto Sans JP", sans-serif;
	overflow-x: hidden;
}

body {
	width: 100vw;
	transition: 0.5s;
	margin: 70px 0 0 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
img {
	width: 100%;
	height: auto;
}

.display_pc {
	display: none !important;
}

#header {
	position: fixed;
	top: 10px;
	right: 1.5%;
	left: 1.5%;
	z-index: 999;
	display: flex;
	justify-content: space-between;
	padding: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	-webkit-backdrop-filter: blur(3px);
			backdrop-filter: blur(3px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#header .logo_area {
	display: flex;
	align-items: center;
	width: 80%;
}
#header .logo_area .logo {
	width: 150px;
}
#header .logo_area .jpx {
	width: 35px;
}

.g_navi {
	position: fixed;
	top: -11px;
	left: calc(-1.5% - 1px);
	z-index: -1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background-color: #f1f1f1;
	transition: 0.5s;
	opacity: 0;
	visibility: hidden;
}
.g_navi .gn_contents {
	width: 100%;
	padding: 0 10px;
}
.g_navi .gn_contents > li {
	padding: 20px;
}
.g_navi .gn_contents > li a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.g_navi .gn_contents > li a span {
	position: absolute;
	top: 1.5em;
	left: 0;
	width: 100%;
	font-size: 0.9em;
	text-align: right;
}

.navi_positioning {
	position: relative;
	z-index: 9999;
}

/*ボタン外側*/
.openbtn1 {
	position: relative;
	/*ボタン内側の基点となるためrelativeを指定*/
	background: #016391;
	cursor: pointer;
	width: 50px;
	height: 50px;
	top: 0;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span {
	display: inline-block;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background: #fff;
	width: 45%;
}

.openbtn1 span:nth-of-type(1) {
	top: 15px;
}

.openbtn1 span:nth-of-type(2) {
	top: 23px;
}

.openbtn1 span:nth-of-type(3) {
	top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
	/*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

.side_open {
	z-index: 1;
	opacity: 1;
	visibility: visible;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) no-repeat;
}
.con {
	padding: 2rem 1rem 3rem;
}
.con_hd{
	margin-bottom: 2rem;
}
.con_hd h1{
	border-bottom: 1px solid #111;
	font-size: 1.6rem;
}
.con_category{
	background-color: #ebecec;
	padding: 1rem;
	margin-bottom: 2rem;
}
.con_category_item{
	background-color: #FFF;
	padding: 1rem;
}
.con_category p{
	border-bottom: 1px solid #ebecec;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
	margin: 0 -1rem 1rem;
	padding-bottom: 0.7rem;
}
.con_category_list{
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}
.con_category_list li{
}
.con_category_list a{
	background-color: #f6f7f7;
	border-radius: 1rem;
	border: 1px solid #CCC;
	color: #111;
	font-size: .75rem;
	font-weight: 500;
	display: block;
	padding: 0.2em 1em 0.1em;
	text-decoration: none;
}
.con_category_list a:hover{
	background-color: #DFDFDF;
}
.main {}
.main_hd h2{
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 2rem;
}

.page_eyecatch {
	margin-bottom: 80px;
}
.page_eyecatch .title {
	position: relative;
	display: block;
	width: 100%;
	margin: auto;
	margin-bottom: 60px;
	font-family: "Oswald", sans-serif;
	color: #000;
	font-size: 5.6em;
	text-align: center;
}
.page_eyecatch .title > span {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	text-align: center;
}
.page_eyecatch p {
	font-size: 1.1rem;
	text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bnr{
	background-color: #111;
	display: flex;
	justify-content: center;
	padding: 2rem 0;
}
.ft_bnr_list{
	display: flex;
	flex-wrap: wrap;
}
.ft_bnr_list li{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	width: 50%;
}
.ft_bnr_list img{
	height: 36px;
	width: auto;
	opacity: 0.8;
}
.ft_bnr_list img:hover{
	opacity: 1;
}
.ft_contact {
	background-color: #161d2e;
	padding: 2rem 1rem;
}
.ft_contact p{
	color: #FFF;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	text-align: center;
}
.ft_contact_btn .contact_link{
	border: 1px solid #FFF;
	background-color: #FFF;
	display: block;
	color: #111;
	font-size: 0.7rem;
	padding: 1rem;
	text-decoration: none;
	text-align: center;
	transition: All 0.5s ease;
}
.ft_contact_btn .contact_link:hover{
	background-color: transparent;
	color: #FFF;
}
.ft_bg {
	background-color: #003166;
}
.ft {
	padding: 2rem 0;
}
.ft_copy {
	color: #FFF;
	font-size: 0.75rem;
	text-align: center
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #333;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 5px;
	bottom: 0;
}
.pt_btn::after{
	height: 5px;
	right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.post_list{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}
.post_list_item{
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 15px;
	background: #ebecec;
}
.post_list_item figure{
	background-color: #EFEFEF;
}
.post_list_item figure img{
	width: 100%;
	height: 100%;
	max-height: 240px !important;
	-o-object-fit: cover!important;
	-o-object-position: center top;
	object-fit: cover;
	object-position: center top;
	aspect-ratio: 16 / 9;
}
.post_list_item figure:hover img{
	opacity: 0.6;
}
.post_list_item h3 {
	height: 100%;
}
.post_list_item h3 a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 10px;
	background: #fff;
	color: #333;
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
}
.post_list_item h3:hover a{
	text-decoration: underline;
}
.post_list_detail{
	background-color: #ebecec;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	margin-bottom: 0.5rem;
}
.post_list_detail_item{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.5rem;
	width: 2.5rem;
	font-size: 1.3rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
	font-size: 20px;
	margin-bottom: 20px;
}
.mcon h2 {
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.mcon h3 {
	font-size: 16px;
	margin-bottom: 8px;
	margin-top: 16px;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	font-size: 1.1em;
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}
