@charset "UTF-8";

body.fonts {
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #212121;
	line-height: 30px;
	letter-spacing: 1px;
	font-size: 16px;
	font-weight: 500;
}

.wrap {
	width: 100%;
	overflow: hidden;
}

.inner {
	width: 1400px;
	margin: 0 auto;
	max-width: 90%;
}

.contents-tit {
	text-align: left;
	font-weight: 300;
	font-style: normal;
	margin-bottom: 3rem;
}

.contents-tit p {
	font-size: 25px;
	margin-bottom: 27px;
	font-weight: 500;
}

.contents-tit h2 {
	font-size: 75px;
	font-weight: 800;
	line-height: 85px;
}

.contents-box img {
	width: 100%;
}

#main-detail-tit {
	padding: 5rem 3rem;
}

#main-detail-tit h2 {
	font-size: 10rem;
	font-weight: 900;
	line-height: 11rem;
}

#main-detail-tit p {
	font-size: 3rem;
	font-weight: 600;
}

/*===========
inview
===========*/

.fadeIn {
	opacity: 0;
	transition: 2s;
}

.fadeIn.is-show {
	opacity: 1;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block;
}

.sp {
	display: none !important;
}

/* ----------------------- */
/* base_sp
/* ----------------------- */
/* デフォルトのbuttonスタイルをリセット */
.btn,
a.btn,
button.btn {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #fff;
	border-radius: 0.5rem;
}

a.btn-svg {
	font-weight: 700;
	line-height: 54px;

	width: 204px;
	height: 54px;
	padding: 0;

	cursor: pointer;
	text-decoration: none;

	background-color: transparent;
}

a.btn-svg svg {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}

a.btn-svg svg rect {
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;

	stroke: #fff;
	stroke-width: 2;
	stroke-dasharray: 200px, 16px;
	stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
	stroke-dashoffset: 284px;
}

a.btn-svg span {
	color: #fff;
}


/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1024px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

a {
	text-decoration: none !important;
	color: #fff;
}

/* ヘッダー */

/* grid-styles.css */
.hamburger-grid {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	width: 50px;
	height: 50px;
	padding: 10px;
	border: none;
	background: transparent;
	cursor: pointer;
}

.hamburger-grid__dots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4px;
	width: 100%;
	height: 100%;
}

