/* ========================================
	 SHASHINKAGAKU PACKAGE TEAM - Landing Page Styles

	 純静的 LP (Landing Page) - ビルド工程なし
	 技術スタック: 素HTML + CSS + JS + CDN (Ress Reset / Google Fonts / Lenis)

	 主要構成要素:
	 - CSS Variables (色/グラデーション/アニメーション)
	 - アニメーションシステム (.inview / .is-inview)
	 - レスポンシブ設計 (モバイルファースト / 1024px/768px/640px/400px)
	 - セクション別コンポーネント (top/commit/history/mission/howto/contact/faq)
	 ======================================== */

/* ========================================
	 CSS Variables
	 ======================================== */
:root {
	/* Color Palette */
	--black: #000;
	--blue: #285ae6;
	--pink: #ff61b9;
	--yellow: #ffd200;
	--beige: #f3f3e9;
	--pastel-blue: #6e8be6;
	--light-blue: #eef1fb;
	--light-purple: #e6e5ff;
	--grey: #dcdcdd;

	/* Gradients */
	--grad-purple: linear-gradient(60deg, rgba(197, 59, 192, 1) 0%, rgba(123, 108, 225, 1) 44%, rgba(57, 152, 255, 1) 100%);
	--grad-purple-fallback: #c53bc0;
	--grad-blue: linear-gradient(60deg, rgba(143, 206, 234, 1) 0%, rgba(103, 190, 225, 1) 50%, rgba(0, 164, 207, 1) 100%);
	--grad-blue-fallback: #8fceea;

	/* Animation Easing */
	--easing-default: cubic-bezier(0.22, 0.9, 0.3, 1);
}

/* ========================================
	 Reset & Base Styles
	 ======================================== */
* {
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06rem;
	background: #fff;
}

/* ========================================
	 Animation System
	 ======================================== */
.inview {
	opacity: 0;
	/* transform: translateY(50px); */
}

.inview.is-inview {
	opacity: 1;
	/* transform: translateY(0); */
	transition:
		opacity 0.8s var(--easing-default) 0.3s;
		/* transform 0.8s var(--easing-default) 0.3s; */
}

/* ========================================
	 Layout Utilities
	 ======================================== */
.box-default {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.box-padding-x {
	padding-left: 50px;
	padding-right: 50px;
}

.box-padding-y {
	padding-top: 80px;
	padding-bottom: 80px;
}

.flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-self: stretch;
	gap: 20px;
}

.flex2 .row {
	width: calc(100% / 2 - 20px);
}

.row .row-image {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.margin-x-auto {
	margin-left: auto;
	margin-right: auto;
}

/* ========================================
	 Typography Utilities
	 ======================================== */
em.blue {
	font-style: normal;
	color: var(--blue);
}

em.pink {
	font-style: normal;
	color: var(--pink);
}

em.pastel-blue {
	font-style: normal;
	color: var(--pastel-blue);
}

.spbr {
	display: none;
}

/* ========================================
	 Button Components
	 ======================================== */
.btn {
	width: 100%;
	max-width: 360px;
	display: inline-block;
	text-decoration: none;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-align: center;
	padding: 15px;
	border-radius: 45px;
	transition: all 0.3s var(--easing-default);
	position: relative;
}

.btn:hover {
	opacity: 0.8;
}

/* Chevron Arrow Icon */
.ico-caret::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10%;
	display: inline-block;
	width: 15px;
	height: 15px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg) translateY(-50%);
	box-sizing: border-box;
	transition: all 0.25s var(--easing-default);
}

.ico-caret:hover::after {
	right: 8%;
}

/* ========================================
	 CTA Module
	 ======================================== */
.mod-cta {
	width: 100%;
	max-width: 360px;
	padding: 30px 0;
	text-align: center;
}

.cta-lead {
	font-size: 22px;
	color: var(--pastel-blue);
	letter-spacing: 0.014em;
	margin-bottom: 15px;
	font-weight: bold;
}

/* ========================================
	 Background Utilities
	 ======================================== */
.bg-grad-purple {
	background: var(--grad-purple-fallback);
	background: var(--grad-purple);
	color: #fff;
}

.bg-beige {
	background: var(--beige);
}

/* ========================================
	 Section Components
	 ======================================== */
