@charset "utf-8";
@font-face {
  font-family: "Noto Serif JP";
  src: url("/lp/100th/fonts/NotoSerifJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("/lp/100th/fonts/NotoSerifJP-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("/lp/100th/fonts/NotoSerifJP-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
	--COLOR_FONT: #333;
	--COLOR_FONT_DARK: #001344;
	--COLOR_PRIMARY: #C47846;
	--FONT_FAMILY_EMPHASIS: "Noto Serif JP";
	--FONT_FAMILY_COPYRIGHT: "Hiragino Kaku Gothic ProN";
	--FONT_SIZE: 1.4rem;
	--FONT_WEIGHT: 400;
	--FONT_WEIGHT_BOLD: 500;
	--FONT_WEIGHT_STRONG: 700;
	--LINE_HEIGHT: 1.8;
	--LINE_HEIGHT_NARROW: 1.5;
	--EASING: ease-out;
	--DURATION: .2s;
	--TRANSITION: var(--EASING) var(--DURATION);
	--TRANSITION_SLOW: var(--EASING) .3s;
	--Z_INDEX_LOWER_LAYER: -1;
	--Z_INDEX_UPPER_LAYER: 1;
	--Z_INDEX_MIDDLE_LAYER: 10;
	--Z_INDEX_HEADER: 100;
}

@media screen and (min-width: 767px) {
	:root {
		--FONT_SIZE: 1.6rem;
	}
}

body {
	color: var(--COLOR_FONT);
	font-size: var(--FONT_SIZE);
	font-weight: var(--FONT_WEIGHT);
	line-height: var(--LINE_HEIGHT);
}

em {
	color: #DC000C;
	font-weight: var(--FONT_WEIGHT_STRONG);
}

/*----------------------------------- 共通 --------------------------------------*/

.u-100th-br {
	display: block;
}

.u-100th-br-sp {
	display: block;
}

.u-100th-heading-level1 {
	position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.u-100th-heading-level2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--FONT_FAMILY_EMPHASIS);
}

.u-100th-heading-level2__title {
	color: #001443;
	font-size: 4rem;
	font-weight: var(--FONT_WEIGHT_BOLD);
	line-height: 1.5;
	text-transform: uppercase;
}

.u-100th-heading-level2__subtitle {
	font-size: 1.8rem;
	font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-100th-heading-level2__highlight {
	color: var(--COLOR_PRIMARY);
}

.u-100th-heading-level2__highlight--normal-case {
	text-transform: capitalize;
}

.u-100th-button {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.u-100th-button__link {
	display: flex;
	align-items: center;
	column-gap: 16px;
	min-width: 240px;
	padding: 16px 8px 16px 24px;
	border: 1px solid #000;
	border-radius: 50px;
}

.u-100th-button__link::after {
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background-color: #001344;
	background-image: url(/common/images/renew/100th/ico-arrow.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 55% center;
}

.u-100th-button__text {
	flex: 1;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-weight: var(--FONT_WEIGHT_BOLD);
	text-align: center;
}

.u-100th-button__link--shop {
	background-color: var(--COLOR_PRIMARY);
	border-color: var(--COLOR_PRIMARY);
	color: #FFF;
}

.u-100th-button__link--shop::after {
	background-color: #FFF;
	background-image: url(/common/images/renew/100th/ico-arrow-dark.svg);
	background-position: center 55%;
	transform: rotate(-90deg);
}

@media screen and (min-width: 768px) {
	.u-100th-br-sp {
		display: inline;
	}
	
	.u-100th-br-pc {
		display: block;
	}

	.u-100th-heading-level2__title {
		font-size: 6rem;
	}

	.u-100th-heading-level2__subtitle {
		font-size: 2.4rem;
	}

	.u-100th-button {
		margin-top: 40px;
	}

	.u-100th-button__link {
		position: relative;
		outline: none;
		background-color: #fff;
		transition: color 0.5s ease;
		overflow: hidden;
		z-index: var(--Z_INDEX_UPPER_LAYER);
	}
	
	.u-100th-button__link:hover {
		color: #fff;
	}

	.u-100th-button__link:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}

	.u-100th-button__link::before {
		position: absolute;
		top: 0;
		left: 0;
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background: #001344;
		transform: scaleX(0);
		transform-origin: right;
		transition: all 0.5s ease;
		transition-property: transform;
		z-index: var(--Z_INDEX_LOWER_LAYER);
	}

	.u-100th-button__link::after {
		width: 42px;
		height: 42px
	}

	.u-100th-button__link--shop {
		background-color: var(--COLOR_PRIMARY);
	}
	
	.u-100th-button__link--shop:hover {
		color: var(--COLOR_FONT_DARK);
	}

	.u-100th-button__link--shop::before {
		background: #FFF;
	}

	.u-100th-button__text {
		position: relative;
	}
}

/*----------------------------------- 追従バナー --------------------------------------*/

.u-100th-fixed {
	position: fixed;
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	top: 170px;
	right: 0;
	z-index: var(--Z_INDEX_MIDDLE_LAYER);
}

.u-100th-fixed__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 8px;
	padding: 16px 4px;
	border-radius: 10px 0 0 10px;
	background: rgba(234, 228, 216, 0.60);
	box-shadow: -8px 0 10px 0 rgba(0, 0, 0, 0.10);
}

.u-100th-fixed__icon {
	padding: 4px;
	background-color: #001344;
	border-radius: 50%;
	object-fit: cover;
	width: 32px;
	height: 32px;
}

.u-100th-fixed__text {
	color: #001443;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-size: 1.6rem;
	font-weight: var(--FONT_WEIGHT_STRONG);
    writing-mode: vertical-rl;
}

.u-100th-fixed__text-highlight {
	color: var(--COLOR_PRIMARY);
}

@media screen and (min-width: 768px) {
	.u-100th-fixed {
		top: 120px;
	}

	.u-100th-fixed__link {
		padding: 16px 8px;
		background: rgba(234, 228, 216);
		transition: opacity 0.3s;
	}

	.u-100th-fixed__link:hover {
		opacity: .5;
	}

	.u-100th-fixed__icon {
		width: 42px;
		height: 42px;
		padding: 7px;
	}
}

/*----------------------------------- mv --------------------------------------*/

.u-100th-mv__img {
	width: 100%;
}

/*----------------------------------- message --------------------------------------*/

.u-100th-message {
	display: grid;
	position: relative;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	background-color: rgba(211, 182, 122, 0.20);
}

.u-100th-message__inner {
	position: relative;
	grid-column: 2/3;
	padding-bottom: 50px;
}

.u-100th-message__inner::before {
	content: "";
	position: absolute;
	width: 328px;
	height: 105px;
	top: 8px;
	left: 50%;
	transform: translateX(-50%);
	background-image: url("/common/images/renew/100th/ico-message.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: var(--Z_INDEX_LOWER_LAYER);
}

.u-100th-message-heading {
	margin-top: 55px;
	font-size: 1rem;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-weight: var(--FONT_WEIGHT_BOLD);
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
}

.u-100th-message-lead {
	margin-top: 18px;
	color: #001443;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-size: 2rem;
	text-align: center;
}

.u-100th-message-lead > b {
	font-weight: var(--FONT_WEIGHT_STRONG);
}

.u-100th-message-text {
	margin-top: 14px;
	padding-right: 18px; /*追従バナーと被らないよう*/
	text-align: center;
}

.u-100th-message-text__item {
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-size: 1.6rem;
	line-height: 2;
}

@media screen and (min-width: 768px) {
	.u-100th-message {
		overflow: hidden; /*背景画像の飛び出し防止*/
		column-gap: 56px; /*追従バナーとの被り調整*/
	}

	.u-100th-message::after {
		content: "";
		position: absolute;
		width: 484px;
		height: 449px;
		left: -130px;
		bottom: -35px;
		background-image: url("/common/images/renew/100th/message-bg-01.png");
		background-repeat: no-repeat;
	}

	.u-100th-message__inner {
		padding-bottom: 80px;
	}

	.u-100th-message__inner::before {
		width: 656px;
		height: 210px;
		top: 0;
	}

	.u-100th-message-heading {
		margin-top: 94px;
		font-size: 1.4rem;
	}

	.u-100th-message-lead {
		font-size: 3rem;
	}

	.u-100th-message-text {
		margin-top: 48px;
		padding: 0;
	}

	.u-100th-message-text__item {
		font-size: 1.8rem;
		letter-spacing: 0.1em;
	}
}

/*----------------------------------- topic --------------------------------------*/

.u-100th-topic {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1100px) 1fr;
	column-gap: 15px;
}

.u-100th-topic__inner {
	grid-column: 2/3;
	padding-top: 40px;
}

.u-100th-topic-list {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	margin-top: 32px;
	padding-right: 18px; /*追従バナーと被らないよう*/
}

.u-100th-topic-list__link {
	display: block;
	width: 100%;
	border-bottom: 1px solid #D3D3D3;
	padding-bottom: 16px;
}

.u-100th-topic-list__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.u-100th-topic-list__title {
	margin-top: 8px;
}

.u-100th-topic-list__date {
	min-width: 120px;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}

.u-100th-topic-list__category {
	padding: 8px;
	min-width: 80px;
	background-color: #001443;
	border-radius: 4px;
	color: #FFF;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
}

.u-100th-topic-list__title-text {
	display: flex;
	align-items: center;
	column-gap: 16px;
	line-height: 1.75;
}

@media screen and (min-width: 768px) {
	.u-100th-topic {
		column-gap: 60px;
	}

	.u-100th-topic__inner {
		padding-top: 80px;
		padding-bottom: 48px;
	}

	.u-100th-topic-list {
		display: grid;
		grid-template-columns: fit-content(30%) auto;
		margin-top: 48px;
		row-gap: 32px;
		padding: 0;
	}

	.u-100th-topic-list__item {
		display: grid;
		grid-template-columns: subgrid;
		grid-column: 1/-1;
	}

	.u-100th-topic-list__link {
		display: grid;
		grid-template-columns: subgrid;
		grid-column: 1/-1;
		column-gap: 40px;
		padding-bottom: 32px;
		background-image: linear-gradient(to right, #001443 0, #001443 50%, #D3D3D3 50%, #D3D3D3 100%);
		background-repeat: no-repeat;
		background-position: bottom right;
		background-size: 0 1px;
		transition: background-position 0.3s;
		background-size: 200% 1px;
		border-bottom: none;
	}

	.u-100th-topic-list__link:hover {
		background-position: bottom right 100%;
	}

	.u-100th-topic-list__meta {
		grid-column: 1/2;
		column-gap: 16px;
		flex-wrap: nowrap;
	}

	.u-100th-topic-list__date {
		font-size: 1.8rem;
	}

	.u-100th-topic-list__category {
		padding: 8px 16px;
		font-size: 1.2rem;
	}

	.u-100th-topic-list__title {
		grid-column: 2/-1;
		margin-top: 0;
	}
}

/*----------------------------------- anchor --------------------------------------*/

.u-100th-anchor {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	padding: 54px 0 24px;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.03);
}

.u-100th-anchor__list {
	grid-column: 2/3;
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
	row-gap: 24px;
	margin: 0 auto;
}

.u-100th-anchor__list-item {
	min-width: 165px;
}

.u-100th-anchor__link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 4px;
}

.u-100th-anchor__link::after {
	content: "";
	width: 7px;
	height: 12px;
	background-color: var(--COLOR_FONT_DARK);
	mask-image: url(/common/images/renew/100th/ico-arrow.svg);
    mask-repeat: no-repeat;
    mask-size: auto;
	transform: rotate(90deg);
	transition: transform 0.3s;
}

.u-100th-anchor__title-container {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	row-gap: 8px;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-weight: var(--FONT_WEIGHT_BOLD);
	line-height: 1.5;
	letter-spacing: 0.1em;
	transition: opacity 0.3s;
}

.u-100th-anchor__title {
	font-size: 1.6rem;
}

.u-100th-anchor__sub-title {
	font-size: 1rem;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.u-100th-anchor {
		column-gap: 40px;
		padding: 40px 0;
	}
	
	.u-100th-anchor__list {
		column-gap: 120px;
	}

	.u-100th-anchor__list-item {
		min-width: auto;
		padding-bottom: 8px;
	}

	.u-100th-anchor__link {
		row-gap: 16px;
	}
	
	.u-100th-anchor__link:hover > .u-100th-anchor__title-container {
		opacity: .5;
	}

	.u-100th-anchor__link:hover::after {
		transform: translateY(8px) rotate(90deg);
	}

	.u-100th-anchor__title {
		font-size: 1.8rem;
	}

	.u-100th-anchor__sub-title {
		font-size: 1.4rem;
	}
}

/*----------------------------------- logo --------------------------------------*/

.u-100th-logo {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
}

.u-100th-logo__inner {
	grid-column: 2/3;
	padding: 40px 0;
}

.u-100th-logo-2column {
	display: grid;
	row-gap: 16px;
}

.u-100th-logo-2column__img {
	display: block;
	margin: 0 auto;
}

.u-100th-logo-2column__text {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	padding: 0 18px;
}

@media screen and (min-width: 768px) {
	.u-100th-logo {
		background-image: url("/common/images/renew/100th/logo-bg-01.png");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: bottom -124px right -90px;
	}

	.u-100th-logo__inner {
		padding: 80px 0 40px;
	}

	.u-100th-logo {
		column-gap: 40px;
	}

	.u-100th-logo-2column {
		grid-template-columns: 1fr 2fr;
		column-gap: 80px;
		align-items: center;
		margin-top: 16px;
	}

	.u-100th-logo-2column__text {
		padding: 0;
	}
}

/*----------------------------------- history --------------------------------------*/

.u-100th-history {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
}

.u-100th-history__heading {
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1/-1;
	background-image: url("/common/images/renew/100th/history-bg-sp.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 125 / 81;
}

.u-100th-history__heading::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 20, 67, 0.20);
}

