@charset "UTF-8";
/* CSS Document */
/*
	reset
-----------------------------------------------------------------------------------------------*/
html{
	margin: 0;
	padding: 0;
	font-size: 62.5%;
}
body{
	margin: 0;
	padding: 0;
	/* font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	font-size: 1.4em;
 	font-weight: 400;
	font-feature-settings: 'palt';
	overflow-wrap: break-word;
	word-break: break-all; */
}
#main {
	width: 100%;
	padding: 0;
	margin: 0;
	font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	font-size: 1.4em;
 	font-weight: 400;
	font-feature-settings: 'palt';
	overflow-wrap: break-word;
	word-break: break-all;
}
#main * {
	font-family: "Noto Sans JP", 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
}
h1, h2, h3, h4, h5, h6, p,figure,ul,ol,li,dl,dt,dd{
	margin: 0;
	padding: 0;
	line-height: 100%;
}
p{
	font-size: 100%;
}

*,*::before,*::after{
	box-sizing: border-box;
}
header,footer,section,aside,nav,article,main{
	display: block;
}
ul li,ol li{
	list-style: none;
}
img {
	border: none;
	vertical-align: top;
	margin: 0;
	padding: 0;
}
a{
	line-height: 125%;
	color: var(--c-blue);
	text-decoration: none;
	transition: color 0.25s;
	cursor: pointer;
}
a:link,a:visited{
	color: var(--c-blue);
}
a:hover{
	text-decoration: none;
	transition: 0.5s;
}
button{
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
}
button:hover{
	cursor: pointer;
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}

	/* tel pc only */
	a[href^="tel:"]{
		pointer-events: none;
	}
}
@media screen and (max-width: 812px){
	* :hover{
		
	}
	body {
		-webkit-text-size-adjust: 100%;
	}
}
/*
	common
-----------------------------------------------------------------------------------------------*/
.wrapper {
	overflow: hidden;
}
/* pc sp */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}

