:root {
  --font-color-base: #595757;
  --font-color-secondary: #231815;
  --color-blue: #35a3dd;
  --color-blue-bg: #d8effc;
  --color-green: #16aba6;
  --color-green-bg: #f6f8de;
  --color-green2-bg: #edf6ec;
  --color-pink-bg: #fce9e8;
  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Hiragino Mincho Pro","Hiragino Mincho ProN",游明朝,"Yu Mincho",YuMincho,serif;
  --font-accent: "Poppins", sans-serif;
}


/*---------------------------------------------
  reset
---------------------------------------------*/

body {
	margin: 0;
	font-family: var(--font-base);
	font-weight: 500;
	font-size:20px;
	line-height:2;
	text-align: left;
	color:var(--font-color-base);
	background: #fff;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}


@media only screen and (max-width: 768px) {
	body {
		font-size:14px;
	}
}


#wrap {
	clear:both;
	overflow: hidden;
}

*{box-sizing: border-box;}
*:focus { outline: none;}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding:0;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	font-weight: normal;
}

ul {
	list-style:none;
}

dt {
	font-weight:normal;
}

a {
	color:var(--font-color-base);
	text-decoration:none;
	cursor: pointer;
	word-wrap:break-word;
	word-break: break-all;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}
a:hover { text-decoration:underline; }

img { width: 100%; }

ul.indent {
	text-indent: -1em;
}

@media screen and (min-width: 769px) { .sp {display: none;} }
@media screen and (max-width: 768px) { .pc {display: none;} }
@media screen and (max-width: 1080px) { 
	ul.indent {
		text-indent: -1em;
		padding-left: 1em;
	}
}

/*---------------------------------------------
  HEADER
---------------------------------------------*/

header {
	width: 100%;
	margin: 0 auto;
	padding: 0 32px;
}

header .header_inner {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 20px;
}

header h1 {
	width: 184px;
}

header ul li {
	width: 28px;
}
header ul li a {
	display: flex;
	align-items: center;
}
header ul li a:hover {
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
	header {
		padding: 0 16px;
	}

	header .header_inner {
		padding: 10px 12px;
	}

	header h1 {
		width: 160px;
	}

	header ul li {
		width: 24px;
	}
}

/*---------------------------------------------
  MAIN
---------------------------------------------*/

.inview {
	opacity: 0;
	transform: translateY(100px);
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	-ms-transition: 1s;
	transition: 1s;
}

.inview.view-in {
	opacity: 1;
	transform: translateY(0);
}

main {
	width: 100%;
	margin: 0 auto;
	padding: 0 32px;
}

#contents {
	overflow: hidden;
	clear: both;
}

#contents .contents_box {
	margin-bottom: 30px;
	padding: 70px 56px;
}

#contents .contents_box h2 {
	margin-bottom: 24px;
	font-size: 1.9em;
	line-height: 2.2;
}

#contents .contents_box .contents_inner {
	max-width: 1070px;
	margin: 0 auto;
}

#contents .contents_box .contents_inner-small {
	max-width: 680px;
	margin: 0 auto;
	font-family: var(--font-serif);
}

#contents .contents_box .contents_inner-small p {
	line-height: 2.4;
}

#contents .contents_box .framebox {
	background: #fff;
	border: solid 6px;
	border-radius: 20px;
	overflow: hidden;
}

#contents .contents_box .framebox h3 {
	color: #fff;
	text-align: center;
	padding: 36px 1em;
	font-size: 1.37em;
}

#contents .contents_box .framebox h4 {
	color: #fff;
	text-align: center;
	padding: 18px 0;
	font-size: 1.6em;
}

#contents .contents_box .framebox.green { border-color: var(--color-green); }
#contents .contents_box .framebox.green .framebox_title { background: var(--color-green); }
#contents .contents_box .framebox.blue { border-color: var(--color-blue); }
#contents .contents_box .framebox.blue  .framebox_title { background: var(--color-blue); }

