@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--color-primary: #222;
	--color-dark-blue: #1b5585;
	--color-smoky-blue: #2d5d84;
	--color-navy: #002d72;
	--color-lightlight-gray: #f1f1f1;
	--color-f6: #f6f6f6;
	--color-light-gray: #cecece;
	--color-gray: #4d4d4d;
	--color-red: #cd1212;
	--color-dark-red: #a00000;
	--color-syuiro: #ff0000;
	--color-yellow: #fff000;
	--font-Inter: "Inter", sans-serif;
	--font-Audiowide: "Audiowide", sans-serif;
}

html {
	overflow: auto;
	scroll-behavior: smooth;
}

body {
	color: #000;
	font-size: 1em;
	font-family:'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
	letter-spacing: 1px;
	overflow-wrap: anywhere;
	line-break: strict;
	position: relative;
	z-index: 0;
	display: flex;
	flex-flow: column;
	height: 100%;
	min-height: 100vh;
	background-color: #fff;
}

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

a:hover img {
	opacity: 0.85;
	filter: alpha(opacity=85);
	-ms-filter: "alpha(opacity=85)";
}

a:link {
	color: #000;
	text-decoration: none;
	transition-property: all;
	transition: 0.2s linear;
	border-style: none;
}

a:visited {
	color: #000;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

section {
	margin: 0;
	padding: 0;
}

.container {
	width: 92%;
	max-width: 1100px;
	margin: auto;
}

.container1200 {
	width: 92%;
	max-width: 1200px;
	margin: auto;
}

.container1350 {
	width: 92%;
	max-width: 1350px;
	margin: auto;
}

.container1400 {
	width: 92%;
	max-width: 1400px;
	margin: auto;
}

.container1500 {
	width: 92%;
	max-width: 1500px;
	margin: auto;
}

.container1000 {
	width: 92%;
	max-width: 1000px;
	margin: auto;
}


/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding-top: 0;
	padding-right: 2%;
	padding-left: 2%;
	height: 100px;
	opacity: 0; /* JS読み込み前のちらつき防止：GSAPが制御 */
	z-index: 1000;
	background-color: var(--color-navy);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* SP：JSアニメーション無効のため最初から表示 */
@media (max-width: 640px) {
	.header {
		opacity: 1;
	}
}


.h1_mov {
	width: 40%;
	text-align: left;
	opacity: 1;
	position: absolute;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}


h1 {
	flex-shrink: 0;
	margin: 35px 0 0;
	color: #fff;
	width: calc((250 / 1920) * 100vw);
	max-width: 280px;
}


h1 a:link,
h1 a:visited {
	color: #fff !important;
}

h1 a:hover {
	text-decoration: none;
}

/* ヘッダーメニュー */
.header_menu {
	text-align: center;
    transition: .6s;
    opacity: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	margin: 0 0 0 auto;
	width: 70%;
}

ul.main_menu {
	display: flex;
	margin: 40px 20px 0 0;
	padding: 0;
	justify-content: flex-end;
}

ul.main_menu li {
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: 500;
	list-style: none;
	margin: 0 80px 0 0;
	padding: 0;
}

ul.main_menu li a {
	color: #fff;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

ul.main_menu li a .txt_default,
ul.main_menu li a .txt_hover {
	display: block;
	transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

ul.main_menu li a .txt_hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--color-mizuiro);
	transform: translateY(110%) rotateX(-45deg);
	transform-origin: top center;
}

ul.main_menu li a:hover .txt_default {
	transform: translateY(-110%) rotateX(45deg);
	transform-origin: bottom center;
}

ul.main_menu li a:hover .txt_hover {
	transform: translateY(0) rotateX(0deg);
}

ul.main_menu li:last-child {
	margin: 0;
}



/* Slide 1 / Hero */
#slide1 {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: 100px;
}

/* ヒーロースライダー（Swiper・フェード切り替え） */
#slide1 .hero-swiper {
	width: 100%;
	aspect-ratio: 1920 / 750;
	max-height: 100svh;
	animation: heroFadeIn 2s ease-out both;
}

/* 読み込み時に最初の画像をふわっと表示 */
@keyframes heroFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

#slide1 .swiper-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

#slide1 .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide1_txtwrap {
	position: absolute;
	left: 50px;
	bottom: 50px;
	z-index: 10;
	margin: 0;
	padding: 0;
}

/* display:block は必須。imgは既定でインラインのため、inline-flexの .slide1_btn と同じ行に並んでしまう。
   広い幅で縦積みに見えるのは、btnのwidth:100%がmax-widthで頭打ちになり親の幅をあふれて
   折り返しているだけの偶然で、881px付近から下では収まってしまい横並びに戻る */
.slide1_theme {
	display: block;
	width: calc((420 / 1920) * 100vw);
	max-width: 420px;
}

.slide1_btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: calc((370 / 1920) * 100vw);
	box-sizing: border-box;
	margin-top: 30px;
	padding: 14px 20px;
	background: #000;
	border: 2px solid #fff !important;
	text-decoration: none;
	transition: background 0.3s, opacity 0.3s;
}

.slide1_btn img {
	display: block;
	width: auto;
	height: calc((30 / 1920) * 100vw);
	max-height: 25px;
}

.slide1_btn::after {
	content: "";
	flex-shrink: 0;
	width: 13px;
	height: 13px;
	margin-left: 12px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
}

.slide1_btn:hover {
	opacity: 0.8;
}


/* p 設定 */
.p_01 {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
	margin: 0 0 20px;
}

.p_01_center {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: center;
	margin: 0 0 20px;
}

.p_01_s {
	font-size: 0.85rem;
	line-height: 1.8;
	text-align: left;
	margin: 0 0 20px;
}

.p_02 {
	font-size: 0.9rem;
	line-height: 1.8;
	text-align: left;
	margin: 0 0 20px;
}

.p_notes {
	color: #666;
	font-size: 0.8rem;
	line-height: 1.8;
	margin: 0;
}



/* Slide 2 */
#slide2 {
	padding: 80px 0 120px;
	position: relative;
}

#slide2 h2 {
	font-size: 4rem;
	line-height: 1.4;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 2px;
	white-space: nowrap;
	border-bottom: thick solid #000;
	margin: 0 0 50px;
	padding: 0;
}

#slide2 h2 span {
	font-size: 2.3rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
}

#slide2 h2 a {
	display: inline-flex;
	align-items: baseline;
	color: #000;
}

#slide2 h2 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

#slide2 h2 a::after {
	content: "";
	flex-shrink: 0;
	position: relative;
	top: -3px;
	width: 18px;
	height: 18px;
	margin-left: 24px;
	border-top: 5px solid #000;
	border-right: 5px solid #000;
	transform: rotate(45deg);
}

.top_about {
	position: relative;
}

/* 背景の筆記体ウォーターマーク */
.top_about .en_txt {
	position: absolute;
	right: -7%;
	top: 55%;
	transform: translateY(-50%);
	width: 83%;
	max-width: none;
	height: auto;
	z-index: -1;
	pointer-events: none;
}

.top_about p {
	position: relative;
	z-index: 1;
}

#slide2 p {
	font-size: 1.3rem;
	line-height: 2;
	font-weight: 500;
	margin: 0 0 50px;
}

.top_about_felx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.top_about_felx .detail {
	width: 49%;
	margin: 0 0 20px;
	padding: 0;
	position: relative;
}

.top_about_felx .detail picture {
	display: block;
	overflow: hidden;
	position: relative;
	background-color: #fff;
}

.top_about_felx .detail picture::after {
	background-color: var(--color-navy);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 2;
	transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s,
	            width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top_about_felx .detail picture.is-active::after {
	left: 100%;
	width: 100%;
}

.top_about_felx .detail img {
	width: 100%;
	margin: 0;
	display: block;
	opacity: 0;
	transition: opacity 0s 0.4s;
}

.top_about_felx .detail picture.is-active img {
	opacity: 1;
}

.top_about_felx .detail .description_01 {
	color: #fff;
	position: absolute;
	top: calc((15 / 1920) * 100vw);
	left: calc((20 / 1920) * 100vw);
}

.top_about_felx .detail .description_02 {
	color: #fff;
	position: absolute;
	top: calc((15 / 1920) * 100vw);
	right: calc((20 / 1920) * 100vw);
	writing-mode: vertical-rl;
}

.top_about_felx .detail .description_01 .small_txt,
.top_about_felx .detail .description_02 .small_txt {
	font-size: calc((16 / 1920) * 100vw);
	font-weight: 600;
}

.top_about_felx .detail .description_01 .txt,
.top_about_felx .detail .description_02 .txt {
	font-size: calc((96 / 1920) * 100vw);
	font-weight: bold;
	white-space: nowrap; /* 縦書き「集う。」の列折り返しを防止（Safari対策） */
}

/* top_about_felx テキスト：2045px以上はサイズを固定（「集う。」の改行防止） */
@media screen and (min-width: 2045px) {
	.top_about_felx .detail .description_01 .small_txt,
	.top_about_felx .detail .description_02 .small_txt {
		font-size: 17.04px;
	}
	.top_about_felx .detail .description_01 .txt,
	.top_about_felx .detail .description_02 .txt {
		font-size: 102.25px;
	}
}


/* Slide 3 ニュース */
#slide3 {
	margin: 0;
	padding: 120px 0 100px;
	position: relative;
	background-image: url(../images/slide3/news_bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover; /* ← 背景をカバー表示 */
}

.topnews_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.topnews_title {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 25%;
	margin: 0;
	padding: 0 0 40px;
}

#slide3 h2 {
	color: #fff;
	font-size: 4rem;
	line-height: 1.4;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 2px;
	margin: 0 0 20px;
	padding: 0;
}

