@charset "UTF-8";

@font-face {
	font-family: "コーポレート・ロゴ ver2";
	font-style: normal;
	src: url("./fonts/Corporate-Logo-Bold-ver2.otf");

/*src: local("コーポレート・ロゴ ver2"), url("./fonts/impact.woff") format("woff"), url("./fonts/impact.eot") format("eot");*/

	font-display: auto;
}


body {
	color: #3e3e3e;
	font-family: "Noto Sans JP", "serif";
	font-size: 12pt;

	-webkit-text-size-adjust: 100%;
}

* {
	margin: 0;
	padding: 0;
	text-decoration: none;
}

figure {
	margin: 0;
}

* , *::before , *::after {
	box-sizing: border-box;
}

a[href^=tel] {
	color: inherit;
}

ul , ol {
	list-style: none;
}

img , video , iframe {
	display: block;
}

.clearfix:after {
	display: block;
	clear: both;
	text-decoration: none;
	content: "";
}

::placeholder {
	font-weight: 500;
}

input:not(input[type="checkbox"]) , textarea , select {
	display: block;
	width: 100%;
	padding: 0.5em;
	border-style: solid;
	border-color: #e6e6e6;
	border-radius: 0;
	font-size: 1em;
	outline: none;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus , textarea:focus , select:focus {
	border-width: 2px;
	border-color: #313131;
	border-radius: 5px;
}

select {
	background-repeat: no-repeat;
	background-position: right 10px center;
}

select::-ms-expand {
	display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"] , input[type="reset"] , input[type="button"] {
	box-sizing: border-box;
	cursor: pointer;

	-webkit-appearance: button;
	appearance: button;
}

input[type="submit"]::-webkit-search-decoration , input[type="reset"]::-webkit-search-decoration , input[type="button"]::-webkit-search-decoration {
	display: none;
}

input[type="submit"]::focus , input[type="reset"]::focus , input[type="button"]::focus {
	outline-offset: -2px;
}

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

/* ヘッダー */

.logo {
	width: clamp(15rem, 8.75rem + 16.67vw, 21.25rem);
}

.header__container {
	display: flex;
	position: fixed;
	z-index: 100;
	width: 100%;
	height: 75px;
	background-color: #fa9035;
	color: #626262;
	justify-content: space-between;
	align-items: center;
	filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.header-title {
	max-width: 458px;
	width: clamp(17.813rem, 15.188rem + 11.2vw, 28.625rem);
	height: 100%;
	background-color: #084288;
	color: #ffffff;
	font-family: "コーポレート・ロゴ ver2";
	font-size: clamp(1.063rem, 0.956rem + 0.45vw, 1.5rem);
}

.header-title a {
	display: flex;
	width: 100%;
	height: 100%;
	color: #ffffff;
	justify-content: center;
	align-items: center;
}

.header-link-list {
	display: flex;
	padding-right: 50px;
	font-size: 15px;
	column-gap: clamp(0.625rem, -0.208rem + 1.74vw, 1.875rem);
}

.header-link-text {
	color: #ffffff;
	transition: all 0.5s;
}

.header-link-text:hover {
	border-bottom: 1px solid #ffffff;
}

@media screen and (max-width: 1280px) {
	.header-link-list {
		padding-right: 20px;
		column-gap: 10px;
	}
}

@media screen and (max-width: 1150px) {
	.header-link-text {
		font-size: 14px;
	}
}

@media screen and (min-width: 1131px) {
	.navToggle {
		display: none;
	}
}

@media screen and (max-width: 1130px) {
	.header-link-list {
		display: none;
	}
}

@media screen and (max-width: 500px) {
	.header__container {
		height: 50px;
	}
}


.navToggle {
	position: absolute;
	top: 50%;
	right: 30px;
	z-index: 9999;
	transform: translateY(-50%);
	cursor: pointer;
}

.navToggle {
	width: 40px;
	height: 20px;
}

.navToggle span {
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #ffffff;
}

.navToggle span:nth-child(1) {
	top: 0;
}

.navToggle span:nth-child(2) {
	top: 8.5px;
}

.navToggle span:nth-child(3) {
	bottom: 0;
}

.motion_union span:nth-of-type(1) {
	animation: union-bar01 0.75s forwards;
	-webkit-animation: union-bar01 0.75s forwards;
}

.motion_union span:nth-of-type(2) {
	opacity: 1;
	transition: all 0.25s 0.25s;
}

.motion_union span:nth-of-type(3) {
	animation: union-bar02 0.75s forwards;
	-webkit-animation: union-bar02 0.75s forwards;
}

@keyframes union-bar01 {
	0% {
		transform: translateY(8.5px) rotate(30deg);
	}

	50% {
		transform: translateY(8.5px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

@keyframes union-bar02 {
	0% {
		transform: translateY(-8.5px) rotate(-30deg);
	}

	50% {
		transform: translateY(-8.5px) rotate(0);
	}

	100% {
		transform: translateY(0) rotate(0);
	}
}

.motion_union.active span:nth-of-type(1) {
	animation: active-union-bar01 0.75s forwards;
	-webkit-animation: active-union-bar01 0.75s forwards;
}

.motion_union.active span:nth-of-type(2) {
	opacity: 0;
}

.motion_union.active span:nth-of-type(3) {
	animation: active-union-bar03 0.75s forwards;
	-webkit-animation: active-union-bar03 0.75s forwards;
}

@keyframes active-union-bar01 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(8.5px) rotate(0);
	}

	100% {
		transform: translateY(8.5px) rotate(30deg);
	}
}

@keyframes active-union-bar03 {
	0% {
		transform: translateY(0) rotate(0);
	}

	50% {
		transform: translateY(-8.5px) rotate(0);
	}

	100% {
		transform: translateY(-8.5px) rotate(-30deg);
	}
}

.business_slide-menu , .sustainability_slide-menu {
	display: block;
	visibility: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	padding-top: 80px;
	background-color: #1d1d1d;
	opacity: 0;
	justify-content: center;
	transition: all 0.5s;
}

.business_slide-menu.open , .sustainability_slide-menu.open {
	visibility: visible;
	opacity: 1;
}

.business_slide-menu , .business_slide-menu a , .sustainability_slide-menu , .sustainability_slide-menu a {
	color: #ffffff;
}

.business_slide-menu a , .sustainability_slide-menu a {
	transition: all 0.3s;
}

.business_slide-contents , .sustainability_slide-contents {
	display: flex;
	width: 100%;
	padding: 30px 0;
	border-top: 1px solid #868686;
	justify-content: center;
	align-items: center;
}

.business_slide-title , .sustainability_slide-title {
	font-weight: 500;
	font-size: 24px;
	text-align: center;
}

.business_slide-title span , .sustainability_slide-title span {
	display: block;
	margin-right: -0.2em;
	font-size: 14px;
	letter-spacing: 0.2em;
}

.business_slide-nav , .sustainability_slide-nav {
	margin-left: 65px;
	padding-left: 65px !important;
	border-left: 1px solid #868686;
}

.business_slide-nav {
	padding: 32.5px 0;
}

.sustainability_slide-nav {
	padding: 12.5px 0;
}

.business_slide-list , .sustainability_slide-list {
	display: flex;
	width: 350px;
	flex-wrap: wrap;

	row-gap: 15px;
}

.business_slide-list , .sustainability_slide-list {
	width: 350px;
	column-gap: 60px;
}

.sustainability_slide-list {
	width: 380px;
	column-gap: 15px;
}

.business_slide-list {
	height: 65px;
	flex-direction: column;
}

.sustainability_slide-list {
	height: 105px;
	justify-content: space-between;
	align-items: center;
}

.business_slide-list .menu-item , .sustainability_slide-list .menu-item {
	display: flex;
	align-items: center;
}

.business_slide-list .menu-item::before , .sustainability_slide-list .menu-item::before {
	display: block;
	width: 15px;
	height: 1px;
	margin-right: 0.5em;
	background-color: #ffffff;
	content: "";
}

#menu-item-294 {
	width: 185px;
	height: 50px;
	flex-wrap: wrap;
}

#menu-item-297::before {
	display: none;
}

.sustainability_slide-nav #menu-item-297 {
	font-size: 14px;
}