@media only screen and (max-width: 768px) {
	main {
		padding: 0 16px;
	}

	#contents .contents_box {
		margin-bottom: 16px;
		padding: 32px 16px;
	}

	#contents .contents_box h2 {
		font-size: 1.7em;
		line-height: 2;
	}

	#contents .contents_box .framebox {
		border: solid 4px;
		border-radius: 16px;
	}
	
	#contents .contents_box .framebox h3 {
		padding: 20px 1em;
		font-size: 1.3em;
		line-height: 1.5;
	}

	#contents .contents_box .framebox h4 {
		color: #fff;
		text-align: center;
		padding: 12px 0;
		font-size: 1.4em;
	}
}

/*--------------------
  hero
--------------------*/

#hero-area {
	margin-bottom: 30px;
	line-height: 0;
}

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

	#hero-area {
		margin-bottom: 16px;
	}
}

/*--------------------
  lead
--------------------*/

#lead {
	background: var(--color-blue-bg);
	color: var(--font-color-secondary)
}

#lead .logo {
	width: 30%;
	max-width: 147px;
	margin: 70px 24px 0;
}

/*--------------------
  project details
--------------------*/

#project-details {
	background: var(--color-green-bg);
}

#project-details .saying {
	max-width: 860px;
	margin: 0 auto 30px;
	font-size: 1.2em;
	font-family: var(--font-serif);
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	font-feature-settings: "palt";
}

#project-details .saying p {
	width: 100%;
	line-height: 1.8;
}

#project-details .saying p:last-of-type {
	text-align: right;
	margin-top: 0.8em;
}


/*detail*/
#project-details .detail_box {
	margin-bottom: 64px;
}

#project-details .detail_box .detail {
	padding: 60px 40px 54px;
	font-size: 1.16em;
}

#project-details .detail_box .detail dl {
	border-bottom: solid 3px var(--color-green);
	margin-bottom: 24px;
	padding-bottom: 24px;
}

#project-details .detail_box .detail dl:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

@media only screen and (min-width: 1081px) {
	#project-details .detail_box .detail dl {
		display: flex;
		justify-content: flex-start;
	}

	#project-details .detail_box .detail dt {
		width: 180px;
	}

	#project-details .detail_box .detail dd {
		flex: 1;
	}
}

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

	#project-details .detail_box .detail dt {
		font-weight: 700;
	}
}

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

	#project-details .detail_box .detail {
		padding: 40px 16px 32px;
	}
	
	#project-details .detail_box .detail dl {
		border-bottom: solid 2px var(--color-green);
		padding: 0 5px 24px;
	}

}

/*project*/
#project-details .project p.task {
	width: 90%;
	margin: 0 auto;
	font-size: 0.96em;
}
#project-details .project .shaft {
	width: 80%;
	margin: 68px auto 0;
		line-height: 1.2;
}

#project-details .activity .activity_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#project-details .activity .activity_list .framebox {
	width: 40%;
	border-width: 5px;
	margin: 0 18px 44px;
}

#project-details .activity .activity_list .activity-1.framebox {
	width: 65%;
}

#project-details .activity .activity_list .framebox h4 {
	font-family: var(--font-accent);
	font-weight: 600;
}

#project-details .activity .activity_list .framebox .detail {
	padding: 46px 46px 32px;
	font-size: 0.828em;
	text-align: center;
	line-height: 1.8;
}

#project-details .activity .activity_list .activity-1.framebox .detail {
	padding: 46px 56px 32px;
}

#project-details .activity .activity_list .framebox .detail span {
	font-size: 0.828em;
	line-height: 2.2;
	display: block;
}

#project-details .activity .activity_list .framebox .detail ul {
	margin-top: 1em;
}

#project-details .activity .activity_list .framebox .detail li {
	padding: 0 10%;
}


@media only screen and (min-width: 769px) {

	#project-details .activity .activity_list .framebox .detail ul {
		display: flex;
		justify-content: center;
	}

	#project-details .activity .activity_list .activity-1.framebox .detail li {
		margin: 0 1.5%;
		padding: 0;
	}

	#project-details .activity .activity_list .activity-2.framebox .detail ul {
		margin-top: 2.8em;
	}
}

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

	#project-details .activity .activity_list .framebox {
		width: 48%;
		margin: 0 1% 44px;
	}

	#project-details .activity .activity_list .framebox .detail {
		padding: 46px 24px 32px;
	}
	
	#project-details .activity .activity_list .activity-1.framebox .detail {
		padding: 46px 24px 32px;
	}

	#project-details .activity .activity_list .activity-2.framebox .detail ul {
		margin-top: 1em;
	}
}