.section-title {
	padding: 30px 0 0;
	text-align: center;
	mix-blend-mode: multiply !important;
}

.section-title img {
	width: auto;
	max-width: 95%;
	height: 320px;
}

.section-lead {
	font-size: 60px;
	line-height: 1.6;
	letter-spacing: 0.018em;
	margin: -1.5em 0 1.5em;
	font-weight: bold;
	text-align: center;
	font-family: zen maru gothic, sans-serif;
}

/* ========================================
	 Top Section
	 ======================================== */
#top {
	position: relative;
}

.top-typo {
	width: 100%;
	position: relative;
	padding: 15px 15px 20px;
	z-index: 5;
	mix-blend-mode: multiply !important;
}

.top-typo img {
	width: 100%;
	height: auto;
}

.top-text {
	position: relative;
	z-index: 5;
}

.top-lead {
	font-size: 22px;
	line-height: 2;
	letter-spacing: 0.14em;
	font-family: Zen Maru Gothic, sans-serif;
	font-weight: bold;
	margin-bottom: 30px;
}

.top-copy {
	font-size: 75px;
	line-height: 1;
	font-family: Zen Maru Gothic, sans-serif;
	font-weight: bold;
	letter-spacing: 0.06em;
}

.top-copy .marker {
	background: #fff;
	display: inline-block;
	margin: 10px 0;
	padding: 5px 10px 8px 10px;
	border-radius: 20px;
}

.top-copy .size-l {
	font-style: normal;
	font-size: 1.3em;
	vertical-align: -0.05em;
	letter-spacing: 0.1em;
	padding-left: 0.07em;
	line-height: 0.7em;
}

.top-cover {
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	max-width: 1100px;
	z-index: 1;
}

.top-cover img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ========================================
	 Commit Section
	 ======================================== */
.commit-box {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 40px;
	padding: 30px 50px;
	margin: 40px auto 0;
	font-family: zen maru gothic, sans-serif;
	position: relative;
	z-index: 5;
}

.commit-title {
	font-size: 41px;
	font-weight: bold;
	letter-spacing: 0.06em;
	margin-bottom: 30px;
	padding-right: 210px;
	position: relative;
}

.commit-title img {
	content: "";
	position: absolute;
	bottom: -10px;
	right: 0;
	width: 230px;
	height: auto;
}

.commit-list {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	margin: 0;
	padding: 0;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.commit-list li {
	width: calc(100% / 4 - 20px);
	text-align: center;
	color: #686b6e;
	font-weight: bold;
}

.commit-list li img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
	margin-bottom: 15px;
}

/* ========================================
	 History Section
	 ======================================== */
.history-box01 figure {
	position: relative;
	padding-bottom: 100px;
}

.history-box01 figure .position-image {
	position: absolute;
	bottom: 0;
	left: -70px;
	height: auto;
	width: 220px;
	z-index: 3;
}

.history-title {
	font-size: 46px;
	letter-spacing: 0.1em;
	line-height: 1.6;
	position: relative;
}

.history-title .position-image {
	position: absolute;
	bottom: -95px;
	right: 0;
	width: 120px;
	height: auto;
	z-index: 3;
}

#history p {
	font-weight: bold;
	line-height: 2.4;
	margin-top: 2em;
}

.history-lead {
	font-size: 28px;
	line-height: 2;
	letter-spacing: 0.014em;
	margin: 1em 0 2em;
	padding: 0 280px 0 0;
	font-weight: bold;
	background: url("images/image09.png") no-repeat right center;
	background-size: 270px auto;
}

/* ========================================
	 Mission Section
	 ======================================== */
#mission {
	background: url(images/icons.svg) no-repeat center calc(100% - 110px);
	background-size: clamp(300px, 90%, 1000px) auto;
	padding-bottom: 300px;
}

/* ========================================
	 How-to Section
	 ======================================== */
.howto-list li {
	list-style: none;
	position: relative;
	overflow: hidden;
	margin: 150px 0 0;
	min-height: 500px;
}

.howto-list li:nth-child(1) {
	background: url(images/text-01.svg) no-repeat -200px center;
	background-size: auto 480px;
}

.howto-list li:nth-child(1) h3 {
	position: relative;
}

.howto-list li:nth-child(1) h3::after {
	content: "";
	position: absolute;
	right: 50px;
	bottom: 50px;
	display: block;
	width: 115px;
	height: 199px;
	background: url(images/image11.png) no-repeat center;
	background-size: cover;
}