.topnews_h3 {
	color: #fff;
	font-size: 1.05rem;
	line-height: 1.3;
	text-align: left;
	font-weight: 500;
	margin: 0 0 10px;
	padding: 7px 5px 7px 10px;
	background-color: #000;
}

.topnews_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	width: 70%;
	margin: 0;
	padding: 0;
}

.topnews_list .list {
	display: flex;
	flex-direction: column;
	width: 30%;
	margin: 0 0 20px;
	padding: 0;
}

.topnews_list .list .title {
	color: #fff;
	font-size: 1.15rem;
	line-height: 1;
	text-align: left;
	font-weight: bold;
	background-color: var(--color-dark-red);
	margin: 0;
	padding: 10px 10px 12px;
}

.topnews_list .list img {
	margin: 0;
	padding: 0;
	transition: transform 0.3s ease;
}

/* ホバー：透明にせず上に少し移動 */
.topnews_list .list a:hover img {
	opacity: 1;
	transform: translateY(-5px);
}

.topnews_list .list p {
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: left;
	margin: 0;
	padding: 0 15px 10px;
}


/* 共通h2 */
h2.common_h2 {
	border-bottom: thick solid #000;
	margin: 0 0 50px;
	padding: 0 0 20px;
}

.common_h2_en {
	font-size: 4rem;
	line-height: 1;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-style: italic;
	letter-spacing: 2px;
}

.common_h2_jp {
	font-size: 1.2rem;
	line-height: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-style: normal;
	letter-spacing: 1px;
	margin-top: 15px;
}



/* Slide 4 */
#slide4 {
	margin: 0;
	padding: 100px 0 50px;
	position: relative;
}



/* Slide 5 */
#slide5 {
	margin: 0;
	padding: 60px 0 200px;
	position: relative;
	/* 両脇の斜めライン装飾（左:黄 / 右:緑・赤）。gap・gridは未使用 */
	background-image:
		linear-gradient(135deg, transparent calc(50% - 4px), #e6bd00 calc(50% - 4px), #e6bd00 calc(50% + 4px), transparent calc(50% + 4px)),
		linear-gradient(135deg, transparent calc(50% - 4px), #50b23e calc(50% - 4px), #50b23e calc(50% + 4px), transparent calc(50% + 4px)),
		linear-gradient(135deg, transparent calc(50% - 4px), #ff0000 calc(50% - 4px), #ff0000 calc(50% + 4px), transparent calc(50% + 4px));
	background-repeat: no-repeat;
	background-position:
		left -10px top 20px,    /* 黄：左下が左端にぴったり */
		right 0 top 200px,      /* 緑：右端から・pあたりの高さから */
		right 70px top 450px;   /* 赤：緑の右下・内側 */
	background-size:
		360px 440px,            /* 黄（位置/長さ調整用） */
		260px 360px,            /* 緑（右端〜。幅で長さ調整。画像側を40px短縮） */
		190px 290px;            /* 赤（内側。画像側を40px短縮） */
}


h2.common_h2.no_under {
	border-bottom: none;
	margin-bottom: 30px;
}

#slide5 p {
	font-size: 1.3rem;
	line-height: 2;
	font-weight: 500;
	margin: 0 0 50px;
}

.img_shadow {
	box-shadow: 10px 10px 3px #ddd;
}




/* Slide 6 */
#slide6 {
	margin: 0 0 200px;
	padding: 100px 0;
	position: relative;
	background-color: #000;
	background-image: url(../images/slide6/ms_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: 201;
}

/* 上：黄色い三角 */
#slide6::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 100%; /* ← slide6 の上辺の真上。黒には食い込まない */
	width: 100%;
	height: 70px;
	background-color: var(--color-yellow);
	-webkit-clip-path: polygon(30% 100%, 100% 0, 100% 100%);
	clip-path: polygon(30% 100%, 100% 0, 100% 100%);
	pointer-events: none;
}

/* 下：黄色い三角*/
#slide6::after {
	content: "";
	position: absolute;
	left: 0;
	top: 100%; /* ← slide6 の下辺の真下 */
	width: 100%;
	height: 70px;
	background-color: var(--color-yellow);
	-webkit-clip-path: polygon(0 0, 70% 0, 0 100%);
	clip-path: polygon(0 0, 70% 0, 0 100%);
	pointer-events: none;
}

.msports_h2 {
	color: #fff;
	font-size: 4rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
	margin: 0;
	padding: 0;
}

.msports_img {
	margin-top: 80px;
	margin-bottom: 0;
	max-width: 800px;
	width: 100%;
	height: auto;
}

.msports_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 画像を中央に */
	align-items: flex-start;
	position: relative;      /* 縦書きテキストの配置基準 */
	width: 100%;
	margin: 0 auto 70px;
	padding: 0;
}

.msports_txt {
	position: absolute; /* ← 中央の画像とは独立して右端に置く */
	right: 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* ← 縦書き（段は右→左） */
	white-space: nowrap; /* ← 各行を1列に固定（高さが足りなくても折り返さない） */
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0;
	padding: 0;
	top: 80px;
}

.msports_txt .lat {
	-webkit-text-orientation: upright;
	text-orientation: upright;
}


/* Footer */
footer {
	margin: 0;
	padding: 0 0 100px;
	position: relative;
	background-color: var(--color-light-gray);
}

.footer_01 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 80px 0 0;
	padding: 0 0 40px;
	border-bottom: thin solid #000;
}

.footer_logo {
	max-width: 250px;
	margin: 0;
	padding: 0;
}

.footer_01 .footer_menu {
	display: flex;
	flex-wrap: wrap;
	width: 30%;
	margin: 0;
	padding: 0;
}

.footer_menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.ul_footer_ul_r {
	margin-left: 100px !important;
}

.footer_menu ul li {
	color: #666;
	font-size: 1rem;
	line-height: 1.8;
	text-align: left;
	font-weight: 500;
	margin: 0 0 15px;
	padding: 0;
}

.footer_menu ul li a {
	color: #000;
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
	font-weight: 500;
	margin: 0 0 15px;
	padding: 0;
}

.copyright {
	color: #5d5d5d;
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 10px 0 0;
}

.footer_sns {
	margin-top: 5px;
	margin-bottom: 0;
	padding: 0;
}

.footer_sns img {
	width: auto;
	height: 30px;
	margin: 0 auto;
}

/* footer_02：コピーライト（左）＋ リンク・SNS（右）を横並び */
.footer_02 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 25px 0 0;
	padding: 0;
}

.footer_02_link {
	display: flex;
	align-items: center;
}

.footer_02 .txt_area {
	display: flex;
	align-items: center;
}

.footer_02 .txt_area div {
	font-size: 0.8rem;
	line-height: 1.8;
	margin: 0 0 0 40px;
}

.footer_02 .txt_area a {
	color: #5d5d5d;
}

.footer_02 .footer_sns {
	display: flex;
	align-items: center;
	margin: 0 0 0 50px; /* テキスト群との間隔 */
}

.footer_02 .footer_sns a {
	margin-left: 20px; /* アイコン同士の間隔 */
}

.footer_02 .footer_sns a:first-child {
	margin-left: 0;
}




/* Slide 9 概要 */
#slide9 {
	padding: 0 0 100px;
	position: relative;
	z-index: 200;
}

table.outline {
	border-collapse: collapse;
	font-size: 0.95em;
	line-height: 1.8em;
	text-align: left;
	width: 100%;
	margin-top: 80px;
	margin-bottom: 100px;
	border: thin solid #aaa;
	border-left-style: none;
	border-right-style: none;
}

.outline th {
	color: #444;
	font-weight: normal;
	text-align: left;
	letter-spacing: 3px;
	vertical-align: top;
	width: 200px;
	padding: 1.5em .5em;
}

.outline td {
	vertical-align: top;
	border-left: thin solid #aaa;
	padding: 1.5em 1em 1.5em 3em;
}

.outline td span {
	display: inline-block;
}

table.outline a {
	color: #444;
}









/*中ページ*/
/*slide_sub_1*/
#slide_sub_1 {
    position: relative;
    width: 100%;
    margin-top: 100px;
    overflow: hidden;
    background: #030508;
}

#slide_sub_1 figure {
    margin: 0;
    padding: 0;
    position: relative;
}

#slide_sub_1 figure::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(3, 5, 8, 0.42) 0%, rgba(3, 5, 8, 0.18) 24%, rgba(3, 5, 8, 0) 54%);
}

#slide_sub_1 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero-light-reveal figure img {
    filter: brightness(0);
    transform: scale(1.2);
    transform-origin: 50% 50%;
}

.sub-hero-light-reveal h2,
.sub-hero-light-reveal .main_h2 {
    opacity: 0;
    visibility: hidden;
    filter: blur(10px);
}