/* font */
.bold{
	font-weight: 700;
}
.semi{
	font-weight: 600;
}
.medium{
	font-weight: 500;
}
.regular{
	font-weight: 400;
}
.en {
	font-family: "Gabarito", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

@media screen and (max-width:812px){
	p{
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
}
/*
	base
-----------------------------------------------------------------------------------------------*/
/* 変数 */
:root{
	/* color */
	--c-black: #000000;
	--c-blue: #1D3A62;
	--c-yellow: #FFFF00;
	--c-grey: #F1F2F0;
	--c-yellowGreen: #ECFFD3;

	/* width */
	--width-col1: 1200px;

	/* gradation */
	--gd-main: linear-gradient(90deg, rgba(236,255,211,1) 0%, rgba(17,211,255,1) 89%);


}

/* wrapper */
#wrapper{
	position:relative;
}

/* ctsArea */
.ctsArea{
	width: var(--width-col1);
	margin: 0 auto;
	padding-inline: 30px;
	position: relative;
	padding-block: 150px;
}
.subCtsArea {
	max-width: 1040px;
	margin: 0 auto;
	padding: 110px 70px;
}

/* mainArea 背景画像 */
.bgImg {
	position: relative;
	background: url(../images/bg_main_pc.png)no-repeat center center / cover;
}
.bgImg::before {
	position: absolute;
    content: "";
    width: 359px;
    height: 909px;
    background: url(../images/img_mainLeftDeco.svg) no-repeat center center / cover;
    top: 150px;
    left: 0px;
}
.bgImg::after {
	position: absolute;
    content: "";
    width: 433px;
    height: 606px;
    background: url(../images/img_mainRightDeco.svg) no-repeat center center / cover;
    bottom: 0px;
    right: 0px;
}

/* 背景色 */
.bgGray{
	background-color: var(--c-grey);
}

/* ボタン */
a.btnBase {
	display: inline-block;
	position: relative;
	font-size: 1.8rem;
	letter-spacing: .5rem;
	font-weight: 600;
	color: #fff;
	padding: 10px 45px 12px 27px;
	background-color: var(--c-blue);
	border-radius: 50px;
	transition: 0.5s;
}
.btnBase::before {
	position: absolute;
	content: "";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #fff;
	top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.btnBase::after {
	position: absolute;
    content: "";
    width: 8px;
    height: 10px;
	background-color: var(--c-blue);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
	top: 50%;
    right: 21px;
	transform: translateY(-50%);
}
.btnBase:hover {
	opacity: .8;
	transition: 0.5s;
}
.subContentsArea .btnArea {
	margin-top: 15px;
}
.subContentsArea .btnBase {
	padding: 7px 30px 8px 15px;
	font-size: 1.2rem;
	letter-spacing: .15rem;
}
.subContentsArea .btnBase::before {
	width: 15px;
	height: 15px;
    right: 11px;
}
.subContentsArea .btnBase::after {
    width: 6px;
    height: 7px;
    right: 15px;
}
.btnOutage {
	pointer-events: none;
	opacity: 0.5;
}

/* タイトル・テキスト */
.titBase {
	position: relative;
	display: inline-block;
	width: 315px;
	color: var(--c-blue);
	background-image: var(--gd-main);
	border-radius: 50px;
	font-size: 2.3rem;
	letter-spacing: .5rem;
	line-height: 2.4;
	font-weight: 600;
}
.titBase::before {
	position: absolute;
	content: "";
	width: 316px;
	height: 65px;
	background: url(../images/tit_deco.svg)no-repeat center center / cover;
	top: -2px;
	left: -3px;
}
.txtBase {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: .25rem;
}

/* h3 */
.timetableBox .time {
	font-family: "Manrope", sans-serif;
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--c-blue);
	margin-bottom: 20px;
}

/* h4 */
.mainContentsArea .contentName {
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: .25rem;
	margin-bottom: 20px;
}

/* リスト */
.listBase {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.listBase li {
	font-weight: 600;
	color: var(--c-blue);
	border-radius: 30px;
}

/*
	kvArea
-----------------------------------------------------------------------------------------------*/
#kv {
	position: relative;
	height: 763px;
	background: url(../images/bg_kv_pc.png)no-repeat center center / cover;
	z-index: 1;
}

/* 背景写真
============================== */
.kvPic01 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.kvPic02 {
	position: absolute;
	top: -10px;
	right: 100px;
	z-index: -1;
}
.kvPic03 {
	position: absolute;
	bottom: -20px;
	right: 0;
	z-index: -1;
}

/* タイトルとサブタイトル
============================== */
.kvMaintits {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-block: 135px 110px;
}
.kvTit {
	margin-bottom: 15px;
}
.kvTit img {
	width: 692px;
}
.kvTxt {
	position: relative;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .6rem;
}
.kvTxt::before {
	position: absolute;
	content: "";
	width: 55px;
	height: 1px;
	top: 50%;
	left: -70px;
	background-color: var(--c-black);
}
.kvTxt::after {
	position: absolute;
	content: "";
	width: 55px;
	height: 1px;
	top: 50%;
	right: -60px;
	background-color: var(--c-black);
}

/* 日程とボタン
============================== */
.kvtxtBtn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}
.kvBtnArea {
	position: relative;
}
.kvBtnBase {
	display: inline-block;
	padding: 25px 160px;
	background-image: var(--gd-main);
	border-radius: 50px;
	border: 1px solid var(--c-blue);
	font-size: 3rem;
	letter-spacing: .5rem;
	font-weight: 600;
	transition: 0.5s;
}
.kvBtnBase:hover {
	opacity: .8;
	transition: 0.5s;
}

/* スライダー
============================== */
#logoSliderArea {
	border-bottom: 1px solid #BEBEBE;
	background: #fff;
	position: relative;
	z-index: 2;
}
.logoSliderList{
	display: flex;
	align-items: center;
	list-style: none;
	padding: 20px 0;
	animation: infinity-scroll-left 50s infinite linear 0s both;
}
@keyframes infinity-scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}


/*
	about
-----------------------------------------------------------------------------------------------*/
#about {
	text-align: center;
	margin-bottom: 120px;
}

/*
	timetable
-----------------------------------------------------------------------------------------------*/
#timetable {
	position: relative;
	text-align: center;
	padding-top: 30px;
	z-index: 1;
}

/* timetableBox
============================== */
.timetableBox {
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
	box-shadow: 0px 0px 22px -8px #777777;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	gap: 100px 0;
}
#timetable h2 {
	position: absolute;
	top: 0px;
	left: 50%;
	transform:translateX(-50%);
	z-index: 1;
}

/* mainContentsArea
============================== */
/* mainContentBox*/
.mainContentBox {
	position: relative;
	padding: 25px;
	background-color: #fff;
	border: 1px solid var(--c-blue);
	border-radius: 30px;
	box-shadow: 5px 5px 0px 0 var(--c-yellowGreen);
}

