@charset "UTF-8";

/* General Settings
------------------------------------------ */
* {
	box-sizing: border-box;
}
:root {
	--header-height: 100px;
}
html {
	scroll-padding-top: var(--header-height);
}
body {
	position: relative;
	color: #242424;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2.0;
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 0;
	word-wrap: break-word;
    overflow-wrap: break-word;
}
main {
	position: relative;
	/* padding-top: 100px; */
}
article {
	position: relative;
}
h1,h2,h3,h4,h5,h6 {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 500;
	line-height: 1.6;
	margin: 0 0 1em;
	word-break: break-all;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
ul, ol {
	margin: 0;
	padding: 0;
}
ul li, ol li {
	list-style-type: none;
}

dl, dt, dd, figure {
	margin: 0;
	padding: 0;
}
/* p {
	word-wrap: break-word;
} */
a {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
a[href*="tel:"] {
	pointer-events: none;
}
.pc-mode {
	display: block;
}
.sp-mode {
	display: none;
}
.spnav {
	display: none;
}

/* common
--------------------------------------*/
h2 {
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.3;
	letter-spacing: .075rem;
	margin-bottom: 3rem;
}
h2 span {
	display: block;
	font-family: "Roboto", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	/* font-size: 5rem; */
	font-size: 4.2vw;
	color: rgba(55,196,228,.5);
	text-transform: uppercase;
}
.outline {
	margin-bottom: 2em;
}

/* responsive --------------------------------------*/
@media screen and (max-width: 1400px) {
	h2 span {
		font-size: 4.375rem;
	}
}

@media screen and (max-width: 1200px) {
	:root {
		--header-height: 80px;
	}
}

@media screen and (max-width: 800px) {
	body {
		font-size: 16px;
		font-size: 1rem;
	}
}

@media screen and (max-width: 700px) {
	:root {
		--header-height: 60px;
	}
	h2 {
		font-size: 1rem;
	}
	h2 span {
		font-size: 3.5rem;
	}
}

@media screen and (max-width: 480px) {
	
}
/* header
--------------------------------------*/
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: var(--header-height);
	padding: 0 3.125%;
	background-color: #FFF;
}
header h1 {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
	/* max-width: 385px; */
	width: 20vw;
	margin: 0 1.5% 0 0;
}
header h1 a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
	width: inherit;
}
header h1 img {
	width: inherit;
}
header .gnav > ul {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	align-items: center;
}
header .gnav > ul > li {
	margin-right: 1.5em;
}
header .gnav > ul > li:last-child {
	margin-right: 0;
}
header .gnav > ul > li > a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	height: 100%;
	color: #242424;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1;
	padding: 0 0 6px;
	overflow: hidden;
}
header .gnav > ul > li > a::before {
	content: '';
	position: absolute;
	left: -100%;
	bottom: 0;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #00aa83;
	transition: all .5s ease;
}
header .gnav > ul > li > a:hover::before {
	left: 0;
}
header .gnav .to-corporate {
	/* width: 200px; */
	width: 250px;
	height: 32px;
	margin: 0 0 0 auto;
	line-height: 1;
	font-weight: 500;
	font-size: .9375rem;
	margin-bottom: 1.25rem;
}
header .gnav .to-corporate a {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #00aa83;
	color: #FFF;
	border-radius: 16px;
}
header .gnav .to-corporate a::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url(../img/newtab.svg) no-repeat center center;
	background-size: contain;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1200px) {
	header h1 {
		width: 30vw;
	}
	.gnav {
		display: none;
	}
	.spnav {
		display: block;
	}
	.drawer-hamburger {
		padding: 28px 22px 40px;
		background-color: #00aa83;
	}
	.drawer-hamburger:hover {
		background-color: #00aa83;
	}
	.drawer--right.drawer-open .drawer-hamburger {
		right: 0;
	}
	.drawer-hamburger-icon,
	.drawer-hamburger-icon:after,
	.drawer-hamburger-icon:before {
		background-color: #FFF;
	}
	.drawer-nav {
		width: 50%;
		padding: 80px 4.1vw;
		background-color: #00aa83;
		text-align: center;
	}
	.drawer-nav li {
		margin-bottom: 1.5em;
	}
	.drawer--right .drawer-nav {
		right: -50%;
	}
	.drawer-menu a {
		color: #FFF;
	}
	.drawer-menu a[target="_blank"] {
		position: relative;
		display: inline-block;
	}
	.drawer-menu a[target="_blank"]::after {
		content: '';
		display: inline-block;
		width: 16px;
		height: 16px;
		background: url(../img/newtab.svg) no-repeat center center;
		background-size: contain;
		margin-left: .3em;
		transition: all .5s ease;
	}
}

@media screen and (max-width: 800px) {
	body {
		font-size: 16px;
		font-size: 1rem;
	}
}

