body {
	font-family: "Noto Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.c-wrap1000 {
	margin-inline: auto;
	max-width: 500px;
	padding-inline: 16px;
	width: 100%;
}

.c-wrap1304 {
	margin-inline: auto;
	max-width: 500px;
	padding-inline: 16px;
	width: 100%;
}

/* header */

.header {
	background: #FFF;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
}

.header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-block: 9px;
	position: relative;
}

.header__logo {
	display: block;
	width: 80px;
}

.header__name {
	display: none;
}

.header__name-lg {
	font-size: 48px;
}

.header__name-sm {
	font-size: 16px;
}

.header__controller {
	align-items: center;
	display: flex;
	gap: 16px;
}

.header__lang a {
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 100%;
	padding-top: 24px;
	position: relative;
	text-align: center;
	width: 43px;
}

.header__lang a::before {
	aspect-ratio: 1/1;
	background: url(../img/icon-lang.webp) no-repeat center center/contain;
	content: "";
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 20px;
}

.header__icon {
	align-items: center;
	aspect-ratio: 1/1;
	border: 1px solid #C0C0C0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 40px;
	justify-content: center;
	position: relative;
	width: 40px;
	z-index: 1;
}

.header__icon.--open,
.header__icon.--drawer {
	border: 1px solid #C0C0C0;
}

.header__icon.--open span:nth-child(1),
.header__icon.--drawer span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.header__icon.--open span:nth-child(2),
.header__icon.--drawer span:nth-child(2) {
	opacity: 0;
}

.header__icon.--open span:nth-child(3),
.header__icon.--drawer span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.header__icon.--drawer {
	display: none;
}

.header__icon span {
	background: #333;
	display: block;
	height: 2px;
	transition: 0.3s;
	width: 24px;
}

.header__nav {
	display: none;
}

/* drawer-nav */

.drawer-nav {
	background: #363839;
	color: #fff;
	inset: 0;
	overflow-y: auto;
	pointer-events: none;
	position: fixed;
	transform: translateX(100%);
	transition: 0.5s;
	width: 100%;
	z-index: 90;
}

.drawer-nav.--open {
	pointer-events: all;
	transform: translateX(0);
}

.drawer-nav .drawer-nav__wrap {
	display: flex;
	flex-direction: column;
	padding: 27px 16px;
}

.drawer-nav .drawer-nav__wrap > div + div {
	border-top: 1px solid #9E9E9E;
}

.drawer-nav__control {
	align-items: stretch;
	border-radius: 8px;
	display: flex;
	overflow: hidden;
	width: 100%;
}

.drawer-nav__input {
	background: #FFF;
	color: #333;
	font-size: 14px;
	outline: none;
	padding: 14px 16px;
	width: 100%;
}

.drawer-nav__input-button {
	align-items: center;
	border-color: #2A8C44;
	display: flex;
	flex-shrink: 0;
	height: 49px;
	justify-content: center;
	outline: none;
	width: 56px;
}

.drawer-nav__input-button img {
	aspect-ratio: 1/1;
	display: block;
	width: 20px;
}

.drawer-nav__section {
	margin-top: 24px;
	padding-top: 16px;
}

.drawer-nav__heading {
	font-size: 18px;
	font-weight: 700;
}

.drawer-nav__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 11px;
}

.drawer-nav__item {
	line-height: 1;
	width: 100%;
}

.drawer-nav__link {
	display: flex;
	font-size: 14px;
	font-weight: 700;
	line-height: 150%;
	position: relative;
	width: 100%;
}