#menu-item-297 {
	padding-left: 1.5em;
}

.menu_container {
	display: flex;
	visibility: hidden;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 9000;
	width: 100%;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	padding: 0 20px;
	padding-top: 16px;
	padding-bottom: 104px;
	background-color: #fa9035;
	opacity: 0;
	flex-direction: column;
	transition: all 0.6s;
}

@media screen and (max-height: 810px) {
	.menu_container {
		overflow-y: scroll;
	}
}

/*
.menu_container::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.92);
	content: "";
	filter: blur(5px);


}*/

.event_program-link {
	display: block;
	position: relative;
	width: 250px;
	height: 60px;
	margin: 30px auto 0;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.5s;
}

.event_program-link:hover {
	padding-top: 5px;
	padding-left: 5px;
}

.event_program-link dl {
	display: flex;
	height: 55px;
	border-radius: 5px;
}

.event_program-link dl::after {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: calc(100% - 5px);
	height: calc(100% - 5px);
	border-radius: 5px;
	background-color: #e3e3e3;
	content: "";
}

.event_program-link dt {
	display: flex;
	width: 170px;
	padding-left: 15px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: #084288;
	color: #ffffff;
	align-items: center;
}

.event_program-link dd {
	display: flex;
	width: 75px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	background-color: #ffffff;
	justify-content: center;
	align-items: center;
}