@media screen and (max-width: 700px) {
	header h1 {
		width: 40vw;
	}
	.drawer-hamburger {
		padding: 18px .75rem 30px
	}
	.drawer-nav {
		width: 100%;
	}
	.drawer--right .drawer-nav {
		right: -100%;
	}
}

@media screen and (max-width: 480px) {
	header h1 {
		width: 65vw;
	}
}

/* mv
--------------------------------------*/
#mv {
	height: 100vh;
	height:calc( ( var(--vh, 1vh) * 100 ) );
	padding-top: var(--header-height);
	/* background: url(../img/bg-mv.png) no-repeat center center; */
	background-size: cover;
}
#mv section {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	height:calc( ( var(--vh, 1vh) * 100 ) - 100px );
}
/* #mv .logoarea,
#mv .imgarea {
	position: relative;
	width: 50%;
} */
#mv .logoarea {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	height: inherit;
	width: 45%;
}
#mv .imgarea {
	width: 55%;
}
#mv .main-blk {
	position: relative;
	z-index: 1;
}
#mv .main-blk figure {
	/* width: 23vw; */
	width: 28vw;
	margin: 0 auto 1.5rem;
}
#mv .main-blk h1 {
	font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-weight: 400;
	/* font-size: 3.6vw; */
	font-size: 3.8vw;
	line-height: 1;
	letter-spacing: .075rem;
}
#mv .logoarea .upper {
	position: absolute;
	right: 5%;
	top: 3%;
	width: 10.4vw;
	height: 10.4vw;
	overflow: hidden;
}
#mv .logoarea .bottom {
	position: absolute;
	left: 5%;
	bottom: 3%;
	width: 10.4vw;
	height: 10.4vw;
	overflow: hidden;
}
#mv .imgarea figure {
	width: 100%;
	aspect-ratio: 3 / 2;
}
#mv .imgarea figure img {
	height: 100%;
	object-fit: contain;
	margin: 0 auto;
}
#mv .slider {
	visibility: hidden;
}


/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1200px) {
	#mv {
		height: 90vh;
		height:calc( ( var(--vh, 1vh) * 90 ) );
	}
	#mv section {
		height:calc( ( var(--vh, 1vh) * 90 ) - 80px );
	}
}
@media screen and (max-width: 1024px) {
	#mv {
		height: 60vh;
		height:calc( ( var(--vh, 1vh) * 60 ) );
	}
	#mv section {
		height:calc( ( var(--vh, 1vh) * 60 ) - 80px );
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	#mv section {
		height:calc( ( var(--vh, 1vh) * 60 ) - 60px );
	}
}

@media screen and (max-width: 480px) {
	#mv {
		height: auto;
		background: unset;
	}
	#mv section {
		display: block;
		/* align-items: unset;
		flex-wrap: wrap; */
		height: auto;
	}
	#mv .logoarea,
	#mv .imgarea {
		width: 100%;
	}
	#mv .logoarea {
		height: 60vh;
		/* background: url(../img/bg-mv.png) no-repeat center center; */
		background-size: cover;
	}
	#mv .main-blk figure {
		/* width: 60vw; */
		width: 70vw;
	}
	#mv .main-blk h1 {
		/* font-size: 2rem; */
		font-size: 3rem;
	}
	#mv .logoarea .upper,
	#mv .logoarea .bottom {
		width: 25vw;
		height: 25vw;
	}
}

/* message
--------------------------------------*/
#message {
	background-color: #f2f2f2;
	padding: 100px 14vw;
}
#message section {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
#message h2 {
	width: 100%;
}
#message .txt-wrap {
	width: 50%;
}
#message figure {
	width: 46%;
}
#message .catch {
	font-weight: 500;
	font-size: 1.625rem;
	line-height: 1.8;
	letter-spacing: .05em;
	margin-bottom: 1.5em;
}
#message .sign {
	text-align: right;
	font-weight: 500;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#message {
		padding: 100px 12vw;
	}
}

@media screen and (max-width: 1200px) {
	#message {
		padding: 80px 8vw;
	}
	#message .catch {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	#message section {
		flex-wrap: wrap;
	}
	#message .txt-wrap,
	#message figure {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	#message .catch {
		font-size: 1.25rem;
	}
}

