@charset "UTF-8";


/*

◼︎CSS INDEX

カスタムプロパティ
reset css
共通設定
ヘッダー
フッター
パーツ：基本（inner,pc/spでの表示非表示など）
パーツ：見出しタイトル
パーツ：ボタン
パーツ：その他

*/


/*######################################################
カスタムプロパティ
######################################################*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@500&display=swap");


/* =====================
フォント
===================== */
:root {
	--font-family-base: "Noto Sans JP";
	--font-family-en: "Poppins", sans-serif;
}

/* =====================
インナー幅の設定
===================== */
:root {
	--width-inner: 1224px;
}

/* =====================
カラー設定
===================== */
:root {
	--color-black: #202020;
	--color-gray: #E7E7E7;
	--color-white: #ffffff;
	--color-red: #E93658;
	--color-blue: #6CEEEA;
	--color-navy: #003962;
	--color-body-bg: linear-gradient(90deg, #003962 0%, #001829 100%);
	--color-body-txt: #202020;
}

/* =====================
その他の設定
===================== */
@media (min-width:768px) {
	:root {
		--bg-grid-white:
			repeating-linear-gradient(0deg,
				rgba(255, 255, 255, 0.1) 0px,
				rgba(255, 255, 255, 0.1) 1px,
				transparent 0px,
				transparent 80px),
			repeating-linear-gradient(90deg,
				rgba(255, 255, 255, 0.1) 0px,
				rgba(255, 255, 255, 0.1) 1px,
				transparent 0px,
				transparent 80px);

		--bg-grid-black:
			repeating-linear-gradient(0deg,
				rgba(0, 0, 0, 0.1) 0px,
				rgba(0, 0, 0, 0.1) 1px,
				transparent 0px,
				transparent 80px),
			repeating-linear-gradient(90deg,
				rgba(0, 0, 0, 0.1) 0px,
				rgba(0, 0, 0, 0.1) 1px,
				transparent 0px,
				transparent 80px);
	}
}

@media (max-width:767px) {
	:root {
		--bg-grid-white:
			repeating-linear-gradient(0deg,
				rgba(255, 255, 255, 0.1) 0px,
				rgba(255, 255, 255, 0.1) 1px,
				transparent 0px,
				transparent 50px),
			repeating-linear-gradient(90deg,
				rgba(255, 255, 255, 0.1) 0px,
				rgba(255, 255, 255, 0.1) 1px,
				transparent 0px,
				transparent 50px);

		--bg-grid-black:
			repeating-linear-gradient(0deg,
				rgba(0, 0, 0, 0.1) 0px,
				rgba(0, 0, 0, 0.1) 1px,
				transparent 0px,
				transparent 50px),
			repeating-linear-gradient(90deg,
				rgba(0, 0, 0, 0.1) 0px,
				rgba(0, 0, 0, 0.1) 1px,
				transparent 0px,
				transparent 50px);
	}
}




/*######################################################
reset css
######################################################*/
html {
	background: var(--color-body-bg);
	color: var(--color-body-txt);
	overflow-x: hidden;
	scrollbar-gutter: stable;
	overflow-x: hidden;
	scroll-padding-top: 80px; 
}

body * {
	font-family: var(--font-family-base);
	font-size: clamp(14px, 1.2vw, 16px);
	font-size: 16px;
	font-feature-settings: "palt" 1;
	box-sizing: border-box;
	line-height: 1.75;
	letter-spacing: 0.03em;
	position: relative;
}

a {
	color: var(--color-link-txt);
}

html,
body,
div,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
blockquote,
pre,
a,
address,
em,
img,
small,
strike,
strong,
sub,
sup,
b,
u,
i,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
form,
label,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: 400;
	vertical-align: baseline;
	z-index: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	text-align: left;
}

ol,
ul {
	padding-left: 2em;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}




/*######################################################
共通設定
######################################################*/
/* telリンク無効 */
@media (any-hover: hover) {

	a[href^="tel:"],
	a[href^="tel:"]::after {
		pointer-events: none !important;
		content: none !important;
	}
}