#slide_sub_1.slide_sub_1_privacy {
	background-color: var(--color-lightlight-gray);
	height: 300px;
}

#slide_sub_1.slide_sub_1_privacy h2 {
	color: #000;
	text-shadow: none;
}

#slide_sub_1 h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 5rem;
    line-height: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 6px 6px 16px rgba(0, 0, 0, 0.8);
}

.sub-hero-light-sweep {
    position: absolute;
    top: 50%;
    left: -22%;
    z-index: 2;
    display: block;
    width: 44%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(144, 211, 255, 0.32), rgba(255, 255, 255, 0.96), rgba(154, 218, 255, 0.42), transparent);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.74),
        0 0 28px rgba(112, 196, 255, 0.56),
        0 0 58px rgba(55, 133, 255, 0.28);
    transform: translateY(-50%);
    mix-blend-mode: screen;
}

#slide_sub_1 .main_h2 {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 4rem;
    line-height: 1;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
}



/*slide_sub_2*/
#slide_sub_2 {
    position: relative;
    margin: 0;
    padding: 0;
}

/* where-to-buy専用：取扱店セクション（旧 #slide_sub_2 の余白をこちらへ） */
#slide_sub_2_wtb {
    position: relative;
    margin: 370px 0 0;
    padding: 0;
}

/* where-to-buy専用：画像の斜め(約14°)と同じ角度の白い斜め背景を敷き、
   1670px以上でヒーロー画像がはみ出して見える部分を覆う。
   .slide_sub_2_diagonal クラスでこのページ限定（他ページの #slide_sub_2 には影響しない） */
.slide_sub_2_diagonal {
    position: relative;
    z-index: 0;
    --wtb-diag-rise: 15.7vw;   /* 斜めの上昇量＝画像の実測角度(約8.9°)。全幅の15.7% */
    --wtb-diag-cover: 500px;   /* 白背景を上へ伸ばす量（大きいほど画像に上へ重なる） */
}

.slide_sub_2_diagonal::before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--wtb-diag-cover));
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    /* 右上がりの斜め上辺（左が低く右が高い）＝画像の斜めと平行 */
    clip-path: polygon(0 var(--wtb-diag-rise), 100% 0, 100% 100%, 0 100%);
}

.slide_sub_2_diagonal .container {
    position: relative;
    z-index: 1;
}

/* 「SIGNET 取扱店」見出し以降だけを上に上げる（斜め背景・セクション位置はそのまま）
   transformなのでマージン相殺せず、slide_sub_2自体は動かない。
   マイナスを大きくするほど上に上がる */
.slide_sub_2_diagonal .margin_top {
    transform: translateY(-150px);
}

/* 取扱店リストとフッターの間の余白を詰める。
   transformは中身だけを上へ動かすため、元の位置に translateY 分の空白が取り残される。
   その分をマイナスmarginで相殺し、.main_contents 本来の100pxの余白に揃える。
   PCは translateY(-150px) なので 100 - 150 = -50px。
   幅ごとにtranslateY量が変わるため、margin-bottomも各メディアクエリで揃えること */
.slide_sub_2_diagonal .margin_top {
    margin-bottom: -50px;
}

/* 子の margin-bottom は親に相殺吸収され計算が読みにくくなるため明示的に消す */
.slide_sub_2_diagonal .place_wrap:last-child {
    margin-bottom: 0;
}

.main_submenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px 0 0;
	padding: 0;
}

.main_submenu .submenu_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 220px;
	margin: 0 20px 20px;
	padding: 12px 5px;
	color: #000;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}

.main_submenu .submenu_item::after {
	content: "";
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	margin-left: 12px;
	margin-right: 12px;
	border-top: 2px solid var(--color-red);
	border-right: 2px solid var(--color-red);
	transform: rotate(45deg);
	transition: margin-right 0.3s ease;
}

.main_submenu .submenu_item:hover {
	text-decoration: none;
}

.main_submenu .submenu_item:hover::after {
	margin-right: 0;
}

.main_submenu_02 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px 0 0;
	padding: 0;
}

.main_submenu_02 .submenu_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 220px;
	margin: 0 20px 20px;
	padding: 12px 5px;
	color: #000;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}

.main_submenu_02 .submenu_item::after {
	content: "";
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	margin-left: 12px;
	margin-right: 12px;
	border-top: 2px solid var(--color-red);
	border-right: 2px solid var(--color-red);
	transform: rotate(45deg);
	transition: margin-right 0.3s ease;
}

.main_submenu_02 .submenu_item:hover {
	text-decoration: none;
}

.main_submenu_02 .submenu_item:hover::after {
	margin-right: 0;
}

.main_submenu_03 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 60px 0 0;
	padding: 0;
}

.main_submenu_03 .submenu_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 280px;
	margin: 0 20px 20px;
	padding: 12px 5px;
	color: #000;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
}

.main_submenu_03 .submenu_item::after {
	content: "";
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	margin-left: 12px;
	margin-right: 12px;
	border-top: 2px solid var(--color-red);
	border-right: 2px solid var(--color-red);
	transform: rotate(45deg);
	transition: margin-right 0.3s ease;
}

.main_submenu_03 .submenu_item:hover {
	text-decoration: none;
}

.main_submenu_03 .submenu_item:hover::after {
	margin-right: 0;
}


.main_contents {
	margin: 70px 0 100px;
}


/*サービス*/
.main_contents .h2_service {
	color: #000;
	font-size: 2.2rem;
	line-height: 1.6;
	text-align: left;
	font-weight: 800;
	margin: 0 0 40px;
	padding: 0;
}

.main_contents .p_main_01 {
	font-size: 1rem;
	line-height: 2;
	text-align: left;
	margin: 0 0 40px;
	padding: 0;
}

.service-support-title,
.service-support-text,
.service-support-image,
.service-support-cta {
	opacity: 0;
	visibility: hidden;
}

.service-support-image {
	display: block;
}

.service-line {
	display: block;
}

.after_s {
	border: thin solid #666;
	margin: 0 0 40px;
	padding: 70px 2em 1em;
	position: relative;
}

.after_s .title {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	text-align: left;
	font-weight: bold;
	background-color: var(--color-red);
	padding: 10px 20px;
	position: absolute;
	width: 240px;
	top: 0;
	left: -20px;
}

.after_s p {
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
}