/* page-menu
--------------------------------------*/
#page-menu {
	padding: 100px 10.15% 150px;
}
#page-menu ul {
	/* display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px 3.125vw; */
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#page-menu li {
	position: relative;
	width: 30.7%;
	margin: 0 3.95% 30px 0;
	padding-bottom: 83px;
}
#page-menu li:nth-child(3n) {
	margin-right: 0;
}
#page-menu a {
	/* position: relative; */
	display: block;
	color: #242424;
}
#page-menu a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 63px;
    height: 63px;
    border: 2px solid #00aa83;
    border-radius: 50%;
    background: #00aa83 url(../img/arrow01-w.svg) no-repeat center center;
    background-size: 26px;
    transition: all .5s ease;
}
#page-menu dl {
	position: relative;
	padding-left: 1.3em;
}
#page-menu dl::before {
	content: '';
	position: absolute;
	top: -40px;
	left: 10px;
	display: block;
	width: 2px;
	height: 120px;
	background-color: #082367;
}
#page-menu dt {
	font-weight: 500;
	/* font-size: 2vw; */
	font-size: clamp( 1.5rem, 2vw, 2rem );
	line-height: 1.8;
	margin-bottom: .5em;
	margin-top: .3em;
}
#page-menu a dt .subttl {
	display: block;
	font-size: 1rem;
	color: #848484;
}
#page-menu dd {
	line-height: 1.6;
}
#page-menu figure {
	aspect-ratio: 3 / 2;
	text-align: center;
	border: 1px solid #e4e4e4;
}
#page-menu figure img {
	height: 100%;
	object-fit: contain;
	margin: 0 auto;
}


/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	
}

@media screen and (max-width: 1200px) {
	#page-menu {
		padding: 100px 5vw 150px;
	}
}
@media screen and (max-width: 1000px) {
	/* #page-menu ul {
		grid-template-columns: 1fr 1fr;
	} */
	#page-menu li {
		width: 47%;
		margin-right: 6%;
	}
	#page-menu li:nth-child(3n) {
		margin-right: 6%;
	}
	#page-menu li:nth-child(2n) {
		margin-right: 0;
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	
}

@media screen and (max-width: 480px) {
	/* #page-menu ul {
		grid-template-columns: 1fr;
	} */
	#page-menu li {
		width: 100%;
		margin-right: 0;
	}
	#page-menu li:nth-child(3n) {
		margin-right: 0;
	}
	#page-menu li:last-child {
		margin-bottom: 0;
	}
}

/* voice
--------------------------------------*/
#voice {
	background: rgb(11,48,142);
	background: linear-gradient(135deg, rgba(11,48,142,1) 0%, rgba(0,91,215,1) 100%);
	color: #FFF;
	padding: 100px 10.15%;
}
/* #voice .lead {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: wrap;
} */
#voice h2 {
	width: 100%;
}
/* #voice .txt-wrap {
	width: 50%;
}
#voice .img-wrap {
	width: 46.45%;
} */
#voice h3 {
	/* font-size: 1.875rem; */
	width: 100%;
	font-size: 1.56vw;
	padding: 0 0 .3em;
	border-bottom: 2px solid #FFF;
}
#voice dl {
	margin-bottom: 2em;
}
#voice dt {
	position: relative;
	font-weight: 500;
	/* font-size: 1.375rem; */
	font-size: 1.1vw;
	line-height: 1.6;
	margin-bottom: 1.25em;
	padding-left: 2rem;
}
#voice dt::after {
	content: '';
	position: absolute;
	left: 0;
	top: .8em;
	width: 22px;
	height: 3px;
	background-color: #37c4e4;
}
#voice dd {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-left: 2rem;
}
#voice dd span {
	display: block;
	width: 4em;
}
#voice dd.question {
	font-weight: 500;
	margin: 1.5em 0;
}
#voice dd.question span {
	position: relative;
}
#voice dd.question span::after {
	content: '';
	position: absolute;
	left: 0;
	top: 1em;
	width: 3em;
	height: 3px;
	background-color: #37c4e4;
}
#voice dd p {
	width: calc( 100% - 4em );
	margin: 0;
}
#voice .readmore {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 360px;
	height: 70px;
	margin: 0 auto;
	background-color: #37c4e4;
	color: #FFF;
	font-weight: 500;
	line-height: 1;
	border-radius: 35px;
	transition: all .5s ease;
}
#voice .readmore::after {
	content: '';
	display: inline-block;
	width: 17px;
	height: 10px;
	background: url(../img/arrow-down-w.svg) no-repeat center center;
	background-size: contain;
	margin-left: .5em;
	transition: all .5s ease;
}
#voice .readmore:hover {
	cursor: pointer;
	opacity: .8;
}
#voice .readmore.open::after {
	transform: rotate(180deg);
}
#voice .more-blk {
	display: none;
}
#voice figure {
	margin-left: calc( 2rem + 4em );
	margin: 0 0 2em;
	text-align: center;
}
/* #voice .slick-dots {
	bottom: 8px;
}
.slick-dots li,
#voice .slick-dots li button {
	width: 16px;
	height: 16px;
}
#voice .slick-dots li button:before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #FFF;
	border-radius: 50%;
}
#voice .slick-dots li.slick-active button:before {
	background-color: #37c4e4;
} */

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#voice {
		padding: 100px 10vw;
	}
	#voice h3 {
		font-size: 1.875rem;
	}
	#voice dt {
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 1200px) {
	#voice {
		padding: 80px 5vw;
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	#voice .txt-wrap,
	#voice .img-wrap {
		width: 100%;
	}
	#voice .txt-wrap {
		margin-bottom: 1.5em;
	}
}

