@charset "utf-8";

/*====================================================================
活動理念ページ専用CSS
====================================================================*/

/* blurアニメーションの初期表示を改善 */
.philosophy-mission .blur,
.origin-section .blur,
.history-section .blur,
.cta-section .blur {
	opacity: 1;
	filter: blur(0);
	transform: scale(1);
	transition: opacity 1s 0.5s, filter 1s 0.5s, transform 1s 0.5s;
}


/*メインビジュアル
---------------------------------------------------------------------------*/
.hero-philosophy {
	position: relative;
	min-height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: var(--space-large);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.hero-philosophy {
		min-height: 70vh;
	}
	
	}/*追加指定ここまで*/

.hero-philosophy .hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-philosophy .hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-philosophy::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	padding: 1.5rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.hero-content {
		padding: 2rem;
	}
	
	}/*追加指定ここまで*/

.hero-content h2 {
	color: #fff;
	margin-bottom: 1.5rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.hero-content h2 {
		margin-bottom: 2rem;
	}
	
	}/*追加指定ここまで*/

.hero-tagline {
	font-size: 1.2rem;
	font-weight: 200;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.hero-tagline {
		font-size: 2.5rem;
		letter-spacing: 0.2em;
	}

	}/*追加指定ここまで*/


/*理念セクション
---------------------------------------------------------------------------*/
.philosophy-mission {
	background: #F5F4EC;
	padding: 5vw;
	margin-bottom: 0;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.philosophy-mission {
		padding: var(--space-large);
	}

	}/*追加指定ここまで*/

.mission-intro {
	text-align: center;
	margin-bottom: 3rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-intro {
		margin-bottom: 5rem;
	}

	}/*追加指定ここまで*/

.mission-intro h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-intro h3 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	}/*追加指定ここまで*/

.lead-text {
	font-size: 0.95rem;
	line-height: 2;
	color: #666;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.lead-text {
		font-size: 1.1rem;
	}

	}/*追加指定ここまで*/

/* lead-textのbrタグをスマホでは無効化 */
.lead-text br {
	display: none;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.lead-text br {
		display: inline;
	}

	}/*追加指定ここまで*/

/*ミッションカード*/
.mission-cards {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.mission-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
		margin-bottom: 5rem;
	}

	}/*追加指定ここまで*/

.mission-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-card .card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-card .card-image {
		height: 350px;
	}

	}/*追加指定ここまで*/

.mission-card .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.mission-card:hover .card-image img {
	transform: scale(1.1);
}

.mission-card .card-content {
	padding: 1.5rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-card .card-content {
		padding: 2rem;
	}

	}/*追加指定ここまで*/

.mission-card h4 {
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-card h4 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}

	}/*追加指定ここまで*/

.mission-card p {
	font-size: 0.9rem;
	line-height: 1.8;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.mission-card p {
		font-size: 0.95rem;
	}

	}/*追加指定ここまで*/

/*ロゴの意味*/
.logo-meaning {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	background: #fff;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.logo-meaning {
		flex-direction: row;
		gap: 3rem;
		padding: 3rem;
		text-align: left;
	}

	}/*追加指定ここまで*/

.logo-meaning .logo-image {
	flex-shrink: 0;
	width: 100px;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.logo-meaning .logo-image {
		width: 150px;
	}

	}/*追加指定ここまで*/

.logo-meaning h4 {
	font-size: 1.1rem;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.logo-meaning h4 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}

	}/*追加指定ここまで*/

.logo-meaning p {
	font-size: 0.9rem;
	line-height: 1.8;
}


/*きっかけセクション
---------------------------------------------------------------------------*/
.origin-section {
	padding: 5vw;
	margin-bottom: 0;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-section {
		padding: var(--space-large);
	}

	}/*追加指定ここまで*/

.origin-header {
	text-align: center;
	margin-bottom: 3rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-header {
		margin-bottom: 5rem;
	}

	}/*追加指定ここまで*/

.origin-header h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 200;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-header h3 {
		font-size: 2rem;
	}

	}/*追加指定ここまで*/

.origin-header .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
	letter-spacing: 0.3em;
	margin-bottom: 1rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-header .tate {
		font-size: 2.5rem;
	}

	}/*追加指定ここまで*/