/*Where to buy*/
.white_wrap {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1000px;
    background-color: #fff;
    margin: calc(350px - 92.6562%) auto 0;
    padding: 50px 50px 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.where_h3 {
	font-size: 1.3rem;
	line-height: 1;
    text-align: left;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1px;
	border-bottom: 4px solid #000;
	margin: 0 0 50px;
    padding: 0 0 20px;
}

.where_h3_en {
    font-size: 3.8rem;
	font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.where_tag {
	display: inline-block;
	vertical-align: 5px;
	color: #fff;
	font-size: 1rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 2px;
	margin: 0 0 0 20px;
	padding: 7px 1.5em;
	background-color: var(--color-syuiro);
	border-radius: 999px;
}

.online_sites {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin: 70px 0 0;
	padding: 0;
	list-style: none;
}

.online_sites li {
	margin: 0 auto;
	padding: 0 5% 90px 0;
	list-style: none;
	width: 33.333%;
}

.online_sites li:nth-child(3n) {
	padding-right: 0;
}

.online_sites li img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.li_small80 {
	width: 80% !important;
}

.li_small70 {
	width: 70% !important;
}

.place_wrap {
	width: 100%;
	margin: 0 0 80px;
	border-bottom: thin solid var(--color-light-gray);
	padding-bottom: 50px;
	transform: translateZ(0);   /* Safariでアコーディオン開閉時に下線が二重に見えるのを防ぐ（サブピクセル対策） */
}

.place_wrap h4 {
	color: #fff;
	font-size: 1.1rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	letter-spacing: 7px;
	background-color: #000;
	margin: 0;
	padding: 10px 2em;
	display: inline-block;
}

.shop_data {
	margin: 30px 0 0;
	padding: 0;
}

.shop_toggle {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	color: #000;
	font-size: 1.2rem;
	line-height: 1.4;
	text-align: left;
	font-weight: 600;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.shop_toggle::after {
	content: "＋";
	flex-shrink: 0;
	color: #000;
	font-size: 1.3rem;
	line-height: 1;
	margin-left: 20px;
}

.shop_data.is-open .shop_toggle::after {
	content: "－";
}

.shop_data .shop_name {
	color: #000;
	font-size: 1.1rem;
	line-height: 1.5;
	text-align: left;
	font-weight: 600;
	margin: 0;
	padding: 0;
	padding-left: 1em;    /* 折り返し時に「・」1文字分インデント */
	text-indent: -1em;    /* 1行目だけ戻して「・」を左端に */
}

.shop_tag_y {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.8rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	font-style: normal;
	margin: 0 0 0 15px;
	padding: 5px 1.2em;
	background-color: var(--color-yellow);
	border-radius: 999px;
}

.shop_tag_o {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.8rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	font-style: normal;
	margin: 0 0 0 15px;
	padding: 5px 1.2em;
	background-color: #ffac76;
	border-radius: 999px;
}

/* 親.shop_nameのtext-indent(-1em)継承でバッジ内文字がずれるのを打ち消す */
.shop_tag_y,
.shop_tag_o {
	text-indent: 0;
}

.shop_body {
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: max-height 0.4s ease;
}

.shop_body dl {
	width: 100%;
	margin: 10px 0 0 1rem;
	padding: 1.5em;
	background-color: var(--color-f6);
}

.shop_body dt {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1rem;
	line-height: 1.8em;
	text-align: left;
	width: 110px;
	margin: 0;
	padding: 0;
}

.shop_body dt::after {
	content: "：";
}

.shop_body dd {
	font-size: 1rem;
	line-height: 1.8;
	text-align: left;
	margin: -1.8em 0 0 140px;
	padding: 0;
}




/*FAQ*/
.faq_wrap {
	width: 100%;
	margin: 0 0 10px;
	border-bottom: thin solid var(--color-light-gray);
	padding: 0 0 15px;
}

.faq_q {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	cursor: pointer;
}

.faq_q_txt {
	color: #666;
	font-size: 1rem;
	line-height: 1.4;
	text-align: left;
	font-weight: 500;
	margin: 0;
	padding-left: 2.6rem;
	text-indent: -2.6rem;
	display: block;
}

.faq_q_txt::before {
	content: "Q.";
	color: var(--color-navy);
	font-size: 2rem;
	font-weight: 400;
	font-family: var(--font-Inter);
	text-indent: 0;
	display: inline-block;
	width: 2.6rem;
}

.faq_q::after {
	content: "";
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	margin: 0;
	margin-left: 20px;
	border-right: 2px solid var(--color-red);
	border-bottom: 2px solid var(--color-red);
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.faq_wrap.is-open .faq_q::after {
	transform: rotate(-135deg);
}

.faq_a {
	max-height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
	transition: max-height 0.4s ease;
}

.faq_a_inner {
	margin: 0;
	padding: 20px 0 0 2.6rem;
}

.faq_a_inner p {
	color: #000;
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: left;
	margin: 0;
	padding: 0;
}

/* FAQ カテゴリ見出し */
.faq_cat {
	position: relative;
	color: var(--color-navy);
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: left;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin: 64px 0 30px;
	padding: 0 0 14px;
	border-bottom: 1px solid #dcdcdc;
}

/* 左端の短い赤アクセント線 */
.faq_cat::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 54px;
	height: 3px;
	background-color: var(--color-red);
}

.faq_cat:first-child {
	margin-top: 0;
}

/* FAQ カテゴリごとの背景パネル（薄いグレー） */
.faq_block {
	margin: 0 0 24px;
	padding: 30px;
	background-color: var(--color-f6);
	border-radius: 10px;
}

.faq_block:last-child {
	margin-bottom: 0;
}

/* カード内：最後の質問の下線・余白は不要 */
.faq_block .faq_wrap:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}


/*Motorsports*/
#slide_sub_1.slide_sub_1_ms img {
    height: auto;
    object-fit: cover;
    object-position: center center;
}

#slide_sub_1.slide_sub_1_ms {
    padding: 150px 0;
    background-color: #000;
    background-image: url(../images/slide6/ms_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#slide_sub_1.slide_sub_1_ms .main_h2 {
	font-size: 4rem;
    text-align: center;
    position: static;
    transform: none;
    margin: 0 0 40px;
    padding: 0;
}

#slide_sub_1.slide_sub_1_ms .main_h2.ms-title-reveal {
    color: #fff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(151, 218, 255, 0.2);
}

.ms-title-light {
    position: absolute;
    left: -20%;
    z-index: 1;
    display: block;
    width: 42%;
    height: 2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(151, 218, 255, 0.36), rgba(255, 255, 255, 0.98), rgba(151, 218, 255, 0.46), transparent);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.76),
        0 0 30px rgba(116, 202, 255, 0.5),
        0 0 62px rgba(59, 143, 255, 0.24);
    transform: translateY(-50%);
    mix-blend-mode: screen;
}

/* 写真下のリード文 */
#slide_sub_1.slide_sub_1_ms .msports_lead {
    color: #fff;
    font-size: 1rem;
    line-height: 2.5;
    text-align: left;
    margin: 60px auto 0;
    padding: 0;
	max-width: 950px;
}

#slide_sub_1.slide_sub_1_ms .msports_lead.ms-lead-reveal {
    opacity: 0;
    visibility: hidden;
}

.ms-lead-char {
    display: inline-block;
}

/* msports_flex 一式（motorsports専用：index.htmlの.msports_flexとは独立） */
.msports_flex_ms {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; /* 画像を中央に */
	align-items: flex-start;
	position: relative;      /* 縦書きテキストの配置基準 */
	    width: 80%;
    margin: -30px auto 0;
	padding: 0;
}

.msports_img_ms {
	max-width: 1080px;
	width: 100%;
	height: auto;
	margin-top: 50px;
	margin-bottom: 0;
}

#slide_sub_1.slide_sub_1_ms .msports_img_ms,
#slide_sub_1.slide_sub_1_ms .msports_txt_ms {
    opacity: 0;
    visibility: hidden;
}

.ms-photo-mosaic {
    position: relative;
    display: block;
    max-width: 1080px;
    width: 100%;
    margin-top: 50px;
}

.ms-photo-mosaic .msports_img_ms {
    margin-top: 0;
}