@media screen and (max-width: 480px) {
	#voice h3 {
		font-size: 1.375rem;
	}
	#voice dt {
		font-size: 1.1rem;
	}
	#voice .readmore {
		width: 100%;
	}
}

/* review
--------------------------------------*/
#review {
	padding: 100px 10.15% 200px;
}
#review ul {
	position: relative;
	display: grid;
	gap: clamp(1.25rem, 20 / 1440* 1920px, 20 / 1440* 100vw);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: min(60 / 1440* 100vw, 60 / 1440* 1920px);
	row-gap: clamp(3rem, 80 / 1440* 1920px, 80 / 1440* 100vw);
}
#review li:nth-child(even) {
	position: relative;
	top: min(80 / 1440* 100vw, 80 / 1440* 1920px);
}
#review a {
	position: relative;
	display: block;
	color: #FFF;
}
#review a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.1);
}
#review a em {
	position: absolute;
	left: 1em;
	bottom: 1em;
	display: inline-block;
	font-style: normal;
	font-weight: 500;
	font-size: 1.375rem;
	line-height: 1.3;
	z-index: 2;
}
#review a em::after {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url(../img/newtab.svg) no-repeat center 3px;
	background-size: contain;
	margin-left: .3em;
}
#review a:hover {
	opacity: .8;
	cursor: pointer;
}
.remodal {
	max-width: unset;
	width: 72.1875vw;
	padding: 0;
	text-align: left;
}
.modal-close {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 36px;
	text-align: center;
	font-size: 12px;
	color: #FFF;
}
.remodal h3 {
	background-color: #0b308e;
	color: #FFF;
	font-size: 1.875vw;
	line-height: 1.2;
	padding: 20px 1em;
}
.remodal h3 span {
	font-size: 1rem;
	color: #37c4e4;
	margin-left: 1em;
}
.remodal .inner {
	padding: 0 4.6vw 60px;
}
.remodal h4 {
	font-size: 1.875vw;
	line-height: 1.2;
	border-bottom: 2px solid #0b308e;
	padding-bottom: .2em;
}
.remodal figure {
	text-align: center;
}
.remodal figcaption {
	font-size: 1rem;
	color: #848484;
	text-align: left;
}
.mb05 {
	margin-bottom: .5em;
}
.mb1 {
	margin-bottom: 1em;
}
.mb2 {
	margin-bottom: 2em;
}
.mb3 {
	margin-bottom: 3em;
}
.remodal-cancel {
	display: block;
	width: 100px;
	height: 40px;
	margin: 0 auto;
	border: 1px solid #6a6e72;
	color: #6a6e72;
	font-size: 1rem;
	border-radius: 4px;
	padding: 0;
	background: #FFF;
	transition: all .5s ease;
}
.remodal-cancel::before {
	content: '×';

}
.remodal-cancel:hover {
	background: #6a6e72;
	color: #FFF;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#review {
		padding: 100px 10vw;
	}
	#review a em {
		font-size: 1.25rem;
	}
	.remodal {
		width: 80vw;
	}
}

@media screen and (max-width: 1200px) {
	#review {
		padding: 80px 5vw;
	}
	.remodal {
		width: 90vw;
	}
	.remodal h3 {
		font-size: 1.5rem;
	}
	.remodal h4 {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	#review a em {
		font-size: 1.125rem;
		left: .5em;
		bottom: .5em;
	}
	.remodal .inner {
		padding: 0 3vw 60px
	}
	.remodal h3 {
		font-size: 1.25rem;
	}
	.remodal h3 span {
		font-size: .9375rem;
	}
	.remodal h4 {
		font-size: 1.25rem;
	}
	.remodal figcaption {
		font-size: .9375rem;
	}
}

@media screen and (max-width: 480px) {
	#review ul {
		grid-template-columns: 1fr;
	}
	#review li:nth-child(even) {
		top: unset;
	}
}