.howto-list li:nth-child(2) {
	background: url(images/text-02.svg) no-repeat -200px center;
	background-size: auto 480px;
}

.howto-list li:nth-child(3) {
	background: url(images/text-03.svg) no-repeat -200px center;
	background-size: auto 480px;
}

.howto-list .howto-box {
	position: relative;
	z-index: 2;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}

.howto-list .howto-content {
	width: calc(100% - 550px - 50px);
}

.howto-list h3 {
	font-size: 34px;
	line-height: 1.8;
	letter-spacing: 0.18em;
	font-weight: 700;
	margin-bottom: 15px;
}

.howto-list h3::before {
	content: "POINT";
	display: block;
	font-size: 30px;
	font-family: josefin sans, sans-serif;
	letter-spacing: 0;
}

.howto-list h3 + p {
	font-size: 18px;
	line-height: 2.4;
	letter-spacing: 0.1em;
	font-weight: 700;
}

.howto-list .how-to-image {
	width: 550px;
	height: auto;
	vertical-align: bottom;
	border-radius: 20px;
}

.howto-list .how-to-image img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* ========================================
	 Contact Section
	 ======================================== */
#contact {
	overflow: hidden;
	padding-bottom: 80px;
}

.flow-list {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 50px;
	margin: auto;
}

.flow-list li {
	width: calc(100% / 3 - 50px);
	max-width: 300px;
}

.flow-list li h3 {
	color: var(--blue);
	font-size: 30px;
	line-height: 1.8;
	letter-spacing: 0.14em;
	font-weight: 700;
	margin: 15px 0 10px;
}

.flow-list li p {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0;
}

.flow-list li figure {
	position: relative;
}

.flow-list li figure img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* Arrow Indicators */
.flow-list li figure::before {
	content: "";
	position: absolute;
	top: calc(50% + 15px);
	right: -60px;
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 20px solid #686b6e;
	transform: translateY(-50%);
}

.flow-list li:nth-child(3) figure::before,
.flow-list li:nth-child(5) figure::before,
.flow-list li:nth-child(6) figure::before {
	display: none;
}

.flow-list li:nth-child(3) figure::after {
	content: "";
	position: absolute;
	top: calc(50% + 15px);
	right: -11vw;
	width: 11vw;
	height: 140px;
	background: url(images/arr01.svg) no-repeat right center;
	background-size: cover;
	transform: translateY(-50%);
}

.flow-list li:nth-child(4) figure::after {
	content: "";
	position: absolute;
	top: calc(50% + 15px);
	left: -30vw;
	width: 30vw;
	height: 140px;
	background: url(images/arr01.svg) no-repeat right center;
	background-size: auto 100%;
	transform: translateY(-50%);
}

/* ========================================
	 FAQ Section
	 ======================================== */
.faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-list li {
	padding: 30px 40px;
	position: relative;
	background: var(--light-purple);
	margin: 30px 0;
	border-radius: 40px;
}