.ms-photo-mosaic__tiles {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.ms-photo-mosaic__tile {
    position: absolute;
    display: block;
    overflow: hidden;
    background-color: #05080d;
}

.ms-photo-mosaic__tile-inner {
    position: absolute;
    inset: 0;
    display: block;
    background-repeat: no-repeat;
}

.msports_txt_ms {
	position: absolute; /* 中央の画像とは独立して右端に置く */
	right: 0;
	top: 80px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* 縦書き */
	white-space: nowrap;
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 2px;
	margin: 0;
	padding: 0;
}

.msports_txt_ms .lat {
	-webkit-text-orientation: upright;
	text-orientation: upright;
}


/* ticker（画像） */
.ticker_photo {
	margin: 0;
	background-color: #000;
	padding-bottom: 30px;
}

@keyframes infinity-scroll-left {
from {
	transform: translateX(0);
}

to {
	transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}

.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0
}

.scroll-infinity__list--left {
	animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
	width: calc(100vw / 3);
}

.scroll-infinity__item>img {
	width: 100%;
}


/*イベント情報*/
.event_info {
	margin: 0 0 -100px;
	padding: 100px 0;
	background-color: #555;
	background-image: url(../images/motorsports/bg_gray_photo.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.event_info_ttl {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	text-align: center;
	font-weight: 500;
	margin: 0 auto 60px;
	padding: 20px 40px;
	max-width: 450px;
	background-color: #000;
}

.event_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 0;
}

.event_item {
	width: 30%;
	margin: 0;
	padding: 0;
}

.event_item_link {
	display: block;
}

.event_item_photo {
	margin: 0;
	padding: 0;
	border: 4px solid #000;
	background-color: #000;
	overflow: hidden;
	position: relative;
}

.event_item_photo::after {
	background-color: #000;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 2;
	transition: left 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.4s,
	            width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.event_item_photo.is-active::after {
	left: 100%;
	width: 100%;
}

.event_item_photo img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0;
	transition: opacity 0s 0.4s;
}

.event_item_photo.is-active img {
	opacity: 1;
}

.event_item_link:hover .event_item_photo img {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.event_item_ttl {
	color: #000;
	font-size: 0.95rem;
	line-height: 1.8;
	text-align: center;
	font-weight: 600;
	margin: 10px 0 0;
	padding: 0;
}


/* About signet
   main_submenu_02 下の薄いグレー線＋緑・赤の斜めライン装飾。
   斜めラインは #slide5 を参考にしつつ線を細く（2px）。
   3本（左:緑 / 中央右:赤(短) / 右:緑）を離して配置し、白カードを上に重ねる。
   gap・gridは未使用 */
.about_wrap {
	position: relative;
	margin: 40px 0 0;
	padding: 0;
	border-top: 1px solid #ddd;
	background-image:
		linear-gradient(135deg, transparent calc(50% - 1px), #50b23e calc(50% - 1px), #50b23e calc(50% + 1px), transparent calc(50% + 1px)),
		linear-gradient(135deg, transparent calc(50% - 1px), #ff0000 calc(50% - 1px), #ff0000 calc(50% + 1px), transparent calc(50% + 1px)),
		linear-gradient(135deg, transparent calc(50% - 1px), #50b23e calc(50% - 1px), #50b23e calc(50% + 1px), transparent calc(50% + 1px));
	background-repeat: no-repeat;
	background-position:
		left 60px top 50px,      /* 緑：左 */
		right 360px top -25px,   /* 赤：中央右・短め（上端を切る） */
		right -5px top 50px;     /* 緑：右端（右へはみ出す） */
	background-size:
		230px 230px,             /* 緑（左） */
		85px 85px,               /* 赤（中央右） */
		230px 230px;             /* 緑（右） */
}

.about_white_wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	background-color: #fff;
	margin: 110px 0 0;
	padding: 4em 4em 3em;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.about_about_h3 {
    font-size: 4rem;
    line-height: 1.4;
	text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 40px;
    padding: 0;
}

.about_about_h3 span {
	font: italic 2.3rem 'Noto Sans JP', sans-serif;
	font-weight: 600;
	margin-left: 10px;
}

.about-intro-title,
.about-intro-text {
    opacity: 0;
    visibility: hidden;
}

.about-intro-char {
    display: inline-block;
}

.about_white_wrap .p_1 {
    font-size: 1.2rem;
    line-height: 2;
	text-align: center;
    font-weight: 500;
    margin: 0 0 50px;
    padding: 0;
}

.about_white_wrap .p_1 span {
	display: inline-block;
}

.about_white_wrap .p_2 {
    font-size: 1rem;
    line-height: 2.2;
    font-weight: 400;
    margin: 50px 0;
    padding: 0;
}

.about_white_wrap .p_2 span {
	display: inline-block;
}

.about_globe_wrap {
	position: relative;
	overflow: hidden;
}

.about_globe_wrap picture {
	display: block;
}

.about_globe_wrap img {
	display: block;
	width: 100%;
}

.globe_pulse {
	position: absolute;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: #7ec8ff;
	box-shadow: 0 0 6px 2px rgba(126, 200, 255, 0.9);
	opacity: 0;
	pointer-events: none;
}

.globe_pulse--hub {
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
	background: #ffffff;
	box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.95);
}

.philosophy_wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	background-color: var(--color-navy);
	margin: 130px 0 0;
	border-radius: 150px 150px 0 0;
	padding: 100px 0 200px;
	text-align: center;
}

.about_h3 {
	color: #fff;
    font-size: 4rem;
    line-height: 1.4;
	text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 10px;
    padding: 0;
}

.about_h3_jp {
	color: #fff;
	font: italic 500 1.5rem 'Noto Sans JP', sans-serif;
	text-align: center;
	letter-spacing: 2px;
	margin: 0;
}

.philosophy_ttl {
    color: #000;
    font-size: 2.8rem;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    margin: 60px auto;
    padding: 20px 40px;
    max-width: 600px;
    background-color: #fff;
}

.philosophy_wrap .p_01 {
	color: #fff;
    font-size: 1.4rem;
    line-height: 1.8;
	text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 auto 60px;
    padding: 0 0 20px;
	border-bottom: 3px solid #fff;
}

/* philosophy_wrap の上に重ねる別色パネル */
.philosophy_wrap2 {
	position: relative;
	z-index: 3;
	width: 100%;
	min-height: 260px;
	background-color: #1c4885;
	margin: -150px 0 0;
	padding: 100px 0 80px;
	border-radius: 150px 150px 0 0;
	background-image: url(../images/about/line.png);
	background-repeat: no-repeat;
	background-position: center 280px;
	background-size: 100% auto;
}


.philosophy_wrap2 h4 {
	color: #fff;
    font-size: 2.2rem;
    line-height: 1.4;
	text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 10px;
    padding: 0;
}

/* 丸（英字）＋説明文の定義リスト。円内文字は画像でなくCSSで表現。gap・gridは未使用 */
.philosophy_list {
	width: 100%;
	margin: 80px auto 0;
	padding: 0;
	max-width: 650px;
}

.philosophy_list dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0 0 40px;
}

.philosophy_list dt {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	margin: 0;
	padding: 0;
	background-color: #fff;
	border-radius: 50%;
}

.philosophy_list dt span {
	font-size: 1.6rem;
	line-height: 1.2;
	text-align: center;
	font-weight: 500;
	font-family: 'Inter', sans-serif;
}

.philosophy_list dd {
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.7;
	text-align: left;
	font-weight: 600;
	margin: 0 0 0 50px;
	padding: 0;
}

.philosophy_wrap2 .p_02 {
	color: #fff;
    line-height: 1.7;
	text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 50px auto 0;
    padding: 0;
}

.philosophy_wrap2 .p_02 span {
	font-size: 2rem;
}

.approach_wrap {
	margin: 0;
	padding: 100px 0 150px;
	position: relative;
	/* 両脇の斜めライン装飾（左:黄 / 右:緑・赤）。gap・gridは未使用 */
	background-image:
		linear-gradient(135deg, transparent calc(50% - 4px), #e6bd00 calc(50% - 4px), #e6bd00 calc(50% + 4px), transparent calc(50% + 4px)),
		linear-gradient(135deg, transparent calc(50% - 4px), #50b23e calc(50% - 4px), #50b23e calc(50% + 4px), transparent calc(50% + 4px)),
		linear-gradient(135deg, transparent calc(50% - 4px), #ff0000 calc(50% - 4px), #ff0000 calc(50% + 4px), transparent calc(50% + 4px));
	background-repeat: no-repeat;
	background-position:
		left -10px top 0,    /* 黄：左下が左端にぴったり */
		right 0 top 200px,      /* 緑：右端から・pあたりの高さから */
		right 70px top 450px;   /* 赤：緑の右下・内側 */
	background-size:
		360px 440px,            /* 黄（位置/長さ調整用） */
		260px 360px,            /* 緑（右端〜。幅で長さ調整。画像側を40px短縮） */
		190px 290px;            /* 赤（内側。画像側を40px短縮） */
}

.story_wrap {
	position: relative;
	background-color: #4d4d4d;
	margin: 0;
	padding: 100px 0;
}

/* 上の境目に丸いドット（・・・）装飾。radial-gradientで丸を等間隔に並べる */
.story_wrap::before {
	content: "";
	display: block;
	width: 100%;
	height: 8px;
	position: absolute;
	top: -4px;
	left: 0;
	background-image: radial-gradient(circle, #2f6fb3 4px, transparent 4.5px);
	background-repeat: repeat-x;
	background-position: center;
	background-size: 18px 8px;
}


/* Our Story タイムライン（年表）。年号＋縦ライン＋ドット＋テキスト/画像。gap・gridは未使用 */
.history {
	position: relative;
	margin: 100px 0 0;
	padding: 0;
}

/* 縦のライン */
.history::before {
	content: "";
	width: 1px;
	background-color: #888;
	position: absolute;
	top: 24px;
	bottom: 24px;
	left: 280px;
	z-index: 0;
}

.history_item {
	position: relative;
	margin: 0 0 80px;
	padding: 0 0 0 230px;
	z-index: 1;
}

.history_item:last-child {
	margin: 0;
}

/* 年号 */
.history_year {
	color: #fff;
	font-size: 3.2rem;
	line-height: .8;
	text-align: right;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
}

/* ライン上のドット */
.history_item::before {
	content: "";
	width: 14px;
	height: 14px;
	background-color: #fff;
	position: absolute;
	top: 22px;
	left: 200px;
	border-radius: 50%;
}

.history_body {
	margin: 0;
	padding: 0;
}

/* テキスト＋画像の1行 */
.history_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin: 0 0 50px;
	padding: 15px 0 0 10px; /* 左10px＝縦線・ドットから本文を少し離す */
}

.history_row:last-child {
	margin: 0;
}

/* 画像を左に配置する行 */
.history_row.rev {
	flex-direction: row-reverse;
}

.history_txt {
	width: 68%;
	margin: 0;
	padding: 0;
}

.history_txt p {
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.9;
	text-align: left;
	margin: 0;
	padding: 0;
}

/* グレーのカード（背景）。中の商品写真とは分離。縦長・横長どちらも均一余白で対応 */
.history_img {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 170px;
	margin: 0;
	padding: 15px;
	background-color: #888;
	border-radius: 8px;
}

.history_img img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	margin: 0 auto;
}

.history_mgBottom {
	margin-bottom: 80px;
}


/*サイトマップ*/
.sitemap {
	margin-top: 60px;
	margin-bottom: 80px;
}

.sitemap_columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: 0;
}

.sitemap_column {
	width: 47%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sitemap_group {
	width: 100%;
	margin: 0 0 40px;
	padding: 0;
}

.sitemap_parent {
	color: var(--color-navy);
	font-size: 1.125rem;
	line-height: 1.4;
	font-weight: 600;
	display: block;
	position: relative;
	margin: 0;
	padding: 0 0 10px 16px;
	border-bottom: 1px solid var(--color-light-gray);
	text-decoration: none;
	transition: color 0.3s;
}

.sitemap_parent::before {
	content: "";
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 4px;
	height: 1em;
	background-color: var(--color-red);
}

.sitemap_parent:hover {
	color: var(--color-red);
}

.sitemap_child {
	margin: 14px 0 0;
	padding: 0 0 0 16px;
	list-style: none;
}

.sitemap_child li {
	margin: 0 0 12px;
	padding: 0;
}

.sitemap_child li a {
	color: var(--color-gray);
	font-size: 1rem;
	line-height: 1.4;
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0 0 0 16px;
	text-decoration: none;
	transition: color 0.3s;
}

.sitemap_child li a::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 8px;
	height: 1px;
	background-color: var(--color-light-gray);
}

.sitemap_child li a:hover {
	color: var(--color-red);
}


/*プライバシーポリシー*/
.privacy_h3 {
	color: #000;
	font-size: 1.8rem;
	line-height: 1.6;
	text-align: center;
	font-weight: bold;
	margin: 0 0 60px;
	padding: 0;
}

.p-policy-list {
    counter-reset: num;
    margin: 40px 20px;
}

.p-policy-list dt {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1em;
    text-indent: -20px;
    padding-left: 20px;
}

.p-policy-list dt::before {
    counter-increment: num;
    content: counter(num) ". ";
    text-align: right;
    display: inline-block;
    margin-right: 5px;
}

.p-policy-list dd {
    margin-bottom: 3em;
	margin-left: 0;
    padding-left: 0.7em;
}

.all-txt {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.basic-list {
    margin: 1em 0 1em -1em;
}

ol.basic-list li {
    list-style-type: decimal;
    line-height: 1.6;
    margin-bottom: .5em;
}

.policy__inquiry-box {
    background-color: var(--color-lightlight-gray);
    padding: 25px 30px 10px;
    line-height: 2;
}

.policy__inquiry-box h4 {
    color: #000;
	font-size: 1.1rem;
	line-height: 1.6;
	text-align: left;
	font-weight: 600;
	margin: 0 0 10px;
	padding: 0;
}



/*フローティングバナー*/
.floating-banner {
	position: fixed;
	bottom: 50px; /* ← 画面下から50px */
	right: 0;
	z-index: 999;
	opacity: 0; /* ← GSAP(floating-banner.js)でスライドイン＋フェードイン */
}

.floating-banner__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 55px;
	padding: 22px 0 26px;
	background-color: var(--color-red);
	color: #fff;
	border-radius: 12px 0 0 12px;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.floating-banner__link:link,
.floating-banner__link:visited {
	color: #fff;
	border: 2px solid #fff; /* ← a:link{border-style:none}に勝つため:link付きで指定 */
	border-right-style: none; /* ← 右辺は画面端に密着するため枠なし */
}

.floating-banner__link:hover {
	background-color: var(--color-dark-red);
	color: #fff;
	text-decoration: none;
}

.floating-banner__link i {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.floating-banner__txt {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl; /* ← 縦書き */
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 1;
}

/* ↑お問合せバナーの下に付くトップへ戻るボタン（■黒地・白矢印） */
.floating-banner__totop {
	display: block;
	width: 50px;
	height: 50px;
	color: #ccc;
	font-size: 1.4rem;
	line-height: 52px; /* ← 上下border各2px分を引いた内容高に合わせて矢印を縦中央に */
	text-align: center;
	background-color: #444;
	margin: 20px 0 0 auto;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.floating-banner__totop:link,
.floating-banner__totop:visited {
	color: #ccc;
}

.floating-banner__totop:hover {
	background-color: #333;
	color: #fff;
	text-decoration: none;
}



/*hidden*/
.hidden_pc {
	display: none;
}
.hidden_sp {
	display: block;
}


@media screen and (max-width: 1500px) {
/* motorsports-1500 */
.msports_flex_ms {
    width: 85%;
}

/* footer-1500 */
.footer_01 .footer_menu {
    width: 42%;
}
}


@media screen and (max-width: 1390px) {
/* 背景の筆記体-1390 */
.top_about .en_txt {
	right: -25px;
}

/* motorsports-1390 */
#slide_sub_1.slide_sub_1_ms {
    padding: 150px 0;
    background-repeat: no-repeat;
    background-position: 0% -20px;      /* 左寄せ＋縦位置。数値を大きくするほど画像は上へ */
    background-size: 160%;            /* 横幅170%で拡大（左寄せのまま、右側ははみ出して切れる） */
}

/* motorsports-1390 */
.msports_flex_ms {
    width: 90%;
}
}

@media screen and (max-width: 1280px) {
ul.main_menu li {
    font-size: 1.1em;
    margin: 0 60px 0 0;
}

.slide1_btn::after {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
}

/* top_about_felx テキスト-1280：少し大きく */
.top_about_felx .detail .description_01 .small_txt,
.top_about_felx .detail .description_02 .small_txt {
	font-size: calc((24 / 1920) * 100vw);
}
.top_about_felx .detail .description_01 .txt,
.top_about_felx .detail .description_02 .txt {
	font-size: calc((128 / 1920) * 100vw);
}


/* slide6-1280 */
.msports_flex {
    width: 85%;
}

.msports_img {
    width: 90%;
}

/* slide6-1180 */
.msports_img {
    width: 85%;
}


/* where-1280 */
#slide_sub_1 .main_h2 {
    top: 110px;
}

/* where-1280：白カードを約150px上へ（base 420 → 270） */
.white_wrap {
    margin: calc(270px - 92.6562%) auto 0;
}

#slide_sub_2_wtb {
    margin: 280px 0 0;
}

/* 取扱店見出し以降をもう少し上に（baseはtransformなのでtransformで上書き） */
.slide_sub_2_diagonal .margin_top {
    transform: translateY(-110px);
    /* translateYが-150px→-110pxに変わる分、取り残される空白も減るので相殺量を合わせる（100 - 110 = -10px） */
    margin-bottom: -10px;
}


/* about-1280 */
.main_submenu_02 .submenu_item {
	width: 200px;
}

/* motorsports-1280 */
#slide_sub_1.slide_sub_1_ms {
    padding: 120px 0 150px;
}

.msports_flex_ms {
    width: 85%;
}


#slide_sub_1.slide_sub_1_ms img {
	width: 90%;
}


/* フローティングバナー-1280 */
.floating-banner__link {
	padding: 18px 0 22px;
}

.floating-banner__txt {
	font-size: 1.05rem;
}
}


@media screen and (max-width: 1200px) {
/* About-1200 */
/* 本文は可変・画像は固定px。すき間はmarginで一定に保つ（％固定混在によるすき間消失を防ぐ） */
.history_txt {
    width: auto;
    flex: 1;
    margin: 0 40px 0 0;
}

/* 画像が左の行は本文の余白を左側に */
.history_row.rev .history_txt {
    margin: 0 0 0 40px;
}
}


@media screen and (max-width: 1180px) {
/* slide3-1180 */
#slide3 {
    padding: 80px 0;
}

#slide3 h2 {
    font-size: 3.8rem;
}

.topnews_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0;
}