.event_program-icon {
	display: block;
	width: 15px;
	background-color: #084288;

	aspect-ratio: 15/22;
	mask-position: center bottom;
	-webkit-mask-position: center bottom;
	mask-image: url(./images/event_program-arrow.png);
	-webkit-mask-image: url(./images/event_program-arrow.png);
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}

.menu_container.active {
	visibility: visible;
	opacity: 1;
}

.mobile_menu-nav {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto 60px;
	font-weight: 500;
	font-size: 15px;
	text-align: center;
}

.mobile_menu-nav a {
	color: #ffffff;
}

.mobile_menu-nav ul {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;

	row-gap: 15px;
}

.mobile_menu-nav > ul {
	row-gap: 25px;
}


.mobile_menu-nav > ul > li.menu-item-123::before , .mobile_menu-nav > ul > li.menu-item-252::before {
	display: block;
	position: absolute;
	top: 25px;
	left: 0;
	z-index: 1;
	height: 1px;
	background-color: green;
	content: "";
}

.mobile_menu-nav > ul > li.menu-item-123::before {
	width: 80px;
}

.mobile_menu-nav > ul > li.menu-item-252::before {
	width: 137px;
}

.sub-menu {
	display: flex;
	flex-direction: column;

	row-gap: 15px;
}

.mobile_menu-nav .sub-menu {
	padding-top: 23px;
}

@media screen and (min-width: 375px) {
	.mobile_menu-nav .sub-menu {
		height: 90px;
	}
}

.sub-menu li {
	display: flex;
	align-items: center;
}

.sub-menu li::before {
	display: block;
	width: 15px;
	height: 1px;
	margin-right: 10px;
	background-color: #ffffff;
	content: "";
}

.mobile_menu-nav .menu-item {
	position: relative;
}

.main_wrapper {
	position: relative;
}
/* 
@media screen and (min-width: 1131px) {
    .header-link-text {
        font-size: 15px !important;
    }
} */

@media screen and (max-width: 1130px) and (min-width: 621px) {
	.menu_container {
		top: 75px;
		padding-top: 30px;
	}
	.mobile_menu-nav {
		max-width: 520px;
		text-align: left;
	}
	.mobile_menu-nav ul {
		flex-direction: row;
	}
	li.header-link_wrap {
		width: calc(100% / 2 - 12px);
	}
	.header-link-text {
		font-size: 18px;
	}
}

@media screen and (max-width: 500px) {
	.menu_container {
		top: 50px;
	}
}


/* フッター */

.footer__container {
	position: relative;
	padding-top: 86px;
	padding-bottom: 20px;

/*border-radius: 30% 30% 0 0;
    background-color: #084288;*/
	color: #ffffff;
}

.footer__container::before {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	transform: translateX(-50%);
	height: 703px;
	background-color: #084288;
	content: "";

	mask-position: center top;
	-webkit-mask-position: center top;
	mask-size: 100%;
	-webkit-mask-size: 100%;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
}

.footer-title {
	font-family: "コーポレート・ロゴ ver2";
	font-size: clamp(1.25rem, 0.977rem + 1.17vw, 2.375rem);
	text-align: center;
}

.footer-logo {
	width: clamp(20.625rem, 7.5rem + 35vw, 33.75rem);
	margin: auto;
}

.footer-link-list {
	display: flex;
	margin-top: 35px;
	column-gap: 40px;
	flex-wrap: wrap;
	justify-content: center;

	row-gap: 12px;
}

.footer-link-contents a {
	color: #ffffff;
	transition: all 0.3s;
}

.footer-link-contents a:hover {
	color: #ff0000;
}

@media screen and (min-width: 768px) {
	.footer__container::before {
		width: 2567px;

		mask-image: url(./images/footer_bg-pc.webp);
		-webkit-mask-image: url(./images/footer_bg-pc.webp);
	}
}


@media screen and (max-width: 767px) {
	.header-title {
		font-weight: 500;
	}

	.footer__container {
		padding-bottom: 20px;
	}

	.footer__container::before {
		width: 925px;

		mask-image: url(./images/footer_bg-mb.webp);
		-webkit-mask-image: url(./images/footer_bg-mb.webp);
	}

	/* .footer-link-list {
        flex-direction: column;
        align-items: center;

        row-gap: 15px;
    } */
}