@media only screen and (max-width: 768px) {
	#project-details .project .shaft {
		width: 100%;
		margin-top: 32px;
	}

	#project-details .activity .activity_list .framebox {
		width: 100%;
		border-width: 3px;
		margin: 0 16px 16px;
	}

	#project-details .activity .activity_list .activity-1.framebox {
		width: 100%;
	}

	#project-details .activity .activity_list .framebox .detail {
		padding: 32px 16px 26px;
		font-size: 0.9em;
		text-align: center;
		line-height: 1.8;
		letter-spacing: 0.1em;
	}

	#project-details .activity .activity_list .activity-1.framebox .detail {
		padding: 32px 16px 26px;
	}

	#project-details .activity .activity_list .framebox .detail span {
		font-size: 0.828em;
		line-height: 1.8;
	}

	#project-details .activity .activity_list .activity-1.framebox .detail li {
		margin-bottom: 0.5em;
	}
}


/*--------------------
  singing
--------------------*/

#singing {
	background: var(--color-pink-bg);
}

#singing.contents_box h2 {
	font-size: 2.3em;
	letter-spacing: 0.12em;
}

#singing .contents_inner-small {
	color: var(--font-color-secondary)
}

#singing.contents_box .contents_inner {
	margin-top: 94px;
}

/*title*/
#singing .contents_inner h3.framebox_title .title {
	font-family: var(--font-accent);
	font-weight: 600;
}

#singing .contents_inner h3.framebox_title .title span {
	font-size: 2em;
	display: block;
}

#singing .contents_inner h3.framebox_title .subtitle {
	font-size: 0.65em;
	line-height: 1.8;
}

@media only screen and (min-width: 1081px) {
	#singing .contents_inner h3.framebox_title {
		position: relative;
	}

	#singing .contents_inner h3.framebox_title .subtitle {
		text-align: left;
		position: absolute;
		right: 58px;
		top: 50%;
		transform: translateY(-50%);
	}

	#singing .contents_inner h3.framebox_title .subtitle span {
		display: block;
	}

}

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

	#singing .contents_inner h3.framebox_title .title {
		line-height: 1.1;
	}

}

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

	#singing .contents_inner h3.framebox_title .subtitle {
		margin-top: 1.5em;
	}

	#singing .contents_inner h3.framebox_title .subtitle span {
		display: inline-block;
		padding: 0 0.5em;
	}

}

/*inner*/
#singing .framebox_inner {
	padding: 42px 32px 66px;
}

#singing .framebox_inner .lead {
	width: 90%;
	padding-bottom: 30px;
	margin: 0 auto 52px;
	border-bottom: solid 6px var(--color-blue);
	font-size: 1.173em;
	letter-spacing: 0.05em;
}

#singing .framebox_inner p {
	margin-bottom: 80px;
	font-size: 1.05em;
	text-align: center;
}


@media only screen and (max-width: 768px) {
	#singing .framebox_inner {
		padding: 32px 16px;
	}

	#singing .framebox_inner .lead {
		width: 100%;
		margin: 0 auto 40px;
		border-bottom: solid 4px var(--color-blue);
	}

	#singing .framebox_inner p {
		margin-bottom: 40px;
	}
}

/*campaign*/
#singing .framebox_inner .campaign .action {
	color: var(--color-blue);
	display: flex;
	align-items: center;
	margin-left: 1em;
	line-height: 1.5;
}

#singing .framebox_inner .campaign .action .ttl {
	font-size: 0.96;
	margin-right: 0.5em;
}

#singing .framebox_inner .campaign .action .number {
	font-size: 2.4em;
}

#singing .framebox_inner .campaign dl {
	padding: 38px 28px;
	background: var(--color-blue);
	color: #fff;
	border-radius: 10px;
}

#singing .framebox_inner .campaign dt {
	font-family: var(--font-accent);
	font-weight: 600;
	font-size: 1.9em;
	line-height: 1.2;
	margin-bottom: 24px;
}

#singing .framebox_inner .campaign dd {
	font-size: 0.788em;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

