@charset "UTF-8";
/* CSS Document */


/*============================
		reset.css
=============================*/

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
	width: 100%;
}

ol,

li{
	list-style: none;
}
ul {
	list-style: none;
	padding-left: 0px;
}

blockquote,
q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: '';
	content: none
}

table {
	border-collapse: collapse;
	border-spacing: 0
}



/*============================
	 　　　初期設定
=============================*/

html{
	overflow-x: hidden;
}
body {
	line-height: 0;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	margin: 0;
	width: 100%;
	position: relative;
	overflow-x: hidden;
}

/*画像サイズ*/
img{
	max-width:100%;
	height: auto;
}

/*リンク*/
a{
	color: #0066cc;
}

a:focus,
a:hover{
	color: #55AAFF;
}

/*脱炭素カラー*/
.eco_color{
	color: #18A963!important;
}

/*SPOBYカラー*/
.blue_color{
	color: #06c;
}

/*注意カラー*/
.red_color{
	color: red;
}

.wrapper{
	position: relative;
	line-height: 1;
}

/*矢印*/
.arrow{
	margin: 200px auto;
	width: 30px;
	display: block;
}

.sp_br{
	display: none;
}

@media screen and (max-width: 767px){
.arrow {
    margin: 100px auto;
    width: 20px;
    display: block;
}
	
.pc_br{
	display: none;
}
	
.sp_br{
	display: block;
}
}


/*============================
	 　　display: flex
=============================*/

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: stheimkpiloartie;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-justify-space-evenly {
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-direction-row-reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}


/*============================
	  fadeinアニメーション
=============================*/


.item{
  	opacity: 0;
}


.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  	transform: translateY(100px);
  }

  to {
    opacity: 1;
  	transform: translateY(0);
  }
}


/*============================
	  slideinアニメーション
=============================*/

.delaySlide.slid_bg::before{
	animation-name: slid_bg_left;
	animation-duration:1s;
	animation-delay: .2s;
	animation-timing-function: cubic-bezier(0.02, 0.22, 0.25, 1);
	animation-fill-mode: forwards;
}

@keyframes slid_bg_left{
	0%{
		transform-origin: left;
		transform: translateX(-100%);
	}
	
	100%{
		transform-origin: left;
		transform: translateX(0%);
	}
}

.delaySlide_r.slid_bg::before{
	animation-name: slid_bg_right;
	animation-duration:1s;
	animation-delay: 1s;
	animation-timing-function: cubic-bezier(0, 1.02, 0.25, 1);
	animation-fill-mode: forwards;
}

@keyframes slid_bg_right{
	0%{
		transform-origin: right;
		transform: translateX(100%);
	}
	
	100%{
		transform-origin: right;
		transform: translateX(0%);
	}
}

/*============================
	  文字アニメーション
=============================*/

.delayText.text_anime img{
	animation-name: text_anime;
	animation-duration:1s;
	animation-delay: 2s;
	animation-timing-function: cubic-bezier(0, 1.02, 0.25, 1);
	animation-fill-mode: forwards;
	opacity: 0;
}

.delayText.text_anime span{
	animation-name: text_anime;
	animation-duration:1s;
	animation-delay: 1.5s;
	animation-timing-function: cubic-bezier(0, 1.02, 0.25, 1);
	animation-fill-mode: forwards;
	opacity: 0;
}

.delayText.text_anime img{
	animation-delay: 1.6s;
}

.delayText.text_anime span:nth-child(2){
	animation-delay: 1.7s;
}

.delayText.text_anime span:nth-child(3){
	animation-delay: 1.8s;
}

.delayText.text_anime span:nth-child(4){
	animation-delay: 1.9s;
}

.delayText.text_anime span:nth-child(5){
	animation-delay: 2s;
}

@keyframes text_anime{
	0%{
		opacity: 0;
		transform: translateY(100px);
	}
	
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}



/*============================
	   	  header
=============================*/