.u-100th-history__heading-inner {
	grid-column: 2/3;
	margin: auto;
}

.u-100th-history__heading-title {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #FFF;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-100th-history__heading-text {
	order: 2;
	color: rgba(255, 255, 255, 0.40);
	font-size: 6rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.u-100th-history__heading-sub-text {
	order: 3;
	margin-top: -16px;
	font-size: 1.8rem;
	text-align: center;
}

.u-100th-history__heading-lead {
	order: 1;
	margin-bottom: -20px;
	font-size: 1.2rem;
	font-weight: var(--FONT_WEIGHT);
	letter-spacing: 0.1em;
}

.u-100th-history__inner {
	grid-column: 2/3;
	padding: 32px 0;
}

.u-100th-history-timeline {
	padding-right: 8px;
}

.u-100th-history-timeline__item {
	display: grid;
	grid-template-columns: 15px 1fr;
	grid-template-rows: auto 1fr 36px;
	column-gap: 7px;
}

.u-100th-history-timeline__item:first-child {
	grid-template-rows: auto auto 1fr 36px;
}

.u-100th-history-timeline__item:first-child::before {
	grid-area: 2 / 1 / -1;
	margin-top: 0;
}

.u-100th-history-timeline__item:first-child::after {
	grid-area: 1 / 1 / 3;
}

.u-100th-history-timeline__item:first-child .u-100th-history-timeline__head {
	grid-row: 1/3;
}

.u-100th-history-timeline__item:last-child {
	grid-template-rows: auto 1fr;
}

.u-100th-history-timeline__item::before {
	grid-area: 1 / 1 / -1;
	display: block;
	margin: 0 auto 0;
	height: 100%;
	width: 1px;
	content: "";
	background: #D3D3D3;
}

.u-100th-history-timeline__item:last-child:before {
	grid-area: 1 / 1 / 2;
	height: calc(50%);
}

.u-100th-history-timeline__item::after {
	content: "";
	grid-area: 1 / 1;
	display: block;
	margin: auto 0;
	height: 15px;
	width: 15px;
	background-color: #D3D3D3;
	border-radius: 50%;
}

.u-100th-history-timeline__head {
	position: relative;
	display: flex;
	flex-direction: column;
	row-gap: 4px;
	padding: 16px;
	border-radius: 10px;
	border: 1px solid #D3D3D3;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.20);
	font-family: var(--FONT_FAMILY_EMPHASIS);
}

.u-100th-history-timeline__head::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -18.5px;
	width: 7px;
	height: 7px;
	background-color: #001344;
	border-radius: 50%;
	transform: translateY(-50%);
}