@media only screen and (min-width: 1081px) {
	#singing .framebox_inner .campaign {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#singing .framebox_inner .campaign li {
		width: 31%;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}

	#singing .framebox_inner .campaign .action {
		flex: 1;
		height: 100%;
		min-height: 0%;
	}

	#singing .framebox_inner .campaign dl {
		flex: 4;
		height: 100%;
		min-height: 0%;
	}

}

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

	#singing .framebox_inner .campaign li {
		margin-bottom: 16px;
	}
}

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

	#singing .framebox_inner .campaign dl {
		padding: 28px 16px;
	}

	#singing .framebox_inner .campaign dt {
		margin-bottom: 16px;
	}

	#singing .framebox_inner .campaign dd {
		font-size: 0.9em;
	}
}

/*flow*/
#singing .flow {
	width: 70%;
	margin: 72px auto;
}

#singing .flow li {
	margin-bottom: 14px;
	padding-bottom: 48px;
	position: relative;
}

#singing .flow li::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: "";
	background: var(--color-blue);
	height: calc(tan(60deg) * 36px / 2);
	width: 36px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	transform: translateX(-50%);
}

#singing .flow li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

#singing .flow li:last-child::after {
	display: none
}

#singing .flow li .framebox {
	padding: 30px 40px;
	display: flex;
	align-items: center;
}

#singing .flow li .framebox .number {
	width: 88px;
	color: var(--color-blue);
	font-size: 2.3em;
	line-height: 1;
}

#singing .flow li .framebox p {
	flex: 1;
	line-height: 1.8;
}


@media only screen and (max-width: 1080px) {
	#singing .flow {
		width: 85%;
	}
}

@media only screen and (max-width: 768px) {
	#singing .flow {
		margin: 64px auto;
	}

	#singing .flow li {
		margin-bottom: 12px;
		padding-bottom: 30px;
	}

	#singing .flow li::after {
		height: calc(tan(60deg) * 20px / 2);
		width: 20px;
	}

	#singing .flow li .framebox {
		padding: 16px;
	}

	#singing .flow li .framebox .number {
		width: 60px;
	}
}


/*artist*/
#singing .artist {
	width: 90%;
	margin: 0 auto;
	padding: 28px 50px 28px 66px;
}

#singing .artist .biography .subtitle {
	font-size: 0.99em;
}

#singing .artist .biography .name {
	font-size: 2.7em;
	padding-left: 1em;
}

#singing .artist .biography .title {
	font-size: 0.8em;
}

#singing .artist .biography p {
	margin-top: 1em;
	font-size: 0.8em;
}


@media only screen and (min-width: 1081px) {
	#singing .artist {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	#singing .artist .biography {
		width: 52%;
		margin-right: 5%;
	}

	#singing .artist .bio_image {
		width: 40%;
	}
}

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

	#singing .artist {
		padding: 28px 30px;
	}
	
	#singing .artist .biography .subtitle,
	#singing .artist .biography .name,
	#singing .artist .biography .title {
		text-align: center;
	}
	
	#singing .artist .biography .name {
		padding: 0;
	}

	#singing .artist .biography p {
		margin-bottom: 2em;
	}

	#singing .artist .bio_image {
		width: 80%;
		max-width: 450px;
		margin: 0 auto;
	}
}

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

	#singing .artist {
		width: 100%;
		padding: 28px 16px;
	}

	#singing .artist .biography p {
		font-size: 0.99em;
	}
}


/*contact*/
#singing .contact {
	margin-top: 70px;
	font-size: 0.8em;
	display: flex;
	justify-content: center;
}
#singing .contact p {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	#singing .contact {
		margin-top: 40px;
	}
}

/*--------------------
  event
--------------------*/

#event {
	background: var(--color-green2-bg);
}

#event .framebox_inner {
	padding: 46px 38px 94px;
}

#event .event_inner {
	padding-bottom: 123px;
	margin-bottom: 96px;
	position: relative;
}

#event .event_inner::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	width: 95%;
	height: 8px;
	background: var(--color-green);
	transform: translateX(-50%);
}

#event .event_inner:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
}

#event .event_inner:last-of-type::after {
	display: none;
}

#event .event_inner .lead {
	margin-bottom:52px;
	font-size: 1.1em
}