.topnews_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

/* about-1180 */
.main_submenu_02 .submenu_item {
	font-size: 0.9rem;
	width: 160px;
}

/* slide6-1180 */
.msports_flex {
    width: 80%;
}

/* motorsports-1280 */
.msports_flex_ms {
    width: 80%;
}

#slide_sub_1.slide_sub_1_ms img {
	width: 85%;
}
}


@media screen and (max-width: 1050px) {
/* FAQ-1050 */
.main_submenu_03 {
	max-width: 900px;
    justify-content: flex-start;
	margin-right: auto;
	margin-left: auto;
}

.main_submenu_03 .submenu_item {
    margin: 0 10px 10px;
}
}


@media screen and (max-width: 1024px) {
.header {
	height: 80px;
}

.h1_mov {
	width: 30%;
}

h1 {
    flex-shrink: 0;
    margin: 20px 0 0;
    width: 200px;
}

ul.main_menu {
display: none;
}

#slide1 {
    margin-top: 80px;
}

.slide1_txtwrap {
    left: 30px;
    bottom: 30px;
}

.slide1_btn {
    margin-top: 10px;
}


#slide2 h2 {
    font-size: 3.8rem;
}

#slide2 h2 span {
    font-size: 1.9rem;
    font-weight: 700;
}

#slide2 h2 a::after {
    top: -2px;
    width: 13px;
    height: 13px;
}


.topnews_list {
    width: 90%;
	margin-right: auto;
		margin-left: auto;
}

.common_h2_en {
    font-size: 3.8rem;
}

.msports_h2 {
    font-size: 3.8rem;
}

/* SLIDE5-1024 */
#slide5 {
    padding: 100px 0 200px;
}

/* slide6 黄色三角-1024：高さを低く・端近くまで伸ばす */
#slide6::before {
    height: 40px;
    -webkit-clip-path: polygon(5% 100%, 100% 0, 100% 100%);
    clip-path: polygon(5% 100%, 100% 0, 100% 100%);
}
#slide6::after {
    height: 40px;
    -webkit-clip-path: polygon(0 0, 95% 0, 0 100%);
    clip-path: polygon(0 0, 95% 0, 0 100%);
}


/* footer-1024 */
.footer_01 .footer_menu {
    width: 50%;
}


/* 中ページ-1024 */
#slide_sub_1 {
    margin-top: 80px;
}

#slide_sub_1.slide_sub_1_privacy {
    height: 250px;
}

#slide_sub_1 h2 {
    font-size: 3.5rem;
}

.main_submenu {
    margin: 50px 0 0;
}

.main_submenu_02 {
    margin: 50px 0 0;
}

.main_contents {
    margin: 40px 0 100px;
}

.main_contents .h2_service {
    margin: 0 0 30px;
}

/* where-1024 */
#slide_sub_1 .main_h2 {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
}

.white_wrap {
    margin: calc(220px - 92.6562%) auto 0;  /* 画像の高さ分引き上げてから上からの位置を指定（数値大=下） */
    padding: 100px 100px 30px;
}

.where_h3 {
    margin: 0;
    padding: 0;
    font-size: 3.2rem;
    line-height: 1;
    text-align: left;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    border-bottom: thick solid #000;
    margin: 0 0 50px;
    padding: 0 0 20px;
}

.where_h3_en {
    font-size: 3.8rem;
}

