@charset "utf-8";

html {
	color:#000;
	background:#fff;
	overflow-y: scroll;
}
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,
article,aside,canvas,details,embed,
figure,figcaption,footer,header,hgroup,
menu,nav,output,ruby,section,summary,
time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	word-wrap:break-word;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
}
blockquote,q {
	quotes: none;
}
blockquote:before,blockquote:after,
q:before,q:after {
	content: '';
	content: none;
}
input,textarea {
	margin: 0;
	padding: 0;
}
ol,ul{
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
abbr,acronym {
	border:0;
	font-variant:normal;
}
input,textarea,select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
	*font-size:100%;
}
legend {
	color:#000;
}
a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
a:focus {
	outline:none;
}
a:hover {
	opacity:0.7;
}

/**
 *
 * 
 *
 */

body {
	font-family: "Zen Maru Gothic", serif;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

img {
	width: 100%;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}
.sp {
	display: none !important;
}

@media screen and (max-width: 599px) {
.pc {
	display: none !important;
}
.sp {
	display: block !important;
}
}

.content{
	max-width: 960px;
	margin: auto;
}

@media screen and (max-width: 1000px) {
.content{
	margin: 0 20px;
}
}

/* footer */
.footer_hr{
	border-top: solid 7px #006934;
	border-bottom: none;
	margin: 50px 0 20px;
}
.footer_innner{
	padding: 25px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	 -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-family: "HiraginoSans-W3", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	color: #808080;
	font-size: 14px;
}
.footer_nav_list{
	display: flex;
	margin: 0;
    padding: 0;
    font-size: 1.4rem;
    flex-wrap: wrap;
	gap: 10px 25px;
}
.footer_nav_item a{
	color: #808080;
        font-size: 14px;
        -webkit-transition: opacity .2s;
        transition: opacity .2s;
}
.footer_logo{
	width: 8%;
}

@media screen and (max-width: 850px) {
.footer_innner{
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.footer_nav_list{
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.footer_copy{
	padding: 30px 0;
}
.footer_logo {
	width: 20%;
}
}

@media screen and (max-width: 599px) {
.footer_logo {
	width: 35%;
}
}

/* splash */
.splash {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #F8F8F8;
	z-index: 20;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	visibility: hidden;
}
.splash .head {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 270px;
}
.splash .splash-catch {
	animation: splash-head 1s forwards;
	animation-delay: 0.9s;
	opacity: 0;
	width: 450px;
	height: auto;

}
.splash .splash-logo {
	animation: splash-head 1s forwards;
	animation-delay: 1s;
	opacity: 0;
	width: 150px;
	height: auto;
	margin-bottom: 30px;
}

.splash .tree {
	animation: splash-bottom 1s;
	object-fit: cover;
	object-position: center top;
	height: auto;
}

.splash .head {
	opacity: 1;
	transition: opacity 0.5s;
	animation: none;
}


@keyframes splash-head {
0% {
	transform: translateY(-270px);
	opacity: 0;
}
100% {
	transform: none;
	opacity: 1;
}
}
@keyframes splash-bottom {
0% {
	transform: translateY(540px) scale(0);
	opacity: 0;
}
100% {
	transform: none;
	opacity: 1;
}
}
.splash {
	pointer-events: auto;
	visibility: visible;
}

@media screen and (max-width: 800px) {	
.splash .head {
	margin-top: 350px;
}
}

@media screen and (max-width: 599px) {
.splash .head{
	margin-top: 270px;
}
.splash .splash-logo{
	width: 30%;
}
.splash .splash-catch{
	width: 80%;
}
}

/* top */

.donation_page_top{
	background: #fbf5d8;
	margin-top: -8px;
	padding-bottom: 30px;
	margin-bottom: 50px;
}
.donation_page_top_hr{
	border-top: solid 10px #006934;
	border-bottom: none;
}
.donation_page_ttl{
	width: 65%;
	margin: 30px auto;
}
.donation_page_subttl{
	width: 80%;
	margin: auto;
	padding-bottom: 70px;
}
.donation_page_seriesarea{
	display: flex;
	justify-content: center;
}
.donation_page_series_txtarea{
	width: 75%;
	margin-right: 10px;
}
.donation_page_series_txt{
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 4px;
	padding-top: 15px;
	color: #006934;
}
.donation_page_series_smalltxt{
	font-size: 23px;
	letter-spacing: 2px;
	color: #006934;
	font-weight: bold;
	padding-left: 80px;
}
.donation_page_serie_img{
	width: 35%;
	margin: -30px auto 0;
}
.donation_page_serie_fukidasi{
	width: 55%;
	margin-left: auto;
	margin-top: 30px;
}
.donation_page_donation_company {
	text-align: center;
	width: 70%;
	margin: 30px auto;
}
.donation_page_line img{
	vertical-align: text-top;
}
.donation_page_subttl {
	animation-name: fadeIn3500ms;
	animation-delay: 3500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	transform: translateX(50px);
	opacity: 0;
}
@keyframes fadeIn3500ms {
    0% {
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


@media screen and (max-width: 1400px) {
.donation_page_ttl{
	width: 75%;
}
}
@media screen and (max-width: 1200px) {
.donation_page_subttl{
	width: 70%;
}
}
@media screen and (max-width: 1000px) {
.donation_page_ttl {
	width: 80%;
}
.donation_page_series_txtarea {
    width: 60%;
}
.donation_page_series_txt {
	font-size: 30px;
	padding-top: 5px;
}
.donation_page_series_smalltxt{
	font-size: 18px;
	padding-left: 40px;
}
.donation_page_donation_company{
	width: 65%;
}
}
@media screen and (max-width: 950px) {
.donation_page_series_txtarea {
    width: 80%;
}
}
@media screen and (max-width: 800px) {
.donation_page_top {
	padding-bottom: 0;
}
.donation_tab{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.donation_page_ttl {
	width: 85%;
}
.donation_page_series_txtarea {
	width: 70%;
}
.donation_page_series_txt {
	font-size: 26px;
}
.donation_page_series_smalltxt {
	font-size: 16px;
}
.donation_page_donation_company {
	width: 75%;
}
.donation_page_serie_img {
	margin: -15px auto 0;
}
}
@media screen and (max-width: 599px) {
.donation_page_ttl {
	width: 95%;
}
.donation_page_subttl {
	width: 95%;
	padding-bottom: 50px;
}
.donation_page_seriesarea {
	justify-content: center;
    flex-direction: column;
    align-items: center;
}
.donation_page_series_txtarea {
	width: 100%;
	margin-right: 0;
}
.donation_page_series_txt {
	font-size: 20px;
	text-align: center;
}
.donation_page_series_smalltxt {
	font-size: 16px;
	text-align: center;
	padding-left: 0;
}
.donation_page_serie_icon {
    width: 29%;
    margin-top: 30px;
}
.donation_page_serie_img {
	margin: 15px auto;
	width: 90%;
}
.donation_page_donation_company {
	width: 95%;
	}
}

/* 対象商品*/
.shipping_ttl{
	text-align: center;
	font-size: 50px;
	color: #006934;
	letter-spacing: 10px;
	font-weight: bold;
}
.shipping_area{
	margin: 20px auto;
}
.shipping_img{
	text-align: center;
}
.shipping_txt_area{
	width: 100%;
	border: solid 3px #006934;
	border-radius: 30px;
	background: #fff;
}
.shipping_area_ttl{
	text-align: center;
	font-size: 40px;
	letter-spacing: 4px;
	color: #006934;
}
.shipping_txt_area ul{
	font-size: 24px;
	letter-spacing: 4px;
	color: #006934;
	padding: 20px 70px;
	line-height: 1.4;
}
.shipping_txt_area ul li{
	padding-top:10px;
}
.shipping_area_smallttl{
	text-align: center;
	font-size: 18px;
	letter-spacing: 4px;
	color: #006934;
	padding-bottom: 20px;
}
.shipping_dcompany{
	width: 45%;
	margin: 100px auto;
}
@media screen and (max-width: 800px) {
.shipping_ttl{
	font-size: 34px;
}
}
@media screen and (max-width: 599px) {
    .shipping_ttl {
        font-size: 24px;
    }
}
@media screen and (max-width: 360px) {
.shipping_txt_area ul {
	font-size: 12px;
}
}

/* スペシャルパートナー */
.special_partner_ttlarea{
	text-align: center;
    margin: 50px auto 0;
}
.special_partner_ttl{
	background: #3a663b;
    color: #fff;
    text-align: center;
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    padding: 5px 40px 9px;
    border-radius: 50px;
    letter-spacing: 3px;
}
.special_partner_companyttl{
	width: 45%;
    margin: 50px auto 30px;
}
.loop02 {
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	overflow: hidden;
}
.loop02__box {
	display: flex;
	animation: loop-list 50s linear infinite;
}
.loop02__item{
	margin: 0 10px;
}
.loop02__item a {
	width: calc(100vw / 7);
	display: block;
}
.loop02__item img {
	width: 100%;
}
@keyframes loop-list {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.loop02:hover .loop02__box {
	animation-play-state: paused;
}
.special_partner_line{
	border-top: solid 7px #006934;
	border-bottom: none;
	margin-top:20px;
}
@media screen and (max-width: 1400px) {
.special_partner_companyttl {
	width: 55%;
}
}
@media screen and (max-width: 1200px) {
.special_partner_companyttl {
	width: 65%;
}
}
@media screen and (max-width: 1000px) {
.loop02__item a {
    width: calc(100vw / 5);
    }
.special_partner_companyttl{
	width: 80%;
	margin: 35px auto 20px;
}
}
@media screen and (max-width: 800px) {
.special_partner_ttlarea{
	margin: 30px auto 0;
}
.special_partner_ttl{
	font-size: 30px;
}
}
@media screen and (max-width: 599px) {
.special_partner_ttlarea {
	margin: 10px auto 0;
}
.special_partner_ttl {
	font-size: 18px;
	margin: 0 10px;
	padding: 5px 15px 9px;
}
.special_partner_companyttl {
	width: 90%;
	margin: 25px auto 20px;
}
.loop02__item a {
    width: calc(100vw / 3);
}
}

/* 活動理念*/
.philosophy{
	padding: 30px 0;
}
.philosophy_ttl{
	width: 18%;
	margin: auto;
	padding: 50px 0;
}
.philosophy_txt{
	text-align: center;
	font-size: 28px;
	line-height: 1.8;
	letter-spacing: 2px;
	font-weight: 600;

}
.philosophy_bottom{
	display: flex;
	padding: 70px 20px;
	justify-content: space-evenly;
}
.philosophy_bottom_left,.philosophy_bottom_logo,.philosophy_bottom_right{
	width: 18%;
}
.philosophy_bottom_logo{
	margin-top: -20px;
}

@media screen and (max-width: 1200px) {
.philosophy{
	margin: 0 20px;
}
.philosophy_txt{
	font-size: 24px;
}
.philosophy_bottom{
	justify-content: space-between;
}
}
@media screen and (max-width: 1000px) {
.philosophy_ttl {
	width: 25%;
}
.philosophy_bottom_left, .philosophy_bottom_logo, .philosophy_bottom_right {
	width: 22%;
}
.philosophy_txt {
	font-size: 22px;
}
}
@media screen and (max-width: 599px) {
.philosophy_ttl {
	width: 35%;
	padding: 40px 0;
}
.philosophy_txt {
	font-size: 16px;
}
.philosophy_bottom{
	padding: 50px 10px;
}
.philosophy_bottom_left, .philosophy_bottom_logo, .philosophy_bottom_right {
	width: 25%;
}
}

/* 支援の仕組み*/
.structure{
	padding-bottom: 100px;
}
.structure_ttl{
	width: 25%;
	margin: auto;
	padding: 80px 0 0;
}
.structure_subttl_area{
	display: flex;
	max-width: 1200px;
	margin: auto;
	align-items: center;
}
.structure_subttl_icon{
	width: 20%;
	margin-right: 50px;
}
.structure_subttl{
	font-size: 40px;
	text-align: center;
	letter-spacing: 2px;
	color: #006934;
}
.structure_step_area{
	display: flex;
	max-width: 1200px;
	margin: auto;
}
.structure_step{
	margin: 5px 10px;
}
.structure02{
	padding-top: 70px;
}
.structure_melit_area{
	display: flex;
	max-width: 1200px;
	margin: auto;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
}
.structure_melit{
	width: 45%;
	border: solid 7px #006934;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 20px;
}
.structure_melit_txt_area{
	display: flex;
	align-items: center;
}
.structure_melit_no {
	width: 20%;
	margin-right: 50px;
}
.structure_melit_txt {
	font-size: 26px;
	line-height: 1.2;
	color: #006934;
	letter-spacing: 3px;
	width: 70%;
}
.structure_melit_txt p{
	font-weight: bold;
}
.structure_melitimg {
	padding: 15px 15px 0;
}
.smimg02{
	padding: 25px 15px 0;
}
.smimg03{
	width: 65%;
	margin: auto;
}
.structure_melit_bikou{
	font-size: 23px;
	line-height: 1.2;
	color: #006934;
	letter-spacing: 2px;
	text-align: center;
}
.structure_melit_bikou02{
	font-size: 23px;
	line-height: 1.2;
	color: #006934;
	letter-spacing: 2px;
	padding: 20px 10px 0;
}
@media screen and (max-width: 1200px) {
.structure{
	margin: 0 20px;
}
}
@media screen and (max-width: 1000px) {
.structure_ttl{
	width: 33%;
    padding: 60px 0 0;
}
.structure_subttl_icon {
	margin-right: 30px;
}
.structure_subttl {
	font-size: 30px;
}
.structure_melit{
	border: solid 5px #006934;
}
.structure_melit_txt {
	font-size: 20px;
	line-height: 1.4;
}
.structure_melit_bikou,.structure_melit_bikou02{
	font-size: 20px;
	line-height: 1.4;
}
}
@media screen and (max-width: 850px) {
.structure_subttl {
	 font-size: 26px;
}
.structure_melit {
	width: 44%;
	border: solid 3px #006934;
}
.structure_melit_no {
	width: 20%;
	margin-right: 30px;
}
.structure_melit_txt {
	font-size: 16px;
	letter-spacing: 2px;
}
.structure_melit_bikou, .structure_melit_bikou02 {
	font-size: 16px;
	line-height: 1.4;
}
}
@media screen and (max-width: 599px) {
.structure_ttl {
	width: 50%;
    padding: 30px 0 20px;
}
.structure_subttl_area{
	flex-direction: column;
}
.structure_subttl_icon {
        margin-right: 0;
        width: 30%;
    }
.structure_subttl {
        font-size: 24px;
        padding-bottom: 10px;
    }
.structure_step_area{
	flex-wrap: wrap;
	justify-content: center;
}
.structure_step {
	width: 43%;
}
.structure_melit {
	 width: 90%;
}
.structure {
    padding-bottom: 35px;
}
}

/* シリーズ */
.series{
	padding-top: 80px;
}
.donation_ttl{
	width: 70%;
	margin: auto;
	text-align: center;
}
.donation_shipping_area{
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 70px auto 30px;
}
.donation_shipping_txtarea{
	width: 70%;
	margin-right: -85px;
	padding-top: 40px;
}
.donation_shipping_txt{
	font-size: 35px;
	font-weight: bold;
	letter-spacing: 4px;
	color: #006934;
}
.donation_shipping_smalltxt{
	font-size: 20px;
	letter-spacing: 2px;
	padding-top: 5px;
	color: #006934;
	padding-left: 65px;
}
.donation_shipping_img{
	width: 50%;
	margin-left: -100px;
}
.donation_company{
	text-align: center;
    width: 75%;
    margin: 70px auto;
}
@media screen and (max-width: 1000px) {
.donation_shipping_txtarea {
    width: 55%;
}
.donation_shipping_txt {
    font-size: 28px;
}
.donation_shipping_smalltxt {
    font-size: 18px;
    padding-left: 30px;
}
.donation_shipping_img {
    width: 40%;
    margin-left: -60px;
}
.donation_company {
	width: 65%;
}
}

@media screen and (max-width: 850px) {
.donation_ttl{
	width: 80%;
}
.donation_shipping_txtarea {
	width: 65%;
}
.donation_shipping_img {
	margin-left: -50px;
	margin-top: 50px;
}
.donation_company {
	width: 75%;
}
}

@media screen and (max-width: 599px) {
.series {
    padding-top: 20px;
}
.donation_ttl {
	width: 90%;
}
.donation_shipping_area {
	margin: 45px auto 30px;
	flex-direction: column;
}
.donation_shipping_txtarea {
	width: 90%;
	margin: auto;
	padding-top: 0;
}
.donation_shipping_txt {
	font-size: 20px;
	text-align: center;
}
.donation_shipping_smalltxt {
	font-size: 16px;
	padding-left: 0;
	text-align: center;
}
.donation_shipping_img {
	width: 55%;
	margin: 30px auto;
}
.shipping_txt_area ul {
	font-size: 14px;
	padding: 20px 30px;
}
.shipping_area_ttl {
	font-size: 21px;
}
.shipping_area_smallttl{
	font-size: 14px;
}
.donation_company {
	width: 95%;
	margin: 50px auto;
}
}
@media screen and (max-width: 360px) {
.donation_page_series_txt {
	font-size: 18px;
}
.donation_page_series_smalltxt {
	font-size: 14px;
}
}


/* project */
.project_area{
	display: flex;
	justify-content: center;
}
.project_txtarea{
	width: 55%;
	margin-right: -150px;
	position: relative;
}
.project_ttl{
	width: 70%;
	margin-bottom: 70px;
}
.project_img{
	width: 39%;
	margin-left: -150px;
}
.series_subttl{
	font-size: 40px;
	color: #006934;
	text-align: center;
	letter-spacing: 4px;
}
.series_smartgreenpack{
	text-align: center;
	margin: 15px auto 50px;	
	max-width: 650px;
}
.smartgreenpack_img{
	margin-top: 20px;
}
.smartgreenpack{
	font-size: 28px;
	letter-spacing: 2px;
	line-height: 1.6;
}
.sustainable_txt{
	font-size: 49px;
	font-weight: bold;
	letter-spacing: 2px;
}
.sustainable_txt span{
	font-weight: bold;
}
.TextTyping span {
	display: none;
}

/*文字列後ろの線の設定*/


@keyframes typinganime{
	from{opacity:0}
	to{opacity:1}
}

.series_smartgreenpack_logo{
	width: 50%;
	margin: auto;
}
.greenpack_series02{
	padding-top: 100px;
}
.merit_area{
	border: solid 7px #006934;
	border-radius: 20px;
	max-width: 635px;
	margin: auto;
	padding: 15px;
}
.merit01{
	margin: 50px auto 0;
}
.merit02{
	margin: 20px auto 0;
}
.merit_txt_area{
	display: flex;
	justify-content: flex-start;
}
.merit_no{
	width: 20%;
	margin-right: 50px;
}
.merit_txt{
	font-size: 30px;
	line-height: 1.2;
	color: #006934;
	letter-spacing: 3px;
}
.merit_txt p{
	font-weight: bold;
}
.txt_red{
	color: #bc272d;
	font-weight: bold;
}
.merit_img{
	padding-top: 15px;
}
.merit_bikou{
	text-align: center;
	color: #006934;
	font-size: 30px;
	letter-spacing: 2px;
}
@media screen and (max-width: 1200px) {
.project_txtarea{
	margin-right: -100px;
	width: 60%;
}	
.project_img {
	width: 43%;
	margin-left: -100px;
}
}

@media screen and (max-width: 1000px) {
.series_subttl {
    font-size: 37px;
}
.project_img {
	width: 48%;
}
.smartgreenpack {
    font-size: 26px;
}
}

@media screen and (max-width: 800px) {
.project_area{
	margin: 0 20px;
}
.project_txtarea {
	width: 70%;
}
.project_img {
	width: 50%;
}
.series_smartgreenpack {
	width: 80%;
	margin: 15px auto 30px;
}
.smartgreenpack {
	font-size: 22px;
}
.sustainable_txt {
    font-size: 45px;
}
}

@media screen and (max-width: 599px) {
.project_txtarea {
	width: 75%;
	margin-right: 0;
}
.project_ttl {
    margin-bottom: 30px;
}
.greenpack_series02 {
	padding-top: 50px;
}
.series_subttl {
	font-size: 24px;
}
.series_smartgreenpack {
	width: 90%;
	margin: 15px auto 15px;
}
.smartgreenpack {
	font-size: 18px;
}
.sustainable_txt {
	font-size: 30px;
}
}

@media screen and (max-width: 360px) {
.donation_shipping_txt {
	font-size: 18px;
}
.donation_shipping_smalltxt {
	font-size: 14px;
}
}

/* partner_company */
.partner_company_ttl{
	padding-top: 70px;
	text-align: center;
	color: #231815;
	font-weight: bold;
	font-size: 40px;
}
.partner_company_subttl{
	width: 75%;
	text-align: center;
	margin: 30px auto;
}
.partner_company_smalltxt{
	text-align: center;
	font-size: 20px;
	letter-spacing: 2px;
}
.nami_img02{
	padding-top: 100px;
}

.partner_company_list_ttl{
	font-size: 20px;
	color: #006934;
	text-align: center;
	padding: 20px 0;
	letter-spacing: 8px;
}
.partner_company_list_ttl span{
	font-size: 40px;
	vertical-align: sub;
	padding-left: 10px;
}
.pcarea{
	padding: 20px 0 50px;
}
.partner_company_list_area{
	max-width: 1000px;
	margin: 0px auto;
}
.partner_company_list_area02{
	max-width: 1000px;
	margin: 0px auto;
}
.partner_company_list_area03{
	max-width: 1000px;
	margin: 0px auto;
}

.partner_company_list_area ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
	justify-content: center;
}
.partner_company_list_area02 ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
	justify-content: center;
}
.partner_company_list_area03 ul{
	display: flex;
	flex-wrap: wrap;
	padding: 0 20px;
	justify-content: center;
}

.listblock01{
	width: 20%;
	margin: 24px;
}
.listblock02{
	width: 20%;
	margin: 24px;
}
.listblock03{
	width: 20%;
	margin: 24px;
}

.zoom-box {
  display: inline-block;
  overflow: hidden;
}
.c-bnr.zoom {
  display: block;
  transition-duration: .5s;
}
.c-bnr.zoom:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 850px) {
.partner_company_subttl {
    width: 95%;
}
}

@media screen and (max-width: 800px) {
.listblock01,.listblock02,.listblock03{
    width: 33%;
}
.partner_company_list_area ul{
	justify-content: space-around;
}
.partner_company_list_area02 ul{
	justify-content: space-around;
}
.partner_company_list_area03 ul{
	justify-content: space-around;
}

}
@media screen and (max-width: 599px) {
.partner_company {
    padding-top: 60px;
}
.partner_company_ttl{
	font-size: 28px;
}
.partner_company_list_ttl span {
    font-size: 30px;
    vertical-align: sub;
    padding-left: 0;
}
.partner_company_list_ttl {
    font-size: 18px;
}
.listblock01,.listblock02,.listblock03{
	margin: 15px 5px;
}
}
@media screen and (max-width: 360px) {
.project_img {
	margin-left: -50px;
}
}

/* JEANについて*/
.jean_back{
	background: #29a6dd;
	margin-top: -9px;
	padding-bottom: 150px;
}
.jtarea01{
	padding-top: 20px;
}
.jean_txt_area{
	max-width: 1200px;
	margin: auto;
	color: #fff;
}	
.jean_ttl{
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 4px;
	padding-bottom: 10px;
	line-height: 1.4;
}
.jt01{
	font-size: 60px;
	line-height: 1.2;
}
.jean_txt{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 26px;
	line-height: 1.7;
	font-weight: 600;
}
.jtarea02,.jtarea03{
	padding-top: 100px;
}
.jean_txt_flex{
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}	
.jean_txt_flex_area{
	width: 60%;
	margin-right: 40px;
}
.jean_txt_flex_img{
	width: 40%;
}
.jean_link{
	text-align: center;
	margin: 50px;
}
.jean_link p{
	display: inline-block;
	border: solid 1px;
	color: #fff;
	font-weight: bold;
 	font-size: 40px;
	border-radius: 50px;
	padding: 5px 40px 10px;
	letter-spacing: 4px;
}
.jean_link p {
  transition-duration: .4s;
}
.jean_link p:hover {
  transform: scale(1.1);
}

/* クリーンアップキャンペーンとは*/
.clean_up_top_back{
	margin-top: -70px;
}
.clean_up_back{
	background: #0071b7;
	margin-top: -9px;
	padding-bottom: 150px;
}
.clean_up_txt_area{
	max-width: 1200px;
	margin: auto;
	color: #fff;
}	
.clean_up_ttl{
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 4px;
	padding-bottom: 10px;
	line-height: 1.4;
	padding-top: 40px;
}
.clean_up_txt{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 26px;
	line-height: 1.7;
	font-weight: 600;
}
.clean_up_imgarea{
	display: flex;
	justify-content: space-between;
	padding: 50px 0 0;
}
.clean_up_img{
	width: 30%;
}
.footer_before{
	padding: 15px 0;
}

@media screen and (max-width: 1200px) {
.jean_txt_area,.clean_up_txt_area{
	margin: 0 40px;
}
.jean_txt{
	font-size: 24px;
	line-height: 1.6;
}	
}
@media screen and (max-width: 1000px) {
.jean_ttl,.clean_up_ttl,.jean_link p{
	font-size: 35px;	
}
}

@media screen and (max-width: 850px) {
.jean_txt,.clean_up_txt {
	font-size: 22px;
}
.jean_ttl, .clean_up_ttl, .jean_link p {
        font-size: 28px;
}
.jt01{
	font-size: 38px;
}
.jean_txt_flex_area {
    margin-right: 25px;
}
}
@media screen and (max-width: 599px) {
.jean_txt_area, .clean_up_txt_area {
        margin: 0 30px;
    }
.jean_txt, .clean_up_txt {
        font-size: 16px;
    }
.jean_back,.clean_up_back{
	padding-bottom: 100px;
}
.jean_ttl, .clean_up_ttl{
        font-size: 20px;
    }
.jt01 {
        font-size: 24px;
    }

.jtarea02, .jtarea03 {
    padding-top: 50px;
}
.jean_txt_flex{
	flex-direction: column;
}
.jean_txt_flex_area {
        margin-right: 0;
        width: 100%;
    }
.jean_txt_flex_img {
    width: 70%;
    margin: 20px auto;
}
.jean_link {
	margin: 50px 20px;
}

.jean_link p {
	font-size: 20px;
    }	
}

@media screen and (max-width: 400px) {
    .structure_subttl {
        font-size: 20px
    }
    .shipping_area_ttl {
        font-size: 20px;
    }
    .shipping_area_smallttl {
    	font-size: 12px;
    }
    .jean_link p{
    	padding: 5px 30px 10px;
    }
    .jean_txt_area, .clean_up_txt_area {
        margin: 0 20px;
    }
}


.slidein{
	/* 装飾に関わるスタイルは省略 */
	transition: 1s cubic-bezier(0.75, 0, 0.25, 1);
}
.slide_left{
	transform: translateX(calc(-50vw - 50%));
}
.slide_right{
	transform: translateX(calc(50vw + 50%));
}
.show{
	transform: translateX(0);
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

.structure_step:nth-child(4n - 2) {
  transition-delay: .4s;
}
.structure_step:nth-child(4n - 1) {
  transition-delay: .8s;
}
.structure_step:nth-child(4n) {
  transition-delay: 1.2s;
}
.structure_step {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 2s, opacity 2s;
}

.structure_step.show {
  transform: translateY(0);
  opacity: 1;
}

.clean_up_img:nth-child(4n - 2) {
  transition-delay: .4s;
}
.clean_up_img:nth-child(4n - 1) {
  transition-delay: .8s;
}
.clean_up_img:nth-child(4n) {
  transition-delay: 1.2s;
}
.clean_up_img {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 2s, opacity 2s;
}

.clean_up_img.show {
  transform: translateY(0);
  opacity: 1;
}