/* アンカーリンク上部に余白 */
main section:has([id])::before {
	content: "";
	display: block;
	height: 80px;
	margin-top: -80px;
	visibility: hidden;
}




/*######################################################
ヘッダー
######################################################*/
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 64px;
	background: rgba(32, 32, 32, 0.4);
	backdrop-filter: blur(20px);
	border-radius: calc(1px * infinity);
	position: absolute;
	z-index: 100;
	width: calc(100% - 26px);
	margin: 30px 13px;
}

.header__title {
	width: 187px;
	aspect-ratio: 288 / 50;
	margin-left: 16px;
}

.header__title img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: left center;
}

.header__contact {
	display: none;
}

@media (min-width:768px) {
	.header {
		height: 100px;
		margin: 20px;
		width: calc(100% - 40px);
	}

	.header__title {
		width: 288px;
		margin-left: 50px;
	}

	.header__contact {
		display: block;
		margin-right: 115px;
		margin-top: -5px;
	}
}


/**************************************************
ヘッダーメニュー
**************************************************/
/* ドロワーメニュー表示時のスタイル */
html:has(.is-drawerOpen) {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

/* ドロワーメニューのスクロール設定 */
.header__drawer {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

/* スクロールバー非表示 */
.header__drawer {
	/*IE・Edge*/
	-ms-overflow-style: none;
	/*Firefox*/
	scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
	display: none;
}


/* ==============================
ドロワーメニュー
============================== */
.header__drawer {
	display: flex;
	position: fixed;
	z-index: 9998;
	top: 20px;
	right: 20px;
	background: var(--color-body-bg);
	transition: all 0.4s;

	width: calc(100% - 40px);
	max-width: 496px;
	height: calc(100vh - 40px);
	height: calc(100svh - 40px);
	max-height: 700px;
	outline: solid 4px var(--color-white);
	border-radius: 48px;
	padding-left: clamp(35px, 3.5vw, 48px);
	padding-block: 30px;
	opacity: 0;
	pointer-events: none;
}

.header__drawer[aria-hidden=false] {
	opacity: 1;
	pointer-events: auto;
}


/* ==============================
ドロワーメニュー中身
============================== */
.header__drawer > * {
	display: grid;
	align-items: center;
	color: var(--color-white);
}

.drawer-menu__list {
	list-style: none;
	padding-left: 0;
	display: grid;
	gap: 1.5em;
}

.drawer-menu__item a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.drawer-menu__item span:lang(ja) {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.drawer-menu__item span:lang(en) {
	font-weight: 500;
	color: var(--color-red);
	line-height: 1;
}

@media (min-width:768px) {
	.drawer-menu__item a {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1.5em;
		text-decoration: none;
	}
}


/* ==============================
ハンバーガーボタン
============================== */
.hum-btn {
	position: fixed;
	z-index: 9999;
	top: 40px;
	right: 28px;
	cursor: pointer;
	width: 48px;
	height: 48px;
	border: none;
	background: var(--color-white);
	border: 3px solid var(--color-black);
	border-radius: calc(1px * infinity);

	display: grid;
	align-items: center;
	justify-content: center;
}

@media (min-width:768px) {
	.hum-btn {
		top: 40px;
		right: 60px;
		width: 60px;
		height: 60px;
	}
}

/*×に変化*/
.hum-btn span,
.hum-btn::before,
.hum-btn::after {
	content: '';
	display: inline-block;
	transition: all 0.3s;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	height: 3px;
	border-radius: 2px;
	background-color: var(--color-black);
	width: 60%;
}

.hum-btn::before {
	transform: translateY(-10px) translateX(-50%);
}

.hum-btn::after {
	transform: translateY(10px) translateX(-50%);
}

.hum-btn[aria-expanded="true"] span {
	opacity: 0;
}

.hum-btn[aria-expanded="true"]::before {
	transform: translateY(0) translateX(-50%) rotate(38deg);
}

.hum-btn[aria-expanded="true"]::after {
	transform: translateY(0) translateX(-50%) rotate(-38deg);
}




/*######################################################
フッター
######################################################*/
.footer {
	background-color: var(--color-black);
	padding: 175px 0;
}

.footer figure {
	width: 280px;
	aspect-ratio: 280 / 50;
	margin-inline: auto;
}

.footer figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}




/*######################################################
パーツ：基本（inner,pc/spでの表示非表示など）
######################################################*/

/* =====================
inner
===================== */
.inner {
	width: calc(100% - 40px);
	max-width: var(--width-inner);
	margin-left: auto;
	margin-right: auto;
}

.inner .inner {
	width: calc(100% - 32px);
}


/* =====================
.sp でスマートフォンのみ表示
===================== */
@media (min-width: 768px) {
	.sp {
		display: none;
	}
}

/* =====================
.pc でPCのみ表示
===================== */
@media (max-width: 767px) {
	.pc {
		display: none;
	}
}




/*######################################################
パーツ：見出しタイトル
######################################################*/
.section-title {
	position: relative;
}

.section-title p {
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	font-weight: 500;
	font-family: var(--font-family-en);
	color: var(--color-blue);
	font-size: clamp(64px, 9vw, 128px);
	letter-spacing: 0;

	color: transparent;
	-webkit-text-stroke: 2px var(--color-red);
	text-shadow: 3px 0px var(--color-blue);
}

.section-title h2 {
	font-size: clamp(24px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-white);
	letter-spacing: 0.05em;
}

.section-title h2 img {
	height: 1.75em;
	width: auto;
	font-size: inherit;
}

@media (min-width:768px) {
	.section-title p {
		-webkit-text-stroke: 3.5px var(--color-red);
		text-shadow: 5px 0px var(--color-blue);
	}

	.section-title h2:has(img) {
		display: inline-flex;
		align-items: center;
	}

	.section-title h2 img {
		height: 1.25em;
		width: auto;
	}
}


/**************************************************
お問い合わせ
**************************************************/
.contact {
	padding-block: clamp(64px, 6vw, 80px) clamp(64px, 7vw, 100px);
	border-top: solid 3px var(--color-white);
}

.contact__form {
	max-width: 960px;
	margin-top: 40px;
}

.contact-form__list {
	display: grid;
	gap: 32px;
}

.contact-form__item {
	display: grid;
	gap: 8px;
}

.contact-form__item dt {
	color: var(--color-white);
}

.contact-form__item._required dt::after {
	content: "*";
	color: var(--color-red);
	margin-left: 4px;
}

.contact-form__item dd {

	input,
	textarea {
		display: block;
		width: 100%;
		padding: 16px;
		border: solid 1px #D9D9D9;
		border-radius: 4px;
		background-color: var(--color-white);
		font-size: 16px;
	}

	textarea {
		height: 14em;
	}

	::placeholder {
		color: #D9D9D9;
	}
}

.contact-form__item._privacy {
	color: var(--color-white);
}

.contact-form__item._privacy {
	input[type="checkbox"] {
		display: none;
	}

	.contact-form__item-checkbox {
		position: relative;
		cursor: pointer;
	}

	.contact-form__item-checkbox::before {
		content: "";
		display: inline-block;
		width: clamp(20px, 3vw, 30px);
		height: clamp(20px, 3vw, 30px);
		background-color: var(--color-white);
		border: solid 1px var(--color-white);
		border-radius: 4px;
		vertical-align: middle;
		margin-right: clamp(8px, 1vw, 16px);
	}

	.contact-form__item-checkbox::after {
		content: "";
		display: block;
		width: clamp(10px, 2vw, 15px);
		height: clamp(15px, 2vw, 25px);
		border-right: 8px solid var(--color-red);
		border-bottom: 8px solid var(--color-red);

		position: absolute;
		top: calc(50% - 5px);
		left: clamp(0px, 0.8vw, 10px);
		transform: translate(0, -50%) rotate(45deg);

		opacity: 0;
	}

	input[type=checkbox]:checked + .contact-form__item-checkbox::after {
		opacity: 1;
	}
}

.contact-form__item._privacy p {
	margin-top: 8px;
}

.contact-form__item._privacy p a {
	color: var(--color-blue);
}

.contact-form__button {
	margin-top: 48px;
	width: fit-content;
	margin-inline: auto;
}

.contact-form__button button {
	background-color: transparent;
	border: none;
}


@media (min-width:768px) {
	.contact__heading {
		text-align: center;
	}

	.contact-form__item {
		grid-template-columns: 16em 1fr;
		align-items: center;
	}
}

@media (max-width:767px) {
	.contact-form__item._privacy {
		display: block;

		dt,
		dd {
			display: inline;
			width: unset;
		}

		dt {
			margin-right: 0.5em;
		}
	}
}




/*######################################################
パーツ：ボタン
######################################################*/
/* ==============================
button
============================== */
.button a,
.button button {
	display: block;
	position: relative;
	padding: 0;
	width: 300px;
	max-width: 100%;
}

.button a::after,
.button button::after {
	content: "";
	display: block;
	width: 100%;
	height: 64px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(90.37deg, #FAD961 0.47%, #F76B1C 98.02%);
	border: 3px solid #000000;
	border-radius: 8px;
	box-sizing: border-box;

	position: absolute;
	top: 10px;
	left: 0;
	z-index: -1;
}

.button a span,
.button button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 64px;
	padding: 0;
	cursor: pointer;

	background: linear-gradient(90.37deg, #FAD961 0.47%, #F76B1C 98.02%);
	border: 3px solid #202020;
	border-radius: 8px;
	box-sizing: border-box;

	font-weight: 700;
	color: var(--color-white);
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 0.05em;

}

.button a span::after,
.button button span::after {
	content: "";
	display: block;
	width: 33px;
	height: 33px;
	background-image: url(../img/common/button_arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* ホバー時 */
.button a:hover span,
.button button:hover span {
	transform: translateY(4px);
}

/* ここから！ */
.magazine_button a,
.magazine_button button {
	display: block;
	position: relative;
	padding: 0;
	width: 300px;
	max-width: 100%;
	margin-bottom: 48px;
}

.magazine__button {
	margin-inline: auto;
	width: fit-content;
}

.magazine_button a::after,
.magazine_button button::after {
	content: "";
	display: block;
	width: 100%;
	height: 64px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(90.37deg, var(--color-red)0.47%, var(--color-navy) 98.02%);
	border: 3px solid #000000;
	border-radius: 8px;
	box-sizing: border-box;

	position: absolute;
	top: 10px;
	left: 0;
	z-index: -1;
}

.magazine_button a span,
.magazine_button button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	height: 64px;
	padding: 0;
	cursor: pointer;

	background: linear-gradient(90.37deg, var(--color-red)0.47%, var(--color-navy) 98.02%);
	border: 3px solid #202020;
	border-radius: 8px;
	box-sizing: border-box;

	font-weight: 700;
	color: var(--color-white);
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 0.05em;

}

.magazine_button a span::after,
.magazine_button button span::after {
	content: "";
	display: block;
	width: 33px;
	height: 33px;
	background-image: url(../img/common/button_arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* ホバー時 */
.magazine_button a:hover span,
.magazine_button button:hover span {
	transform: translateY(4px);
}




/*######################################################
パーツ：その他
######################################################*/
/* ==============================
マーキー
============================== */
.marquee {
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	background-color: var(--color-white);
	padding: 16px 0;
	border-top: solid 3px var(--color-black);
	border-bottom: solid 3px var(--color-black);
	line-height: 1;
	position: relative;
}

.marquee * {
	font-size: clamp(16px, 1.2vw, 20px);
}

.marquee-inner {
	animation: marquee 20s linear infinite;
	display: flex;
	will-change: transform;
}

.marquee-inner span {
	margin-right: 3em;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@media (min-width:768px) {
	.marquee-inner span {
		margin-right: 8em;
	}
}


.main.thanks #contact {
    padding-top:160px;
}
.main.thanks #contact .contact__form p {
    color:var(--color-white);
    font-size:1.4em;
    text-align:center;
}