.hamburger-grid__dot {
	width: 100%;
	height: 100%;
	background-color: #333;
	border-radius: 50%;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
	background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
	transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
	transform: translateY(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
	transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
	transform: translateX(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
	transform: scale(1.2);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
	transform: translateX(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
	transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
	transform: translateY(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
	transform: scale(0);
}

.nav-grid {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #1a1a1a;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 900;
}

.nav-grid.active {
	visibility: visible;
	opacity: 1;
}

.nav-grid__content {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 100px 40px;
}

.nav-grid__sections {
	grid-column: span 12;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
}

.nav-grid__section {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
	opacity: 1;
	transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
	transition-delay: 0.2s;
}

.nav-grid.active .nav-grid__section:nth-child(2) {
	transition-delay: 0.3s;
}

.nav-grid__title {
	margin: 0 0 20px;
	color: #666;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.nav-grid__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-grid__list li {
	margin-bottom: 15px;
	overflow: hidden;
}

.nav-grid__link {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
	transform: translateY(0);
}

.nav-grid__link:hover {
	color: #4a90e2;
}

@media (max-width: 768px) {

	.nav-grid.active .nav-grid__section:nth-child(1) {
		padding: 3rem 0 0rem 3rem;
	}

	.nav-grid.active .nav-grid__section:nth-child(2) {
		padding: 0rem 0 0rem 3rem;
	}

	.nav-grid__content {
		padding: 0px 0px;
	}

	.nav-grid__sections {
		grid-template-columns: 1fr;
	}

	.nav-grid__link {
		font-size: 20px;
	}
}

/* ヘッダー */

.slide {
	align-items: center;
	justify-content: center;
	color: #333;
	overflow: hidden;
}

.indicator {
	position: fixed;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 10px;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.indicator div {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 6px 0;
	background-color: #fff;
	/* デフォルトの背景色 */
	cursor: pointer;
	border: 2px solid #333;
}

#inull-bg {
	overflow: hidden;
	/* はみ出した要素を隠す */
	height: 100%;
	line-height: 22rem;
	margin-bottom: 5rem;
}

.c-text {
	display: flex;
	/* 子要素を横並びにする */
}

.c-text__item {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 25rem;
	font-weight: bold;
	opacity: 0.1;
}

.c-text__item:nth-child(odd) {
	animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}

.c-text__item:nth-child(even) {
	animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}

@keyframes MoveLeft {
	from {
		transform: translateX(100%);
	}

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

@keyframes MoveLeft2 {
	from {
		transform: translateX(0);
	}

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

#contact {
	background: #222;
	border-radius: 1.5rem;
	color: #fff;
}

.contact-detail {
	padding: 0 12rem 0 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

p.contact-bg {
	writing-mode: vertical-rl;
	font-size: 10rem;
	font-weight: 900;
	opacity: 0.5;
}

p.contact-txt {
	padding-bottom: 2rem;
	font-size: 20px;
}

header {
	position: fixed;
	z-index: 999;
}

footer {
	margin-top: 4rem;
	margin-bottom: 7rem;
	border-top: 1px solid #222222;
	padding-top: 2rem;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	padding-top: 1rem;
}

.footer-menu dl dt span.footer-menu-tit {
	font-size: 30px;
	font-weight: 900;
	padding-right: 1em;
}

.footer-menu dl dt {
	display: flex;
	align-items: center;
}

.footer-menu dl {
	padding-right: 5rem;
	position: relative;
}

.footer-menu dl:hover {
	opacity: 0.1;
	transition: 0.5s;
}

.footer-menu dl a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer-menu img {
	width: 10%;
}


/* 新着情報・ブログシングルページ */

#topics-single-box {
	margin-bottom: 5rem;
	border-top: 1px solid #212121;
	border-bottom: 1px solid #212121;
	padding: 4rem 0;
}

#topics-single-box h3 {
	font-size: 2rem;
	padding: 1rem 0 1.5rem 0;
}

#topics-single-box time {
	background: #46a6d1;
	padding: 6px 15px;
	border-radius: 10px;
	color: #fff;
}

figure.wp-block-image img {
	border-radius: 2rem;
}


/* 新着情報・ブログシングルページ */

@media only screen and (max-width: 750px) {

	body.fonts {
		line-height: 22px;
		font-size: 12px;
	}

	.inner {
		padding: 3rem 0;
	}

	.contents-tit h2 {
		font-size: 45px;
		font-weight: 900;
		line-height: 60px;
	}

	.contents-tit p {
		font-size: 20px;
	}

	a.btn-svg {
		font-size: 20px;
	}

	#main-detail-tit {
		padding: 5rem 1rem 2rem 1rem;
	}

	#main-detail-tit h2 {
		font-size: 3rem;
		line-height: 5rem;
	}

	#main-detail-tit p {
		font-size: 1.5rem;
		font-weight: 600;
	}

	.contact-detail {
		padding: 0 5rem 0 1rem;
	}

	p.contact-bg {
		font-size: 7rem;
	}

	.c-text__item {
		font-size: 12rem;
		line-height: 11rem;
	}


	footer {
		margin-top: 2rem;
		margin-bottom: 0rem;
		padding-top: 0rem;
	}

	.footer-menu {
		padding-top: 0rem;
	}

	.footer-menu img {
		width: 25%;
		margin-bottom: 1rem;
	}

	.footer-menu dl {
		padding-right: 0rem;
		text-align: left;
		width: 50%;
		margin-bottom: 0.5rem;
	}

	.footer-menu dl dt span.footer-menu-tit {
		padding-right: 0.5rem;
		font-size: 20px;
	}

	.nav-grid__title {
		font-size: 30px;
	}

	#topics-single-box h3 {
		font-size: 1.5rem;
		line-height: 2.5rem;
	}
}