.origin-header .yoko {
	font-size: 0.85rem;
	opacity: 0.6;
	letter-spacing: 0.2em;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-header .yoko {
		font-size: 0.9rem;
	}

	}/*追加指定ここまで*/

.origin-content {
	max-width: 1200px;
	margin: 0 auto;
}

.origin-block {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-bottom: 4rem;
	align-items: center;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.origin-block {
		flex-direction: row;
		gap: 4rem;
		margin-bottom: 6rem;
	}

	.origin-block.reverse {
		flex-direction: row-reverse;
	}

	.origin-block > * {
		flex: 1;
	}

	}/*追加指定ここまで*/

.origin-text {
	position: relative;
}

.year-tag {
	display: inline-block;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 0.4rem 1.2rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 0.8rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.year-tag {
		padding: 0.5rem 1.5rem;
		font-size: 0.9rem;
		margin-bottom: 1rem;
	}

	}/*追加指定ここまで*/

.origin-text h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-text h4 {
		font-size: 1.6rem;
		margin-bottom: 1.5rem;
	}

	}/*追加指定ここまで*/

.origin-text p {
	font-size: 0.95rem;
	line-height: 1.9;
	margin-bottom: 0.8rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.origin-text p {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	}/*追加指定ここまで*/

.origin-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	width: 100%;
}

.origin-image img {
	width: 100%;
	height: auto;
	display: block;
}


/*軌跡セクション
---------------------------------------------------------------------------*/
.history-section {
	background: linear-gradient(180deg, #F5F4EC 0%, #fff 100%);
	padding: 5vw;
	margin-bottom: var(--space-large);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.history-section {
		padding: var(--space-large);
	}

	}/*追加指定ここまで*/

.history-header {
	text-align: center;
	margin-bottom: 3rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.history-header {
		margin-bottom: 5rem;
	}

	}/*追加指定ここまで*/

.history-header h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.history-header h3 {
		font-size: 2.2rem;
		margin-bottom: 2rem;
	}

	}/*追加指定ここまで*/

.history-intro {
	font-size: 0.95rem;
	line-height: 2;
	color: #666;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.history-intro {
		font-size: 1.05rem;
	}

	}/*追加指定ここまで*/

/* history-introのbrタグをスマホでは無効化 */
.history-intro br {
	display: none;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.history-intro br {
		display: inline;
	}

	}/*追加指定ここまで*/

/*タイムライン*/
.timeline {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.timeline::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(180deg, 
			var(--primary-color) 0%, 
			rgba(130, 124, 117, 0.5) 50%, 
			rgba(130, 124, 117, 0.2) 100%);
		transform: translateX(-50%);
	}

	}/*追加指定ここまで*/

.timeline-item {
	position: relative;
	margin-bottom: 3rem;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.timeline-item {
		display: flex;
		gap: 3rem;
		align-items: center;
		margin-bottom: -17rem;
	}

	.timeline-item.reverse {
		flex-direction: row-reverse;
	}

	.timeline-item .timeline-marker {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}

	.timeline-item .timeline-content {
		width: calc(50% - 5rem);
	}

	/* 奇数番目（1年目・3年目）: 右側に表示 */
	.timeline-item:not(.reverse) .timeline-content {
		margin-left: auto;
		margin-right: 0;
	}

	/* 偶数番目（2年目・4年目）: 左側に表示 */
	.timeline-item.reverse .timeline-content {
		margin-right: auto;
		margin-left: 0;
	}

	}/*追加指定ここまで*/

/* タイムラインの最後のアイテムのマージンをリセット */
.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	background: #fff;
	padding: 1rem;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	margin-bottom: 1.5rem;
	width: 90px;
	height: 90px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-marker {
		width: 120px;
		height: 120px;
		gap: 0.5rem;
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	}/*追加指定ここまで*/

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	.timeline-marker {
		margin-bottom: 0;
		width: 150px;
		height: 150px;
		margin-left: 0;
		margin-right: 0;
	}

	}/*追加指定ここまで*/

.timeline-marker .year {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--primary-color);
	line-height: 1;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-marker .year {
		font-size: 1.8rem;
	}

	}/*追加指定ここまで*/

.timeline-marker .label {
	font-size: 0.75rem;
	color: #666;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-marker .label {
		font-size: 0.85rem;
	}

	}/*追加指定ここまで*/