/* deco*/
.deco::before {
	position: absolute;
	content: "";
}
.opning .deco::before {
	width: 185px;
	height: 70px;
	background: url("../images/deco_opening.svg") no-repeat center center / cover;
	top: -30px;
	left: -21px;
}
.talkSession01 .deco::before {
	width: 212px;
	height: 100px;
	background: url("../images/deco_talkSct01.svg") no-repeat center center / cover;
	top: -39px;
    left: -19px;
}
.talkSession02 .deco::before {
	width: 216px;
	height: 100px;
	background: url("../images/deco_talkSct02.svg") no-repeat center center / cover;
	top: -38px;
    left: -14px;
}
.ending .deco::before {
	width: 176px;
	height: 83px;
	background: url("../images/deco_ending.svg") no-repeat center center / cover;
	top: -35px;
    left: -20px;
}
.mainContentBox .btnArea {
	margin-top: 22px;
}

/* リスト */
.contentsList li {
	font-size: 2.2rem;
	letter-spacing: .25rem;
	padding: 12px 30px;
	background-color: var(--c-yellowGreen);
}
.companyNameList li {
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .25rem;
	padding: 7px 20px;
	background-color: var(--c-grey);
	margin-top: 15px;
}


/* subContentsArea
============================== */
.subContentsArea {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;

}
.subContentsArea li {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: calc((100% - 45px) / 4);
	background-color: #fff;
	border: 3px solid var(--c-yellowGreen);
	border-radius: 30px;
	padding: 7px 25px 15px;
}
.subContentsArea .txt {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 75px;

}
.subContentsArea .txt span {
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--c-blue);
	line-height: 2.3;
	letter-spacing: .25rem;
	border-bottom: 1px solid var(--c-blue);
	padding-bottom: 4px;
}

/*
	sp
-----------------------------------------------------------------------------------------------*/

@media screen and (max-width:812px){
	/* ctsArea */
	.ctsArea{
		width: 100%;
		padding-inline: 20px;
		padding-block: 35px 55px;
		max-width: 500px;
		min-width: 320px;

	}
	.subCtsArea {
		max-width: 100%;
		padding: 55px 15px;
	}

	/* mainArea 背景画像 */
	.bgImg {
		background: url(../images/bg_main_sp.png)no-repeat center center / cover;
	}
	.bgImg::before {
		width: 130px;
		height: 329px;
		top: 200px;
	}
	.bgImg::after {
		width: 160px;
        height: 224px;
	}

	/* ボタン */
	a.btnBase {
		font-size: 1.4rem;
		letter-spacing: .25rem;
		padding: 10px 40px 10px 23px;
	}
	.btnBase::before {
		width: 17px;
		height: 17px;
		right: 18px;
	}
	.btnBase::after {
		width: 6px;
        height: 8px;
        right: 23px;
	}

	/* タイトル・テキスト */
	.titBase {
		width: 228px;
        font-size: 1.6rem;
        letter-spacing: .5rem;
        line-height: 2.4;
	}
	.titBase::before {
        width: 230px;
        height: 47px;
        top: -1px;
        left: 1px;
	}
	.txtBase {
		font-size: 1.4rem;
		text-align: justify;
	}
	.subContentsArea .btnArea {
		margin-top: 15px;
	}
	.subContentsArea .btnBase {
		padding: 7px 30px 8px 15px;
		font-size: 1.2rem;
		letter-spacing: .15rem;
	}
	.subContentsArea .btnBase::before {
		width: 15px;
		height: 15px;
		right: 11px;
	}
	.subContentsArea .btnBase::after {
		width: 6px;
		height: 7px;
		right: 15px;
	}

	/* h3 */
	.timetableBox .time {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}

	/* h4 */
	.mainContentsArea .contentName {
		font-size: 1.2rem;
		margin-bottom: 15px;
	}

	/* リスト */
	.listBase {
		flex-direction: column;
		gap: 10px;
		max-width: 260px;
		margin: 0 auto;
	}
	.listBase li {
		font-weight: 600;
		color: var(--c-blue);
		border-radius: 30px;
	}

	/*
		kvArea
	-----------------------------------------------------------------------------------------------*/
	#kv {
		height: 525px;
		background: url(../images/bg_kv_sp.png)no-repeat center center / cover;
	}

	/* 背景写真
	============================== */
	.kvPic01 {
		width: 245px;
		top: 100px;
		left: 0;
	}
	.kvPic02 {
		width: 270px;
		right: 15px;
	}
	.kvPic03 {
		width: 125px;
		bottom: -20px;
		right: 0;
	}

	/* タイトルとサブタイトル
	============================== */
	.kvMaintits {
		padding-block: 100px 45px;
	}
	.kvTit {
		margin-bottom: 7px;
	}
	.kvTit img {
		width: 340px;
	}
	.kvTxt {
		font-size: 1.5rem;
		letter-spacing: .35rem;
	}
	.kvTxt::before {
		width: 25px;
		left: -30px;
	}
	.kvTxt::after {
		width: 25px;
		right: -27px;
	}

	/* 日程とボタン
	============================== */
	.kvBtnBase {
		padding: 12px 103px;
		font-size: 1.8rem;
		letter-spacing: .3rem;
	}
	.kvtxtBtn {
		gap: 15px;
	}
	.kvtxtBtn img {
		width: 275px;
	}

	/* スライダー
	============================== */
	.logoSliderList{
		padding: 10px 0;
	}
	.logoSliderList li {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.logoSliderList li img{
		height: 35px;
	}

	/*
		about
	-----------------------------------------------------------------------------------------------*/
	#about {
		margin-bottom: 35px;
	}
	#about p {
		margin: 0 auto;
	}

	/*
		timetable
	-----------------------------------------------------------------------------------------------*/
	#timetable {
		padding-top: 17px;
	}

	/* timetableBox
	============================== */
	.timetableBox {
		border-radius: 25px;
		gap: 45px 0;
	}
	#timetable h2 {
		position: absolute;
		top: 0px;
		left: 50%;
		transform:translateX(-50%);
		z-index: 1;
	}

	/* mainContentsArea
	============================== */
	/* mainContentBox*/
	.mainContentBox {
		border-radius: 20px;
		padding: 15px;
		margin-bottom: 15px;
	}

	/* deco*/
	.opning .deco::before {
		width: 106px;
        height: 40px;
        top: -13px;
        left: -3px;
	}
	.talkSession01 .deco::before {
		width: 120px;
        height: 56px;
        top: -22px;
        left: -9px;
	}
	.talkSession02 .deco::before {
		width: 122px;
        height: 56px;
        top: -22px;
        left: -7px;
	}
	.ending .deco::before {
		width: 100px;
        height: 47px;
        top: -19px;
        left: -11px;
	}
	.mainContentBox .btnArea {
		margin-top: 15px;
	}

	/* リスト */
	.contentsList li {
		font-size: 1.6rem;
		line-height: 1.35;
		padding: 7px 30px;
	}
	.companyNameList li {
		font-size: 1.4rem;
		font-weight: 500;
		letter-spacing: .25rem;
		padding: 7px 20px;
		background-color: var(--c-grey);
		margin-top: 0px;
	}
	.companyNameList li:first-child {
		margin-top: 10px;
	}


	/* subContentsArea
	============================== */
	.subContentsArea {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 10px;
        margin-top: 0px;

	}
	.subContentsArea li {
		width: 100%;
		border-radius: 20px;
		padding:15px;
	}
	.subContentsArea .txt {
		min-height: 25px;

	}
	.subContentsArea .txt span {
		font-size: 1.4rem;
	}

	}