/* crosstalk
--------------------------------------*/
#crosstalk {
	margin-bottom: 60px;
}
#crosstalk > .title {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	width: 100%;
	padding: 100px 0 100px 6.25%;
	background: url(../img/bg-voice.png), linear-gradient( 135deg, #0b308e, #005bd7);
	color: #FFF;
}
#crosstalk > .title::after {
	content: 'CROSS TALK';
	position: absolute;
	left: 0;
	bottom: 0;
	font-family: 'Roboto', "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-style: italic;
	font-weight: 600;
	/* font-size: 11rem; */
	font-size: 10vw;
	line-height: 1;
	letter-spacing: .1em;
	color: rgba(55,196,228,.3);
}
#crosstalk .tag {
	position: absolute;
	left: 6.25%;
	top: 0;
	/* width: 214px; */
	width: 11.15vw;
	/* height: 190px; */
	height: 10vw;
	background: url(../img/tag.svg) no-repeat center bottom;
	background-size: cover;
	font-weight: 500;
	/* font-size: 2.25rem; */
	font-size: 1.875vw;
	line-height: 1.3;
	letter-spacing: .025em;
	text-align: center;
	padding-top: .6em;
}
#crosstalk > .title .txt-blk {
	width: 49.444%;
	padding-top: 6.25vw;
	font-size: 1.25rem;
}
#crosstalk > .title figure {
	position: relative;
	width: 44.444%;
	z-index: 1;
}
#crosstalk > .title h2 {
	font-weight: 500;
	/* font-size: 2.5rem; */
	font-size: 2vw;
	line-height: 1.5;
	letter-spacing: normal;
	margin-bottom: 1.5em;
}
#crosstalk .profile {
	padding: 100px 6.25%;
	margin-bottom: 80px;
	background: #f2f2f2;
}
#crosstalk .profile h3 {
	font-weight: 500;
	font-size: 1.25rem;
	border-bottom: 1px solid #bbbbbb;
	padding-bottom: .3em;
	margin-bottom: 1.5em;
}
#crosstalk .profile .grid-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 50px 3.125vw;
}
#crosstalk .profile .blk {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2.5vw;
}
#crosstalk .profile .blk dt {
	font-weight: 500;
	font-size: 1.5rem;
	margin-bottom: .5em;
}
#crosstalk .theme-blk .title {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 80px;
}
#crosstalk .theme-blk .title .txt-blk {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
	background: url(../img/bg-voice.png), linear-gradient( 135deg, #0b308e, #005bd7);
	color: #FFF;
	padding: 6.25vw 2vw 6.25vw 10.4vw;
	z-index: 1;
}
#crosstalk .theme-blk .title .txt-blk::before {
	content: '';
	position: absolute;
	left: 10px;
	bottom: -10px;
	width: calc( 100% - 10px );
	height: 10px;
	background-color: #37c4e4;
	z-index: -2;
}
#crosstalk .theme-blk .title figure {
	position: relative;
	width: 50%;
	z-index: 1;
}
#crosstalk .theme-blk .title h3 {
	font-weight: 500;
	/* font-size: 3rem; */
	font-size: 2.5vw;
	line-height: 1.5;
	letter-spacing: .03em;
	margin: 0;
}
#crosstalk .theme-blk .title h3 span {
	display: inline-block;
	font-family: 'Roboto', "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'メイリオ', Meiryo, sans-serif;
	font-weight: 400;
	/* font-size: 1.25rem; */
	font-size: 1.04vw;
	letter-spacing: .03em;
	background-color: #00aa83;
	padding: 0 .2em;
}
#crosstalk .theme-blk h4 {
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: .03em;
	color: #036eb7;
	margin: 0 14vw 1.5em;
}
#crosstalk .talk-blk,
#crosstalk .talk-blk-02 {
	padding: 0 14vw 60px;
}

#crosstalk .talk-blk {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#crosstalk .talk-blk:nth-of-type(odd) {
	flex-direction: row-reverse;
}
#crosstalk .talk-blk .txt-blk,
#crosstalk .talk-blk figure {
	width: 34.375vw;
}
#crosstalk .talk-blk dl,
#crosstalk .talk-blk-02 dl {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	margin-bottom: 1em;
}
#crosstalk .talk-blk dt,
#crosstalk .talk-blk-02 dt {
	font-weight: 500;
	width: 3.5em;
}
#crosstalk .talk-blk dd,
#crosstalk .talk-blk-02 dd {
	width: calc( 100% - 3.5em );
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#crosstalk .profile .blk dt {
		font-size: 1.375rem;
	}
	#crosstalk .theme-blk .title .txt-blk {
		padding: 6.25vw 2vw 6.25vw 7.8125vw
	}
	#crosstalk .talk-blk, 
	#crosstalk .talk-blk-02 {
		padding: 0 10vw 60px;
	}
	#crosstalk .talk-blk .txt-blk, 
	#crosstalk .talk-blk figure {
		width: 38vw;
	} 
	#crosstalk .theme-blk h4 {
		margin: 0 10vw 1.5em;
	}
}

@media screen and (max-width: 1200px) {
	#crosstalk > .title {
		padding: 80px 0 80px 5vw;
	}
	#crosstalk > .title .txt-blk {
		padding-top: 5vw;
		font-size: unset;
	}
	#crosstalk > .title figure {
		margin-top: 5vw;
	}
	#crosstalk .profile {
		padding: 80px 5vw;
	}
	#crosstalk .theme-blk .title .txt-blk {
		padding: 6.25vw 2vw 6.25vw 5vw
	}
	#crosstalk .theme-blk .title h3 {
		font-size: 3vw;
	}
	#crosstalk .talk-blk, 
	#crosstalk .talk-blk-02 {
		padding: 0 5vw 60px;
	}
	#crosstalk .talk-blk .txt-blk, 
	#crosstalk .talk-blk figure {
		width: 43vw;
	}
	#crosstalk .theme-blk h4 {
		margin: 0 5vw 1.5em;
	} 
}