.timeline-content {
	background: #fff;
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-content {
		padding: 2rem;
	}

	}/*追加指定ここまで*/

.timeline-images {
	display: block;
	margin-bottom: 1.5rem;
	margin-top: 15px;
	position: relative;
	min-height: auto;
	text-align: center;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-images {
		margin-bottom: 2rem;
		margin-top: 20px;
	}

	}/*追加指定ここまで*/

.timeline-images img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
	object-fit: cover;
	display: inline-block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-images img {
		width: 90%;
	}

	}/*追加指定ここまで*/

.timeline-text h4 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-text h4 {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}

	}/*追加指定ここまで*/

.timeline-text .large-char {
	font-size: 2rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-text .large-char {
		font-size: 3rem;
	}

	}/*追加指定ここまで*/

.timeline-text p {
	font-size: 0.9rem;
	line-height: 1.9;
	margin-bottom: 0.8rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.timeline-text p {
		font-size: 1rem;
		margin-bottom: 1rem;
	}

	}/*追加指定ここまで*/

.achievements {
	list-style: none;
	margin: 1.5rem 0 0 0;
	padding: 1rem;
	background: #F5F4EC;
	border-radius: 10px;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.achievements {
		margin: 2rem 0 0 0;
		padding: 1.5rem;
	}

	}/*追加指定ここまで*/

.achievements li {
	padding: 0.4rem 0;
	font-size: 0.85rem;
	position: relative;
	padding-left: 1.5rem;
	margin-left: 0;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.achievements li {
		padding: 0.5rem 0;
		font-size: 0.95rem;
	}

	}/*追加指定ここまで*/

.achievements li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-weight: bold;
}

/*4年目（未来）のスタイル*/
.timeline-item.future .timeline-marker {
	background: linear-gradient(135deg, var(--primary-color) 0%, #a89a8d 100%);
}

.timeline-item.future .timeline-marker .year,
.timeline-item.future .timeline-marker .label {
	color: #fff;
}

.future-pillars {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.future-pillars {
		gap: 1.5rem;
		margin-top: 2rem;
	}

	}/*追加指定ここまで*/

.pillar {
	background: #F5F4EC;
	padding: 1rem;
	border-radius: 10px;
	border-left: 4px solid var(--primary-color);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.pillar {
		padding: 1.5rem;
	}

	}/*追加指定ここまで*/

.pillar h5 {
	font-size: 1rem;
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.pillar h5 {
		font-size: 1.1rem;
		margin-top: 0.8rem;
		margin-bottom: 0.8rem;
	}

	}/*追加指定ここまで*/

.pillar p {
	font-size: 0.85rem;
	line-height: 1.7;
	margin: 0;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.pillar p {
		font-size: 0.9rem;
	}

	}/*追加指定ここまで*/


/*フォトギャラリー プレビュー
---------------------------------------------------------------------------*/
.gallery-preview {
	padding: 5vw;
	margin-bottom: var(--space-large);
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.gallery-preview {
		padding: var(--space-large);
	}

	}/*追加指定ここまで*/

.gallery-preview h3 {
	font-size: 1.5rem;
	margin-bottom: 3rem;
	font-weight: 600;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.gallery-preview h3 {
		font-size: 2rem;
		margin-bottom: 4rem;
	}

	}/*追加指定ここまで*/


/*CTA セクション
---------------------------------------------------------------------------*/
.cta-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, #a89a8d 100%);
	color: var(--primary-inverse-color);
	padding: 3rem 5vw;
	text-align: center;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cta-section {
		padding: 5rem var(--space-large);
	}

	}/*追加指定ここまで*/

.cta-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: #fff;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cta-content h3 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	}/*追加指定ここまで*/

.cta-content p {
	font-size: 0.95rem;
	line-height: 2;
	margin-bottom: 2rem;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cta-content p {
		font-size: 1.05rem;
		margin-bottom: 3rem;
	}

	}/*追加指定ここまで*/

.cta-section .btn1 a {
	background: #fff;
	color: var(--primary-color);
	font-size: 1rem;
	padding: 0.8rem 2rem;
	display: inline-block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.cta-section .btn1 a {
		font-size: 1.1rem;
		padding: 1rem 3rem;
	}

	}/*追加指定ここまで*/

.cta-section .btn1 a:hover {
	background: #f0f0f0;
}