@charset "UTF-8";
/* -----------------------------------------------------------
汎用変数、関数
----------------------------------------------------------- */
/**
 * リキッドレスポンシブ時に、要素のvwを返す。
 * @param {number} $size デザインデータ上の縦横値
 * @param {number} $viewport デザインデータの横幅
 */
header {
	z-index: 2;
}

footer {
	position: relative;
	margin-top: 0;
}

:where(#contentsWrap) * {
	font-family: 'Zen Old Mincho', serif;
}

h2 {
	width: auto;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
	font-weight: 400;
}

h3 {
	font-weight: 400;
}

@media (max-width: 768px) {
	.PC {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.SP {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.tpl-inner {
		width: 1160px;
		margin-inline: auto;
	}
}

.js-fade {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1s, transform 1s;
}

.js-fade.js-show {
	opacity: 1;
	transform: translateY(0);
}

.dummyMvArea {
	width: 100%;
	height: 100vh;
}

body.is-fixed {
	overflow: clip;
	overscroll-behavior: contain;
}

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

@keyframes infinity-scroll-right {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

.sec-mv {
	position: relative;
	padding-bottom: 11.42857vw;
}

@media (max-width: 768px) {
	.sec-mv {
		padding-bottom: 24vw;
	}
}

.sec-mv .bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #E2F4FE;
}

.sec-mv .bg::before {
	content: '';
	position: absolute;
	background: url("../_img/concept-bg.png") 0 0 no-repeat;
	background-size: cover;
	height: 960px;
	width: 960px;
	left: calc(50% - 480px);
	top: calc(50% - 480px);
}

@media (max-width: 768px) {
	.sec-mv .bg::before {
		height: 128vw;
		width: 128vw;
		left: calc(50% - 64vw);
		top: calc(50% - 64vw);
	}
}

.sec-mv .scrollMark {
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 0;
	transition: opacity 0.5s;
}

.sec-mv .scrollMark.js-show {
	opacity: 1;
}

.sec-mv .scrollMark.js-hide {
	opacity: 0;
}

@media (min-width: 769px) {
	.sec-mv .scrollMark {
		width: 8.57143vw;
		right: 0;
		bottom: -13px;
	}
}

@media (max-width: 768px) {
	.sec-mv .scrollMark {
		width: 80vw;
		left: calc(50% - 40vw);
		bottom: -3.46667vw;
	}
}

.sec-mv .scrollMark > div {
	font-size: 16px;
	margin-bottom: 0.8em;
}

@media (max-width: 768px) {
	.sec-mv .scrollMark > div {
		font-size: 4.26667vw;
	}
}

.sec-mv .c-scrolldown {
	width: 1px;
	height: 80px;
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width: 768px) {
	.sec-mv .c-scrolldown {
		height: 21.33333vw;
	}
}

.sec-mv .c-scrolldown .c-line {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0) 50%);
	background-size: 100% 200%;
	animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@media (min-width: 769px) {
	.sec-mv .c-scrolldown .c-line {
		background-position: 0 -80px;
	}
}

@media (max-width: 768px) {
	.sec-mv .c-scrolldown .c-line {
		background: linear-gradient(to bottom, black 50%, rgba(0, 0, 0, 0) 50%);
		background-size: 100% 200%;
		background-position: 0 -21.33333vw;
		animation: scrolldown_sp 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
	}
}

@keyframes scrolldown {
	0% {
		background-position: 0 -80px;
	}
	75% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 80px;
	}
}

@keyframes scrolldown_sp {
	0% {
		background-position: 0 -21.33333vw;
	}
	75% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 21.33333vw;
	}
}

.sec-mv .mv-top {
	position: relative;
	overflow: hidden;
	height: 100svh;
}

.sec-mv .mv-ttl {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 1s, filter 1s;
	opacity: 0;
	filter: blur(100px);
}

.sec-mv .mv-ttl img {
	width: 100%;
}

.sec-mv .mv-ttl.js-show {
	opacity: 1;
	filter: blur(0);
}