.u-100th-history-timeline__head::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -15px;
	width: 15px;
	height: 1px;
	background-color: #001344;
	border-radius: 50%;
	transform: translateY(-50%);
}

.u-100th-history-timeline__head-year {
	display: flex;
	align-items: baseline;
	column-gap: 4px;
	flex-shrink: 0;
	font-weight: var(--FONT_WEIGHT_STRONG);
	line-height: var(--LINE_HEIGHT_NARROW);
}

.u-100th-history-timeline__head-year-western {
	color: var(--COLOR_FONT_DARK);
	font-size: 2rem;
}

.u-100th-history-timeline__head-year-japan {
	color: #777;
	font-size: 1.2rem;
}

.u-100th-history-timeline__head-title {
	color: var(--COLOR_PRIMARY);
	font-size: 1.6rem;
	line-height: 1.75;
}

.u-100th-history-timeline__head-title > b {
	font-weight: var(--FONT_WEIGHT_STRONG);
}

.u-100th-history-timeline__body {
	display: flex;
	flex-direction: column;
	grid-column: 2/3;
	row-gap: 16px;
	margin-top: 24px;
}

.u-100th-history-timeline__body-timeline {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.u-100th-history-timeline__body-timeline-item {
	display: grid;
	grid-template-columns: 2fr 3fr;
	column-gap: 12px;
	font-family: var(--FONT_FAMILY_EMPHASIS);
}

.u-100th-history-timeline__body-year {
	display: flex;
	align-items: baseline;
	column-gap: 4px;
	font-weight: var(--FONT_WEIGHT_BOLD);
	line-height: var(--LINE_HEIGHT_NARROW);
}

.u-100th-history-timeline__body-year-western {
	color: var(--COLOR_FONT_DARK);
	font-size: 1.6rem;
}

.u-100th-history-timeline__body-year-japan {
	color: #777;
}

.u-100th-history-timeline__body-text {
	line-height: 1.75;
	padding-right: 12px; /*追従バナーと被らないよう*/
}

.u-100th-history-timeline__body-media {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	row-gap: 8px;
}

.u-100th-history-timeline__body-caption {
	color: #777;
	font-size: 1.3rem;
	line-height: 1.75;
}

@media screen and (min-width: 768px) {
	.u-100th-history__heading {
		background-image: url("/common/images/renew/100th/history-bg-pc.jpg");
		aspect-ratio: 1440 / 379;
	}

	.u-100th-history__heading-text {
		font-size: 12rem;
	}

	.u-100th-history__heading-sub-text {
		font-size: 2.4rem;
	}

	.u-100th-history__heading-lead {
		font-size: 2rem;
		margin-bottom: -40px;
	}

	.u-100th-history__inner {
		padding: 48px 0 75px;
	}

	.u-100th-history-timeline {
		padding: 0;
	}

	.u-100th-history-timeline__item {
		grid-template-columns: 30px 1fr;
		grid-template-rows: auto 1fr 40px;
		column-gap: 35px;
	}

	.u-100th-history-timeline__item:last-child > .u-100th-history-timeline__body {
		grid-template-columns: auto;
	}
	
	.u-100th-history-timeline__item::after {
		width: 30px;
		height: 30px;
	}

	.u-100th-history-timeline__head {
		flex-direction: row;
		align-items: center;
		column-gap: 40px;
		padding: 24px 40px;
	}

	.u-100th-history-timeline__head::before {
		width: 14px;
		height: 14px;
		left: -57.5px;
	}

	.u-100th-history-timeline__head::after {
		left: -45px;
		width: 44px;
	}

	.u-100th-history-timeline__head-year {
		flex-direction: column;
	}

	.u-100th-history-timeline__head-year-western {
		font-size: 3.2rem;
	}

	.u-100th-history-timeline__head-year-japan {
		font-size: 1.6rem;
	}

	.u-100th-history-timeline__head-title {
		font-size: 2.4rem;
	}

	.u-100th-history-timeline__body {
		display: grid;
		grid-template-columns: 1.4fr 1fr;
		align-items: flex-start;
		column-gap: 40px;
		margin-top: 40px;
	}

	.u-100th-history-timeline__body-timeline {
		row-gap: 8px;
	}

	.u-100th-history-timeline__body-timeline-item {
		grid-template-columns: 160px 1fr;
		column-gap: 32px;
		align-items: baseline;
	}
	
	.u-100th-history-timeline__body-year {
		column-gap: 8px;
	}

	.u-100th-history-timeline__body-year-western {
		font-size: 3.2rem;
	}

	.u-100th-history-timeline__head-year-western-unit {
		font-size: 1.8rem;
	}

	.u-100th-history-timeline__body-year-japan {
		font-size: 1.4rem;
	}

	.u-100th-history-timeline__body-text {
		padding: 0;
		font-size: 1.8rem;
	}

	.u-100th-history-timeline__body-img {
		width: 100%;
	}
}

/*----------------------------------- events --------------------------------------*/

.u-100th-events {
	position: relative;
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	margin-top: 40px;
	background-color: #FBF8F2;
}

.u-100th-events::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 40px;
	top: -40px;
	background-image: url("/common/images/renew/100th/events-bg-01-sp.webp");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.u-100th-events::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 40px;
	bottom: -40px;
	background-image: url("/common/images/renew/100th/events-bg-01-sp.webp");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transform: rotate(180deg);
}

