@charset "utf-8";

.p-mainvisual {
	position: relative;
	padding: 104px 24px 32px;
}
.p-mainvisual::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
	bottom: -232px;
	left: calc(50% - 50vw);
	background: linear-gradient(to right, #f6aad4, #b5e1f3);
}
.hasScrollbar .p-mainvisual::before {
	right: calc(50% - 50vw + var(--scroll-bar-width) / 2);
	left: calc(50% - 50vw + var(--scroll-bar-width) / 2);
}
.p-mainvisual .catchcopy {
	font-size: 46px;
	line-height: 1.4;
	font-weight: 700;
	white-space: nowrap;
}
.p-mainvisual .lead {
	font-size: 16px;
}
.p-mainvisual .scroll {
	z-index: 1;
	position: relative;
	padding: 1em;
	font-size: 12px;
	font-weight: 700;
}
.p-mainvisual .scroll::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	height: 64px;
	border-left: 1px solid currentcolor;
}
@media print, (min-width: 768px) {
	.p-mainvisual {
		display: grid;
		grid-template: repeat(3, auto) / repeat(2, 1fr);
		max-width: 1104px;
		height: 728px;
		margin: 0 auto;
	}
	.p-mainvisual .catchcopy,
	.p-mainvisual .lead {
		z-index: 1;
		position: relative;
	}
	.p-mainvisual .catchcopy {
		grid-area: 1;
		align-self: flex-end;
	}
	.p-mainvisual .lead {
		grid-area: 2 / 1 / 3 / 2;
		margin-top: 1em;
	}
	.p-mainvisual .image {
		position: absolute;
		top: 104px;
		right: 0;
		max-width: 560px;
	}
	.p-mainvisual .scroll {
		grid-area: 3 / 1 / 4 / 3;
		justify-self: center;
		align-self: center;
	}
}
@media print {
	.p-mainvisual {
		height: auto;
		padding: 2cm 24px;
	}
	.p-mainvisual .catchcopy {
		font-size: calc(46px / 1.5);
	}
	.p-mainvisual .lead {
		font-size: calc(16px / 1.5);
	}
	.p-mainvisual .scroll {
		font-size: calc(12px / 1.5);
	}
	.p-mainvisual .image {
		top: 104px;
		max-width: 9cm;
	}
}
@media print, (min-width: 768px) and (-ms-high-contrast: none) {
	.p-mainvisual {
		display: -ms-grid;
		-ms-grid-rows: 200px (auto)[2];
		-ms-grid-columns: (1fr)[2];
	}
	.p-mainvisual .catchcopy {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
		margin-top: 64px;
	}
	.p-mainvisual .lead {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
	}

	.p-mainvisual .scroll {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		display: inline-block;
		text-align: center;
	}
}
@media screen and (max-width: 767px) {
	.p-mainvisual {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.p-mainvisual .catchcopy {
		font-size: 28px;
	}
	.p-mainvisual .image {
		max-width: 400px;
	}
	.p-mainvisual .lead {
		order: 1;
		margin-top: 80px;
		font-size: 14px;
	}
}
@media screen and (max-width: 479px) {
	.p-mainvisual {
		padding-top: 80px;
	}
	.p-mainvisual .scroll::after {
		content: "";
		height: 56px;
	}
}

.p-greet {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	padding: 56px 24px 48px;
	text-align: center;
	background: white;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
}
.greet_lead {
	margin-top: 24px;
	font-size: 20px;
	line-height: 1.7;
	font-weight: 600;
}
.greet_banner {
	margin-top: 24px;
}
.greet_banner .caption {
	margin-top: .5em;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 600;
}
@media print, (min-width: 768px) and (-ms-high-contrast: none) {
	.p-greet {
		margin-top: -64px;
	}
}
@media print {
	.greet_title img {
		max-width: 10cm;
	}
	.greet_lead {
		font-size: calc(20px / 1.5);
	}
	.greet_banner img {
		max-width: 8cm;
	}
	.greet_banner .caption {
		font-size: calc(15px / 1.5);
	}
}
@media screen and (max-width: 767px) {
	.p-greet {
		max-width: calc(100% - 48px);
	}
	.greet_lead {
		text-align: left;
	}
}
@media screen and (max-width: 479px) {
	.p-greet {
		padding: 48px 16px 32px;
	}
	.greet_title {
		max-width: 265px;
		margin: 0 auto;
	}
	.greet_lead {
		font-size: 14px;
	}
}

/**
 * トップページセクション
 * ---------------------------------------- */
.home_section {
	position: relative;
	margin: 0 auto;
	padding: 160px 24px;
	text-align: center;
}
.home_section::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	right: calc(50% - 50vw);
	bottom: 0;
	left: calc(50% - 50vw);
}
.hasScrollbar .home_section::before {
	right: calc(50% - 50vw + var(--scroll-bar-width) / 2);
	left: calc(50% - 50vw + var(--scroll-bar-width) / 2);
}
.home_section .c-title {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.home_section .c-title .sub {
	color: #a63162;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .3em;
	text-transform: uppercase;
}
.home_section .c-title .main {
	margin-top: .3em;
	font-size: 36px;
	font-weight: 600;
}
.home_section .c-lead {
	display: inline-block;
	margin-top: 24px;
	font-size: 13px;
	text-align: left;
}
@media print {
	.home_section {
		padding: 2cm 24px;
	}
	.home_section .c-title {
		break-after: avoid;
		page-break-after: avoid;
	}
	.home_section .c-title .sub {
		font-size: calc(12px / 1.5);
	}
	.home_section .c-title .main {
		font-size: calc(36px / 1.5);
	}
	.home_section .c-lead {
		font-size: calc(13px / 1.5);
		break-before: avoid;
		page-break-before: avoid;
	}
}
@media screen and (max-width: 767px) {
	.home_section {
		padding: 64px 24px;
	}
	.home_section .c-title .main {
		font-size: 28px;
	}
}

/* :::::: 超地球化。 :::::: */
.p-concept {
	max-width: 1080px;
}
.p-concept::before {
	top: -232px;
	background: #fffcf7;
}
.p-concept .c-title,
.p-concept .c-lead {
	text-align: left;
}
.p-concept .c-title .main {
	font-size: 48px;
}
.p-concept .c-lead {
	margin-top: 40px;
}
.p-concept .c-lead + .c-lead {
	margin-top: 1.4em;
}
.p-concept .c-video {
	width: 100%;
	max-width: 460px;
}
.p-concept .c-video .video_wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: calc(56.25% + 17px);
}
.p-concept .c-video .video {
	height: auto;
	border: 20px solid white;
	border-radius: 8px;
	box-shadow: 0 0 30px rgba(0,0,0,.1);
}
.p-concept .c-video .video_wrap .video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.p-concept .c-video .bg {
	z-index: -1;
	position: absolute;
	top: 0;
	right: 0;
	width: 54%;
}
.p-concept .c-video .caption {
	margin-top: 1em;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
}
.p-concept .c-button {
	width: 100%;
	margin-top: 56px;
}
@media print, (min-width: 768px) {
	.p-concept {
		display: grid;
		grid-template-columns: 50% 50%;
	}
	.p-concept .c-title,
	.p-concept .c-lead {
		grid-column: 1 / 2;
	}
	.p-concept .c-video {
		justify-self: center;
		align-self: center;
		grid-area: 2 / 2 / 5 / 3;
	}
	.p-concept .c-button {
		justify-self: center;
		grid-area: 5 / 1 / 6 / 3;
		max-width: 488px;
	}
}
@media print {
	.p-concept {
		grid-template-columns: auto 8cm;
		break-inside: avoid;
		page-break-inside: avoid;
	}
	.p-concept .c-title .main {
		font-size: calc(48px / 1.5);
	}
	.p-concept .c-lead {
		margin-right: 2em;
	}
	.p-concept .c-video .video_wrap::after {
		content: "";
		position: absolute;
		inset: .3cm;
		background: url(http://img.youtube.com/vi/KW2l6QDvurc/maxresdefault.jpg) center / cover no-repeat;
	}
	.p-concept .c-video .caption {
		font-size: calc(12px / 1.5);
	}
}
@media print, (min-width: 768px) and (-ms-high-contrast: none) {
	.p-concept {
		display: -ms-grid;
		-ms-grid-columns: (50%)[2];
	}
	.p-concept .c-title,
	.p-concept .c-lead {
		-ms-grid-column: 1;
	}
	.p-concept .c-lead {
		-ms-grid-row: 2;
	}
	.p-concept .c-lead:nth-of-type(2) {
		-ms-grid-row: 3;
	}
	.p-concept .c-lead:nth-of-type(3) {
		-ms-grid-row: 4;
	}
	.p-concept .c-video {
		-ms-grid-row: 2;
		-ms-grid-row-span: 3;
		-ms-grid-column: 2;
	}
	.p-concept .c-button {
		-ms-grid-row: 5;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		margin-right: auto;
		margin-left: auto;
	}
}
@media screen and (max-width: 767px) {
	.p-concept {
		display: flex;
		flex-direction: column;
		max-width: 560px;
	}
	.p-concept .c-title {
		text-align: center;
	}
	.p-concept .c-title .main {
		font-size: 36px;
	}
	.p-concept .c-lead {
		align-self: flex-start;
	}
	.p-concept .c-video {
		align-self: center;
		margin-top: 64px;
	}
	.p-concept .c-video .video_wrap {
		padding-bottom: calc(56.25% + 12px);
	}
	.p-concept .c-video .video {
		border-width: 14px;
	}
	.p-concept .c-video .bg {
		top: auto;
		right: -24px;
		bottom: 136px;
		width: 440px;
	}
}
@media screen and (max-width: 479px) {
	.p-concept .c-video .bg {
		right: auto;
		left: 12%;
		width: 360px;
	}
}

/* :::::: 目指すシーン :::::: */
.p-scene::before {
	background: #f3f3f3;
}
.scene_slider {
	margin: 56px -24px 0;
}
.slider_item {
	max-width: 626px;
	margin-right: 40px;
}
.scene_data {
	display: flex;
	margin-top: 16px;
	text-align: left;
}
.scene_data dt {
	padding: 0 1em;
	border: 1px solid currentcolor;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
	text-align: center;
}
.scene_data dd {
	font-size: 12px;
}
@media print, (min-width: 480px) {
	.scene_data dt {
		display: flex;
		align-items: center;
	}
	.scene_data dd {
		margin-left: 1em;
	}
}
@media print {
	.p-scene {
		max-height: 100%;
		padding: 3cm 24px;
	}
	.scene_slider {
		break-inside: avoid;
		page-break-inside: avoid;
	}
	.slider_item {
		max-width: 12cm;
		margin-right: 1cm;
	}
	.scene_data dt {
		font-size: calc(14px / 1.5);
	}
	.scene_data dd {
		font-size: calc(12px / 1.5);
	}
}
@media print, (min-width: 480px) and (-ms-high-contrast: none) {
	.scene_data dt {
		justify-content: center;
		flex-basis: 8em;
		padding: 0;
	}
	.scene_data dd {
		flex-basis: calc(100% - 9em);
	}
}
@media screen and (max-width: 479px) {
	.scene_data {
		flex-direction: column;
	}
	.scene_data dt {
		padding: .5em;
	}
	.scene_data dt br {
		display: none;
	}
	.scene_data dd {
		margin-top: .5em;
	}
}
.scene_nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin: 48px auto 0;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 600;
}
.scene_nav li {
	flex-basis: 12.5%;
}
.scene_nav label {
	display: block;
	margin-top: .8em;
}
.scene_nav button {
	cursor: pointer;
	position: relative;
	background: #2f2f2f;
}
@media (hover: hover) {
	.scene_nav button {
		transition: background .6s;
	}
	.scene_nav button:hover {
		background: #a63162;
		transition-duration: .1s;
	}
}
.scene_nav button::after {
	content: "";
	z-index: -1;
	position: absolute;
	top: 11px;
	right: 11px;
	bottom: 11px;
	left: 11px;
	border: 1px solid #2f2f2f;
}
.scene_nav .is-select button {
	background: #a63162;
}
.scene_nav .is-select button::after {
	border-color: #a63162;
	transform: scale(1.5);
}
.scene_nav .is-anim button {
	pointer-events: none;
}
.scene_nav .is-anim button::after {
	transition: transform .6s cubic-bezier(.3,1,.7,1);
}
.scene_nav .is-anim.is-select button::after {
	transition-duration: .1s;
}
.scene_nav .ico {
	width: 80px;
	height: auto;
	fill: white;
}
@media print {
	.scene_nav {
		max-width: 14cm;
		font-size: calc(14px / 1.5);
		break-inside: avoid;
		page-break-inside: avoid;
	}
	.scene_nav .ico {
		width: 1.4cm;
	}
}
@media screen and (max-width: 767px) {
	.scene_nav {
		max-width: 400px;
		margin: 24px auto 0;
	}
	.scene_nav li {
		flex-basis: 25%;
	}
	.scene_nav li:nth-child(4n+1) {
		margin-left: 0;
	}
	.scene_nav li:nth-child(n+5) {
		margin-top: 16px;
	}
}
@media screen and (max-width: 479px) {
	.scene_nav {
		font-size: 9px;
	}
	.scene_nav button::after {
		top: 8px;
		right: 8px;
		bottom: 8px;
		left: 8px;
	}
	.scene_nav .ico {
		width: 56px;
	}
}
.scene_detail {
	position: relative;
	max-width: 1200px;
	margin: 80px auto 0;
	padding: 48px 24px;
	font-weight: 600;
	background: white;
}
.scene_detail::after {
	content: "";
	position: absolute;
	bottom: calc(100% - 2px);
	left: calc(50% - 28px);
	border-width: 0 28px 48px;
	border-style: solid;
	border-color: transparent;
	border-bottom-color: white;
}
.scene_detail .title {
	font-size: 20px;
	line-height: 1.4;
}
.scene_detail .detail_data {
	max-width: 1000px;
	margin: 32px auto 0;
}
.scene_detail .detail_data .column {
	display: flex;
	flex-direction: column;
}
.scene_detail .detail_data dt {
	align-self: center;
	z-index: 0;
	position: relative;
	width: 9em;
	padding: 4px;
	margin-bottom: 32px;
	font-size: 20px;
	background: linear-gradient(to right, #c69ab2, #b1ccd7);
}
.scene_detail .detail_data dt .to {
	font-size: 80%;
}
.scene_detail .detail_data dt::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 4px;
	right: 4px;
	bottom: 4px;
	left: 4px;
	background: white;
}
.scene_detail .detail_data dd {
	position: relative;
	font-size: 13px;
	line-height: 1.2;
	text-align: left;
}
.scene_detail.is-hide > * {
	opacity: 0;
	transform: translateY(8px);
}
.scene_detail.is-anim > * {
	transition: opacity .6s, transform .6s cubic-bezier(.3,1,.7,1);
}
.scene_detail.is-anim.is-hide > * {
	transition-duration: .1s;
}
@media print, (min-width: 768px) {
	.scene_detail .detail_data {
		display: flex;
		justify-content: space-between;
	}
	.scene_detail .detail_data .column {
		flex-basis: 31%;
	}
	.scene_detail .detail_data dd {
		height: 4em;
	}
}
@media print {
	.scene_detail .title {
		font-size: calc(20px / 1.5);
	}
	.scene_detail .detail_data dd {
		font-size: calc(13px / 1.5);
	}
}
@media screen and (max-width: 767px) {
	.scene_detail {
		max-width: 440px;
		margin-top: 48px;
	}
	.scene_detail::after {
		border-width: 0 20px 40px;
	}
	.scene_detail .detail_data .column + .column {
		margin-top: 32px;
	}
	.scene_detail .detail_data dt {
		margin-bottom: 24px;
	}
}
/* slider */
.scene_slider .flickity-prev-next-button {
	top: calc(27.875% + 40px);
}
.scene_slider .flickity-prev-next-button.previous {
	left: calc(50% - 313px * 1.75);
}
.scene_slider .flickity-prev-next-button.next {
	right: calc(50% - 313px * 1.75);
}
@media print, (min-width: 768px) {
	.scene_slider::before,
	.scene_slider::after {
		content: "";
		z-index: 1;
		position: absolute;
		top: 0;
		bottom: 0;
		width: calc(50% - 313px - 40px);
		pointer-events: none;
	}
	.scene_slider::before {
		left: 0;
		background: linear-gradient(to right, #f3f3f3, rgba(243,243,243,0));
	}
	.scene_slider::after {
		right: 0;
		background: linear-gradient(to left, #f3f3f3, rgba(243,243,243,0));
	}
	.scene_slider .flickity-prev-next-button {
		z-index: 2;
	}
}
@media screen and (max-width: 1200px) {
	.scene_slider .flickity-prev-next-button.previous {
		left: 48px;
	}
	.scene_slider .flickity-prev-next-button.next {
		right: 48px;
	}
}
@media screen and (max-width: 674px) {
	.scene_slider .flickity-prev-next-button {
		top: calc(27.875vw - 24px);
	}
	.scene_slider .flickity-prev-next-button.previous {
		left: 4px;
	}
	.scene_slider .flickity-prev-next-button.next {
		right: 4px;
	}
}

/* :::::: 新しいかたちを創る技術 :::::: */
.p-solution::before {
	display: none;
}
.p-solution .c-lead {
	max-width: 800px;
}
.solution_section {
	display: flex;
	z-index: 0;
	position: relative;
	max-width: 920px;
	margin: 120px auto 0;
}
.solution_section .image {
	max-width: 400px;
}
@media print, (min-width: 768px) {
	.solution_section {
		padding-bottom: 24px;
	}
	.solution_section:nth-child(2n) {
		padding-left: 48px;
	}
	.solution_section:nth-child(2n) p {
		max-width: calc(100% - 48px);
	}
	.solution_section:nth-child(2n+1) {
		padding-right: 48px;
	}
}
@media print {
	.solution_section {
		break-inside: avoid;
		page-break-inside: avoid;
	}
}
.solution_section .text::before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 40px;
	right: 0;
	bottom: 0;
	left: 0;
	background: #f1f1f1;
}
.solution_title {
	display: inline-flex;
	align-items: center;
	line-height: 1.4;
}
.solution_title .main {
	position: relative;
	padding: .4em .5em;
	border-left: 7px solid #c69ab2;
	border-right: 7px solid #b1ccd7;
	font-size: 30px;
	font-weight: 700;
}
.solution_title .main .to {
	font-size: 80%;
}
.solution_title .main::before,
.solution_title .main::after {
	content: "";
	position: absolute;
	right: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: linear-gradient(to right, #c69ab2, #b1ccd7);
}
.solution_title .main::before {
	top: 0;
}
.solution_title .main::after {
	bottom: 0;
}
.solution_title .main .sub {
	display: block;
	font-size: 11px;
	font-weight: inherit;
	text-align: center;
}
.solution_title .main sub {
	font-size: small;
	vertical-align: baseline;
}
.solution_title .sub {
	font-size: 20px;
	font-weight: 400;
}
.solution_section .text p {
	margin-top: 16px;
	font-size: 14px;
}
.solution_section .c-button {
	margin-top: 24px;
}
@media print, (min-width: 768px) {
	.solution_section .text {
		flex-basis: 80%;
		text-align: left;
	}
	.solution_section:nth-child(2n) .text::before {
		right: 120px;
		left: 0;
	}
	.solution_section:nth-child(2n+1) .text::before {
		right: 0;
		left: 120px;
	}
	.solution_section .image {
		width: 30%;
		position: absolute;
	}
	.solution_section:nth-child(2n) .text {
		margin-right: 32%;
	}
	.solution_section:nth-child(2n) .image {
		right: -24px;
	}
	.solution_section:nth-child(2n+1) .text {
		margin-left: 32%;
	}
	.solution_section:nth-child(2n+1) .image {
		order: -1;
		left: -24px;
	}
	.solution_title {
		white-space: nowrap;
	}
	.solution_title .sub {
		margin: .1em 0 0 .5em;
	}
}
@media print, (min-width: 1024px) {
	.solution_title .main {
		font-size: 36px;
	}
	.solution_title .sub {
		font-size: 24px;
	}
}
@media print {
	.solution_title .main {
		font-size: calc(36px / 1.5);
	}
	.solution_title .sub {
		font-size: calc(24px / 1.5);
	}
	.solution_section .text p {
		font-size: calc(14px / 1.5);
	}
}
@media screen and (max-width: 767px) {
	.solution_section {
		flex-direction: column;
		align-items: center;
		margin-top: 64px;
	}
	.solution_section .sub {
		margin-top: .5em;
		letter-spacing: 0;
	}
	.solution_section .text {
		position: relative;
		padding: 0 24px 24px;
	}
	.solution_section .text p {
		text-align: left;
	}
	.solution_section .text::before {
		top: 88px;
	}
	.solution_title {
		flex-direction: column;
		width: calc(100% + 48px);
		margin: 0 -24px;
	}
}

/* :::::: コラボレーションで新たな価値を生む :::::: */
.p-value .c-lead {
	max-width: 800px;
}
.p-value .solution_title {
	line-height: 1.2;
}
.p-value .solution_title.-s {
	line-height: 1.4;
}
.p-value .solution_title.-s .main {
	padding: .6em .5em;
	font-size: 24px;
}
@media print, (min-width: 768px) {
	.p-value .solution_section {
		align-items: end;
	}
	.p-value .solution_section .text {
		flex-basis: 60%;
		text-align: left;
	}
	.p-value .solution_section .image {
		width: 50%;
		max-width: none;
	}
	.p-value .solution_section:nth-child(2n) .text {
		margin-right: calc(50% + 40px);
	}
	.p-value .solution_section:nth-child(2n+1) .text {
		margin-left: calc(50% + 40px);
	}
	.p-value .solution_section:nth-child(2n) .text::before {
		right: 0;
	}
	.p-value .solution_section:nth-child(2n+1) .text::before {
		left: 0;
	}
	.p-value .solution_section:nth-child(2n) p {
		max-width: 100%;
	}
}