/*
	iPad
-----------------------------------------------------------------------------------------------*/
@media screen and (min-width: 678px) and (max-width: 812px) {
	/*
		kvArea
	-----------------------------------------------------------------------------------------------*/

	/* 背景写真
	============================== */
	.kvPic01 {
		width: 300px;
		top: -35px;
		left: 0;
	}
	.kvPic02 {
		width: 330px;
		right: 50px;
	}
	.kvPic03 {
		width: 180px;
		bottom: 0px;
		right: 0;
	}
}

/*
	animation
-----------------------------------------------------------------------------------------------*/
	.fadeInTrigger,.fadeInTrigger-2,.fadeInTrigger-3,.fadeInTrigger-4 {
	opacity: 0;
	}
	.fadeIn{
	animation-name: fadeInAnime;
	animation-duration:2.5s;
	animation-fill-mode:forwards;
	opacity:0;
	}
	.fadeIn-2 {
	animation-name: fadeInAnime;
	animation-delay: 0.5s;/* 何秒後に */
	animation-duration:1.5s;/* 何秒かけて */
	animation-fill-mode:forwards;
	opacity:0;
	}
	.fadeIn-3 {
	animation-name: fadeInAnime;
	animation-delay: 0.8s;/* 何秒後に */
	animation-duration:1.5s;/* 何秒かけて */
	animation-fill-mode:forwards;
	opacity:0;
	}
	.fadeIn-4 {
	animation-name: fadeInAnime;
	animation-delay: 1.1s;/* 何秒後に */
	animation-duration:1.5s;/* 何秒かけて */
	animation-fill-mode:forwards;
	opacity:0;
	}
	@keyframes fadeInAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
	}