@media screen and (max-width: 1024px) {
	#crosstalk > .title h2 {
		font-size: 2.1vw;
	}
}

@media screen and (max-width: 700px) {
	#crosstalk {
		margin-bottom: 20px;
	}
	#crosstalk > .title {
		flex-wrap: wrap;
		padding: 80px 5vw 80px;
	}
	#crosstalk .tag {
		width: 17.25vw;
		height: 15vw;
		font-size: 2.8vw;
	}
	#crosstalk > .title .txt-blk {
		width: 100%;
		font-size: 1.125rem;
	}
	#crosstalk > .title figure {
		width: 100%;
	}
	#crosstalk > .title h2 {
		font-size: 1.375rem;
	}
	#crosstalk .talk-blk, 
	#crosstalk .talk-blk-02 {
		flex-wrap: wrap;
	}
	#crosstalk .talk-blk .txt-blk,
	#crosstalk .talk-blk figure {
		width: 100%;
	}
	#crosstalk .profile .grid-box {
		grid-template-columns: 1fr;
	}
	#crosstalk .theme-blk .title {
		flex-wrap: wrap;
	}
	#crosstalk .theme-blk .title .txt-blk {
		position: static;
		left: unset;
		top: unset;
		transform: unset;
		width: 100%;
	}
	#crosstalk .theme-blk .title figure {
		width: 100%;
	}
	#crosstalk .theme-blk .title h3 {
		font-size: 1.875rem;
	}
	#crosstalk .theme-blk .title h3 span {
		font-size: 1rem;
	}
}

@media screen and (max-width: 480px) {
	#crosstalk .tag {
		width: 22.3vw;
		height: 20vw;
		font-size: 3.75vw;
	}
	#crosstalk .profile .blk {
		grid-template-columns: 1fr;
	}
	#crosstalk .profile .blk dt {
		font-size: 1.125rem;
	}
	#crosstalk .profile .blk figure {
		text-align: center;
	}
}

/* history
--------------------------------------*/
#history {
	background: #082367;
	color: #FFF;
	padding: 100px 19vw 60px;
}
#history h2 {
	text-align: center;
}
#history .title-blk {
	/* position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between; */
	display: grid;
	grid-template-columns: 8fr 2fr 8fr;
	column-gap: 10px;
}
#history .title-blk h3 {
	/* width: 50%; */
	text-align: center;
	font-size: 1.5rem;
}
.timeline {
	position: relative;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	width: 2px;
	height: 100%;
	background-color: #b6b6b6;
}
.unit {
	position: relative;
	display: grid;
	/* grid-template-columns: 8fr 2fr 8fr; */
	grid-template-columns: 8fr 6em 8fr;
	column-gap: 10px;
	margin-bottom: 40px;
}
.year-point-large {
	position: relative;
	text-align: center;
	margin-top: -.75em;
}
.year-point-large p {
	position: relative;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.25;
	margin: calc( ( 80px - 1.5rem ) / 2 ) 0 0;
	z-index: 1;
}
.year-point-large::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: #005bd7;
	border: 2px solid #FFF;
}
.year-point-s {
	position: relative;
	text-align: center;
	padding-bottom: 30px;
}
.year-point-s p {
	font-weight: 500;
	line-height: 1.25;
	margin: 0;
	z-index: 1;
	background-color: #082367;
}
.year-point-s p span {
	display: block;
	font-size: .9375rem;
}
.year-point-s::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 3rem;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #00aa83;
	border: 2px solid #FFF;
	box-sizing: border-box;
}
.unit01 .inner,
.unit02 .inner {
	position: relative;
	background-color: #FFF;
	color: #242424;
	padding: 1em 4%;
}
.unit01.none .inner,
.unit02.none .inner {
	background-color: transparent;
	padding: 0;
}
.unit01 .inner::after {
	content: '';
	position: absolute;
	right: -16px;
	top: 1.25em;
	border: 8px solid transparent;
	border-left: 8px solid #FFF;
}
.unit02 .inner::after {
	content: '';
	position: absolute;
	left: -16px;
	top: 1.25em;
	border: 8px solid transparent;
	border-right: 8px solid #FFF;
}
.unit01.none .inner::after,
.unit02.none .inner::after {
	display: none;
}
.unit01:has( + .year-point-s ),
.year-point-s + .unit02 {
	margin-top: calc( 1rem + .975rem + 5px );
}
.unit01 p,
.unit02 p {
	margin: 0;
	line-height: 1.5;
}
.unit01 dl {
	display: grid;
	/* grid-template-columns: 1fr 9fr; */
	grid-template-columns: 2.5em 1fr;
	column-gap: .5em;
	line-height: 1.5;
	margin-bottom: 1em;
}
.unit01 dl:last-of-type {
	margin-bottom: 0;
}
.unit01 dd span {
	display: inline-block;
	margin-left: 1em;
}
.unit01 ul li,
.unit02 ul li {
	position: relative;
	padding-left: 1em;
	line-height: 1.8;
}
.unit01 ul li::before,
.unit02 ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .8em;
	display: block;
	width: 6px;
	height: 6px;
	background-color: #0b308e;
	border-radius: 50%;
}
.unit a {
	color: #242424;
}
.unit em {
	font-style: normal;
}
.unit a em {
	display: block;
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-bottom: .3em;
}
.unit a em::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/newtab-k.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
}
.unit a em::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/newtab-k.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
	transition: all .5s ease;
}
.unit a:hover em::after {
	background: url(../img/newtab-gr.svg) no-repeat center center;
	background-size: contain;
}
.unit a:hover {
	color: #00aa83;
}
.unit figure {
	position: relative;
	padding-top: 66.666%;
	overflow: hidden;
	text-align: center;
}
.unit figure.full {
	padding-top: unset;
}
.unit figure img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 100%;
	/* object-fit: contain; */
	object-fit: cover;
	transition: all .5s ease;
}
.unit figure.full img {
	position: static;
	left: unset;
	top: unset;
	transform: unset;
	display: inline;
	width: auto;
	height: auto;
	object-fit: unset;
	transition: unset;
}
.unit a figure {
	margin-bottom: 1em;
}
.unit a:last-of-type figure {
	margin-bottom: 0;
}
.unit .unit02 li a figure {
	margin-bottom: .5em;
}
.unit .unit02 li:last-child a figure {
	margin-bottom: 0;
}
.unit a img {
	transition: all .5s ease;
}
.unit a:hover img {
	opacity: .8;
}
.unit dl a:hover {
	color: #00aa83;
}
.unit dl a[target="_blank"] {
	position: relative;
	display: inline-block;
}
.unit dl a[target="_blank"]::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(../img/newtab-k.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
	transition: all .5s ease;
}
.unit dl a[target="_blank"]:hover::after {
	background: url(../img/newtab-gr.svg) no-repeat center center;
	background-size: contain;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#history {
		padding: 100px 10vw 60px;
	}
}