/* 詳細ページ */

.page-company__container {
	max-width: 700px;
	width: 90%;
	margin: auto;
	padding-top: 50px;
	padding-bottom: 200px;
}

.page-title {
	position: relative;
	padding-bottom: 40px;
	font-size: clamp(1.25rem, 1.083rem + 0.71vw, 1.938rem);
	text-align: center;
}

.page-title::before {
	position: absolute;
	right: 0;
	bottom: 14px;
	left: 0;
	width: clamp(3.125rem, 2.367rem + 3.24vw, 6.25rem);
	height: 2px;
	margin: auto;
	background-color: #dec70e;
	content: "";
}

.page-title::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: clamp(7.5rem, 6.044rem + 6.21vw, 13.5rem);
	height: 5px;
	margin: auto;
	background-color: #fa7b35;
	content: "";
}

.main-image_wrap {
	display: flex;
	max-width: 700px;
	width: 100%;
	margin: 0 auto;
	margin-top: 36px;
	border-radius: 5px;
	justify-content: center;
	align-items: center;

	aspect-ratio: 10/6;
}

.main-image {
	max-width: 100%;
	max-height: 420px;
	/*filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));*/
}

.category-list {
	display: flex;
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
	column-gap: 30px;
	flex-wrap: wrap;

	row-gap: 15px;
}

.category-contents {
	display: unset;
	padding: 8px 25px;
	border-radius: 19px;
	background-color: #fa7b35;
}

.category-text {
	width: 100%;
	margin: 0 auto;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	text-align: justify;
}

.contents-area {
	margin-top: 30px;
}

.main-textarea {
	color: #5c5c5c;
	line-height: 2;
}

.info-list {
	margin-top: 40px;
}

.info-contents:not(:first-of-type) {
	margin-top: 10px;
}

.wp-img {
	max-width: fit-content;
	width: 100%;
	margin-top: 30px;
}

.main_container {
	padding-top: 115px;
}

.page-title__container {
	margin-top: 26px;
}

.page-title_wrap {
	text-align: center;
}

.title_en {
	color: #939393;
	font-family: "Impact";
	font-size: clamp(1.125rem, 0.525rem + 2.13vw, 2.125rem);
}

.title_jp {
	color: #fa7b35;
	font-size: clamp(1.5rem, 0.488rem + 3.6vw, 3.188rem);
}

.breadcrumb_wrap {
	width: 90%;
	margin: auto;
}

.breadcrumb_list {
	display: flex;
	font-size: 15px;
}

.page-link_text:not(:last-child)::after {
	padding: 0 16px;
	content: "＞";
}

.page-link {
	color: initial;
}

.footer_making {
	display: block;
	width: fit-content;
	margin: 55px auto 0;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width: 1030px) {
	.footer-link-list {
		column-gap: 20px;
	}

	.footer-link-contents a {
		font-size: 14px;
	}
}

@media screen and (max-width: 930px) {
	.footer-link-list {
		flex-direction: column;
		align-items: center;

		row-gap: 15px;
	}
}

@media screen and (max-width: 767px) {
	.main_container {
		padding-bottom: 80px;
	}

	.page-title__container {
		margin-top: 14px;
	}

	.page-link_text:not(:last-child)::after {
		padding: 0 12px;
	}

	.breadcrumb_list {
		font-size: 13px;
	}

	.page-company__container {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.page-link-button {
	position: relative;
	margin-right: 75px;
	padding: 16px 46px;
	border-radius: 5px 0 0 5px;
	box-shadow: 5px 5px 0px 0px rgba(227, 227, 227, 1);
	background-color: #fa7b35;
	color: #ffffff;
	transition: all 0.3s;
}

.page-link-button::after {
	position: absolute;
	top: 0;
	right: -75px;
	width: 75px;
	height: 100%;
	border-radius: 0 5px 5px 0;
	box-shadow: 5px 5px 0px 0px rgba(227, 227, 227, 1);
	background-color: #ffffff;
	background-image: url(./images/link-arrow-right_n.png);
	background-repeat: no-repeat;
	background-position: center;
	content: "";
	transition: all 0.3s;
}

.page-link-button:hover , .page-link-button:hover.page-link-button::after {
	box-shadow: none;
}

@media screen and (max-width: 767px) {
	.page-link-button {
		margin-right: 60px;
		padding: 12px 36px;
		font-size: 13px;
	}

	.page-link-button::after {
		right: -60px;
		width: 60px;
		background-size: 12px;
	}
}
