@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');



/* -------------------------------------------

base

------------------------------------------- */
:root {
	--grey: #181818;
	--yellow: #fddc00;
	--blue: #23abec;
	--green: #80dfd5;
	--prime: #121349;
	--font-en: "Josefin Sans", sans-serif;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
a {
	color: var(--grey);
}



/* -------------------------------------------

layout

------------------------------------------- */
/* base-width */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* page-top */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: #fff;
	border-radius: 50%;
	color: var(--prime);	
	font-size: 2rem;
	width: 6rem;
	height: 6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.2rem;
	border: solid 0.12rem var(--blue);
}
@media screen and (max-width: 768px) {
	#page-top a {
		font-size: 1.4rem;
		width: 4rem;
		height: 4rem;
	}
}



/* -------------------------------------------

style

------------------------------------------- */
/* heading */
.heading {
	line-height: 1;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading span {
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-family: var(--font-en);
	font-size: 5rem;
}
.heading span img {
	width: 6.8rem;
	margin-left: 1rem;
	margin-bottom: 0.6rem;
}
.heading i {
	letter-spacing: 0.3em;
	margin-top: 1rem;
}
@media screen and (max-width: 768px) {

}
/* btn */
.btn-1,
.btn-2 {
	color: var(--prime);	
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20rem;
	font-weight: bold;
	padding-bottom: 0.15rem;
}
.btn-1 {
	border: solid 0.35rem var(--prime);
	background: #fff;
}
.btn-2 {
	border: solid 0.4rem #fff;
	background-color: var(--yellow);
	box-shadow: 0.6rem 0.6rem 0.8rem rgba(0,0,0,0.07);
}
.btn-1 img,
.btn-2 img {
	width: 1.4rem;
	transition: all .3s;
}
.btn-1:hover img,
.btn-2:hover img {
	transform: translateX(0.8rem);
}
/* more */
.more {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 0.4rem #fff;
	background-color: var(--yellow);
	box-shadow: 0.6rem 0.6rem 0.8rem rgba(0,0,0,0.07);	
	border-radius: 10rem;
	color: var(--prime);
	font-weight: bold;
	height: 5.4rem;
	font-size: 1.7rem;
	padding-bottom: 0.12rem;
	width: 38rem;
}	
.more img {
	width: 1.3rem;
	margin-top: 0.3rem;
	margin-left: 0.6rem;
	position: relative;
	transition: all .3s;
}
.more.wide {
	width: 64rem;
	height: 6.8rem;
	font-size: 1.7rem;
	margin: 0 auto;
}
.more:hover {
	opacity: 1;
}
.more:hover img {
	transform: translateX(0.7rem);
}
@media screen and (max-width: 768px) {
	.more {
		width: 100%;
	}
	.more.wide {
		width: 100%;
	}
}
/* display */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
.animated {
	animation-duration: 2s !important;
}




/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
	background-color: #fff;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .5s;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
}
.gnav-sp nav {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 0.8rem 0;
	white-space: nowrap;
	color: var(--prime);
}
.gnav-sp-cv {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.gnav-sp-cv .btn-1,
.gnav-sp-cv .btn-2 {
	height: 4.4rem;
	padding-left: 2rem;
	padding-right: 2rem;
	font-size: 1.4rem;
}
.gnav-sp-cv .btn-1 img,
.gnav-sp-cv .btn-2 img {
	width: 1.2rem;
	margin-left: 0.4rem;
	margin-top: 0.12rem;
}
/* toggle */
.toggle-btn {
	background: var(--prime);
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-0.8rem) rotate(45deg);
}



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



/* -------------------------------------------

news / blog　common

------------------------------------------- */
/* MORE-READ */
.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
	background: var(--prime);
    border: none;
	color: #fff !important;
    display: flex;
	justify-content: center;
	align-items: center;
    font-size: 1.4rem;
    margin: 0 auto;
    width: 24rem;
	height: 4.8rem;
    transition: all .3s;
	padding-bottom: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
	font-weight: bold;
	border-radius: 10rem;
}
.CMS-NEWS-MORE-READ:hover,
.CMS-ARTICLE-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
	.CMS-ARTICLE-MORE-READ {
		width: 100%;
	}
}
/* DETAIL */
.CMS-NEWS-CONTENT img,
.CMS-ARTICLE-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-CONTENT img,
	.CMS-ARTICLE-CONTENT img {
        width: 100%;
    }
}



/* -------------------------------------------

news / blog　thumbnail

------------------------------------------- */
/* INDEX */
.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX,
.CMS-NEWS-CATEGORY-INDEX,
.CMS-ARTICLE-CATEGORY-INDEX {
    display: flex;
    flex-wrap: wrap;
	column-gap: 6rem;
	row-gap: 4rem;
    padding-bottom: 10rem;
	position: relative;
}
.CMS-NEWS-INDEX > *,
.CMS-ARTICLE-INDEX > *,
.CMS-NEWS-CATEGORY-INDEX > *,
.CMS-ARTICLE-CATEGORY-INDEX > * {
	width: calc((100% - 6rem) / 2);
}
.CMS-NEWS-ITEM a,
.CMS-ARTICLE-ITEM a {
    display: block;	
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-INDEX,
	.CMS-ARTICLE-INDEX,
	.CMS-NEWS-CATEGORY-INDEX,
	.CMS-ARTICLE-CATEGORY-INDEX {
		flex-direction: column;
	}
	.CMS-NEWS-INDEX > *,
	.CMS-ARTICLE-INDEX > *,
	.CMS-NEWS-CATEGORY-INDEX > *,
	.CMS-ARTICLE-CATEGORY-INDEX > * {
		width: 100%;
	} 
}
/* TIME */
.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
    font-size: 1.2rem;
    line-height: 1;	
    margin: 1rem 0 0.3rem 0;
}
/* THUMBNAIL */
.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
	aspect-ratio: 3 / 2;
    width: 100%;	
    height: 100%;
    object-fit: cover;
}
.CMS-NEWS-LINK {
	font-size: 1.5rem;
}
.CMS-NEWS-CATEGORY-NAME {
	background: var(--prime);
	color: #fff;
	border-radius: 10rem;
	display: inline-block;
	font-size: 1.2rem;
	padding: 0 2rem 0.15rem 2rem;
	margin-top: 1rem;
}
/* ttl */
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
	border-bottom: solid 1px rgba(0,0,0,0.3);
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: bold;
	color: var(--prime);
}
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
	content: "";
	background: var(--prime);
	display: block;
	height: 3px;
	bottom: -3px;
	position: absolute;
	width: 25%;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-TITLE:after,
	.CMS-ARTICLE-TITLE::after {
		width: 40%;
	}	
}