.u-100th-events__outer {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1/-1;
	padding-bottom: 20px;
}

.u-100th-events__container {
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1/-1;
}

.u-100th-events__inner {
	grid-column: 2/3;
}

.u-100th-events__panel {
	display: grid;
	row-gap: 24px;
	margin-top: 32px;
}

.u-100th-events__panel-item {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	padding: 0 15px 32px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.20);
	border-radius: 10px;
	background-color: #FFF;
}

.u-100th-events__panel-head {
	align-self: center;
}

.u-100th-events__panel-body :first-child {
	margin-top: 0;
}

.u-100th-events__panel-category-text {
	display: inline-block;
	min-width: 152px;
	padding: 8px 40px;
	border-radius: 0 0 20px 20px;
	color: #FFF;
	background-color: #001344;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	text-align: center;
}

.u-100th-events__panel-overview {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.u-100th-events__panel-title {
	font-size: 1.8rem;
}

.u-100th-events__panel-sub-title {
	display: block;
	font-size: 1.4rem;
}

.u-100th-events__panel-2column {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
	margin-top: 16px;
}

.u-100th-events__panel-2column > * {
	margin-top: 0;
}

.u-100th-events__panel-2column--reverse-sp {
	flex-direction: column-reverse;
}

.u-100th-events__panel-description {
	display: grid;
	border-top: 1px solid #001344;
}

.u-100th-events__panel-description-item {
	border-bottom: 1px solid #001344;
}

.u-100th-events__panel-description-title {
	padding: 20px 16px;
	border-bottom: 1px solid #C4C4C4;
	color: #001344;
	font-weight: var(--FONT_WEIGHT_BOLD);
}

.u-100th-events__panel-description-content-text {
	padding: 20px 16px;
}

.u-100th-events__panel-description-content-text--strong {
	font-weight: var(--FONT_WEIGHT_STRONG);
}

.u-100th-events__panel-description-note {
	display: flex;
	column-gap: 8px;
	margin-top: 8px;
	color: #777;
}

.u-100th-events__panel-img {
	align-self: center;
}

.u-100th-events__container:has(.u-100th-events__panel-item:only-child)::before,
.u-100th-events__container:has(.u-100th-events__panel-item:only-child)::after {
  content: none;
}

@media screen and (min-width: 768px) {
	.u-100th-events {
		position: relative;
		margin-top: 80px;
		z-index: var(--Z_INDEX_UPPER_LAYER);
	}

	.u-100th-events::before {
		background-image: url(/common/images/renew/100th/events-bg-01-pc.webp);
		height: 80px;
		top: -80px;
	}

	.u-100th-events::after {
		background-image: url(/common/images/renew/100th/events-bg-01-pc.webp);
		height: 80px;
		bottom: -80px;
	}

	.u-100th-events__outer {
		position: relative;
		column-gap: 40px;
		overflow: hidden;
	}

	.u-100th-events__outer::before {
		content: "";
		position: absolute;
		width: 212px;
		height: 204px;
		top: 100px;
		right: -15px;
		background-image: url(/common/images/renew/100th/events-bg-02.png);
		z-index: var(--Z_INDEX_LOWER_LAYER);
	}

	.u-100th-events__outer::after {
		content: "";
		position: absolute;
		width: 212px;
		height: 204px;
		bottom: 100px;
		left: -75px;
		background-image: url(/common/images/renew/100th/events-bg-02.png);
		z-index: var(--Z_INDEX_LOWER_LAYER);
	}

	.u-100th-events__container::before {
		content: "";
		position: absolute;
		width: 212px;
		height: 204px;
		top: 25%;
		left: -15px;
		background-image: url(/common/images/renew/100th/events-bg-02.png);
		z-index: var(--Z_INDEX_LOWER_LAYER);
	}

	.u-100th-events__container::after {
		content: "";
		position: absolute;
		width: 212px;
		height: 204px;
		bottom: 35%;
		right: -25px;
		background-image: url(/common/images/renew/100th/events-bg-02.png);
		z-index: var(--Z_INDEX_LOWER_LAYER);
	}

	.u-100th-events__panel {
		grid-template-columns: 1fr 1fr;
		column-gap: 40px;
		row-gap: 52px;
		margin-top: 48px;
	}

	.u-100th-events__panel-item {
		row-gap: 40px;
		padding: 0 40px 40px;
	}

	.u-100th-events__panel-item--wide {
		grid-column: span 2;
	}

	.u-100th-events__panel-category-text {
		padding: 16px 80px;
		font-size: 2.4rem;
	}

	.u-100th-events__panel-title {
		font-size: 2.4rem;
	}

	.u-100th-events__panel-sub-title {
		font-size: 1.8rem;
	}

	.u-100th-events__panel-item--important .u-100th-events__panel-2column {
		display: grid;
		grid-template-columns: 2fr 1fr;
		column-gap: 40px;
	}

	.u-100th-events__panel-item--wide:not(.u-100th-events__panel-item--important) .u-100th-events__panel-2column {
		display: grid;
		grid-template-columns: 1fr 2fr;
		column-gap: 40px;
	} 

	.u-100th-events__panel-description {
		grid-template-columns: 1fr 2fr;
		column-gap: 16px;
		align-self: center;
		border: none;
	}

	.u-100th-events__panel-description-item {
		grid-column: 1/-1;
		display: grid;
		grid-template-columns: subgrid;
		border: none;
	}

	.u-100th-events__panel-description-title {
		display: flex;
		align-items: center;
		border-color: #001344;
	}

	.u-100th-events__panel-description-content-text {
		border-bottom: 1px solid #C4C4C4;
	}
}

/*----------------------------------- final-message --------------------------------------*/

.u-100th-final-message {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	background-image: url(/common/images/renew/100th/final-message-bg-01-sp.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.u-100th-final-message__inner {
	grid-column: 2/3;
	padding: 78px 0 32px;
}

.u-100th-final-message__text {
	padding: 40px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.70);
	color: #001443;
	font-family: var(--FONT_FAMILY_EMPHASIS);
	font-size: 2rem;
	font-weight: var(--FONT_WEIGHT_STRONG);
	text-align: center;
}

@media screen and (min-width: 768px) {
	.u-100th-final-message {
		column-gap: 40px;
		background-image: url(/common/images/renew/100th/final-message-bg-01-pc.jpg);
	}

	.u-100th-final-message__inner {
		padding: 148px 0 48px;
	}

	.u-100th-final-message__text {
		padding: 64px 40px;
		font-size: 3rem;
	}
}

/*----------------------------------- final-message --------------------------------------*/

.u-100th-related {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
}

.u-100th-related__inner {
	grid-column: 2/3;
	padding: 40px 0 80px;
}

.u-100th-related-links {
	display: grid;
	row-gap: 16px;
}

.u-100th-related-links__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 12px;
	padding: 26px 20px 26px 30px;
	border: 1px solid #E9EAED;
	border-radius: 10px;
	background: #FFF;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.u-100th-related-links__link::after {
	content: "";
	flex-shrink: 0;
	display: block;
	width: 13px;
	height: 7px;
	background-image: url(/common/images/renew/100th/ico-arrow-dark.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 55%;
	transform: rotate(-90deg);
}

.u-100th-related-links__link-container {
	display: flex;
	align-items: center;
	column-gap: 24px;
}

.u-100th-related-links__text {
	font-size: 1.6rem;
	font-weight: var(--FONT_WEIGHT_STRONG);
}

@media screen and (min-width: 768px) {
	.u-100th-related {
		column-gap: 40px;
	}

	.u-100th-related__inner {
		padding: 64px 0 100px;
	}

	.u-100th-related-links {
		grid-template-columns: repeat(3, 1fr);
		column-gap: 40px;
	}

	.u-100th-related-links__link {
		column-gap: 16px;
		height: 100%;
		padding: 26px 24px 26px 30px;
		transition: opacity 0.3s;
	}

	.u-100th-related-links__link:hover {
		opacity: .5;
	}

	.u-100th-related-links__text {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 960px) {
	.u-100th-related-links {
		grid-template-columns: auto;
	}
}

/*----------------------------------- footer --------------------------------------*/

.u-100th-footer {
	position: relative;
}

.u-100th-footer__top {
	position: absolute;
	top: -23px;
	right: 15px;
	width: 47px;
	height: 47px;
	border-radius: 50%;
	background-color: #00132C4D;
}

.u-100th-footer__top::after {
	content: "";
	position: absolute;
	display: inline-block;
	top: 50%;
	right: 50%;
	width: 7px;
	height: 13px;
	background-image: url(/common/images/renew/100th/ico-arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translate(50%, -50%) rotate(-90deg);
}

.u-100th-footer__top-alt {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.u-100th-footer__share {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	padding: 16px 0;
	border-top: 1px solid #D9D9D9;
}

.u-100th-footer__share-container {
	grid-column: 2/3;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 24px;
}

.u-100th-footer__share-text {
	font-weight: var(--FONT_WEIGHT_STRONG);
}

.u-100th-footer__share-icon {
	display: flex;
	column-gap: 8px;
}

.u-100th-footer__share-link {
	border-radius: 50%;
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.u-100th-footer__brand {
	display: grid;
	grid-template-columns: 1fr minmax(auto, 1280px) 1fr;
	column-gap: 15px;
	background-color: #001344;
}

.u-100th-footer__brand-container {
	grid-column: 2/3;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 24px;
	padding: 16px 0;
}

.u-100th-footer__brand-img {
	width: 234px;
}

.u-100th-footer__brand-copyright {
	color: #FFF;
	font-family: var(--FONT_FAMILY_COPYRIGHT);
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.u-100th-footer__top {
		top: -30px;
		right: 120px;
		width: 60px;
		height: 60px;
		transition: opacity 0.3s;
	}

	.u-100th-footer__top:hover {
		opacity: .5;
	}

	.u-100th-footer__top::after {
		width: 8px;
		height: 17px;
	}

	.u-100th-footer__share {
		column-gap: 40px;
	}

	.u-100th-footer__share-container {
		column-gap: 16px;
	}

	.u-100th-footer__share-icon {
		column-gap: 16px;
	}

	.u-100th-footer__brand {
		grid-template-columns: 1fr minmax(auto, 1200px) 1fr;
		column-gap: 40px;
	}

	.u-100th-footer__brand-container {
		flex-direction: row;
		justify-content: space-between;
		row-gap: 40px;
		padding: 30px 0 40px;
	}

	.u-100th-footer__brand-copyright {
		font-size: 1.4rem;
		font-weight: var(--FONT_WEIGHT_STRONG);
	}
}