.where_tag {
    font-size: 1rem;
    margin: 0 0 0 20px;
    padding: 7px 1.5em 8px;
}


/* motorsports-1024 */
#slide_sub_1.slide_sub_1_ms {
        padding: 90px 0 120px;
}

#slide_sub_1.slide_sub_1_ms .main_h2 {
    font-size: 3.5rem;
    margin: 0 0 30px;
}

#slide_sub_1.slide_sub_1_ms .msports_lead {
    margin: 80px auto 0;
}

.event_info_ttl {
    font-size: 1.6rem;
    margin: 0 auto 60px;
    padding: 18px 40px;
    max-width: 600px;
}

/* ticker-1024：2枚表示 */
.scroll-infinity__item {
	width: calc(100vw / 2);
}

/* About-1024 */
.about_about_h3 {
    font-size: 3.8rem;
}

.about_about_h3 span {
    font-size: 1.6rem;
    font-weight: 600;
    margin-left: 0;
}

.about_h3 {
    font-size: 3.8rem;
}

.about_h3_jp {
    font-size: 1.4rem;
}

.about_white_wrap {
    margin: 80px auto 0;
	padding: 4em 2em;
	width: 95%;
}

.philosophy_ttl {
    font-size: 2.8rem;
    line-height: 1;
    text-align: center;
    font-weight: 900;
    margin: 50px auto;
    padding: 20px 0;
    max-width: 550px;
}

.philosophy_wrap .p_01 {
    font-size: 1.5rem;
}

.philosophy_wrap2 {
    padding: 80px 0;
}

.philosophy_wrap2 .p_02 span {
	font-size: 1.8rem;
}

.approach_wrap {
    padding: 50px 0 100px;
}

/* FAQ-1024 */
.main_submenu_03 {
	margin-right: auto;
		margin-left: auto;
	margin-top: 50px;
}
}


@media screen and (max-width: 980px) {
/* FAQ-1050 */
.main_submenu_03 {
	max-width: 600px;
    justify-content: flex-start;
	margin-right: auto;
	margin-left: auto;
}

.main_submenu_03 .submenu_item {
    margin: 0 10px 5px;
}
}


@media screen and (max-width: 912px) {
.main_submenu_02 .submenu_item {
    margin: 0 30px 20px 0;
}

.main_submenu_02 .submenu_item:last-child {
	margin-right: 0;
}

.story_wrap {
    padding: 80px 0 100px;
}
}


@media screen and (max-width: 820px) {
/* slide3-820 */
.topnews_list {
    width: 100%;
}

/* slide5-820 */
#slide5 p {
    font-size: 1.2rem;
}

/* slide6-820 */
.msports_txt {
    font-size: 1.3rem;
}

/* footer-820 */
.footer_logo {
    max-width: 220px;
    margin: 0;
    padding: 0;
}

.footer_01 .footer_menu {
   width: 58%;
}

.footer_menu ul li {
    font-size: 0.9rem;
    margin: 0 0 10px;
}

.footer_02 {
    flex-direction: column-reverse;
    margin: 25px 0 0;
    padding: 0;
}

.copyright {
    margin: 40px 0 0;
}

/* motorsports-820 */
.msports_txt_ms {
	font-size: 1.3rem;
}

.event_item {
    width: 31%;
    margin: 0;
    padding: 0;
}

/* About-820 */
.history_year {
    font-size: 2.6rem;
    line-height: 1;
    width: 120px;
}

/* 年号が30px縮んだ分（150px→120px）、縦線・ドット・本文も30px左に寄せる */
.history::before {
    left: 250px;
}

.history_item::before {
    left: 170px;
}

.history_item {
    padding: 0 0 0 200px;
}
}


@media screen and (max-width: 768px) {
/* where-768 */
.white_wrap {
	padding: 70px 50px 30px;
 }

.online_sites {
    justify-content: space-between;   /* 左列=左端・右列=右端、隙間は中央へ */
}

.online_sites li {
    margin: 0;
    padding: 0 0 50px 0;   /* 横ガターはspace-betweenで作るのでpadding-rightは0 */
    list-style: none;
    width: 48%;
}

/* about-768 */
.main_submenu_02 {
	justify-content: space-between;
}

.main_submenu_02 .submenu_item {
	width: 48%;
	font-size: 0.95rem;
	white-space: nowrap;
	margin: 0 0 10px;
	padding: 10px 0;
}

/* くの字：小さく＋右端ぴったり */
.main_submenu_02 .submenu_item::after {
	width: 7px;
	height: 7px;
	margin-right: 0;
}

.philosophy_list {
	max-width: none;
	max-width: initial;
}

.philosophy_list dt {
    width: 180px;
    height: 180px;
}

.philosophy_list dd {
    font-size: 1.5rem;
    margin: 0 0 0 40px;
}

/* motorsports-768 */
#slide_sub_1.slide_sub_1_ms .msports_lead {
    line-height: 2.3;
    margin: 80px auto 0;
    max-width: 680px;
}
}

@media (max-width: 767px) {
.slide1_txtwrap {
    left: 10px;
    bottom: 20px;
}

.slide1_theme {
    display: block;
    width: 35%;
    max-width: 420px;
}

.slide1_btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    max-width: none;
	max-width: initial;
    box-sizing: border-box;
    margin-top: 15px;
    padding: 12px 20px;
}

.slide1_btn img {
    display: block;
    width: auto;
    height: 15px;
}
}

@media (min-width: 767px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}



@media screen and (max-width: 640px) {
.header {
  height: 60px;
  opacity: 1 !important;
  transform: none !important;
}

h1 {
margin: 10px 0 0;
width: 150px;
}

.news dl {
	flex-direction: column;
}

.news dt {
	margin-bottom: 10px;
}

.container {
	width: 90%;
}

.container1260 {
	width: 90%;
}

.container1350 {
	width: 90%;
}

.container1400 {
	width: 90%;
}

.container1500 {
	width: 90%;
}

.container1000 {
	width: 90%;
}

/* 斜めライン装飾（スマホ）：黄を小さくして左端に寄せ、見出し裏に掛からないようにする */
.approach_wrap {
	background-position:
		left -30px top 30px,    /* 黄：左端に寄せる */
		right 0 top 200px,      /* 緑：PCと同じ */
		right 70px top 450px;   /* 赤：PCと同じ */
	background-size:
		150px 320px,            /* 黄：小さくして目立たなく */
		260px 360px,
		190px 290px;
}



/*slide1-sp*/
#slide1 {
	margin-top: 60px;
}

#slide1 .hero-swiper {
	aspect-ratio: 16 / 11;
}

#slide1 .swiper-slide img {
	object-position: 75% center;
}


/*slide2-sp*/
#slide2 {
padding: 50px 0 80px;
background-color: transparent;
}

#slide2 h2 {
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 30px;
}

.top_about .en_txt {
	position: absolute;
	right: 0;
	top: auto;
	bottom: -40px;
	transform: none;
	width: 100%;
	max-width: none;
	height: auto;
	z-index: -1;
	pointer-events: none;
}

#slide2 h2 span {
font-size: 1.4rem;
}

#slide2 p {
    font-size: 1.1rem;
    margin: 0 0 50px;
}

.top_about_felx .detail {
    width: 100%;
}

.top_about_felx .detail .description_01 .txt,
.top_about_felx .detail .description_02 .txt {
    font-size: 3.5rem;
}

.top_about_felx .detail .description_01 .small_txt,
.top_about_felx .detail .description_02 .small_txt {
    font-size: 1rem;
}

/*slide3-sp*/
#slide3 {
padding: 60px 0 80px;
}

#slide3 h2 {
	font-size: 2.7rem;
}

.topnews_list .list {
    width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 40px;
}

.topnews_list .list img {
    width: 80%;
	margin: 0 auto;
	display: block;
	padding-top: 10px;
}

.topnews_h3 {
    font-size: 1.1rem;
    padding: 7px 5px 7px 15px;
    background-color: #000;
}


/*slide4-sp*/
#slide4 {
padding: 60px 0 50px;
}

h2.common_h2 {
    margin: 0 0 40px;
    padding: 0 0 10px;
}

.common_h2_en {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: 1px;
}

.common_h2_jp {
    font-size: 1rem;
    margin-top: 10px;
}


/*slide5-sp*/
#slide5 {
padding: 0 0 120px;
background-image: none; /* SPでは斜めライン装飾を非表示 */
}

#slide5 p {
    font-size: 1.1rem;
    margin: 0 0 50px;
}

/*slide6-sp*/
#slide6 {
margin: 0 0 100px;
padding: 60px 0 80px;
}

.msports_h2 {
font-size: 2.4rem;
line-height: 1.1;
}

.msports_flex {
	display: block;
	position: static;
	padding-right: 0;
}

.msports_flex picture {
	display: block;
	width: 100%;
}

.msports_img {
	width: 100%;
	max-width: none;
	margin-top: 50px;
}

.msports_txt {
	font-size: 1rem;
	position: static;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	margin-top: 20px;
	margin-bottom: 40px;
}

/*イベント情報-sp*/
.event_info {
	padding: 50px 0 60px;
}

.event_info_ttl {
	font-size: 1.5rem;
	margin-bottom: 40px;
	padding: 16px 20px;
}