.drawer-nav__link::after {
	aspect-ratio: 1/1;
	background: url(../img/icon-arrow-r.webp) no-repeat center center/contain;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.drawer-nav__external {
	margin-top: 22px;
	padding-top: 16px;
}

.drawer-nav__external-link {
	display: flex;
	font-size: 14px;
	position: relative;
	width: 100%;
}

.drawer-nav__external-link::after {
	aspect-ratio: 1/1;
	background: url(../img/icon-blank.webp) no-repeat center center/contain;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.drawer-nav__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
	padding-top: 24px;
}

.drawer-nav__button,
.drawer-nav.drawer-nav .menu-top-level-japanese-container a,
.drawer-nav.drawer-nav .menu-top-level-english-container a {
	align-items: center;
	background: #363839;
	border: 1.5px solid #FFF;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 4px;
	justify-content: center;
	line-height: 150%;
	padding: 17px;
	transition: 0.3s;
}

.drawer-nav__button:hover,
.drawer-nav.drawer-nav .menu-top-level-japanese-container a:hover,
.drawer-nav.drawer-nav .menu-top-level-english-container a:hover {
	background: #2A8C44;
	border: 1.5px solid #2A8C44;
}

.drawer-nav__button.--contact::before,
.drawer-nav.drawer-nav .menu-top-level-japanese-container a.--contact::before,
.drawer-nav.drawer-nav .menu-top-level-english-container a.--contact::before {
	aspect-ratio: 1/1;
	background: url(../img/icon-mail-w.webp) no-repeat center center/contain;
	content: "";
	width: 20px;
}

.drawer-nav.drawer-nav .menu-top-level-japanese-container,
.drawer-nav.drawer-nav .menu-top-level-english-container {
	line-height: 1;
}

.drawer-nav.drawer-nav .menu-top-level-japanese-container a,
.drawer-nav.drawer-nav .menu-top-level-english-container a {
	position: relative;
}

.drawer-nav.drawer-nav .menu-top-level-japanese-container a::before,
.drawer-nav.drawer-nav .menu-top-level-english-container a::before {
	aspect-ratio: 1/1;
	background: url(../img/icon-lang-w.webp) no-repeat center center/contain;
	content: "";
	width: 20px;
}

/* top-mv */

.top-mv {
	background: url(../img/sp/mv.webp) no-repeat center center/cover;
	height: 400px;
}

.top-mv__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 100px;
}

.top-mv__text {
	color: #FFF;
	font-size: 14px;
}

.top-mv__text a {
	text-decoration-line: underline;
	text-decoration-style: solid;
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.top-mv__control {
	border-radius: 8px;
	display: flex;
	overflow: hidden;
	width: 100%;
}

.top-mv__input {
	background: #FFF;
	font-size: 14px;
	outline: none;
	padding: 14px 16px;
	width: 100%;
}

.top-mv__button {
	align-items: center;
	border-color: #2A8C44;
	display: flex;
	flex-shrink: 0;
	height: 48px;
	justify-content: center;
	width: 56px;
}

.top-mv__button img {
	aspect-ratio: 1/1;
	display: block;
	width: 20px;
}

/* top-sec01 */

.top-sec01 {
	padding-top: 40px;
}

.top-sec01__heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.top-sec01__title {
	font-size: 24px;
	font-weight: 700;
	position: relative;
}

.top-sec01__title::after {
	background: #2A8C44;
	bottom: -12px;
	content: "";
	height: 4px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 28px;
}

.top-sec01__cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 24px;
}

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

.top-sec01__thumb {
	aspect-ratio: 343/160;
	flex-shrink: 0;
	overflow: hidden;
	width: 100%;
}

.top-sec01__thumb img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.top-sec01__content {
	margin-top: 9px;
}

.top-sec01__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.top-sec01__item-title {
	border-bottom: 1px solid #C0C0C0;
	font-size: 18px;
	font-weight: 700;
	padding-left: 16px;
	position: relative;
	width: 100%;
}

.top-sec01__item-title::before {
	background: #2A8C44;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 4px;
}

.top-sec01__buttons {
	align-items: stretch;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 12px;
}

.top-sec01__read-button,
.top-sec01__pdf-button {
	align-items: center;
	border: 1px solid #2A8C44;
	display: flex;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	padding-block: 8px 9px;
	width: 43.7317784257%;
}

.top-sec01__read-button {
	color: #fff;
	position: relative;
	text-align: center;
}

.top-sec01__read-button::after {
	aspect-ratio: 1/1;
	background: url(../img/icon-arrow-r.webp) no-repeat center center/contain;
	content: "";
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}

.top-sec01__pdf-button {
	color: #2A8C44;
}