@media (min-width: 769px) {
	.sec-mv .mv-ttl {
		left: calc(50% - 15.46429vw);
		top: calc(50% - 24.28571vw);
		width: 30.92857vw;
		height: 21.42857vw;
	}
}

@media (max-width: 768px) {
	.sec-mv .mv-ttl {
		left: calc(50% - 37.33333vw);
		top: calc(50% - 26.66667vw);
		width: 74.66667vw;
		height: 53.33333vw;
	}
}

.sec-mv .mv-scroll {
	position: absolute;
	opacity: 0;
	transition: opacity 1s;
}

.sec-mv .mv-scroll.js-show {
	opacity: 1;
}

@media (min-width: 769px) {
	.sec-mv .mv-scroll {
		top: calc(50% - 7.85714vw);
	}
}

@media (max-width: 768px) {
	.sec-mv .mv-scroll {
		height: 53.33333vw;
		display: flex;
		align-items: center;
		left: 0;
	}
	.sec-mv .mv-scroll.a1 {
		top: calc(50% - 58.66667vw);
	}
	.sec-mv .mv-scroll.a2 {
		bottom: calc(50% - 58.66667vw);
	}
}

.sec-mv .scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
	gap: 0vw;
}

@media (max-width: 768px) {
	.sec-mv .scroll-infinity__wrap {
		gap: 0;
	}
}

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

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

@media (max-width: 768px) {
	.sec-mv .scroll-infinity__list--left {
		animation: infinity-scroll-left 40s infinite linear 0.5s both;
	}
}

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

@media (max-width: 768px) {
	.sec-mv .scroll-infinity__list--right {
		animation: infinity-scroll-right 40s infinite linear 0.5s both;
	}
}

.sec-mv .scroll-infinity__item {
	width: calc(100vw);
}

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

@media (max-width: 768px) {
	.sec-mv .scroll-infinity__item {
		width: calc(120vw);
	}
}

.sec-mv .mv-lead {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 768px) {
	.sec-mv .mv-lead {
		padding: 0 8vw;
	}
}

.sec-mv .mv-lead p {
	width: 37.85714vw;
	font-size: 1.14286vw;
	line-height: calc(48/16);
}

@media (max-width: 768px) {
	.sec-mv .mv-lead p {
		width: 100%;
		font-size: 3.73333vw;
		text-align: left;
	}
}

.sec-mv .mv-lead p + p {
	margin-top: 3em;
}

.sec-lead {
	position: relative;
}

@media (min-width: 769px) {
	.sec-lead {
		padding-top: 11.42857vw;
		padding-bottom: 11.42857vw;
	}
}

@media (max-width: 768px) {
	.sec-lead {
		padding: 0 8vw;
		padding-top: 26.66667vw;
	}
}

.sec-lead .bg {
	background: #F7F4EF;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

@media (min-width: 769px) {
	.sec-lead .inner {
		position: relative;
		width: 31.42857vw;
		margin-inline: auto;
	}
}

.sec-lead .lead-ttl {
	width: 29.28571vw;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1.5s, transform 1.5s;
}

.sec-lead .lead-ttl img {
	width: 100%;
}

@media (max-width: 768px) {
	.sec-lead .lead-ttl {
		width: 57.06667vw;
	}
}

.sec-lead .lead-ttl.js-show {
	opacity: 1;
	transform: translateY(0);
}

.sec-lead .lead-txt {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 1.5s, transform 1.5s;
}

.sec-lead .lead-txt.js-show {
	opacity: 1;
	transform: translateY(0);
}

.sec-lead p {
	font-size: 1.14286vw;
	line-height: calc(48/16);
	margin-top: 2.5em;
}

@media (max-width: 768px) {
	.sec-lead p {
		line-height: calc(42/14);
		font-size: 3.73333vw;
	}
}

.sec-photo {
	position: relative;
	z-index: 1;
	background: #F7F4EF;
	padding-bottom: 11.42857vw;
}

@media (max-width: 768px) {
	.sec-photo {
		overflow: hidden;
		padding-top: 26.66667vw;
		padding-bottom: 53.33333vw;
	}
}

.sec-photo .inner {
	padding: 0 8.57143vw;
}

@media (max-width: 768px) {
	.sec-photo .inner {
		padding: 0 4vw;
	}
}

.sec-photo .photo-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
}