.faq-list li .q {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 15px;
	border-bottom: 1px solid #000;
	padding: 0 0 20px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.faq-list li .q::before {
	content: "Q";
	display: inline-block;
	width: 60px;
	padding-top: 10px;
	font-size: 60px;
	text-align: center;
	line-height: 1;
	font-weight: 500;
	color: var(--blue);
	font-family: josefin sans, sans-serif;
	margin-right: 20px;
}

.faq-list li .a {
	font-size: 18px;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: 500;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.faq-list li .a::before {
	content: "A";
	display: inline-block;
	width: 60px;
	font-size: 60px;
	text-align: center;
	line-height: 1;
	font-weight: 500;
	color: var(--pink);
	font-family: josefin sans, sans-serif;
	margin-right: 20px;
}

.faq-list li figure {
	position: absolute;
}

.faq-list li figure img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.faq-list li:nth-child(2) figure {
	top: auto;
	top: 50%;
	transform: translateY(-50%);
	right: 50px;
	width: 150px;
}

.faq-list li:nth-child(4) figure {
	top: auto;
	bottom: 5px;
	right: 120px;
	width: 180px;
}

/* ========================================
	 Responsive Design - Consolidated Media Queries
	 ======================================== */

/* Tablet Large (1024px and below) */
@media screen and (max-width: 1024px) {
	/* Layout */
	.box-default {
		width: 95%;
	}

	/* Typography Utilities */
	.nobr1024 {
		display: none;
	}

	.section-title img {
		height: 200px;
	}

	/* Section Components */
	.section-lead {
		font-size: 50px;
		line-height: 1.4;
	}

	/* Top Section */
	.top-cover {
		width: 68%;
		z-index: 1;
	}

	/* Commit Section */
	.commit-title {
		font-size: 34px;
		padding-right: 130px;
	}

	.commit-title img {
		width: 200px;
		height: auto;
		right: -50px;
	}

	.commit-list li {
		font-size: 13px;
	}

	/* History Section */
	.history-title {
		font-size: 34px;
	}

	.history-title .position-image {
		width: 100px;
		right: -40px;
		bottom: -70px;
	}

	.history-lead {
		font-size: 22px;
		padding: 0 250px 0 0;
		background-size: 200px auto;
	}

	/* Mission Section */
	#mission {
		padding-bottom: 230px;
		background-position-y: calc(100% - 80px);
	}

	/* How-to Section */
	.howto-list .howto-content {
		width: calc(100% - 400px - 50px);
	}

	.howto-list .how-to-image {
		width: 400px;
	}

	.howto-list h3 {
		line-height: 1.6;
	}

	.howto-list h3::before {
		font-size: 24px;
	}

	.howto-list li:nth-child(1) h3::after {
		width: 80px;
		height: 140px;
		right: 10px;
		bottom: 45px;
	}

	.howto-list h3 + p {
		font-size: 16px;
		line-height: 2;
	}

	.howto-list li:nth-child(1) {
		background-size: auto 400px;
	}

	.howto-list li:nth-child(2) {
		background-size: auto 400px;
	}

	.howto-list li:nth-child(3) {
		background-size: auto 400px;
	}

	/* Contact Section */
	.flow-list li:nth-child(3) figure::after {
		display: none;
	}

	.flow-list li:nth-child(4) figure::after {
		display: none;
	}
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
	/* Layout */
	.box-padding-x {
		padding-left: 20px;
		padding-right: 20px;
	}

	.box-padding-y {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	/* Typography Utilities */
	.nobr768 {
		display: none;
	}

	/* Section Components */
	.section-title img {
		height: 150px;
	}

	.section-lead {
		font-size: 40px;
		line-height: 1.2;
		margin: -1em 0 1em;
	}

	/* Top Section */
	.top-copy {
		font-size: 60px;
		line-height: 1.2;
	}

	/* Commit Section */
	.commit-box {
		padding: 20px 30px;
	}

	.commit-title {
		font-size: 28px;
		padding-right: 90px;
	}

	.commit-title img {
		width: 150px;
		right: -30px;
	}

	.commit-list {
		gap: 10px;
	}

	.commit-list li {
		width: calc(100% / 4 - 10px);
		font-size: 11px;
	}

	/* History Section */
	.history-title {
		font-size: 28px;
	}

	.history-title .position-image {
		width: 80px;
		right: -20px;
		bottom: -40px;
	}

	.history-box01 figure .position-image {
		width: 75%;
		bottom: auto;
		top: 70%;
		transform: rotate(-10deg);
	}

	#history p {
		font-size: 15px;
		letter-spacing: 0.014em;
		line-height: 2;
		margin-top: 1.5em;
	}

	.history-lead {
		font-size: 22px;
		padding: 0 250px 0 0;
		background-size: 200px auto;
	}

	/* Mission Section */
	#mission {
		padding-bottom: 150px;
		background-position-y: calc(100% - 50px);
	}

	/* How-to Section */
	.howto-list li {
		min-height: auto;
		margin: 80px 0 0;
	}

	.howto-list .howto-content {
		width: 100%;
		padding-left: 20%;
	}

	.howto-list li:nth-child(1) h3::after {
		width: 60px;
		height: 100px;
		right: 60px;
		bottom: 50px;
	}

	.howto-list .how-to-image {
		width: 100%;
		padding-left: 20%;
		margin: 0 auto 30px;
	}

	.howto-list li {
		background-size: auto 250px !important;
		background-position: -100px 20px !important;
	}

	/* Contact Section */
	.flow-list {
		gap: 30px;
	}

	.flow-list li {
		width: calc(100% / 2 - 30px);
	}

	.flow-list li figure::before {
		right: -58px;
	}

	.flow-list li:nth-child(2) figure::before,
	.flow-list li:nth-child(4) figure::before {
		display: none;
	}

	.flow-list li:nth-child(3) figure::before {
		display: inline;
	}

	/* FAQ Section */
	.faq-list li {
		padding: 15px 20px;
	}

	.faq-list li:nth-child(2) .a {
		padding-right: 120px;
	}

	.faq-list li:nth-child(2) figure {
		top: auto;
		transform: none;
		right: 20px;
		bottom: 20px;
		width: 110px;
	}

	.faq-list li:nth-child(4) .a {
		padding-right: 150px;
	}

	.faq-list li:nth-child(4) figure {
		top: auto;
		transform: none;
		right: 20px;
		bottom: 20px;
		width: 150px;
	}
}

