/* ============================================
RESET & BASE STYLE
============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* 1rem = 10px */
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	min-height: 100vh;
	overflow-x: hidden;
}

body.no-scroll {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.c-button-center {
	display: flex;
	justify-content: flex-end;
	margin-right: 2rem;
}

.c-description{
	font-size: 1.6rem;
	line-height: 2.7rem;
	color: #333333;
	font-weight: 400;
}

@media (max-width: 768px) {
	.c-description{
		font-size: 1.6rem;
		line-height: 2.2rem;
	}
}

.view-more-btn {
	display: inline-block;
	border: 1px solid #dc2626;
	color: #dc2626;
	padding: 1.1rem 2rem;
	border-radius: 9999px;
	font-size: 1.2rem;
	line-height: 1.6rem;
	font-weight: 600;
	transition: all 0.3s ease;
	max-width: 160px;
	width: 100%;
	height: max-content;
	text-align: center;
}

@media (max-width: 768px) {
	.view-more-btn.-spSmall {
		max-width: 120px;
	}
}

.view-more-btn.-large {
	max-width: 200px;
}

.view-more-btn.-small {
	min-width: 120px;
	text-align: center;
	display: inline-block;
	border: 1px solid #dc2626;
	color: #dc2626;
	padding: 1.1rem 1.2rem;
	border-radius: 9999px;
	font-size: 1.4rem;
	line-height: 1.6rem;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}


.view-more-btn.-small:hover {
	background-color: #dc2626;
	color: white;
}



.view-more-btn.-under {
	margin-top: 4.8rem;
}

@media (max-width: 768px) {
	.view-more-btn.-under {
		margin-top: 4rem;
	}
}

.view-more-btn:hover {
	background-color: #dc2626;
	color: white;
}

.text-right {
	text-align: right;
}

/* ============================================
LAYOUT
============================================ */

.container {
	max-width: 1024px;
	margin: 0 auto;
}

/* メインビジュアル（ヒーロー）は.containerの制約を外す */

.hero-section .container {
	max-width: none;
}

.section {
	padding: 12rem 2.4rem;
	background-color: #ffffff;
}

@media (max-width: 768px) {
	.section {
		padding: 8rem 2rem;
	}
}

.section+.section {
	padding-top: 0;
}

.section.-over {
	padding: 12rem 0 0 2.4rem;
	overflow-x: hidden;
}

.section.-over.-right {
	padding: 12rem 2.4rem 0 0;
}

@media (max-width: 768px) {
	.section.-over {
		padding: 12rem 0 0 2rem;
	}
}

@media (max-width: 768px) {
	.section.-over.-right {
		padding: 12rem 2rem 0 0;
	}
}

.section.-footer {
	padding: 12rem 2.4rem 0;
}

@media (max-width: 768px) {
	.section.-footer {
		padding: 8rem 2rem 0;
	}
}

/* ============================================
HEADER
============================================ */

.header {
	background-color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 10001;
	padding: 0 1.6rem;
	transition: border-bottom 0.3s ease;
}

@media (max-width: 768px) {
	.header {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.header-inner {
		background-color: #ffffff;
		position: absolute;
		z-index: 10000;
		top: 0;
		width: 100%;
		left: 0;
		padding-left: 2rem;
	}
}

.header.scrolled {
	border-bottom: 1px solid #F1EDE7;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

@media (max-width: 768px) {
	.header-content {
		height: 64px;
		background-color: #ffffff;
		position: relative;
        z-index: 100000;
        padding: 0 2rem;
	}
}

/* ロゴをメニューオーバーレイより前面に */

.logo {
	position: relative;
	z-index: 10002;
}

.logo-footer {
	position: relative;
	z-index: 10;
}

/* ナビゲーション */

.nav-desktop {
	display: flex;
	align-items: center;
	gap: 4rem;
}

@media (max-width: 1024px) {
	.nav-desktop {
		gap: 2.4rem;
	}
}

.nav-desktop a {
	font-size: 1.4rem;
	font-weight: 500;
	color: #555555;
	transition: color 0.3s ease;
}

.nav-desktop a:hover {
	color: #DD0C1F;
}

@media (max-width: 768px) {
	.nav-desktop {
		display: none;
	}
}

/* モバイルメニューボタン */

.mobile-menu-btn {
	display: none;
	background-color: #dc2626;
	color: white;
	position: fixed;
	top: 1.2rem;
	right: 0;
	padding: 3px 14px;
	border-radius: 10px 0 0 10px;
	transition: background-color 0.3s ease;
	z-index: 10000;
}

.mobile-menu-btn:hover {
	background-color: #b91c1c;
}

@media (max-width: 768px) {
	.mobile-menu-btn {
		display: flex;
	}
}


/* モバイルナビゲーション */
.nav-mobile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #F1EDE7;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
.nav-mobile.active {
	display: block;
}
}

.nav-mobile nav {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0.8rem 2.4rem 3.2rem;
	background-color: #fff;
	margin:8.8rem 2rem 2.4rem;
	border-radius: 1.6rem;
}

.nav-mobile a {
	display: block;
	padding: 1.6rem 0;
	font-size: 1.4rem;
	font-weight: 500;
	color: #555555;
	transition: color 0.3s ease;
	border-bottom: 1px solid #C7C7C7;
	cursor: pointer;
}

.nav-mobile a {
    position: relative;
    padding: 1.6rem 0 1.6rem 1.6rem;
}

.nav-mobile a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #DD0C1F;
    border-radius: 50%;
    transform: translateY(-50%);
}

.nav-mobile a:hover {
	color: #dc2626;
}

/* ============================================
SECTION TITLE
============================================ */

.section-title-wrapper{
	max-width: 1024px;
	margin: 0 auto 3.2rem;
	padding: 0 2.4rem;
    box-sizing: content-box;
}

@media (max-width: 768px) {
	.section-title-wrapper {
		margin: 0 auto 2.4rem;
	}
}

.section-title {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

@media (max-width: 768px) {
	.section-title {
		flex-wrap: wrap;
		gap: 0 1.6rem;
	}
}

.section-title-inner{
	display: flex;
	align-items: center;
	gap: 1.8rem;
}

.section-title.-footer {
	margin-bottom: 2.4rem;
}

@media (max-width: 768px) {
	.section-title.-footer {
		margin-bottom: 4rem;
		flex-direction: column;
		align-items: flex-start;
	}

	.section-title.-footer .title-ja {
		margin-top: 0;
		margin-left: 3.6rem;
	}
}

.title-dot {
	width: 24px;
	height: 24px;
	background-color: #dc2626;
	border-radius: 50%;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.title-dot-wrapper {
		display: flex;
	}
}

.title-dot-wrapper {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.title-dot.-sns {
	background: url(../img/index/img-icon-sns.svg) no-repeat center center / contain;
	width: 33px;
	height: 33px;
}

@media (max-width: 768px) {
	.title-dot {
		width: 20px;
		height: 20px;
	}
}

.title-en {
	font-size: 4.8rem;
	line-height: 6.6rem;
	font-weight: 700;
	letter-spacing: 5px;
	color: #dc2626;
	font-family: "Avenir", "Helvetica Neue", sans-serif;
}

.title-en.-sub {
	font-size: 2.4rem;
	line-height: 3.3rem;
	letter-spacing: 2px;
}

@media (max-width: 768px) {
	.title-en.-sub {
		font-size: 2.2rem;
		font-weight: 600;
		line-height: 2.8rem;
	}
}

.title-ja {
	font-size: 1.4rem;
	line-height: 1.9rem;
	color: #555555;
	margin-left: 0.4rem;
	margin-top: 18px;
	font-weight: 500;
}

@media (max-width: 768px) {
	.title-en {
		font-size: 4rem;
		line-height: 5.6rem;
		letter-spacing: 0;
	}

	.title-ja {
		font-size: 1.4rem;
		line-height: 1.9rem;
		margin-top: 1.4rem;
		margin-left: 0;
	}
}

/*============================================
フッター
============================================ */
.footer-wrapper{
	overflow-x: hidden;
}


.footer {
	position: relative;
	width: 100%;
}

.footer-container {
	padding: 0 4rem;
	box-sizing: content-box;
}

@media (max-width: 768px) {
	.footer-container {
		padding: 0 4rem 0 2rem;
	}
}

.footer-top {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.footer-image {
	max-width: 868px;
	width: 100%;
	height: 532px;
}

@media (min-width: 1440px) {
	.footer-image {
		max-width: 70%;
		width: 100%;
		height: 532px;
	}
}

@media (max-width: 768px) {
	.footer-image {
		max-width: 100%;
		height: auto;
		padding-right: 20px;
	}
}

.footer-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0 40px 0 0;
}

@media (max-width: 768px) {
	.footer-image {
		order: 2;
	}
}

.footer-info {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0 2.4rem 0 5.2rem;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.footer-info {
		order: 1;
		padding-bottom: 4rem;
		max-width: 280px;
		margin: 0 auto;
		padding: 0 0 4rem 0;
	}
}

.footer-logo-box {
	background-color: white;
	margin-bottom: 1.6rem;
	display: inline-block;
	align-self: flex-start;
}

.footer-address {
	margin-bottom: 3.2rem;
	width: 280px;
}

.footer-address p {
	font-size: 1.6rem;
	line-height: 2.2rem;
	color: #555555;
	letter-spacing: 2px;
}

.footer-address .company-name {
	color: #555555;
	font-weight: 600;
	margin-bottom: 1.2rem;
}

.footer-address .contact {
	margin-top: 1.6rem;
}

.footer-cta-btn {
	display: inline-block;
	border: 2px solid #dc2626;
	color: #dc2626;
	padding: 0.8rem 0.8rem;
	border-radius: 9999px;
	font-size: 1.6rem;
	line-height: 2.2rem;
	font-weight: 500;
	transition: all 0.3s ease;
	align-self: flex-start;
	max-width: 240px;
	width: 100%;
	text-align: center;
	letter-spacing: 4px;
}

.footer-cta-btn:hover {
	background-color: #dc2626;
	color: white;
}

.footer-bottom {
	background-color: #dc2626;
	padding: 4.2rem 0 2.4rem;
	max-width: 92.50%;
	width: 100%;
	margin-left: auto;
	margin-right: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	border-radius: 40px 0 0 0;
}

@media (max-width: 768px) {
	.footer-bottom {
		max-width: 100%;
		position: relative;
		right: -20px;
		padding: 4rem 0;
		margin-top: -4.8rem;
	}
}

.footer-bottom-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3.2rem;
	max-width: 1024px;
	margin: 0 auto;
}

@media (max-width: 924px) {
	.footer-bottom-content {
		flex-wrap: wrap;
		gap: 4rem;
	}
}

.social-links {
	display: flex;
	align-items: center;
	gap: 2.4rem;
}

@media (max-width: 924px) {
	.social-links {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.social-links {
		gap: 4.8rem;
	}
}

.social-link {
	transition: opacity 0.3s ease;
}

.social-link:hover {
	opacity: 0.8;
}

.social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.social-icon-green{
	width: 48px;
}

@media (max-width: 768px) {
	.social-icon {
		width: 40px;
		height: 40px;
	}

	.social-icon-green{
		width: 48px;
	}

	.social-icon img {
		width: 40px;
		height: 40px;
	}

	.social-icon-green img{
		width: 48px;
		height: auto;
	}
}

.social-icon svg {
	width: 40px;
	height: 40px;
}

.footer-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	color: white;
	font-size: 1.4rem;
	line-height: 1.9rem;
}

@media (max-width: 924px) {
	.footer-nav {
		gap: 2.4rem;
	}
}

@media (max-width: 768px) {
	.footer-nav {
		flex-direction: column;
		width: 212px;
		align-items: flex-start;
		font-size: 1.6rem;
		line-height: 2.2rem;
		gap: 2.8rem;
	}
}

.footer-nav a {
	transition: opacity 0.3s ease;
}

.footer-nav a:hover {
	opacity: 0.8;
}

@media (max-width: 768px) {
	.footer-top {
		flex-direction: column;
	}

	.footer-image,
	.footer-info {
		width: 100%;
	}

	.footer-bottom-content {
		flex-direction: column;
	}
}

.footer-copyright {
	text-align: center;
	color: white;
	font-size: 1rem;
	line-height: 1.4rem;
	margin-top: 4rem;
}

@media (max-width: 768px) {
	.footer-copyright {
		margin-top: 4.8rem;
	}
}

.scroll-top-btn {
	border: 1px solid white;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
	.scroll-top-btn {
		width: 40px;
		height: 40px;
		position: absolute;
		right: 4rem;
		bottom: 4rem;
	}

	.scroll-top-btn svg {
		width: 24px !important;
		height: 24px !important;
	}
}

.scroll-top-btn:hover {
	background-color: white;
	color: #dc2626;
}

/* ============================================
UTILITY
============================================ */

.hidden {
	display: none;
}

/* PC/SP 切り替えユーティリティ */

.pc-block {
	display: block !important;
}

.sp-block {
	display: none !important;
}

@media (max-width: 768px) {
	.pc-block {
		display: none !important;
	}

	.sp-block {
		display: block !important;
	}
}

.fade-in {
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}