@media screen and (max-width: 1200px) {
	#history {
		padding: 80px 5vw 40px;
	}
	/* .unit01 dl {
		grid-template-columns: 1fr 8fr;
	} */
}
@media print {
	#history {
		padding: 80px 5vw 40px;
	}
}
@media screen and (max-width: 1000px) {
	.unit01 dd span.spbr {
		display: block;
		margin-left: 0;
	}
}
@media screen and (max-width: 800px) {
	.unit a em {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 700px) {
	#history .title-blk {
		grid-template-columns: 1fr;
	}
	#history .title-blk h3 {
		margin-bottom: .5em;
	}
	.unit {
		grid-template-columns: 1fr;
		column-gap: unset;
		gap: 20px;
		min-height: 60px;
	}
	.unit01,
	.unit02 {
		padding-left: 80px;
	}
	.unit01 .inner {
		background-color: rgba(255,255,255,.85);
	}
	.unit01 .inner::after {
		right: unset;
		left: -16px;
		border-left: 8px solid transparent;
		border-right: 8px solid rgba(255,255,255,.85);
	}
	.timeline::before {
		left: 30px;
	}
	.year-point-large {
		position: absolute;
		left: 0;
		top: 0;
		display: flex;
        justify-content: center;
        align-items: center;
		width: 60px;
		height: 60px;
		margin-top: -2px;
	}
	.year-point-large p {
		font-size: 1.25rem;
		margin: 0;
	}
	.year-point-large::after {
		width: 60px;
		height: 60px;
		box-sizing: border-box;
	}
	.year-point-s {
		position: absolute;
		left: -1em;
		top: 0;
		width: 6em;
	}
	.year-point-s p {
		position: relative;
	}
	.year-point-s::after {
		left: calc( ( 6em - 34px ) / 2 );
		transform: unset;
	}
	.unit01 + .year-point-s + .unit02 {
		margin-top: 0;
	}
	.unit01.none,
	.unit02.none {
		display: none;
	}
	.unit01.none + .year-point-s + .unit02 {
		margin-top: calc( 1rem + .975rem + 5px );
	}
}

@media screen and (max-width: 480px) {
	.unit a em {
		font-size: 1rem;
	}
}

/* project
--------------------------------------*/
#project {
	background: #f2f2f2;
	padding: 100px 14vw;
}
#project .map-wrap {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto 60px;
}
#project .map {
    position: relative;
    width: 100%;
    padding-top: 66.666%;
	overflow: hidden;
}
#project .map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#project .area {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px 3.125vw;
}
#project .area .btn {
	display: flex;
	justify-content: center;
	align-items: center; 
	width: 100%;
	height: 80px;
	background-color: #036eb7;
	color: #FFF;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: .03em;
	transition: all .5s ease;
}
#project .area .btn.open,
#project .area .btn:hover {
	background-color: #37c4e4;
}
#project .area .btn.open::after,
#project .area .btn::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 11px;
	background: url(../img/arrow-down-w.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
	transition: all .5s ease;
}
#project .area .btn:hover::after {
	transform: rotate(180deg);
}
 