.event_item {
	width: 86%;
	max-width: none;
	margin: 0 auto 30px;
}

.event_item:last-child {
	margin-bottom: 0;
}

/*footer-sp*/
footer {
	padding-top: 0;
	padding-bottom: 60px;
}

.footer_logo {
    max-width: 220px;
    margin: 0 auto;
    padding: 0;
}

.footer_01 {
    margin: 60px 0 0;
    padding: 0 0 40px;
}

.footer_01 .footer_menu {
width: 90%;
margin-top: 40px;
		margin-right: auto;
margin-left: auto;
}

.ul_footer_ul_r {
    margin-left: 50px !important;
}

.footer_menu ul li a {
    font-size: 0.9rem;
}

.footer_02_link {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.footer_02 .footer_sns {
	margin: 0 0 20px 0;
}

.footer_02 .txt_area {
	justify-content: flex-start;
}

.footer_02 .txt_area div:first-child {
	margin-left: 0;
}

.footer_02 .txt_area div {
    margin: 0 0 0 20px;
}



/*中ページ-sp*/
#slide_sub_1 {
	margin-top: 60px;
}

#slide_sub_1.slide_sub_1_privacy {
	height: 150px;
}

#slide_sub_1 img {
	object-position: center center;
	height: 180px;
}

/* where-to-buy専用：縦長画像は原寸比率で全体表示（coverによる拡大を防ぐ。idを含めて詳細度UP） */
#slide_sub_1.slide_sub_1_wtb img {
	height: auto;
}

#slide_sub_1 h2 {
    font-size: 2.6rem;
}

#slide_sub_1 .main_h2 {
  top: 70px;
  font-size: 2.6rem;
}

/*サブメニュー-sp*/
.main_submenu {
    margin: 30px 0 0;
}

.main_submenu .submenu_item {
	width: 100%;
	margin-bottom: 5px;
	padding: 10px 5px 8px;
}

.main_submenu .submenu_item::after {
    width: 7px;
    height: 7px;
    margin-left: 10px;
    margin-right: 10px;
}

.main_submenu_02 {
    margin: 30px 0 0;
}

.main_submenu_02 .submenu_item {
	margin-bottom: 5px;
}

.main_submenu_03 {
    margin: 30px 0 0;
}

.main_submenu_03 .submenu_item {
    width: 100%;
    padding: 10px 5px 8px;
}

.main_submenu_03 .submenu_item {
    width: 100%;
    padding: 10px 5px 8px;
}

.main_contents .h2_service {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 0 25px;
}

.after_s .title {
    font-size: 1.1rem;
    left: -10px;
}

.after_s {
    padding: 55px 1.5em .5em;
}


/* where-640 */
.white_wrap {
   margin: calc(160px - 92.6562%) auto 0;
   padding: 50px 20px 30px;
}

.where_h3 {
    font-size: 2.2rem;
}

.where_h3_en {
    font-size: 2.5rem;
}

.where_tag {
    font-size: 0.9rem;
    margin: 0 0 0 10px;
    padding: 6px 1em 7px;
}

.online_sites {
    margin: 40px 0 0;
}

.online_sites li {
   padding: 0 0 30px 0;
}

#slide_sub_2_wtb {
   margin: 230px 0 0;
}

.shop_body dt {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: baseline;
    font-size: 1rem;
    line-height: 1.8em;
    text-align: left;
    width: auto;
}

.shop_body dd {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 20px 12px 0;
    padding: 0;
}


/*FAQ-sp*/
.faq_block {
	margin-bottom: 18px;
	padding: 22px 20px;
}

.faq_cat {
	margin: 44px 0 22px;
	padding: 0 0 12px;
}

.faq_q_txt::before {
	font-size: 1.7rem;
}



/* motorsports-sp */
#slide_sub_1.slide_sub_1_ms {
    padding: 40px 0 100px;
    background-position: left top;   /* 左上寄せ（旗を左上に） */
    background-size: 200%;           /* 拡大（数値を上げるほど大きく。右はみ出しは切れる） */
}

#slide_sub_1.slide_sub_1_ms .main_h2 {
    font-size: 2.4rem;
    margin: 0 0 30px;
}

.msports_flex_ms {
	display: block;
	position: static;
	padding-right: 0;
}

.msports_flex_ms picture {
	display: block;
	width: 100%;
}

.msports_img_ms {
	width: 100%;
	max-width: none;
	margin-top: 50px;
}

.msports_txt_ms {
	position: static;
	-webkit-writing-mode: horizontal-tb;
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	font-size: 1.2rem;
	margin-top: 20px;
	margin-bottom: 40px;
}

#slide_sub_1.slide_sub_1_ms img {
    width: 100%;
}

#slide_sub_1.slide_sub_1_ms .msports_lead {
   line-height: 2.3;
   margin: -10px auto 0;
   max-width: 680px;
}

.event_info_ttl {
    font-size: 1.3rem;
    padding: 16px 20px;
}


/* About-sp */
.about_wrap {
	background-position:
		left 10px top 10px,      /* 緑：左 */
		right 120px top -40px,   /* 赤：中央右・短め（上端を切る） */
		right -20px top 10px;    /* 緑：右端（右へはみ出す） */
}

.about_about_h3 {
    font-size: 2.5rem;
}

.about_about_h3 span {
    ont-size: 1.4rem;
}
	
.about_white_wrap {
    margin: 60px auto 0;
    padding: 2em 1em;
    width: 100%;
}	
	
.about_white_wrap .p_1 {
    font-size: 1rem;
	text-align: left;
}

.about_white_wrap .p_2 {
    line-height: 2;
}

.philosophy_wrap {
    margin: 100px 0 0;
    border-radius: 60px 60px 0 0;
    padding: 50px 0 100px;
    text-align: center;
}	
	
.about_h3 {
    font-size: 2.5rem;
	margin-bottom: 5px;
}	
	
.about_h3_jp {
    font-size: 1.3rem;
}	
	
.philosophy_ttl {
	font-size: 2.2rem;
    margin: 40px auto;
    padding: 15px 0;
}

.philosophy_wrap .p_01 {
    font-size: 1.1rem;
	line-height: 1.8;
}

.philosophy_wrap2 {
    margin: -100px 0 0;
    padding: 50px 0 70px;
    border-radius: 60px 60px 0 0;
    background-image: url(../images/about/line.png);
    background-repeat: no-repeat;
    background-position: center 380px;
    background-size: 100% auto;
}

.philosophy_wrap2 .p_02 {
	margin: 0 auto;
}

.philosophy_wrap2 .p_02 span {
	font-size: 1.2rem;
}

.philosophy_wrap2 h4 {
    font-size: 1.8rem;
}

.philosophy_list {
    margin: 50px auto 0;
}

.philosophy_list dl {
    flex-direction: column;
}

.philosophy_list dt {
    width: 150px;
    height: 150px;
}

.philosophy_list dd {
    font-size: 1.05rem;
    margin: 20px 0 30px;
	text-align: center;
}


/*フローティングバナー-sp*/
.floating-banner {
	top: auto;
	bottom: 20px;
	right: 0;
	margin-top: 0; /* ← SPは下寄せに */
	opacity: 1; /* ← SPはJSアニメ無効のため最初から表示 */
}

.floating-banner__link {
	width: 44px;
	padding: 16px 0 18px;
}

.floating-banner__link i {
	margin-bottom: 10px;
}

.floating-banner__txt {
	font-size: 0.85rem;
	letter-spacing: 2px;
}

.floating-banner__totop {
	display: none;
}


/* About-640 */
.history_year {
    font-size: 1.6rem;
    line-height: 1;
    width: 75px;
}

/* 年号を小さくした分、縦線・ドットを年号に寄せる（年号右端75px → ドット87px：間隔12px）。
   ラインの上端も小さくした年号の高さに合わせて上げる */
.history::before {
    top: 6px;
    left: 92px;
}

/* ●も年号のサイズに合わせて小さく（14px→10px）。中心をラインに一致させる */
.history_item::before {
    width: 10px;
    height: 10px;
    top: 8px;
    left: 87px;
}

/* 本文をラインに近づける（ライン92px → 本文115px：.history_rowの左10pxを含む） */
.history_item {
    padding: 0 0 0 105px;
}

/* 本文上・画像下の縦積みに切り替え（.revの左右反転も解除して全行同じ順に） */
.history_row,
.history_row.rev {
    flex-direction: column;
}

/* 本文は全幅。横並び用の左右marginを解除し、画像との間に余白 */
.history_txt,
.history_row.rev .history_txt {
    flex: none;
    width: 100%;
    margin: 0 0 20px;
}

/* 画像は左寄せ（行のalign-items:flex-startで左に揃う）。
   本文の幅を超えないよう可変にする（240pxが上限。狭い端末では縮む） */
.history_img {
    width: 100%;
    max-width: 240px;
    height: 170px;
    margin: 0;
}


/*サイトマップ-sp*/
.sitemap {
	padding-left: 20px;
}

.sitemap_column {
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}

/*プライバシーポリシー-sp*/
.privacy_h3 {
    font-size: 1.5rem;
    line-height: 1.8;
    margin: 0 0 40px;
}


/*hidden-sp*/
.hidden_pc {
	display: block;
}
.hidden_sp {
	display: none;
}

}