#event .framebox .event_inner h4 {
	width: 95%;
	margin: 0 auto 34px;
	padding: 0 0 24px;
	color: var(--color-green);
	font-family: var(--font-base);
	font-size: 1.3em;
	font-weight: 400;
	letter-spacing: 0.08em;
	border-bottom: solid 2px var(--color-green);
}

#event .event_inner p {
	margin-bottom: 80px;
	font-size: 0.9em;
	text-align: center;
}


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

	#event .framebox_inner {
		padding: 32px 16px;
	}

	#event .event_inner {
		padding-bottom: 80px;
		margin-bottom: 60px;
		position: relative;
	}

	#event .event_inner::after {
		height: 6px;
	}

	#event .framebox .event_inner h4 {
		line-height: 1.5;
		margin: 0 auto 24px;
		padding: 0 0 16px;
	}

	#event .event_inner p {
		margin-bottom: 32px;
		text-align: left;
	}
}

/*hiroshima*/
#event .event_inner.summit h4 {
	letter-spacing: normal;
}

/*hiroshima*/
#event .hiroshima .image {
	width: 65%;
	margin: 0 auto;
}

#event .hiroshima .image ul {
	margin: 0 -1%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#event .hiroshima .image li {
	width: 48%;
	margin: 0 1% 2%;
	line-height: 0;
}

#event .hiroshima .image li:nth-child(1),
#event .hiroshima .image li:nth-child(6) {
	width: 98%;
}

#event .hiroshima .video {
	margin-top: 96px;
}

#event .hiroshima .video li {
		line-height: 0;
}

#event .hiroshima .video li a:hover {
		opacity: 0.8;
}

@media only screen and (min-width: 769px) {
	#event .hiroshima .video ul {
		margin: 0 -1%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	#event .hiroshima .video li {
		width: 30%;
		margin: 0 1% 2%;
		line-height: 0;
	}
}

@media only screen and (max-width: 768px) {
	#event .hiroshima .image {
		width: 100%;
		margin: 0 auto;
	}
	
	#event .hiroshima .video {
		margin-top: 62px;
	}

	#event .hiroshima .video li {
		margin-bottom: 16px;
	}
}

/*campaign*/
#event .campaign h5 {
	margin-left: 2.5%;
	padding: 10px 2em;
	display: inline-block;
	color: #fff;
	background: var(--color-green);
	border-radius: 8px;
	text-align: center;
	font-size: 0.9em;
	letter-spacing: 0.4em;
	line-height: 1;
}

#event .campaign .overview {
	margin: 1em auto 90px;
}

#event .campaign .overview .text {
	color: var(--color-green);
	font-size: 0.9em;
	line-height: 1.8;
	letter-spacing: 0.08;
}

#event .campaign .overview .image {
	width: 90%;
	margin-left: auto;
}

#event .campaign .sns {
	margin-bottom: 1.5em;
	font-size: 0.7em;
	letter-spacing: 0.05em;
}

#event .campaign dt {
	font-size: 0.9em;
	letter-spacing: 0.05em;
}

#event .campaign dd {
	margin-bottom: 1.5em;
	font-size: 0.7em;
	letter-spacing: 0.05em;
}


@media only screen and (min-width: 1081px) {

	#event .campaign .overview {
		position: relative;
	}

	#event .campaign .overview .text {
		position: absolute;
		top: 0;
		left: 0;
	}
}

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

	#event .campaign .overview .text .pc {
		display: none;
	}

	#event .campaign .overview .image {
		width: 100%;
		max-width: 880px;
		margin: 32px auto 0;
	}
}

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

	#event .campaign .overview {
		margin: 1em auto 60px;
	}
	
	#event .campaign .sns {
		font-size: 0.8em;
	}

	#event .campaign dt {
		font-size: 1em;
	}

	#event .campaign dd {
		font-size: 0.8em;
	}
}


/*--------------------
  schedule
--------------------*/

#schedule {
	background: var(--color-blue-bg);
	letter-spacing: 0.05em;
}

#schedule .framebox h3.framebox_title {
	padding: 36px 1em 36px 12%;
	text-align: left;
}

@media only screen and (max-width: 1080px) {
	#schedule .framebox h3.framebox_title {
		padding: 20px 1em;
	}
}

/*timeline*/
#schedule .timeline {
	margin-bottom: 46px;
}