/* Mobile (640px and below) */
@media screen and (max-width: 640px) {
	/* Layout */
	.box-padding-x {
		padding-left: 10px;
		padding-right: 10px;
	}

	/* Typography Utilities */
	.spnobr {
		display: none;
	}

	.spbr {
		display: inline;
	}

	/* Button Components */
	.btn {
		font-size: 20px;
		padding: 12px;
	}

	/* CTA Module */
	.cta-lead {
		font-size: 18px;
	}

	/* Section Components */
	.section-title img {
		height: 70px;
	}

	.section-lead {
		font-size: 28px;
		line-height: 1.4;
		margin: 0 0 0.5em;
	}

	/* Top Section */

	#top .mod-cta{
		margin: 0 auto;
		padding-bottom: 20px;
	}
	.top-lead {
		font-size: 18px;
		line-height: 1.8;
		letter-spacing: 0.1em;
		margin-bottom: 20px;
	}

	.top-copy {
		font-size: 32px;
		line-height: 1.2;
		display: flex;
		flex-flow: row wrap;
		justify-content: flex-start;
	}

	.top-copy br {
		display: none;
	}

	.top-cover {
		width: 88%;
	}

	/* Commit Section */
	.commit-box {
		padding: 20px 20px;
		margin-bottom: 50px;
	}

	.commit-title {
		text-align: center;
		padding-right: 0;
		line-height: 1.4;
		margin-bottom: 20px;
	}

	.commit-title img {
		display: none;
	}

	.commit-list {
		gap: 10px;
	}

	.commit-list li {
		width: calc(100% / 2 - 10px);
		font-size: 11px;
	}

	/* History Section */
	#history {
		overflow: hidden;
		padding-bottom: 50px;
	}

	.history-box01 figure {
		width: 80% !important;
		margin: 0 auto !important;
		padding-bottom: 70px;
	}

	.history-box01 figure .position-image {
		width: 70%;
		top: 70%;
	}

	.history-text {
		width: 100% !important;
	}

	.history-title .position-image {
		width: 100px;
	}

	.history-lead {
		font-size: 20px;
		padding: 0;
		background: none;
		margin-bottom: 1.5em;
		line-height: 1.6;
	}

	.history-box02 .row {
		width: 100% !important;
	}

	/* Mission Section */
	#mission {
		padding-bottom: 100px;
		background-position-y: calc(100% - 50px);
	}

	/* How-to Section */
	.howto-list .howto-box {
		flex-direction: column;
		gap: 30px;
	}

	.howto-list .howto-content {
		padding-left: 5%;
		padding-right: 5%;
	}

	.howto-list h3 {
		font-size: 30px;
		margin-bottom: 10px;
		padding-bottom: 20px;
	}

	.howto-list li {
		margin-top: 50px;
	}

	.howto-list li:nth-child(1) h3::after {
		bottom: -40px;
	}

	.howto-list .how-to-image {
		padding-left: 5%;
		padding-right: 5%;
		margin-bottom: 20px;
	}

	/* Contact Section */
	.flow-list {
		flex-flow: column nowrap;
		gap: 20px;
	}

	.flow-list li {
		width: 85% !important;
		margin: 20px auto 0;
		max-width: none !important;
	}

	.flow-list li figure::before {
		display: none;
	}

	.flow-list li figure::after {
		display: none;
	}

	.flow-list li:nth-child(3) figure::before {
		display: none;
	}

	/* FAQ Section */
	.faq-list li .q {
		align-items: flex-start !important;
	}

	.faq-list li .a {
		padding-left: 10px;
		padding-right: 0 !important;
		align-items: flex-start !important;
	}

	.faq-list li .a::before {
		margin-right: 20px !important;
	}

	.faq-list li figure img {
		display: none;
	}
}