.top-sec01__pdf-button-icon {
	display: inline-block;
	flex-shrink: 0;
	height: 16.667px;
	width: 13.333px;
}

.top-sec01__dl-button {
	align-items: center;
	border: 1px solid #2A8C44;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 40px;
	padding: 13px;
	width: 100%;
}

.top-sec01__dl-button:hover path {
	fill: #fff;
}

.top-sec01__dl-button-icon {
	align-items: center;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	width: 28px;
}

.top-sec01__dl-button-icon svg {
	aspect-ratio: 1/1;
	display: block;
	width: 19px;
}

.top-sec01__dl-button-icon svg path {
	transition: 0.3s;
}

.top-sec01__dl-button-text {
	font-size: 15px;
	font-weight: 700;
}

/* top-sec02 */

.top-sec02 {
	margin-top: 40px;
	padding-bottom: 40px;
}

.top-sec02__container {
	background: #FFF;
	border: 1px solid #D9D9D9;
	padding: 8px 8px 15px;
}

.top-sec02__thumb {
	aspect-ratio: 103/63;
	flex-shrink: 0;
	overflow: hidden;
	width: 100%;
}

.top-sec02__thumb img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.top-sec02__content {
	padding: 8px;
}

.top-sec02__title {
	font-size: 20px;
	font-weight: 700;
}

.top-sec02__text {
	margin-top: 8px;
}

.top-sec02__button {
	align-items: center;
	border: 1px solid transparent;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
	padding-block: 17px;
}

.top-sec02__button-text {
	font-size: 15px;
}

.top-sec02__button-icon {
	aspect-ratio: 1/1;
	display: inline-block;
	width: 20px;
}

/* page */

.page__nav {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 24px;
}

.page__index {
	background: #FFF;
	border: 1px solid #D9D9D9;
	padding: 16px;
}

.page__index-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 150%;
}

.page__index-lists {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}

.page__index-list {
	align-items: center;
	display: flex;
	gap: 4px;
}

.page__index-list span {
	color: #2A8C44;
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
}

.page__index-list a {
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: 2px;
	text-underline-position: from-font;
}

.page__dl-button {
	align-items: center;
	background: #2A8C44;
	border: 1px solid #2A8C44;
	border-radius: 999px;
	display: flex;
	flex-shrink: 0;
	gap: 13px;
	justify-content: center;
	padding: 9px;
	width: 100%;
}

.page__dl-button-icon {
	width: 21px;
}

.page__dl-button-text {
	color: #FFF;
	font-size: 15px;
	font-weight: 700;
	line-height: 150%;
	text-align: center;
}

/* fv */

.fv {
	position: relative;
}

.fv__thumb {
	height: 140px;
	position: relative;
	width: 100%;
}

.fv__thumb::after {
	background: rgba(51, 51, 51, 0.6);
	content: "";
	inset: 0;
	position: absolute;
}

.fv__thumb img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.fv__content {
	align-items: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 4px;
	left: 50%;
	line-height: 1.5;
	position: absolute;
	top: 31px;
	transform: translateX(-50%);
}

.fv__par {
	border-bottom: 1px solid #fff;
	font-size: 14px;
	padding-bottom: 4px;
}

.fv__title {
	font-size: 32px;
}

/* c-breadcrumbs */

.c-breadcrumbs {
	align-items: center;
	display: flex;
	font-size: 12px;
	gap: 6px;
	margin-top: 9px;
}

.c-breadcrumbs li {
	line-height: 1;
	padding-left: 20px;
	position: relative;
}