/*ヘッダー部分のロゴのレイアウト*/
.header_wrapper .header_inner_logo{
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.header_inner_logo img:first-of-type{
	max-width: 120px;
	width: 100%;
}

.header_inner_logo img:last-of-type{
	max-width: 120px;
	width: 100%;
}

@media screen and (max-width: 320px){
	.header_inner_logo img:first-of-type{
	max-width: 100px;
	width: 100%;
}

.header_inner_logo img:last-of-type{
	max-width: 100px;
	width: 100%;
}
}

/*ヘッダー部分の背景画像とiphone画像のレイアウト*/
.header_wrapper .header_inner_image{
	position: relative;
}

.header_inner_image > img{
	animation-name: header-image;
	animation-duration: 1.3s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
@keyframes header-image{
	0%{
		opacity: 0;
		transform: scale(1.1);
	}
	
	100%{
		opacity: 1;
		transform: scale(1);
	}
}

.header_inner_image .pc{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}

.header_inner_image .sp{
	display: none;
	width: 100%;
	height: auto;
}

.header_inner_image .header_material img{
	position: absolute;
	top: 10%;
	left: 15%;
	width: 22%;
	height: auto;
	opacity: 0;
	
	animation-name: header-phone-image;
	animation-duration: .3s;
	animation-delay: 1s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
@keyframes  header-phone-image{
	0%{
		opacity: 0;
		transform: translateY(50px);
	}
	
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}

.header_inner_image .header_material  p{
	position: absolute;
	top:40%;
	left: 65%;
    font-size: 2vw;
	line-height: 1.7;
	color: #fff;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 10px;
    text-shadow: 0px 2px 10px rgb(0 0 0 / 20%);
	opacity: 0;
	
	animation-name: header-text-image;
	animation-duration: .3s;
	animation-delay: 1.2s;
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
	
@keyframes  header-text-image{
	0%{
		opacity: 0;
		transform: translateY(50px);
	}
	
	100%{
		opacity: 1;
		transform: translateY(0px);
	}
}


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

	
/*ヘッダー部分の背景画像とiphone画像のレイアウト*/	
.header_wrapper .header_inner_image .pc{
	display: none;
}

.header_wrapper .header_inner_image .sp{
	display: block;
}
	
.header_wrapper .header_inner_image .header_material img{
	top: 30%;
    left: 7%;
    width: 40%;
}

.header_wrapper .header_inner_image .header_material  p{
	position: absolute;
	top: 12%;
	left: 20%;
	font-size: 6vw;
	text-shadow: 0px 1px 6px rgb(0 0 0 / 20%);
}
}


@media screen and (max-width: 320px){
	
.about_wrapper .about_inner div .healthcare_title{
	font-size: 2rem;
}
	
/*ヘッダー部分の背景画像とiphone画像のレイアウト*/	
.header_wrapper .header_inner_image{
	position: relative;
}

.header_wrapper .header_inner_image .header_material img{
	top: 30%;
    left: 8%;
    width: 40%;
}
	
.header_wrapper .header_inner_image .header_material  p{
	position: absolute;
	width: 40%;
    font-size: 3vw;
	line-height: 2;
	text-shadow: 0px 0px 4px rgb(0 0 0 / 30%);
}
}


/*============================
	   ABOUT SPOBY
=============================*/


.about_wrapper{
	margin: 250px auto;
}
.about_wrapper  .about_inner{
	max-width: 1100px;
	margin: 0 auto;
}

.about_wrapper .about_inner .about_title{
	color: #0066cc;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	font-size: 2.3rem;
	text-align: center;
	letter-spacing: 3px;
	margin-bottom: 250px;
}

/*---- HEALTHCARE ----*/

.about_wrapper .about_inner .healthcare_content{
	display: flex;
	display: -webkit-box;  
	display: -webkit-flex; 
	display: -ms-flexbox;
	justify-content: space-around;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 200px;
}

.about_wrapper .about_inner div .healthcare_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: left;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}

.about_wrapper .about_inner .healthcare_content .healthcare_image {
	width: 60%;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail {
	width: 50%;
    position: relative;
    left: 80px;
    top: 40px;
    z-index: 1;
    background: #fff;
	padding: 20px 0;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:first-child {
	font-size: 1.4rem;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:last-child {
	font-size: 1rem;
	font-family: sans-serif;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 3px;
	color: #06c;
	margin-top: 40px;
}


/*---- REWARD ----*/

.about_wrapper .about_inner .reward_content{
	display: flex;
	display: -webkit-box;  
	display: -webkit-flex; 
	display: -ms-flexbox;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-orient: horizontal;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 200px;
}

.about_wrapper .about_inner div .reward_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: right;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}


.about_wrapper .about_inner .reward_content .reward_image {
	width: 60%;
}

.about_wrapper .about_inner .reward_content .reward_detail {
	width: 50%;
    position: relative;
    right: 80px;
    top: 40px;
    z-index: 1;
    background: #fff;
	padding: 20px;
}

.about_wrapper .about_inner .reward_content .reward_detail p:first-child {
	font-size: 1.4rem;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.about_wrapper .about_inner .reward_content .reward_detail p:last-child {
	font-size: 1rem;
	font-family: sans-serif;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 3px;
	color: #06c;
	margin-top: 40px;
}

/*---- CARBON NEUTRAL ----*/

.about_wrapper .about_inner .carbon_content{
	display: flex;
	display: -webkit-box;  
	display: -webkit-flex; 
	display: -ms-flexbox;
	justify-content: space-around;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 200px;
}

.about_wrapper .about_inner div .carbon_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: left;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}

.about_wrapper .about_inner .carbon_content .carbon_image {
	width: 60%;
}

.about_wrapper .about_inner .carbon_content .carbon_detail {
	width: 50%;
    position: relative;
    left: 80px;
    top: 40px;
    z-index: 1;
    background: #fff;
	padding: 20px;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:first-child {
	font-size: 1.4rem;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:last-child {
	font-size: 1rem;
	font-family: sans-serif;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 3px;
	color: #06c;
	margin-top: 40px;
}


@media screen and (max-width:1300px) and (min-width:768px){
.about_wrapper{
	margin: 50px;
}

.about_wrapper  .about_inner{
	max-width: 1100px;
	margin: 0 auto;
}

.about_wrapper .about_inner .about_title{
	color: #0066cc;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	font-size: 2.3rem;
	text-align: center;
	letter-spacing: 3px;
	margin: 200px auto 150px;
}
	
.header_wrapper .header_inner_image .header_material  p{
	text-shadow: 0px 0px 4px rgb(0 0 0 / 30%);
}

/*---- HEALTHCARE ----*/

.about_wrapper .about_inner div .healthcare_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: left;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}

.about_wrapper .about_inner .healthcare_content .healthcare_image {
	width: 100%;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail {
	width: 90%;
    left: 0;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:first-child {
	font-size: 1.1rem;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .9rem;
	margin-top: 30px;
}


/*---- REWARD ----*/

.about_wrapper .about_inner div .reward_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: right;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}


.about_wrapper .about_inner .reward_content .reward_image {
	width: 100%;
}

.about_wrapper .about_inner .reward_content .reward_detail {
	width: 90%;
    right: 0;
}

.about_wrapper .about_inner .reward_content .reward_detail p:first-child {
	font-size: 1.1rem;
}

.about_wrapper .about_inner .reward_content .reward_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .9rem;
	margin-top: 30px;
}

/*---- CARBON NEUTRAL ----*/

.about_wrapper .about_inner div .carbon_title{
	color: #C0D9F2;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	text-align: left;
	letter-spacing: 3px;
	font-size: 6.5rem;
	font-style: italic;
}

.about_wrapper .about_inner .carbon_content .carbon_image {
	width: 100%;
}

.about_wrapper .about_inner .carbon_content .carbon_detail {
	width: 90%;
    left: 0;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:first-child {
	font-size: 1.1rem;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .9rem;
	margin-top: 30px;
}
}


@media screen and (max-width: 767px){
	
.about_wrapper{
	margin: 0;
}

.about_wrapper  .about_inner{
	max-width: 100%;
	margin: 0 auto;
}

.about_wrapper .about_inner .about_title{
	font-size: 1.5rem;
	margin: 150px auto 100px;
}
	
/*---- HEALTHCARE ----*/
	
.about_wrapper .about_inner div .healthcare_title{
	font-size: 3rem;
}

.about_wrapper .about_inner .healthcare_content{
	display: block;
	margin-bottom: 100px;
}

.about_wrapper .about_inner .healthcare_content .healthcare_image {
	width: 100%;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail {
	width: 100%;
    position: relative;
    left: 0px;
    top: 0px;
	padding: 20px;
	box-sizing: border-box;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:first-child {
	font-size: 1rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .8rem;
	margin-top: 20px;
	letter-spacing: 2px;
}

/*---- REWARD ----*/
	
.about_wrapper .about_inner div .reward_title{
	font-size: 3rem;
}

.about_wrapper .about_inner .reward_content{
	display: block;
	margin-bottom: 100px;
}

.about_wrapper .about_inner .reward_content .reward_image {
	width: 100%;
}

.about_wrapper .about_inner .reward_content .reward_detail {
	width: 100%;
    position: relative;
    left: 0px;
    top: 0px;
	padding: 20px;
	box-sizing: border-box;
}

.about_wrapper .about_inner .reward_content .reward_detail p:first-child {
	font-size: 1rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .reward_content .reward_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .8rem;
	margin-top: 20px;
	letter-spacing: 2px;
}

/*---- CARBON NEUTRAL ----*/
	
.about_wrapper .about_inner div .carbon_title{
	font-size: 3rem;
}

.about_wrapper .about_inner .carbon_content{
	display: block;
	margin-bottom: 100px;
}

.about_wrapper .about_inner .carbon_content .carbon_image {
	width: 100%;
}

.about_wrapper .about_inner .carbon_content .carbon_detail {
	width: 100%;
    position: relative;
    left: 0px;
    top: 0px;
	padding: 20px;
	box-sizing: border-box;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:first-child {
	font-size: 1rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .8rem;
	margin-top: 20px;
	letter-spacing: 2px;
}
}


@media screen and (max-width: 320px){
.about_wrapper .about_inner .about_title{
	font-size: 1.2rem;
	margin: 120px auto 80px;
}

	
/*---- HEALTHCARE ----*/
	
.about_wrapper .about_inner div .healthcare_title{
	font-size: 2rem;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:first-child {
	font-size: .8rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .healthcare_content .healthcare_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .6rem;
	margin-top: 20px;
	letter-spacing: 2px;
}
	
	
/*---- REWARD ----*/
	
.about_wrapper .about_inner div .reward_title{
	font-size: 2rem;
}
	
.about_wrapper .about_inner .reward_content .reward_detail p:first-child {
	font-size: .8rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .reward_content .reward_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .6rem;
	margin-top: 20px;
	letter-spacing: 2px;
}
	
	
/*---- CARBON NEUTRAL ----*/
	
.about_wrapper .about_inner div .carbon_title{
	font-size: 2rem;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:first-child {
	font-size: .8rem;
	letter-spacing: 2px;
}

.about_wrapper .about_inner .carbon_content .carbon_detail p:last-child {
	font-family: sans-serif;
	font-weight: 400;
	font-size: .6rem;
	margin-top: 20px;
	letter-spacing: 2px;
}
}


/*============================
	  EVENT イベント詳細
=============================*/

.event_about_wrapper{
	margin: 250px auto;
}

.event_about_container{
	max-width: 1000px;
	margin: 0 auto;
}
.event_about_container::before{
	content: "";
	display: block;
	background: #F0F8FF;
	width: 200%;
    height: 2000px;
    position: absolute;
    z-index: -1;
    left: -50vw;
    transform: rotate(-20deg);
}

.event_about_container .event_title{
	color: #0066cc;
	font-weight: 600;
	font-size: 2.3rem;
	text-align: center;
	letter-spacing: 3px;
	margin-bottom: 200px;
}

/*---- コラボレーション----*/

.event_about_container .collabo_content{
	width: 100%;
	margin: 0 auto;
}

.event_about_container .collabo_content img{
	width: 25%;
	height: auto;
}

.event_about_container .collabo_content span{
	border: solid 3px;
}

.event_about_container .collabo_content span:first-of-type{
	position: relative;
	left: 9%;
	border: solid 3px #C82254;
	transform: rotate(-45deg);
}

.event_about_container .collabo_content span:last-of-type{
	position: relative;
	right: 8%;
	border: solid 3px #0066cc;
	transform: rotate(45deg);
}

.event_about_container .event_description{
	text-align: center;
	line-height: 2.5;
	margin-top: 100px;
	color: #0066cc;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: 5px;
}

.event_reward_container .reward_title{
	text-align: center;
	line-height: 2.5;
	margin: 300px auto 100px;
	color: #0066cc;
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: 5px;
}

.reward_title::before{
	content: "";
	height: 4px;
	background: #06c;
	width: 4%;
	margin-right: 50px;
}
.reward_title::after{
	content: "";
	height: 4px;
	background: #06c;
	width: 4%;
	margin-left: 50px;
}

@media screen and (max-width: 767px){
	
.event_about_wrapper {
    margin: 200px auto;
}
	
.event_about_container {
    max-width: 700px;
	width: 90%;
    margin: 0 auto;
}
.event_about_container .event_title{
	 font-size: 1.6rem;
     margin: 0px auto 80px;
}
	
.event_about_container::before {
    content: "";
    width: 300%;
    left: -100vw;
	height: 1700px;
}
	
/*---- コラボレーション----*/
	
.event_about_container .collabo_content {
    flex-direction: column;
}
	
.event_about_container .collabo_content img {
    width: 45%;
	margin: 0 auto;
}
	
.event_about_container .collabo_content img:first-of-type {
   padding-bottom: 60px;
}
	
.event_about_container .collabo_content img:last-of-type {
   padding-top: 60px;
}
	
.event_about_container .collabo_content span:first-of-type {
    position: relative;
    left: 0%;
    width: 10%;
	border: solid 1px #C82254;
    margin: 0 auto;
}
	
.event_about_container .collabo_content span:last-of-type {
    position: relative;
    right: 0%;
    width: 10%;
	border: solid 1px #0066cc;
    margin: 0 auto;
}
	
.event_about_container .event_description {
    margin-top: 70px;
    font-size: 1.2rem;
	text-align: left;
	line-height: 2;
}
	
.event_reward_container .reward_title {
    margin: 150px auto 20px;
    font-size: 1.3rem;
	line-height: 2;
	width: 90%;
}
	
.reward_title::before {
	display: none;
    content: "";
    height: 2px;
    width: 7%;
}
	
.reward_title::after {
	display: none;
    content: "";
    height: 2px;
    width: 7%;
}
}	
@media screen and (max-width:1300px) and (min-width:768px){

.event_reward_container .reward_title {
    margin: 150px auto 50px;
    font-size: 1.3rem;
	line-height: 2;
	
}
.reward_title::before {
	display: none;
	content: "";
	height: 2px;
	width: 7%;
}
	
.reward_title::after {
	display: none;
    content: "";
    height: 2px;
    width: 7%;
}
}


/*---- リワード掲載 ----*/
/*---- slick.css ----*/

.slider-3 .slick-slide {
  margin: 0 60px;
  padding: 60px 0;
  position: relative;
}
.slider-3 .slick-slide .slide-img {
  width: 600px;
  height: auto;
  transition: all 0.6s ease 0.4s;
  opacity: 0.8;
  overflow: hidden;
  background: #fff;
  box-shadow: 7px 7px 15px -5px rgba(0,0,0,10%);
  border-radius: 10px;
  position: relative;
}

.slider-3 .slick-slide .slide-img img{
  width: 100%;
}

.slider-3 .slick-slide .slide-img p{
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 3px;
  padding: 20px;
}

.slider-3 .slick-slide.slick-current .slide-img {
    transform: scale(1.2);
    opacity: 1;
}
.slider-3 .slick-slide .slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-3 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-3 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #09000d;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-3 .slick-next {
  right: 50px;
}
.slider-3 .slick-prev {
  left: 50px;
}
.slider-3 .slick-next::before {
  left: 20px;
}
.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-3 .slick-dots {
  text-align: center;
}
.dots-3 .slick-dots li {
  display: inline-block;
}
.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-3 .slick-dots .slick-active button {
  background: #0a467d;
}

@media screen and (max-width: 767px){
	
/*---- リワード掲載 ----*/
/*---- slick.css ----*/
	
.slider-3 .slick-slide .slide-img {
  width: 300px;
}
	
.slider-3 .slick-slide .slide-img p {
    font-size: .7rem;
}
	
.slider-3 .slick-arrow {
    top: 100%;
}
	
.slider-3 .slick-next {
  right: 20px;
}
	
.slider-3 .slick-prev {
  left: 20px;
}
}


/*次回以降のリワード掲載について*/
.event_reward_container .next_reward{
	max-width: 1000px;
	margin: 150px auto;
}

.event_reward_container .next_reward img{
	width: 60%;
	margin: 0 auto;
	display: block;
}

@media screen and (max-width: 767px){
.event_reward_container .next_reward {
    margin: 50px auto;
}

.event_reward_container .next_reward img{
	width: 80%;
	margin: 0 auto;
	display: block;
}
}


/*============================
	  イベント参加方法
=============================*/
.event_participation_wrapper{
	margin: 250px auto;
}

.event_participation_wrapper .event_participation_container{
	max-width: 1100px;
	margin: 0 auto;
}

.event_participation_container .event_participation_title{
	text-align: center;
    line-height: 2.5;
    margin: 300px auto 150px;
    color: #0066cc;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 5px;
}

@media screen and (max-width: 767px){
	
.event_participation_wrapper {
    margin: 200px auto 100px;
}

.event_participation_container .event_participation_title {
    margin: 100px auto 50px;
    font-size: 1.3rem;
}
}


/*----  STEP 01 ----*/
.st_01_content::before{
	content: "";
	background: #F0F8FF;
	height: 400px;
	width: 100%;
	position: absolute;
	z-index: -1;
	transform: translateX(-100%);
}

.st_01_image{
	text-align: center;
}

.st_01_content .st_01_image img{
	width: 60%;
}

.st_01_content .st_01_detail{
	padding: 30px 30px 30px 0;
	width: 70%;
	position: relative;
}

.st_01_content .st_01_detail h1{
	color: #C0D9F2;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: absolute;
	top: -110px;
}

.st_01_content .st_01_detail h2{
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.st_01_content .st_01_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 30px;
}

.st_01_content .st_01_detail img{
	display: inline-block;
	vertical-align: middle;
	width: 30%;
	margin-top: 20px;
}

@media screen and (max-width: 767px){
.st_01_content{
	display: block;
}
	
.st_01_content::before {
    content: "";
    height: 700px;
	margin-top: 20%;
}
	
.st_01_content .st_01_detail {
   padding: 30px 0px 30px 30px;
    width: 90%;
	margin: 0 auto;
    position: relative;
}
	
.st_01_content .st_01_detail h1 {
    color: #C0D9F2;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 3rem;
    font-style: italic;
    position: relative;
    top: 0px;
	margin-bottom: 20px;
}
	
.st_01_content .st_01_detail h2 {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 4px;
    color: #06c;
}
	
.st_01_content .st_01_detail p {
    font-size: .9rem;
    line-height: 2;
    letter-spacing: 3px;
    margin-top: 20px;
}
	
.st_01_content .st_01_detail img {
    width: 40%;
}
}


/*----  STEP 02 ----*/
.st_02_content{
	position: relative;
	margin-bottom: 250px;
}

.st_02_content::before{
	content: "";
	display: block;
	background: #F0F8FF;
	width: 350%;
    height: 3000px;
    position: absolute;
	top: 200px;
    z-index: -1;
    left: -60vw;
    transform: rotate(-20deg);
}

.st_02_image{
	text-align: center;
}

.st_02_content .st_02_image img{
	width: 50%;
}

.st_02_content .st_02_detail{
	padding: 30px 30px 30px 0;
	width: 70%;
}

.st_02_content .st_02_detail h1{
	color: #C0D9F2;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: relative;
	margin-bottom: 50px;
}

.st_02_content .st_02_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.st_02_content .st_02_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 30px;
}

.st_02_content .st_02_detail img{
	display: inline-block;
	vertical-align: middle;
	width: 30%;
	margin-top: 20px;
}



@media screen and (max-width: 767px){
.st_02_content{
	display: block;
	margin-bottom: 150px;
}
	
.st_02_content::before {
    content: "";
    width: 500%;
    height: 4000px;
    left: -200vw;
}
	
.st_02_content .st_02_detail {
   padding: 30px 0px 30px 20px;
    width: 90%;
	margin: 0 auto;
    position: relative;
}
	
.st_02_content .st_02_detail h1 {
    font-size: 3rem;
    font-style: italic;
    position: relative;
    top: 0px;
	margin-bottom: 20px;
}
	
.st_02_content .st_02_detail h2 {
    font-size: 1.2rem;
}
	
.st_02_content .st_02_image img{
	width: 40%;
}
}

@media screen and (max-width:1300px) and (min-width:768px){
.st_02_content::before{
	left: -80vw;
}
}


/*----  コミュニティとは？ ----*/
.community_content{
	margin-bottom: 250px;
}

.community_image{
	text-align: center;
}

.community_content .community_image img{
	width: 100%;
}

.community_content .community_detail{
	padding: 0px 0px 0px 40px;
	width: 80%;
	text-align: right;
}

.community_content .community_detail h2:first-child{
	margin-bottom: 50px;
	font-size: 2rem;
}

.community_content .community_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
	width: 80%;
    display: inline-block;
    text-align: left;
}

.community_content .community_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 30px;
}

.community_content .community_detail img{
	display: inline-block;
	vertical-align: middle;
	width: 30%;
	margin-top: 20px;
}


@media screen and (max-width:767px){
.community_content {
    margin-bottom: 150px;
	display: block;
}
	
.community_content .community_image img {
    width: 80%;
	margin: 0 auto;
}
	
.community_content .community_detail {
    padding: 30px 0px 30px 30px;
    width: 90%;
    text-align: right;
}
	
.community_content .community_detail h2:first-child {
    margin-bottom: 30px;
    font-size: 1.2rem;
}
	
.community_content .community_detail h2 {
    font-size: 1.1rem;
    width: 100%;
    display: inline-block;
    text-align: left;
}
}

/*---- コミュニティの登録方法 ----*/
.community_register_title{
	text-align: center;
    line-height: 2.5;
    margin: 200px auto 150px;
    color: #0066cc;
    font-size: 1.6rem;
    letter-spacing: 5px;
}

.community_register div{
	text-align: center;
}

.community_register div img{
	width: 70%;
    padding: 20px;
}

.community_register div h2{
	letter-spacing: 3px;
    font-size: 1.5rem;
}

.community_register div p{
	letter-spacing: 2px;
    font-size: 1.1rem;
    text-align: left;
    margin: 0 auto;
    line-height: 1.9rem;
    width: 90%;
    padding-top: 20px
}

.community_register div:nth-of-type(2) p{
	text-align: center;
}


@media screen and (max-width:767px){
.community_register_title {
    margin: 100px auto 100px;
    font-size: 1.3rem;
}
	
.community_register{
	display: block;
}
	
.community_register div {
    margin-bottom: 100px;
}
	
.community_register div img {
    width: 50%;
}
	
.community_register div p {
    letter-spacing: 2px;
    font-size: 1rem;
    width: 80%;
}
}


/*============================
	  「iD」「pass」発行
=============================*/

.register {
    background: #fff;
	width: 80%;
	padding: 50px 0;
	margin: 0 auto;
    border-radius: 10px;
	box-shadow: 0px 0px 20px 2px rgba(0,0,0,7%);
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0,0,0,7%);
	-ms-box-shadow: 0px 0px 20px 2px rgba(0,0,0,7%);
}

.register .explan_title{
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-size: 1.7rem;
	letter-spacing: 2px;
	color: #0066cc;
	font-weight: 600;
	line-height: 1.5;
}

.register .explan_textarea{
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-size: 1rem;
	letter-spacing: 2px;
	color: #06c;
	font-weight: 600;
	margin-top: 20px;
	line-height: 1.8;
}

.register .explan_announce{
	text-align: center;
	font-family: 'Heebo', sans-serif;
	font-size: 1rem;
	letter-spacing: 2px;
	color: #FF0004;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 100px;
	line-height: 1.8;
}

/*フォーム*/
form{
	padding: 50px 100px 0px 100px;
}

/*エラー時の文言*/
form .form_err {
	font-size: 1rem;
	font-weight: 600;
	color: red;
	margin: 20px auto;
}

form .form_result {
	margin: 20px auto 0;
    line-height: 2rem;
    letter-spacing: 4px;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	color: #0066cc;
	border-radius: 10px;
	white-space: pre-wrap;
	word-break: break-word
}

/*メールアドレス*/
form .email{
	margin-bottom: 50px;
}

form .email .email_title{
	font-size: 1.6rem;
	font-weight: 600;
	color: #06c;
}

form .email .email_title::after{
	content: "*";
	color: red;
}

form .email .email_input{
	display: block;
	margin-top: 10px;
	padding: 10px;
	border: solid 0px;
	background: whitesmoke;
	width:  100%;
	border-radius: 3px;
	font-size: 1.4rem;
	box-sizing: border-box;
}

form .email .email_announce{
	display: block;
	margin-top: 20px;
	color: #AEAEAE;
	font-family: 'Heebo', sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
}

/*規約*/
form .term_title{
	font-size: 1.6rem;
	font-weight: 600;
	color: #06c;
}

form .term_title::after{
	content: "*";
	color: red;
}

form .infobox{
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px 15px;
	height: 14em;
	overflow: hidden;
	border: 1px;
	border-radius: 5px;
	background-color: #ffffff;
	box-shadow: 0px 3px 20px 1px rgba(0,0,0,6%);
	-webkit-box-shadow: 0px 3px 20px 1px rgba(0,0,0,6%);
	-moz-box-shadow: 0px 3px 20px 1px rgba(0,0,0,6%);
	-ms-box-shadow: 0px 3px 20px 1px rgba(0,0,0,6%);
}

form .term{
	margin-top: 30px;
}

/*送信ボタン*/
.button{
	display: block;
	width: 40%;
	background: #0066cc;
	margin: 120px auto 0;
	text-align: center;
	color: #fff;
	padding: 20px;
	border-radius: 6px;
	font-size: 1.2rem;
	font-weight: 600;
}

/*送信中アニメーション*/
.modal-mask {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	display: table;
	transition: opacity .3s ease
}

.modal-wrapper {
	display: table-cell;
	vertical-align: middle;
}

.modal-container {
	width: 200px;
	margin: 0 auto;
	padding: 20px 30px;
	background-color: #fff;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
	transition: all .3s ease;
	line-height: 1.5rem;
	text-align: center;
	font-weight: 700
}

.modal-header {
	margin-top: 0;
}

.modal-body {
	margin: 20px 0 0;
}

.modal-enter {
	opacity: 0;
}

.modal-leave-active {
	opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

/*矢印*/
.arrow img{
	display: block;
	width: 2%;
	margin: 100px auto;
}

/*ダウンロード*/
.download{
	display: flex;
	display: -webkit-box;  
	display: -webkit-flex; 
	display: -ms-flexbox;
	justify-content: space-around;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
  	-webkit-box-direction: reverse;
  	-ms-flex-direction: row-reverse;
  	flex-direction: row-reverse;
	margin: 50px auto 0;
	max-width: 1000px;
	
}

.download .download_text p{
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 4px;
	margin-top: 30px;
	color: #0066cc;
}

.download .download_text .download_icon img{
	width: 25%;
	display: inline-block;
	margin-top: 40px;
}
.download_text .google{
	margin-left: 30px;
}

.download .download_img  {
	width: 45%;
}


@media screen and (max-width: 767px){
.register {
    width: 80%;
	margin: 0 auto;
    padding: 50px 20px;
    border-radius: 10px;
}
	
.register .explan_title {
    font-size: 1.1rem;
	text-align: left;
}
	
.register .explan_textarea {
    font-size: .8rem;
    text-align: left;
}
	
form {
    padding: 50px 0 0 0;
}
	
form .email .email_title {
    font-size: 1rem;
}
	
form .email .email_announce {
    display: block;
    margin-top: 20px;
	line-height: 1.5;
    letter-spacing: 2px;
	font-size: .8rem;
}
	
form .infobox{
	margin-top: 10px;
	margin-bottom: 0px;
	padding: 10px 15px;
	height: 400px;
	overflow: hidden;
	border: 1px;
	border-radius: 5px;
	background-color: #ffffff;
}
	
form .term_title {
    font-size: 1rem;
}
	
form .term {
    margin: 40px auto 30px;;
}
	
.button {
    width: 80%;
    font-size: 1rem;
	margin-top: 45px;
}
}

@media screen and (max-width:1300px) and (min-width:768px){
.register{
	width: 90%;
}
	
form {
    padding: 50px 50px 0px 50px;
}
}


/*----  STEP 03 ----*/
.location_information_wrapper{
	margin: 250px auto;
}

.location_information_wrapper .location_information_container{
	max-width: 1100px;
	margin: 0 auto;
}

.st_03_content::before{
	content: "";
	background-color: #F0F8FF;
	height: 400px;
	width: 100%;
	position: absolute;
	z-index: -1;
	transform: translateX(-100%);
}

.st_03_image{
	text-align: center;
}

.st_03_content .st_03_image img{
	width: 60%;
}

.st_03_content .st_03_detail{
	padding: 30px 30px 30px 0;
	width: 70%;
	position: relative;
}

.st_03_content .st_03_detail h1{
	color: #C0D9F2;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: absolute;
	top: -140px;
}

.st_03_content .st_03_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
	color: #06c;
}

.st_03_content .st_03_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 10px;
}

.location_information_title{
	text-align: center;
    line-height: 2.5;
    margin: 300px auto 150px;
    color: #0066cc;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 5px;
}


@media screen and (max-width: 767px){
.location_information_wrapper{
	margin: 100px auto;
}

.location_information_wrapper .location_information_container{
	max-width: 1100px;
	margin: 0 auto;
}
.st_03_content{
	display: block;
}
	
.st_03_content::before {
    content: "";
    height: 650px;
	margin-top: 20%;
}
	
.st_03_content .st_03_detail {
   padding: 30px 0px 30px 20px;
    width: 90%;
	margin: 0 auto;
    position: relative;
}
	
.st_03_content .st_03_detail h1 {
    color: #C0D9F2;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 3rem;
    font-style: italic;
    position: relative;
    top: 0px;
	margin-bottom: 20px;
}
	
.st_03_content .st_03_detail h2 {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 4px;
    color: #06c;
}
	
.st_03_content .st_03_detail p {
    font-size: .9rem;
    line-height: 2;
    letter-spacing: 3px;
    margin-top: 20px;
}
	
.st_03_content .st_03_detail img {
    width: 40%;
}
	
.location_information_title {
    margin: 0px auto 50px;
    font-size: 1.2rem;
	line-height: 2;
	padding: 30px;
}
}


/*----  CHECK 01 ----*/

.Decarbonization_wrapper{
	margin: 250px auto;
}

.Decarbonization_content::before{
	content: "";
	background: #EDFDF6;
	height: 400px;
	width: 100%;
	position: absolute;
	z-index: -1;
	transform: translateX(-200%);
}

.Decarbonization_image{
	text-align: center;
}

.Decarbonization_content .Decarbonization_image img{
	width: 60%;
}

.Decarbonization_content .Decarbonization_detail{
	padding: 30px 30px 30px 0;
	width: 70%;
	position: relative;
}

.Decarbonization_content .Decarbonization_detail h1{
	color: #D3F4E5;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: absolute;
	top: -120px;
}

.Decarbonization_content .Decarbonization_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
}

.Decarbonization_content .Decarbonization_detail h2:first-of-type{
	font-size: 2rem;
	margin-bottom: 10px;
}

.Decarbonization_content .Decarbonization_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 10px;
}


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

.Decarbonization_wrapper{
	margin: 0px auto;
}
	
.Decarbonization_content{
	display: block;	
	margin-bottom: 150px;
}
	
.Decarbonization_content::before {
    content: "";
    height: 670px;
	margin-top: 20%;
}
	
.Decarbonization_content .Decarbonization_detail {
   padding: 30px 0px 30px 20px;
    width: 90%;
	margin: 0 auto;
    position: relative;
}
	
.Decarbonization_content .Decarbonization_detail h1 {
	color: #b4e7cf;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 2rem;
    font-style: italic;
    position: relative;
    top: 0px;
	margin-bottom: 20px;
}
	
.Decarbonization_content .Decarbonization_detail h2 {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 4px;
    color: #06c;
}
	
.Decarbonization_content .Decarbonization_detail h2:first-of-type{
	font-size: 1.2rem;
	margin-bottom: 10px;
}
	
.Decarbonization_content .Decarbonization_detail p {
    font-size: .9rem;
    line-height: 2;
    letter-spacing: 3px;
    margin-top: 20px;
}
	
.Decarbonization_content .Decarbonization_detail img {
    width: 40%;
}
}


/*============================
	  脱炭素ウォークとは？
=============================*/

.Decarbonization_wrapper .Decarbonization_container{
	max-width: 1100px;
	margin: 0 auto;
}
.Decarbonization_about_title{
	text-align: center;
    line-height: 2.5;
    margin: 300px auto 150px;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 5px;
}

.Decarbonization_about_image{
	text-align: left;
}

.Decarbonization_about_content .Decarbonization_about_image img{
	width: 70%;
}

.Decarbonization_about_content .Decarbonization_about_detail{
	padding: 30px 0;
	width: 60%;
	position: relative;
	text-align: right;
}

.Decarbonization_about_content .Decarbonization_about_detail h1{
	color: #D3F4E5;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: absolute;
	top: -100px;
}

.Decarbonization_about_content .Decarbonization_about_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
	display: inline-block;
    text-align: left;
	width: 90%;
	margin-bottom: 50px;
}

.Decarbonization_about_content .Decarbonization_about_detail p{
    background: #18A964;
    border-radius: 100px;
    width: 90%;
    height: 60px;
    display: inline-block;
    line-height: 60px;
    margin-left: auto;
	text-align: center;
	box-shadow: 0px 3px 10px 1px rgba(0,0,0,20%);
	-webbkit-box-shadow: 0px 3px 10px 1px rgba(0,0,0,20%);
	-moz-box-shadow: 0px 3px 10px 1px rgba(0,0,0,20%);
	-ms-box-shadow: 0px 3px 10px 1px rgba(0,0,0,20%);
}

.Decarbonization_about_content .Decarbonization_about_detail a{
	font-size: 1rem;
	letter-spacing: 4px;
	color: #fff;
	text-decoration: none;
}


@media screen and (max-width:767px){
.Decarbonization_wrapper .Decarbonization_container{
	max-width: 1100px;
	margin: 0 auto;
}
.Decarbonization_about_title{
    margin: 0px auto 100px;
    font-size: 1.2rem;
}

.Decarbonization_about_image{
	text-align: left;
}

.Decarbonization_about_content{
	display: block;
	margin-bottom: 150px;
}

.Decarbonization_about_content .Decarbonization_about_image img{
	width: 80%;
	margin: 0 auto;
    display: block;
}

.Decarbonization_about_content .Decarbonization_about_detail{
	padding: 60px 0;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.Decarbonization_about_content .Decarbonization_about_detail h2{
	font-size: 1rem;
	width: 100%;
	margin-bottom: 50px;
}

.Decarbonization_about_content .Decarbonization_about_detail p{
    background: #18A964;
    border-radius: 100px;
    width: 100%;
}

.Decarbonization_about_content .Decarbonization_about_detail a{
	font-size: 1rem;
	letter-spacing: 4px;
	color: #fff;
	text-decoration: none;
}
}

/*============================
	  脱炭素ポイントについて
=============================*/

/*---- ライフスタイルポイント----*/
.Decarbonization_point_l-content{
	margin-bottom: 250px;
}

.Decarbonization_point_l-content::before{
	content: "";
	background: #EDFDF6;
	height: 500px;
	width: 78%;
	position: absolute;
	right: 0;
	z-index: -1;
	transform: translateX(100%);
}

/*余白*/
.mg-l{
	margin-left: 10%;
}

/*---- カンパニーポイント----*/

.Decarbonization_point_c-content{
	margin-bottom: 250px;
}

.Decarbonization_point_c-content::before{
	content: "";
	background: #EDFDF6;
	height: 500px;
	width: 78%;
	position: absolute;
	left: 0;
	z-index: -1;
	transform: translateX(-100%);
}

/*余白*/
.mg-c{
	margin-right: 10%;
}


/*脱炭素ポイント*/
.Decarbonization_point_title{
	text-align: center;
    line-height: 2.5;
    margin: 300px auto 150px;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 5px;
}

.Decarbonization_point_image{
	text-align: center;
}

.Decarbonization_point_image{
	width: 80%;
}

.Decarbonization_point_image div img{
	width: 20%;
}

.Decarbonization_point_image div span{
	font-size: 4rem;
	line-height: 2.5;
	letter-spacing: 4px;
}

.Decarbonization_point_image .delayScroll img{
	width: 40%;
}


.Decarbonization_point_detail{
	padding: 30px 0px;
	width: 70%;
	position: relative;
}

.Decarbonization_point_detail h1{
	color: #D3F4E5;
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    text-align: left;
    letter-spacing: 3px;
    font-size: 6.5rem;
    font-style: italic;
	position: absolute;
	top: -100px;
}

.Decarbonization_point_detail h2:first-of-type{
	font-size: 2rem;
	margin-bottom: 20px;
}

.Decarbonization_point_detail h2{
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 4px;
	width: 100%;
	margin-bottom: 20px;
}

.Decarbonization_point_detail p:first-of-type{
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 10px;
}

.Decarbonization_point_detail p{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 10px;
}


@media screen and (max-width: 767px){
	
/*---- ライフスタイルポイント----*/
	
.Decarbonization_point_l-content > div{
	display: block;
}
	
.Decarbonization_point_l-content{
	margin-bottom: 100px;
}

.Decarbonization_point_l-content::before{
	content: "";
	height: 750px;
}

/*余白*/
.mg-l{
	margin-left: 0%;
}
	
/*---- カンパニーポイント----*/
	
.Decarbonization_point_c-content > div{
	display: block;
}
	
.Decarbonization_point_c-content{
	margin-bottom: 100px;
}

.Decarbonization_point_c-content::before{
	content: "";
	height: 750px;
}

/*余白*/
.mg-c{
	margin-right: 0%;
}
	
.Decarbonization_point_title{
	margin: 0px auto 100px;
    font-size: 1.2rem;
	line-height: 2;
	width: 90%;
}

.Decarbonization_point_image{
	width: 100%;
}

.Decarbonization_point_image div img{
	width: 20%;
}

.Decarbonization_point_image div span{
	font-size: 4rem;
	line-height: 2.5;
	letter-spacing: 4px;
}

.Decarbonization_point_image .delayScroll img{
	width: 40%;
}


.Decarbonization_point_detail{
	width: 90%;
	margin: 0 auto;
}

.Decarbonization_point_detail h2:first-of-type{
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.Decarbonization_point_detail h2{
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: 4px;
	width: 100%;
	margin-bottom: 20px;
}

.Decarbonization_point_detail p:first-of-type{
	font-size: 1.2rem;
}

.Decarbonization_point_detail p{
	font-size: .9rem;
	line-height: 2;
	letter-spacing: 3px;
	margin-top: 10px;
}

}


/*---- 動画で解説!! 法人版脱炭素ウォーク ----*/

.Decarbonization_movie{
	margin-top: 200px;
}

.Decarbonization_movie{
	text-align: center;
	font-weight: 600;
}

.Decarbonization_movie .Decarbonization_movie_title{
    margin-bottom: 40px;
    font-size: 1.6rem;
	line-height: 2.5;
	 letter-spacing: 5px;
}

.Decarbonization_movie h2{
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 5px;
}

.Decarbonization_movie div{
	margin: 30px auto 50px;
}

.Decarbonization_movie p{
	font-size: 1.2rem;
	line-height: 2;
	 letter-spacing: 3px;
	display: inline-block;
	text-align: left;
	width: 80%;
}

.Decarbonization_movie p:last-of-type{
	padding-top: 10px;
	font-size: 1rem;
}


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

.Decarbonization_movie{
	margin-top: 0px;
}
	
.Decarbonization_movie .Decarbonization_movie_title{
    font-size: 1.2rem;
}

.Decarbonization_movie h2{
	font-size: 1.2rem;
}
	
.Decarbonization_movie p{
	width: 90%;
	font-size: 1rem;
}

.movie iframe{
	height: 300px;
	margin-bottom: 0px;
}
}

/*---- footer ----*/
.footer {
  padding: 65px 0 30px;
  background-color: #0066CC;
  color: #FFF;
}

.footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer .f-logo {
  margin-bottom: 50px;
  text-align: left;
  width: 20%;
}

.footer .flexbox .add {
    margin-bottom: 40px;
	line-height: 2;
	padding: 20px;
}

.footer .copy {
  text-align: right;
  margin-top: 40px;
}

.footer .copy small {
  font-size: 1.3rem;
}

.footer .container .flex-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer .container .flex-justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .container .flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .container .flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
    text-align: center;
  }
  .footer .f-logo {
	text-align: center;
    width: 50%;
	margin: 0 auto 40px;
  }
  .footer .flexbox .add {
    width: 100%;
    margin-bottom: 40px;
	line-height: 2;
	padding: 20px;
  }
  .footer .copy {
    text-align: center;
    margin-top: 60px;
  }
  .footer .copy small {
    font-size: 1.4rem;
  }
  .app-list {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
  }
}