/* Mobile Small (400px and below) */
@media screen and (max-width: 400px) {
	/* Layout */
	.box-default {
		width: 98%;
	}

	.box-padding-x {
		padding-left: 5px;
		padding-right: 5px;
	}

	/* CTA Module */
	.mod-cta {
		max-width: 300px;
	}

	/* Top Section */
	.top-copy {
		font-size: 25px;
	}

	.top-copy .marker {
		margin: 5px 0 !important;
	}

	/* Commit Section */
	.commit-title {
		font-size: 26px;
	}

	.commit-list li {
		font-size: 14px;
	}

	.commit-box {
		margin: 20px 5px !important;
	}

	.history-box01 figure{
		padding-bottom: 50px !important;
	}

	.history-box01 figure .position-image{
		top: 75% !important;
	}

	/* History Section */
	.history-title {
		font-size: 26px;
	}

	.history-title .position-image {
		width: 90px;
		right: -40px;
		bottom: -30px;
	}

	/* How-to Section */
	.howto-list li:nth-child(1) h3::after {
		right: 0;
	}

	.howto-list li {
		background-size: auto 180px !important;
		background-position: center 40px !important;
	}

	/* FAQ Section */
	#faq {
		padding-bottom: 60px !important;
	}

	.faq-list li .q {
		line-height: 1.4 !important;
	}

	.faq-list li .q::before {
		width: 40px;
		font-size: 40px;
		margin-right: 10px;
	}

	.faq-list li .a {
		line-height: 1.6 !important;
		padding-left: 0 !important;
	}

	.faq-list li .a::before {
		width: 40px;
		font-size: 40px;
	}
}


@media screen and (min-width: 350px) and (max-width: 400px) {
	.top-copy mark.marker:nth-of-type(1) {
		border-radius: 20px 0 0 20px;
		padding-right: 0;
	}
	.top-copy mark.marker:nth-of-type(2) {
		border-radius: 0 20px 20px 0;
		padding-left: 0;
	}

	.history-title .position-image{
		width: 26vw;
		right: -3%;
		bottom: -30px;
	}
}



.companyInfo{
	padding: 24px 0;
	background: #4d4d4d;
	text-align: center;
	font-size: 12px;
	color: #fff;
}
.companyInfo .logoCompany{
	margin-bottom: 1.6rem;
}
.companyInfo .accessTxt a.tel{color: #fff; text-decoration: none; font-weight: 400;}
.companyInfo .accessTxt a.tel, .companyInfo .accessTxt a.tel:active, .companyInfo .accessTxt a.tel:hover{cursor: default;}
.companyInfo .accessTxt a.tel.on{opacity: 1;}
@media screen and (max-width:640px){ /* SP */
	.companyInfo .accessTxt{
		padding: 0 1em;
		font-size: 1.1rem;
	}
}
.copyright{
	height: 4.0rem;
	text-align: center;
	font-size: 1.2rem;
	position: relative;
}
	@media screen and (max-width:640px){ /* SP */
		.copyright{
			height: auto;
			padding: 1em 0;
			font-size: 1.1rem;
		}
	}

.copyright small{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
  font-size: 12px;
}
@media screen and (max-width:640px){ /* SP */
	.copyright small{
		display: block;
		height: auto;
		margin-bottom: .4em;
	}
}
.copyright a{color: #000; text-decoration: none;}
.copyright a, .copyright a:active, .copyright a:hover{cursor: default;}
.copyright a.on{opacity: 1;}

.copyright .personalinfo{
	display: flex;
	align-items: center;
	justify-content: left;
	height: 100%;
	position: absolute;
	right: 2em;
	top: 0;
  font-size: 12px;
}
.copyright a.personalinfo {
  cursor: pointer;
}
@media screen and (max-width:640px){ /* SP */
	.copyright .personalinfo{
		display: block;
		height: auto;
		position: static;
	}
}