@media (max-width: 768px) {
	.sec-photo .photo-list {
		grid-template-columns: 1fr;
		gap: 16vw;
	}
}

.sec-photo .photo-list .photo-list-item {
	background: 0;
	border: 0;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.2s;
	color: currentColor;
	opacity: 0;
	transform: translateY(50px);
}

@media (min-width: 769px) {
	.sec-photo .photo-list .photo-list-item:hover {
		opacity: 0.8;
	}
}

.sec-photo .photo-list .photo-list-item.js-show {
	transform: translateY(0);
	opacity: 1;
}

@media (min-width: 769px) {
	.sec-photo .photo-list .photo-list-item.photo-list-item1 {
		transition: 1.5s opacity 0s, 1.5s transform 0s;
	}
	.sec-photo .photo-list .photo-list-item.photo-list-item2 {
		transition: 1.5s opacity 0.3s, 1.5s transform 0.3s;
	}
	.sec-photo .photo-list .photo-list-item.photo-list-item3 {
		transition: 1.5s opacity 0.6s, 1.5s transform 0.6s;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-list .photo-list-item {
		transition: 1.5s opacity 0s, 1.5s transform 0s;
	}
}

.sec-photo .photo-list .photo-list-item .ph {
	position: relative;
}

.sec-photo .photo-list .photo-list-item .ph::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	background: linear-gradient(180deg, rgba(244, 244, 241, 0), #F7F4EF 93%, #F7F4EF 60%, #F7F4EF);
	width: 100%;
	height: 7.14286vw;
}

@media (max-width: 768px) {
	.sec-photo .photo-list .photo-list-item .ph::after {
		height: 26.66667vw;
	}
}

.sec-photo .photo-list .photo-list-item .ph > img {
	width: 100%;
	border-radius: 10px 10px 0 0;
}

.sec-photo .photo-list .photo-list-item .ttl {
	position: absolute;
	z-index: 1;
	left: 2.14286vw;
	bottom: -2.14286vw;
	height: 5.71429vw;
}

@media (max-width: 768px) {
	.sec-photo .photo-list .photo-list-item .ttl {
		left: 5.33333vw;
		bottom: -2.66667vw;
		height: 21.33333vw;
	}
}

.sec-photo .photo-list .photo-list-item .ttl img {
	height: 100%;
}

.sec-photo .photo-list .photo-list-item .btn {
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (min-width: 769px) {
	.sec-photo .photo-list .photo-list-item .btn {
		font-size: 1.42857vw;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-list .photo-list-item .btn {
		font-size: 4.8vw;
	}
}

.sec-photo .photo-list .photo-list-item .btn::after {
	display: block;
	content: '';
	background: url("../_img/icon-arrow.svg") 50% 50% no-repeat;
	background-size: 1.14286vw 0.54929vw;
	border-radius: 50%;
	border: 1px solid #aaa;
	width: 2.28571vw;
	height: 2.28571vw;
	margin-left: 0.5em;
}

@media (max-width: 768px) {
	.sec-photo .photo-list .photo-list-item .btn::after {
		background-size: 4.26667vw 2.05067vw;
		width: 8.53333vw;
		height: 8.53333vw;
	}
}

.sec-photo .swiper-slide img {
	width: 100%;
}

.sec-photo .slider-main {
	position: relative;
}

.sec-photo .slider-main:before, .sec-photo .slider-main:after {
	z-index: 2;
	position: absolute;
	display: block;
	content: '';
	width: 57px;
	height: 57px;
	background: url("../_img/obj_photo.svg") 0 0 no-repeat;
	background-size: 100% auto;
}

.sec-photo .slider-main:before {
	top: -10px;
	left: -10px;
}

.sec-photo .slider-main:after {
	transform: scale(-1, -1);
	bottom: -10px;
	right: -10px;
}

.sec-photo .slider-main img {
	border-radius: 0.71429vw;
}

@media (max-width: 768px) {
	.sec-photo .slider-main img {
		border-radius: 2.66667vw;
	}
}

.sec-photo .slider-sub {
	margin-top: 2.85714vw;
}

@media (max-width: 768px) {
	.sec-photo .slider-sub {
		margin-top: 5.33333vw;
	}
}

.sec-photo .slider-sub img {
	border-radius: 0.71429vw;
}

@media (max-width: 768px) {
	.sec-photo .slider-sub img {
		border-radius: 2.66667vw;
	}
}

.sec-photo .slider-sub .swiper-slide {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.sec-photo .slider-sub .swiper-slide img {
	width: 100%;
}

.sec-photo .slider-sub .swiper-slide::after {
	display: block;
	content: '';
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s;
	border-radius: 0.71429vw;
}

@media (max-width: 768px) {
	.sec-photo .slider-sub .swiper-slide::after {
		border-radius: 2.66667vw;
	}
}

.sec-photo .slider-sub .swiper-slide.swiper-slide-thumb-active::after {
	opacity: 1;
}

.sec-photo .photo-block + .photo-block {
	padding-top: 28.57143vw;
}

@media (max-width: 768px) {
	.sec-photo .photo-block + .photo-block {
		padding-top: 32vw;
	}
}

.sec-photo .photo-block .photo-slider {
	opacity: 0;
	transition: opacity 1.5s;
	pointer-events: none;
}

.sec-photo .photo-block .photo-slider * {
	pointer-events: none;
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-slider {
		position: absolute;
		width: 32.14286vw;
		top: 7.14286vw;
		left: 7.14286vw;
	}
}

@media (min-width: 769px) and (max-height: 800px) {
	.sec-photo .photo-block .photo-slider {
		width: 34.28571vw;
		left: 5.71429vw;
	}
}

.sec-photo .photo-block .photo-slider.js-show {
	opacity: 1;
	pointer-events: auto;
}

.sec-photo .photo-block .photo-slider.js-show * {
	pointer-events: auto;
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-slider.js-hide {
		opacity: 0;
		pointer-events: none !important;
	}
	.sec-photo .photo-block .photo-slider.js-hide * {
		pointer-events: none !important;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-ttl-sub {
		margin-top: 8vw;
	}
}

.sec-photo .photo-block .photo-ttl-sub img {
	position: relative;
	margin-bottom: 1em;
	height: 5.71429vw;
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-ttl-sub img {
		height: 21.33333vw;
	}
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-ttl-sub.sub1 img {
		width: 8.78571vw;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-ttl-sub.sub1 img {
		width: 32.8vw;
	}
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-ttl-sub.sub2 img {
		width: 9.07143vw;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-ttl-sub.sub2 img {
		width: 33.86667vw;
	}
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-ttl-sub.sub3 img {
		width: 10.78571vw;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-ttl-sub.sub3 img {
		width: 40.26667vw;
	}
}

.sec-photo .photo-block .photo-cont {
	position: relative;
	width: 45vw;
	height: 34.28571vw;
	margin-right: 0;
	margin-left: auto;
	overflow-y: auto;
	opacity: 0;
	transition: opacity 1.5s;
}

@media (min-width: 769px) {
	.sec-photo .photo-block .photo-cont {
		padding-right: 1.42857vw;
		padding-bottom: 7.14286vw;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-cont {
		width: auto;
		height: calc(100svh - 33.33333vw);
		padding: 0 4vw;
		padding-bottom: 26.66667vw;
	}
}

.sec-photo .photo-block .photo-cont.js-show {
	opacity: 1;
}

.sec-photo .photo-block .photo-cont .photo-ttl {
	display: flex;
	flex-direction: column;
	font-size: 2vw;
	letter-spacing: 0.1em;
	margin-bottom: 1.5em;
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-cont .photo-ttl {
		font-size: 5.33333vw;
	}
}

.sec-photo .photo-block .photo-cont p {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 1.14286vw;
	line-height: calc(32/16);
}

@media (max-width: 768px) {
	.sec-photo .photo-block .photo-cont p {
		font-size: 3.73333vw;
	}
}

.sec-photo .photo-block .photo-cont p + p {
	margin-top: 2em;
}

.sec-photo .photo-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	letter-spacing: 0.1em;
	color: currentColor;
}

@media (min-width: 769px) {
	.sec-photo .photo-btn {
		margin-top: 32.14286vw;
		width: 300px;
		height: 200px;
		border-radius: 10px;
		font-size: 16px;
		transition: opacity 0.5s;
	}
	.sec-photo .photo-btn:hover {
		opacity: 0.6;
		text-decoration: none;
	}
}

@media (max-width: 768px) {
	.sec-photo .photo-btn {
		margin-top: 32vw;
		width: 60.8vw;
		height: 40.53333vw;
		font-size: 4.26667vw;
		border-radius: 2.66667vw;
	}
}

.sec-photo .photo-btn:before, .sec-photo .photo-btn:after {
	position: absolute;
	display: block;
	content: '';
	width: 57px;
	height: 57px;
	background: url("../_img/obj_photo.svg") 0 0 no-repeat;
	background-size: 100% auto;
}

@media (max-width: 768px) {
	.sec-photo .photo-btn:before, .sec-photo .photo-btn:after {
		width: 11.2vw;
		height: 11.2vw;
	}
}

.sec-photo .photo-btn:before {
	top: -10px;
	left: -10px;
}

@media (max-width: 768px) {
	.sec-photo .photo-btn:before {
		top: -1.86667vw;
		left: -1.86667vw;
	}
}

.sec-photo .photo-btn:after {
	transform: scale(-1, -1);
	bottom: -10px;
	right: -10px;
}

@media (max-width: 768px) {
	.sec-photo .photo-btn:after {
		bottom: -1.86667vw;
		right: -1.86667vw;
	}
}

.sec-photo .photo-btn > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.sec-photo .photo-btn > div:after {
	display: block;
	content: '';
	background: url("../_img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 12px;
	margin-left: 40px;
}

@media (max-width: 768px) {
	.sec-photo .photo-btn > div:after {
		width: 6.4vw;
		height: 3.2vw;
		margin-left: 10.66667vw;
	}
}

.sec-concept {
	position: relative;
	padding-bottom: 17.14286vw;
}

@media (max-width: 768px) {
	.sec-concept {
		padding-bottom: 26.66667vw;
	}
}

.sec-concept .concept-more {
	position: relative;
	margin-top: 18.57143vw;
}

@media (max-width: 768px) {
	.sec-concept .concept-more {
		margin-top: 40vw;
	}
}

.sec-concept .concept-more .concept-more-ttl {
	position: relative;
	width: 17.14286vw;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-size: 2vw;
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-ttl {
		width: 100%;
		font-size: 5.33333vw;
	}
}

.sec-concept .concept-more .concept-more-ttl .concept-more-ttl-sub {
	position: absolute;
	left: 0;
	top: 0;
}

.sec-concept .concept-more .concept-more-ttl .concept-more-ttl-sub img {
	width: 100%;
}

@media (min-width: 769px) {
	.sec-concept .concept-more .concept-more-ttl .concept-more-ttl-sub {
		width: 18.57143vw;
		left: -7.14286vw;
		top: -11.14286vw;
	}
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-ttl .concept-more-ttl-sub {
		width: 46.4vw;
		left: 0.8vw;
		top: -27.73333vw;
	}
}

.sec-concept .concept-more .concept-more-link {
	display: flex;
	justify-content: center;
	gap: 5.71429vw;
	margin-top: 7.14286vw;
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-link {
		display: block;
		margin-top: 12.8vw;
	}
}

.sec-concept .concept-more .concept-more-link > li {
	width: 12.85714vw;
	height: 3.57143vw;
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-link > li {
		margin-left: auto;
		margin-right: auto;
		width: 64vw;
		height: 14.93333vw;
	}
}

.sec-concept .concept-more .concept-more-link > li > a {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.1em;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: currentColor;
	border-bottom: 1px solid #aaa;
}

@media (min-width: 769px) {
	.sec-concept .concept-more .concept-more-link > li > a {
		font-size: 1.14286vw;
	}
	.sec-concept .concept-more .concept-more-link > li > a:hover {
		text-decoration: none;
	}
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-link > li > a {
		font-size: 4.26667vw;
	}
}

.sec-concept .concept-more .concept-more-link > li > a:after {
	display: block;
	content: '';
	background: url("../_img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 1.71429vw;
	height: 0.85714vw;
	margin-left: 2.85714vw;
}

@media (max-width: 768px) {
	.sec-concept .concept-more .concept-more-link > li > a:after {
		width: 6.4vw;
		height: 3.2vw;
		margin-left: 26.66667vw;
	}
}

.modal {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.modal * {
	box-sizing: border-box;
}

.modal__overlay {
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	position: absolute;
	left: 1.42857vw;
	top: calc(50% + 3.93vw - 23.57143vw);
	z-index: 2;
	background-color: #fff;
	padding: 7.14286vw;
	width: calc(100svw - 2.85714vw);
	margin-inline: auto;
	height: 47.14286vw;
	border-radius: 3.57143vw;
}

@media (max-width: 768px) {
	.modal__container {
		left: 2.66667vw;
		width: calc(100% - 5.33333vw);
		height: calc(100svh - 22.66667vw);
		top: 18.66667vw;
	}
}

.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #00449e;
	box-sizing: border-box;
}

.modal__close {
	position: fixed;
	z-index: 2;
	right: 1.42857vw;
	top: 1.42857vw;
	background: transparent;
	border: 0;
	cursor: pointer;
	width: 4.28571vw;
	height: 4.28571vw;
	padding: 0;
}

@media (max-width: 768px) {
	.modal__close {
		right: 0vw;
		top: 0vw;
		width: 10.66667vw;
		height: 10.66667vw;
	}
}

.modal__close::before, .modal__close::after {
	display: block;
	content: '';
	height: 1px;
	width: 3.23214vw;
	background: #333;
	position: absolute;
	left: 0.57143vw;
	top: 2.14286vw;
}

@media (max-width: 768px) {
	.modal__close::before, .modal__close::after {
		left: 1.33333vw;
		top: 4.8vw;
		width: 7.68vw;
	}
}

.modal__close::before {
	transform: rotate(45deg);
}

.modal__close::after {
	transform: rotate(-45deg);
}

.modal__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
	font-size: .875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background-color: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	border-radius: .25rem;
	border-style: none;
	border-width: 0;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}

.modal__close2 {
	background: none;
	border: 1px solid transparent;
	padding: 0;
	cursor: pointer;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 11.42857vw;
	height: 4.28571vw;
	border-bottom: 1px solid #333;
	color: currentColor;
}

@media (min-width: 769px) {
	.modal__close2 {
		margin-top: 3em;
		font-size: 1.14286vw;
	}
}

@media (max-width: 768px) {
	.modal__close2 {
		margin-top: 1.5em;
		font-size: 4.26667vw;
		width: 42.66667vw;
		margin-inline: auto;
		height: 16vw;
	}
}

.modal__close2::before {
	display: block;
	content: '';
	background: url("../_img/batsu.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 1.14286vw;
	height: 1.14286vw;
	margin-right: 1.2em;
}

@media (max-width: 768px) {
	.modal__close2::before {
		width: 4.26667vw;
		height: 4.26667vw;
	}
}

/**************************\
	Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

/*# sourceMappingURL=../../../_map/corp/slogan/_css/style.css.map */