#schedule .timeline .timeline_inner {
	padding: 56px 70px 56px 192px;
}

#schedule .timeline .timeline_inner ul {
	position: relative;
}

#schedule .timeline .timeline_inner ul::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 11px;
	height: 100%;
	background: var(--color-blue);
}

#schedule .timeline .timeline_inner ul::after {
	position: absolute;
    bottom: -22px;
    left: 5px;
    content: "";
    background: var(--color-blue);
    height: calc(tan(60deg) * 28px / 2);
    width: 28px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateX(-50%);
}

#schedule .timeline .timeline_inner li {
	padding-bottom: 82px;
	padding-left: 62px;
	position: relative;
}

#schedule .timeline .timeline_inner li:nth-child(2) { padding-bottom: 48px; }
#schedule .timeline .timeline_inner li:nth-child(3) { padding-bottom: 110px; }

#schedule .timeline .timeline_inner li::before {
	position: absolute;
	content: "";
	top: -2px;
	left: -6px;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background: var(--color-blue);
}

#schedule .timeline .timeline_inner li:first-child::before {
	left: -9px;
	width: 28px;
	height: 28px;
}

#schedule .timeline .timeline_inner dt {
	font-size: 0.9em;
	line-height: 1;
	margin-bottom: 0.5em;
}

#schedule .timeline .timeline_inner dd {
	font-size: 1.2em;
	line-height: 1.5;
	color: var(--color-blue);
}

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

	#schedule .timeline .timeline_inner {
		padding: 56px 32px 56px 60px;
	}
}

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

	#schedule .timeline .timeline_inner {
		padding: 32px 16px 32px 32px;
	}

	#schedule .timeline .timeline_inner ul::before {
		width: 7px;
	}

	#schedule .timeline .timeline_inner ul::after {
		bottom: -18px;
		left: 3px;
		height: calc(tan(60deg) * 24px / 2);
		width: 24px;
	}

	#schedule .timeline .timeline_inner li {
		padding-bottom: 62px;
		padding-left: 38px;
		position: relative;
	}
	#schedule .timeline .timeline_inner li:nth-child(2) { padding-bottom: 28px; }
	#schedule .timeline .timeline_inner li:nth-child(3) { padding-bottom: 90px; }
	
	#schedule .timeline .timeline_inner li::before {
		left: -6px;
		width: 19px;
		height: 19px;
	}

	#schedule .timeline .timeline_inner li:first-child::before {
		left: -9px;
		width: 24px;
		height: 24px;
	}
}

/*milestone*/
#schedule .milestone .milestone_inner {
	margin: 60px 36px 42px 52px;
}

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

	#schedule .milestone .milestone_inner {
		margin: 32px 16px;
	}
}

/*--------------------
  enquete
--------------------*/

#enquete {
	background: var(--color-green-bg);
	letter-spacing: 0.05em;
}

#enquete dl {
	width: 90%;
	margin: 0 auto;
	color: var(--color-green);
}

#enquete dt {
	font-size: 1.2em;
	margin-bottom: 24px;
}

#enquete dd {
	font-size: 0.9em;
}

#enquete dd a {
	color: var(--color-green);
}


@media only screen and (max-width: 768px) {
	#enquete dl {
		width: 100%;
	}
}

/*---------------------------------------------
  FOOTER
---------------------------------------------*/

footer {
	width: 100%;
	margin: 0 auto;
	padding: 0 32px;
	color: var(--font-color-secondary);
	letter-spacing: 0.05em;
}

footer .footer_inner {
	padding: 46px;
}

footer a {
	color: var(--font-color-secondary);
}

footer p {
	margin-bottom: 1.5em;
}

footer ul {
	display: flex;
	align-items: center;
}

footer ul.sponsored {
	flex-wrap: wrap;
}

footer ul.sponsored li {
	margin:0 5% 0 0;
}

footer ul.logo li {
	height: 8%;
	max-height: 68px;
	margin: 60px 5% 0;
}

footer ul.logo li img {
	height: 100%;
	max-height: 68px;
}


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

	footer .footer_inner {
		padding: 46px 0;
	}

	footer ul.sponsored li {
		width: 100%;
		margin:0;
	}

	footer ul.logo li {
		margin: 40px 4% 0;
	}

}