.c-breadcrumbs li::before {
	aspect-ratio: 1/1;
	background: url(../img/icon-arrow-r-b.webp) no-repeat center center/contain;
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.c-breadcrumbs li:first-of-type {
	padding-left: 0;
}

.c-breadcrumbs li:first-of-type::before {
	display: none;
}

.c-breadcrumbs li a,
.c-breadcrumbs li p {
	line-height: 150%;
}

.c-breadcrumbs li .--current {
	color: #9E9E9E;
}

/* entry */

.entry {
	display: flex;
	flex-direction: column;
	gap: 37px;
	margin-top: 40px;
}

.entry h2 {
	background: #F0F9F5;
	border-top: 2px solid #2A8C44;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 0 8px 8px;
}

.entry h3 {
	border-bottom: 1px solid #C0C0C0;
	font-size: 18px;
	font-weight: 700;
	margin-top: 24px;
	padding-bottom: 4px;
	position: relative;
}

.entry h3::after {
	background: #2A8C44;
	bottom: -1px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 80px;
	z-index: 1;
}

.entry p {
	font-size: 14px;
	font-weight: 400;
	margin-top: 6px;
}

.entry__row {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
	margin-top: 8px;
}

.entry__row > p,
.entry__row > .entry__img {
	margin-top: 0;
}

.entry__img {
	flex-shrink: 0;
	margin-top: 40px;
}

.entry__button {
	align-items: center;
	background: #FFF;
	border: 1px solid #C0C0C0;
	border-radius: 999px;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	margin: 24px auto 0;
	padding: 13px;
	transition: 0.3s;
	width: 240px;
}

.entry__button:hover {
	background: #2A8C44;
	color: #fff;
}

/* column-box */

.column-box {
	background: #F7F7F7;
	border-radius: 8px;
	margin-top: 24px;
	padding: 24px 16px;
}

.column-box__heading {
	border-bottom: 1px solid #C0C0C0;
	display: flex;
	gap: 16px;
	padding-bottom: 5px;
}

.column-box__label {
	color: #E04A48;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	line-height: 150%;
	white-space: nowrap;
}

.column-box__title {
	font-size: 16px;
	font-weight: 700;
}

.column-box__cite {
	display: inline-block;
	font-size: 12px;
	line-height: 150%;
	margin-top: 10px;
}

/* cite-box */

.cite-box {
	margin-top: 24px;
}

.cite-box__heading {
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}

.cite-box__heading::before {
	background: #C0C0C0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}

.cite-box ul {
	margin-top: 8px;
}

.cite-box li {
	color: #333;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
}

.cite-box a {
	color: #006EC6;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	-webkit-text-decoration-skip: ink; /* 単語単位で折り返し */
	line-break: auto;
	overflow-wrap: break-word;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
	word-break: normal;
}

/* page-nav */

.page-nav {
	color: #333;
	margin-top: 40px;
	padding-bottom: 40px;
}

.page-nav__heading {
	background: #F0F9F5;
	font-size: 18px;
	font-weight: 700;
	padding: 4px 0 4px 16px;
	width: 100%;
}

.page-nav__list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	line-height: 1;
	margin-top: 16px;
}

.page-nav__item {
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 8px;
}

.page-nav__link {
	align-items: center;
	display: flex;
	gap: 16px;
	width: 100%;
}

.page-nav__thumb {
	aspect-ratio: 55/32;
	width: 110px;
}

.page-nav__thumb img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.page-nav__title {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 150%;
	padding-right: 20px;
	position: relative;
}

.page-nav__title::after {
	aspect-ratio: 1/1;
	background: url(../img/icon-arrow-r-r.webp) no-repeat center center/contain;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

/* footer */

.footer {
	background: #2A8C44;
	color: #fff;
	padding-block: 24px;
}

.footer__container {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.footer__top {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 32px;
}

.footer__icon {
	flex-shrink: 0;
	width: 110px;
}

.footer__info {
	width: 100%;
}

.footer__name {
	font-size: 18px;
	font-weight: 700;
}

.footer__text {
	font-weight: 500;
	margin-top: 8px;
}

.footer__row {
	align-items: end;
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.footer__button {
	align-items: center;
	border: 1px solid #FFF;
	display: flex;
	gap: 8px;
	justify-content: center;
	padding: 9px 22px 8px;
}

.footer__button-icon {
	display: inline-block;
	width: 16px;
}

.footer__text02 {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 4px;
}

.footer__bottom {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__magazine {
	background: #333;
	margin-left: 8px;
	padding: 32px 0px 32px;
	position: relative;
	width: 100%;
}

.footer__magazine-icon {
	align-items: center;
	aspect-ratio: 1/1;
	background: #fff;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	left: -8px;
	position: absolute;
	top: -8px;
	width: 40px;
}

.footer__magazine-icon-img {
	aspect-ratio: 1/1;
	display: inline-block;
	width: 26.667px;
}

.footer__magazine-body {
	overflow: hidden;
	padding-inline: 24px 20px;
	width: 100%;
}

.footer__magazine-head {
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 4px;
	position: relative;
}

.footer__magazine-head::after {
	background: #9E9E9E;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100vw;
}

.footer__magazine-text {
	font-weight: 500;
	margin-top: 8px;
}

.footer__copy {
	font-size: 10px;
	font-weight: 500;
}

.s-sp {
	display: block;
}

.s-pc {
	display: none;
}

.s-of-hidden {
	overflow: hidden;
	position: relative;
}

.inview {
	opacity: 0;
	transition: 1.5s;
}

.inview.fade-up {
	transform: translateY(20px);
}

.inview.fade-up.--xy50 {
	transform: translate(-50%, calc(-50% + 20px));
}

.inview.fade-down {
	transform: translateY(-20px);
}

.inview.fade-left {
	transform: translateX(20px);
}

.inview.fade-right {
	transform: translateX(-20px);
}

.inview.is-show {
	opacity: 1;
	transform: translate(0px);
}

.inview.is-show.--xy50 {
	transform: translate(-50%, -50%);
}

.u-bg-green {
	background: #2A8C44;
	color: #fff;
	cursor: pointer;
	font-size: 14px;
	transition: 0.3s;
}

.u-bg-green p,
.u-bg-green span {
	transition: 0.3s;
}

.u-bg-green:hover {
	background: #333;
	border: 1px solid #333;
}

.u-bg-white {
	background: #fff;
	color: #2A8C44;
	cursor: pointer;
	font-size: 14px;
	transition: 0.3s;
}

.u-bg-white p,
.u-bg-white span {
	transition: 0.3s;
}

.u-bg-white:hover {
	background: #2A8C44;
	color: #fff;
}

.s-op-hover {
	transition: 0.3s;
}

.s-op-hover:hover {
	opacity: 0.6;
}

@media screen and (min-width: 768px) {

body {
	font-size: 16px;
}

.c-wrap1000 {
	max-width: calc(1000px + 80px);
	padding-inline: 40px;
}

.c-wrap1304 {
	max-width: calc(1304px + 80px);
	padding-inline: 40px;
}

.header__inner {
	padding-block: 13px;
}

.header__logo {
	width: 120px;
}

.header__name {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 4px;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.header__controller {
	gap: 24px;
}

.header__lang a {
	font-size: 16px;
	padding-top: 32px;
	width: 58px;
}

.header__lang a::before {
	width: 24px;
}

.header__icon.--open span,
.header__icon.--drawer span {
	background: #FFF;
}

.header__icon.--open span:nth-child(1),
.header__icon.--drawer span:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
}

.header__icon.--open span:nth-child(3),
.header__icon.--drawer span:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
}

.header__icon.--drawer {
	display: flex;
	position: absolute;
	right: 24px;
	top: 24px;
}

.header__icon.--open span:nth-child(1),
.header__icon.--open span:nth-child(3) {
	transform: none;
}

.header__icon.--open span:nth-child(2) {
	opacity: 1;
}

.header__icon {
	gap: 8px;
	height: 64px;
	width: 64px;
}

.header__icon span {
	height: 3px;
	width: 40px;
}

.drawer-nav {
	inset: auto;
	max-height: 100dvh;
	padding-top: 100px;
	right: 0;
	width: 400px;
	z-index: 100;
}

.drawer-nav .drawer-nav__wrap {
	padding: 19px 24px 56px;
}

.drawer-nav__control {
	max-width: 560px;
}

.drawer-nav__input {
	font-size: 14px;
	padding: 9px 14px;
}

.drawer-nav__input-button {
	height: 40px;
	width: 56px;
}

.drawer-nav__input-button img {
	width: 20px;
}

.drawer-nav__section {
	padding-top: 25px;
}

.drawer-nav__heading {
	font-size: 20px;
}

.drawer-nav__list {
	margin-top: 15px;
	padding-left: 16px;
}

.drawer-nav__link {
	font-size: 16px;
}

.drawer-nav__external {
	margin-top: 23px;
	padding-top: 24px;
}

.drawer-nav__external-link {
	font-size: 16px;
}

.drawer-nav__buttons {
	margin-top: 23px;
}

.drawer-nav__button,
.drawer-nav.drawer-nav .menu-top-level-japanese-container a,
.drawer-nav.drawer-nav .menu-top-level-english-container a {
	font-size: 16px;
	padding: 15px;
}

.drawer-nav__button.--contact::before,
.drawer-nav.drawer-nav .menu-top-level-japanese-container a.--contact::before,
.drawer-nav.drawer-nav .menu-top-level-english-container a.--contact::before {
	width: 24px;
}

.drawer-nav.drawer-nav .menu-top-level-japanese-container a::before,
.drawer-nav.drawer-nav .menu-top-level-english-container a::before {
	width: 24px;
}

.top-mv {
	background: url(../img/pc/mv.webp) no-repeat center center/cover;
	height: 450px;
}

.top-mv__content {
	align-items: center;
	gap: 40px;
	padding-top: 119px;
}

.top-mv__text {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}

.top-mv__control {
	max-width: 560px;
}

.top-mv__input {
	font-size: 16px;
	padding: 20px 24px;
}

.top-mv__button {
	height: 64px;
	width: 80px;
}

.top-mv__button img {
	width: 32px;
}

.top-sec01 {
	padding-top: 56px;
}

.top-sec01__heading {
	gap: 40px;
}

.top-sec01__title {
	font-size: 40px;
}

.top-sec01__title::after {
	bottom: -16px;
	width: 40px;
}

.top-sec01__desc {
	text-align: center;
}

.top-sec01__cards {
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 48px;
}

.top-sec01__card {
	display: flex;
	flex-direction: column;
	max-width: 310px;
	width: calc((100% - 24px) / 2);
}

.top-sec01__thumb {
	aspect-ratio: 77/50;
}

.top-sec01__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	height: 100%;
	justify-content: space-between;
	margin-top: 10px;
}

.top-sec01__item-title {
	font-size: 20px;
}

.top-sec01__buttons {
	margin-top: 0px;
}

.top-sec01__read-button,
.top-sec01__pdf-button {
	width: 50%;
}

.top-sec01__dl-button {
	margin-inline: auto;
	margin-top: 55px;
	padding: 22px 15px;
	width: -moz-fit-content;
	width: fit-content;
}

.top-sec01__dl-button-text {
	font-size: 16px;
}

.top-sec02 {
	margin-top: 56px;
	padding-bottom: 53px;
}

.top-sec02__container {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 40px;
}

.top-sec02__inner {
	max-width: 600px;
}

.top-sec02__thumb {
	aspect-ratio: 27/14;
}

.page__nav {
	align-items: center;
	flex-direction: row;
	gap: 40px;
	margin-top: 40px;
}

.page__index {
	padding: 32px;
	width: 100%;
}

.page__index-title {
	font-size: 20px;
}

.page__index-lists {
	gap: 12px;
	margin-top: 22px;
}

.page__index-list span {
	font-size: 16px;
}

.page__index-list a {
	font-size: 16px;
}

.page__dl-button {
	width: 280px;
}

.fv__thumb {
	height: 280px;
}

.fv__content {
	gap: 22px;
	top: 50%;
	transform: translate(-50%, -50%);
}

.fv__par {
	font-size: 18px;
}

.fv__title {
	font-size: 48px;
}

.c-breadcrumbs {
	gap: 10px;
	margin-top: 17px;
}

.c-breadcrumbs li a,
.c-breadcrumbs li p {
	font-size: 16px;
	letter-spacing: 0.64px;
}

.entry {
	gap: 80px;
	margin-top: 80px;
}

.entry h2 {
	font-size: 32px;
	padding: 10px 0 8px 24px;
}

.entry h3 {
	font-size: 24px;
	margin-top: 54px;
	padding-bottom: 8px;
}

.entry h3::after {
	width: 100px;
}

.entry p {
	font-size: 16px;
	margin-top: 24px;
}

.entry__row {
	flex-direction: row;
	gap: 56px;
	margin-bottom: 40px;
	margin-top: 40px;
}

.entry__row > p,
.entry__row > .entry__img {
	margin-top: 0;
}

.entry__row .entry__img {
	width: 400px;
}

.entry__img {
	margin-top: 81px;
}

.entry__button {
	font-size: 16px;
	margin: 58px auto 0;
}

.column-box {
	margin-top: 56px;
	padding: 31px 33px;
}

.column-box__heading {
	gap: 24px;
}

.column-box__label {
	font-size: 24px;
}

.column-box__title {
	font-size: 20px;
}

.column-box__text {
	font-size: 15px;
}

.column-box__cite {
	font-size: 14px;
}

.cite-box {
	margin-top: 57px;
}

.cite-box__heading {
	padding-left: 28px;
}

.cite-box__heading::before {
	width: 20px;
}

.cite-box ul {
	margin-top: 16px;
}

.cite-box li {
	font-size: 14px;
}

.page-nav {
	margin-top: 83px;
}

.page-nav__heading {
	font-size: 24px;
	padding: 4px 10px;
	text-align: center;
}

.page-nav__list {
	display: grid;
	gap: 8px 0;
	grid-template-columns: max-content max-content;
	justify-content: center;
	margin-top: 23px;
}

.page-nav__item {
	padding-right: 40px;
}

.page-nav__thumb {
	aspect-ratio: 55/36;
}

.page-nav__title {
	font-size: 16px;
}

.footer {
	padding-block: 56px;
}

.footer__container {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

.footer__icon {
	width: 120px;
}

.footer__name {
	font-size: 20px;
}

.footer__text {
	font-size: 14px;
	margin-top: 16px;
}

.footer__row {
	margin-top: 24px;
}

.footer__bottom {
	align-items: end;
}

.footer__magazine {
	background: transparent;
	margin-left: 0px;
	margin-top: 8px;
	padding: 32px 0px 32px 40px;
	z-index: 0;
}

.footer__magazine::before {
	background: #333;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: -1;
}

.footer__magazine-icon {
	width: 48px;
}

.footer__magazine-icon-img {
	width: 32px;
}

.footer__magazine-body {
	overflow: visible;
	padding: 0;
}

.footer__magazine-head {
	font-size: 20px;
}

.footer__magazine-text {
	font-size: 14px;
	margin-top: 16px;
}

.footer__copy {
	font-size: 12px;
}

.s-sp {
	display: none;
}

.s-pc {
	display: block;
}

}

@media screen and (min-width: 1080px) {

.top-sec01__card {
	width: calc((100% - 48px) / 3);
}

.top-sec02__inner {
	align-items: center;
	display: flex;
	gap: 56px;
	max-width: 100%;
}

.top-sec02__thumb {
	max-width: 540px;
	width: 44%;
}

.top-sec02__content {
	padding: 0;
}

.top-sec02__title {
	font-size: 28px;
}

.top-sec02__text {
	margin-top: 24px;
}

.top-sec02__button {
	margin-top: 32px;
	padding: 15px 34px;
	width: -moz-fit-content;
	width: fit-content;
}

.top-sec02__button-text {
	font-size: 16px;
}

.page__dl-button {
	padding: 13px;
	width: 380px;
}

.page__dl-button-icon {
	width: 27px;
}

.page__dl-button-text {
	font-size: 18px;
}

.page-nav__list {
	grid-template-columns: max-content max-content max-content;
}

}

@media screen and (min-width: 1200px) {

.top-sec01__cards {
	gap: 56px 24px;
}

.top-sec01__card {
	width: calc((100% - 72px) / 4);
}

.footer__container {
	align-items: start;
}

.footer__top {
	align-items: start;
	flex-direction: row;
	gap: 40px;
}

}