.project-list {
	display: none;
	padding: 0 0 30px;
}
.project-list dt {
	font-weight: 500;
	font-size: 1.375rem;
	margin-top: 1.5em;
}
.project-list dd {
	position: relative;
	padding-left: 1em;
}
.project-list dd::before {
	content: '';
	position: absolute;
	left: 0;
	top: .8em;
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #37c4e4;
}
.project-list dd br {
	display: none;
}
.project-list dd a {
	color: #242424;
}
.project-list dd a:hover {
	color: #00aa83;
}
.project-list dd a[target="_blank"]::after {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/newtab-k.svg) no-repeat center center;
	background-size: contain;
	margin-left: .3em;
	margin-top: .3em;
	transition: all .5s ease;
}
.project-list dd a[target="_blank"]:hover::after {
	background: url(../img/newtab-gr.svg) no-repeat center center;
	background-size: contain;
}
.hanrei {
	padding: 1em 1.5em;
	font-size: 1rem;
	border: 1px solid #d4d4d4;
}
.hanrei p {
	margin: 0 0 .5em;
	font-weight: 500;
}
.hanrei ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px 2%;
	line-height: 1.5;
}
.hanrei li {
	position: relative;
	padding-left: 1.3em;
}
.hanrei li::before {
	content: '';
	position: absolute;
	left: 0;
	top: .25em;
	display: block;
	width: 1em;
	height: 1em;
}
.hanrei li.theaters::before {
	background-color: #0097a7;
}
.hanrei li.museums::before {
	background-color: #ffd600;
}
.hanrei li.physical-education::before {
	background-color: #795548;
}
.hanrei li.school-research::before {
	background-color: #ff5252;
}
.hanrei li.welfare-medical::before {
	background-color: #0288d1;
}
.hanrei li.industrial-transportation::before {
	background-color: #e65100;
}
.hanrei li.hotels::before {
	background-color: #7cb342;
}
.hanrei li.office-buildings::before {
	background-color: #0f9d58;
}
.hanrei li.housing-dormitory::before {
	background-color: #c2185b;
}
.hanrei li.others::before {
	background-color: #9c27b0;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#project {
		padding: 100px 10vw;
	}
}

@media screen and (max-width: 1200px) {
	#project {
		padding: 80px 5vw;
	}
	#project .area .btn,
	.project-list dt {
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 800px) {
	#project .area .btn {
		height: 70px;
	}
}

@media screen and (max-width: 700px) {
	#project .map {
		padding-top: 100%;
	}
	#project .area {
		grid-template-columns: 1fr 1fr;
	}
	#project .area .btn, .project-list dt {
		font-size: 1.125rem;
	}
}

@media screen and (max-width: 480px) {
	#project .area {
		grid-template-columns: 1fr;
		gap: 3.125vw;
	}
}

/* archives
--------------------------------------*/
#archives {
	padding: 100px 14vw;
}
#archives h3 {
	border-left: 4px solid #036eb7;
	padding-left: .5em;
	margin: 2em 0 1em;
}
#archives .imgs {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3.125vw;
}

/* responsive --------------------------------------*/

@media screen and (max-width: 1400px) {
	#archives {
		padding: 100px 10vw;
	}
}

@media screen and (max-width: 1200px) {
	#archives {
		padding: 80px 5vw;
	}
}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 700px) {
	#archives .imgs {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 480px) {
	#archives .imgs {
		grid-template-columns: 1fr;
	}
}

/* footer
--------------------------------------*/
footer {
	background-color: #082367;
	color: #FFF;
	text-align: center;
	padding: 80px 0 20px;
}
footer h2 {
	width: 392px;
	margin: 0 auto 2em;
}
footer .btn a {
	display: flex;
	justify-content: center;
	align-items: center; 
	width: 400px;
	height: 70px;
	margin: 0 auto 2em;
	background-color: #00aa83;
	color: #FFF;
	border-radius: 35px;
	font-weight: 500;
	font-size: 1.375rem;
	line-height: 1;
}
footer .btn a::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(../img/newtab.svg) no-repeat center center;
	background-size: contain;
}
footer .btn a:hover {
	opacity: .8;
}
footer .copy {
	font-weight: 500;
	font-size: .954rem;
}
@media screen and (max-width: 480px) {
	footer {
		padding: 60px 5vw 20px;
	}
	footer h2 {
		width: 100%;
	}
	footer .btn a {
		width: 100%;
		font-size: 1rem;
	}
}
