@charset "UTF-8";

html {
scroll-behavior: smooth;
}

body {
font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
color: #000000;
margin: 0;


}

img {
	vertical-align: bottom;
}


a:hover img {
	opacity: 0.8;
	transition: 0.5s;
}

.is-show {
    opacity: 1!important;
}

.gr-bg {
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: -1;
	background-color:hsla(58,95%,81%,1);
background-image:
radial-gradient(at 41% 65%, hsla(50,100%,95%,1) 0px, transparent 50%),
radial-gradient(at 88% 75%, hsla(14,80%,95%,1) 0px, transparent 50%),
radial-gradient(at 98% 9%, hsla(354,93%,93%,1) 0px, transparent 50%),
radial-gradient(at 16% 11%, hsla(60,87%,93%,1) 0px, transparent 50%);
	transition: 4s;
}
.gr-bg.type02 {
	background-color:hsla(300,100%,74%,1);
	background-image:
	radial-gradient(at 100% 61%, hsla(351,91%,95%,1) 0px, transparent 50%),
	radial-gradient(at 36% 85%, hsla(351,91%,95%,1) 0px, transparent 50%),
	radial-gradient(at 74% 36%, hsla(317,100%,87%,1) 0px, transparent 50%),
	radial-gradient(at 27% 10%, hsla(351,91%,95%,1) 0px, transparent 50%);
	transition: 4s;
}
.top-title {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.top-title h1 {
	height: 60%;
	max-height: 431px;
	animation: h1-anime 3.4s forwards;
	opacity: 0;
}
@keyframes h1-anime{
	0%{
		opacity: 0;
		top:-50px;
	}
	100%{
		top:0px;
		opacity: 1;
	}
}
.top-title h1 img {
	max-width: 700px;
	height: 100%;
}

.top-title .scrolldown1 {
	position:absolute;
	left:50%;
	bottom:10px;
	height:50px;
}

.scrolldown1 span{
	position: absolute;
	left:-15px;
	top: -15px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.scrolldown1::after{
	content: "";
	position: absolute;
	top: 0;

	width: 1px;
	height: 30px;
	background: #000000;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}
.top-text {
	max-width: 1080px;
	width: 90%;
	margin: 50px auto;
}

.top-text p {
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	line-height: 2.8;
	letter-spacing: 2px;
	margin: 0;
}

.bg-w {
	background-color: white;
}
.contents1080 {
	width: 90%;
	max-width: 980px;
}
.about-area .contents1080 {
	margin: 100px auto;
	padding-top: 100px;
}

.about-area h2 {
	text-align: center;
	margin: -120px auto 0;
}
.about-area h2 svg {
	max-width: 180px;
}
.about-area .top-img {
	width: 85%;
	max-width: 320px;
	margin: 50px auto;
	display: block;
	position: relative;
}
.about-area .top-img img {
	width: 100%;
}
.about-area .top-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: -100px;
	background-image: url("../images/about-img-text.png");
	width: 90px;
	height: 30px;
	transform: scale(0.9);
}

.open-btn {
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.open-btn span{
	animation: arrow-anime 1.4s ease-in-out infinite;
}
@keyframes arrow-anime{
	0%{
		top:0;
	}
	50%{
		top:10px;
	}
	100%{
		top:0;
	}
}
.open-btn span {
	position: relative;
	width: 2px;
	height: 70px;
	background-color: #000000;
}
.open-btn span::before {
	content: "";
	position: absolute;
	width: 2px;
	height: 10px;
	transform: rotate(45deg);
	bottom: 0;
	right: -4px;
	background-color: #000000;
}
.open-btn span::after {
	content:"open";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkid-transform: translateY(-50%);
	right: -3em;
	line-height: 1;
	font-weight: 600;
}
#menu_bar01 {
	display: none;
}
.about-area .Accordion-box {
	width: 90%;
	margin: 0 auto;
	height: 0;
	display: none;
	opacity: 0;
}

.about-area .Accordion-box p {
	font-weight: bold;
	font-size: 18px;
	line-height: 250%;
}
.about-area .sdgs-box {
	margin: 150px auto 0;
	padding-bottom: 100px;
}
.sdgs-box h3 svg {
	max-width: 130px;
}
.about-area .Accordion-box .sdgs-box p {
	font-size: 16px;
	font-weight: 600;
	line-height: 250%;
	margin-bottom: 80px;
}
.sdgs-box img {
	width: 100%;
}

#menu_bar01:checked ~ .Accordion-box{
	animation: about-anime 1.4s forwards;
	display: block;
	height: auto;
}
#menu_bar01:checked ~ .open-btn span::after{
	content: "close";
}
#menu_bar01:checked ~ .open-btn span::before {
	right: auto;
	left: -4px;
	bottom: auto;
	top: 0;
	transform: rotate(45deg);

}
@keyframes about-anime{
	0%{
	opacity: 0;
	}
	50%{
	height: auto;
	}
	100%{
	opacity: 1;
	display: block;
	height: auto;
	}
}
#ABOUT {
	margin-bottom: 100px;
	padding-top: 100px;
}
#ACTION {
	background-color: white;
	width: 100%;
	position: relative;
	padding: 100px 0;
	box-sizing: border-box;
	margin-top: 700px;

}
#ACTION_A {
	position: absolute;
	top:-300px;
}
#ACTION::before {
	position: absolute;
	content:"";
	background-color: white;
	width: 2300px;
	height: 550px;
	border-top-left-radius: 50%;
    border-top-right-radius: 50%;
	top: -350px;
	left: 50%;
	transform: translateX(-50%);
	-weebkit-transform: translateX(-50%);
}
#ACTION .h2-anime {
	width: 200px;
	height: 34px;
	position: relative;
	margin: 0 auto;
}
#ACTION h2 {
	position: relative;
	margin: -300px auto 0;
	background-image: url("../images/text-mask.png");
	-webkit-mask-image: url("../images/action.svg");
    mask-image: url("../images/action.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

#ACTION .h2-anime::before {
	content: "";
	width: 101%;
	height: 101%;
	background-color: #000000;
	-webkit-mask-image: url("../images/action.svg");
    mask-image: url("../images/action.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%)translateY(-50%);
}
#ACTION .h2-anime.is-active::before {
	opacity: 1;
	transition: 1.3s;
}
#ACTION .h2-anime.is-active h2 {
	opacity: 0;
	transition: 1.3s;
}
#ACTION .h2line {
	display: block;
	width: 300px;
	margin: 20px auto 0;
	position: relative;
}

#ACTION .link-box {
	position: relative;
	max-width: 1080px;
	width: 90%;
	margin: 150px auto 200px;
	display: flex;
	justify-content: space-between;
}
#ACTION .link-box a {
	border-radius: 50%;
	background-size: contain;
}
#ACTION .link-box a.left {
	background-image: url("../images/c-bg-left.png");
}
#ACTION .link-box a.right {
	background-image: url("../images/c-bg-right.png");
}

#ACTION .link-box a img {
	border-radius: 50%;
	width: 450px;
	transition: 0.3s;
}
#ACTION .link-box a:hover img{
	transform: scale(0.95);
	transition: 0.3s;
}


#PROJECT {
	background-color: #EDEDED;
	width: 100%;
	position: relative;
	padding: 100px 0;
	box-sizing: border-box;
	margin-top: 200px;
}
#PROJECT_A {
	position: absolute;
	top:-300px;
}
#PROJECT::before {
	position: absolute;
	content:"";
	background-color: #EDEDED;
	width: 2300px;
	height: 550px;
	border-top-left-radius: 50%;
    border-top-right-radius: 50%;
	top: -350px;
	left: 50%;
	transform: translateX(-50%)
}
#PROJECT .h2-anime {
	width: 220px;
	height: 34px;
	position: relative;
	margin: 0 auto;
}
#PROJECT h2 {
	position: relative;
	margin: -300px auto 0;
	background-image: url("../images/text-mask.png");
	-webkit-mask-image: url("../images/project.svg");
    mask-image: url("../images/project.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

#PROJECT .h2-anime::before {
	content: "";
	width: 101%;
	height: 101%;
	background-color: #000000;
	-webkit-mask-image: url("../images/project.svg");
    mask-image: url("../images/project.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%)translateY(-50%);
}
#PROJECT .h2-anime.is-active::before {
	opacity: 1;
	transition: 1.3s;
}
#PROJECT .h2-anime.is-active h2 {
	opacity: 0;
	transition: 1.3s;
}
#PROJECT .h2line {
	display: block;
	width: 300px;
	margin: 20px auto 0;
	position: relative;
}
#PROJECT .project-box {
	position: relative;
	max-width: 980px;
	display: flex;
	flex-wrap: wrap;
	margin: 150px auto;
	width: 90%;
	justify-content: space-between;
}
#PROJECT .project-box a {
	width: 47%;
	text-decoration: none;
	background-image: url("../images/action-bg.jpg");
	margin-bottom: 50px;
}
#PROJECT .project-box a .box {
	background-color: white;
	width: 100%;
	height: 100%;
	transition: 0.5s;
}
#PROJECT .project-box a .box .img-area  {
	width: 100%;
    height: 280px;
}
#PROJECT .project-box a .box .img-area img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
#PROJECT .project-box a .box .text-are {
	padding: 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
#PROJECT .project-box a .box .text-are .icon-box {
	display: flex;
	gap:1%;
	min-height: 130px;
	align-items: flex-start;
	width: 100%;
}
#PROJECT .project-box a .box .text-are .icon-box img {
	width: 15%;
}
#PROJECT .project-box a .box .text-are .day {
	color: #000000;
	font-weight: 500;
	font-size: 16px;
}
#PROJECT .project-box a .box .text-are .title {
	color: #000000;
	font-weight: 600;
	font-size: 20px;
	margin:5px 0 15px;
}
#PROJECT .project-box a .box .text-are .project-arrow {
	color: #000000;
	margin: 0 0 0 auto;
}
#PROJECT .project-box a .box .text-are .project-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    margin: 0 0 0 auto;
    border: 1px solid #FFF;
    background-color: #fff;
    font-size: 16px;
	font-weight: bold;
    color: #000;
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1), background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
#PROJECT .project-box a .box .text-are .project-arrow .e-text {
	margin:0 0 -20px -15px;
}

#PROJECT .project-box a .box .text-are .project-arrow .icon-arrow::before {
    width: 100px;
    height: 40px;
    content: "";
    display: inline-block;
    -webkit-mask-image: url("../images/icon-arrow.svg");
    mask-image: url("../images/icon-arrow.svg");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #000000;
    -webkit-transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
    transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
#PROJECT .project-box a:hover .box {
	transform: scale(0.95);
	transition: 0.5s;
}
#PROJECT .project-box a:hover .box .text-are .project-arrow .icon-arrow {
	animation: arrow 0.5s;
}
#PROJECT .project-box a:hover .box .text-are .project-arrow .e-text {
	color: #EC6D6E;
	transition: 0.5s;
}
#PROJECT .project-box a:hover .box .text-are .project-arrow .icon-arrow::before {
	background-color: #EC6D6E;
}
@keyframes arrow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }

  49.9% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }

  50% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
footer {
	background-color: white;
	padding: 50px 0;
}
.nav-flex {
	display: flex;
	max-width: 1080px;
	margin: 0 auto 100px;
	justify-content: space-between;
	align-items: flex-start;
	width: 90%;
	
}
.nav-flex ul {
	list-style: none;
	margin: 0;
	display: flex;
	gap:20px;
}
.nav-flex svg {
	width: 58px;
}
.nav-flex img {
	width: 200px;
}
.nav-flex .about-btn svg {
	width: 100px;
}
.nav-flex .action-btn svg {
	width: 100px;
}
.nav-flex .project-btn svg {
	width: 115px;
}
.nav-flex a:hover svg {
	fill:#EC6D6E;
	transition: 0.5s;
}
footer .footer-icon {
	width: 400px;
	display: block;
	margin: 0 50px 0 auto;
}

/**
* scroll bar
*/
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background:#000000;
  margin: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header__navBtnWrap {
	position: fixed;
	width: 100px;
	height: 100%;
	right: 0;
	z-index: 10;
	transition:  0.5s;
}
.header__navBtnWrap.open {
	background-color: white;
	transition:  0.5s;
}

.header__navBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  position: relative;
  text-decoration: none;
  z-index: 10;
  padding-top: 20px;
}

.header__navBtn__lineWrap {
  width: 50px;
  height: 16px;
  position: relative;
}

.header__navBtn--line {
  background-color: #000000;
  width: 100%;
  height: 1px;
  margin: auto;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__navBtn--line:nth-child(1) {
  top: 0;
}

.header__navBtn--line:nth-child(2) {
  bottom: 0;
}

.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
  top: 8px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
  bottom: 7px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.header__navBtn:after {
    content: "Menu";
    color: #000000;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 18px;
    text-align: center;
    font-family: "futura-pt", sans-serif;
    text-transform: uppercase;
	font-weight:500;
}

.header__navBtnWrap.open .header__navBtn--line:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}
.header__navBtnWrap.open .header__navBtn--line:nth-child(2) {
    bottom: 7px;
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
}
.header__navBtnWrap.open .header__navBtn:after {
	content:"Close";
}
.nav__list {
	position: fixed;
	top: 0;
	right: 100px;
	z-index: 9;
	height: 100%;
	width: 0;
	opacity: 0;
	padding-top: 50px;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
}
.header__navBtnWrap.open + .nav__list {
	width: auto;
	opacity: 1;
	transition: 1s;
}
.nav__list .img-box {
	display: flex;
	flex-direction: column;
	padding: 10px;
	gap:20px;
}

.nav__list ul {
	list-style: none;
	margin: 0;
	display: flex;
	gap:40px;
	flex-direction: column;
	padding: 30px 50px;
}
.nav__list svg {
	width: 55px;
}
.nav__list img {
	width: 200px;
}
.nav__list .about-btn svg {
	width: 100px;
}
.nav__list .action-btn svg {
	width: 100px;
}
.nav__list .project-btn svg {
	width: 115px;
}

.nav__list ul a {
	position: relative;
}
.nav__list ul a::before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 0;
	background-color: #EC6D6E;
	height: 10px;
	z-index: -1;
	transition: 0.2s;
}
.nav__list ul a:hover::before {
	width: 100%;
	transition: 0.2s;
}
.view {
opacity: 0;
}
.view.is-animated {
animation: zoomIn 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes zoomIn {
 0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width:1050px) {
#ACTION .link-box {
	flex-direction: column;
	align-items: center;
	gap:50px;
}
#ACTION .link-box a {
	width: 100%;
	max-width: 450px;
}
#ACTION .link-box a img {
	width: 100%;
}
}

@media screen and (max-width:890px) {
.top-title h1 {
	width: 90%;
	height: auto;
	text-align: center;
}
.top-title h1 img {
	height: auto;
	width: 100%;
	margin: 0 auto;
}
.about-area .top-img {
	width: 200px;
}
.about-area .top-img::before {
	    transform: scale(0.7);
		right: -40px;
		bottom: -40px;
}
.about-area .Accordion-box p {
	font-size: 16px;
}
.about-area .Accordion-box {
	margin: 100px auto 0;
}
.about-area .Accordion-box .sdgs-box p {
	font-size: 14px;
}
#ACTION::before {
	width: 1000px;
}
#PROJECT::before {
	width: 1000px;
}
.nav-flex ul {
	display: none;
}
.nav-flex {
	justify-content: center;
	margin: 0 auto 10px;
}
footer .footer-icon {
	margin: 0 auto;
	width: 300px;
}
}
@media screen and (max-width:750px) {
#PROJECT .project-box {
	justify-content: center;
}
#PROJECT .project-box a {
	width: 100%;
	max-width: 450px;
}
}

/*single*/
.single-area {
	padding-top: 100px;
	padding-bottom: 100px;
}
.single-area .box {
	background-color: white;
	max-width: 1080px;
	width: 90%;
	margin: 0 auto;
	padding: 90px;
	box-sizing: border-box;
}
.single-area .box ul.breadcrumbs{
	list-style: none;
	padding: 0;
	display: flex;
	font-weight: bold;
	gap:20px;
}

.single-area .box ul a {
	text-decoration: none;
	color: #000000;
	transition: 0.2s;
}
.single-area .box ul a:hover {
	color: #EC6D6E;
	transition: 0.2s;
}
.single-area .cms-box {
	margin: 80px auto 0;
}
.single-area .cms-box .day {
	background-color: #707070;
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 10px 20px;
}
.single-area .cms-box .title {
	font-size: 28px;
	font-weight: bold;
}
.single-area .cms-box .sdgs-box {
	display: flex;
	gap:10px;
	margin-bottom: 60px;
}
.single-area .cms-box .sdgs-box img {
	width: 90px;
}
.single-area .cms-box h2 {
	width: 100%;
	background-color: #707070;
	color: white;
	font-size: 18px;
	padding: 15px 20px; 
	box-sizing: border-box;
}
.single-area .cms-box h3 {
	font-weight: bold;
	border-bottom: 1px solid #707070;
}
.single-area .cms-box p {
	font-size: 15px;
	font-weight: 500;
}
.single-area .cms-box ul {
	padding-left: 1.5rem;
}
.single-area .cms-box .img-box{
margin-top: 50px;
display: flex;
width: 100%;
justify-content: space-between;
}
.single-area .cms-box .img-box .content {
	width: 47%;
}
.single-area .cms-box .img-box .content img {
	width: 100%;
}
.single-area .cms-box .img-box .content span {
	font-size: 14px;
	font-weight: bold;
}
.single-area .cms-box img {
	max-width: 100%;
	height: auto;
}
.single .gr-bg {
animation:5s ease-in 1s infinite alternate forwards running expansion;	
}
.TOP_link {
 display: block;
 text-decoration: none;
 color: #000000;
 font-weight: bold;
 margin:80px auto 0;
 text-align: center;
}
.TOP_link:hover {
	color: #EC6D6E;
	transition: 0.2s;
}
@media screen and (max-width:890px) {
.single-area .box {
	padding: 50px 30px;
}
.single-area .cms-box .title {
	font-size: 20px;
}
.single-area .cms-box .day {
	font-size: 16px;
}
.single-area .cms-box .sdgs-box img {
	width: 45px;
}
.single-area .cms-box .img-box {
	flex-direction: column;
	gap:15px;
}
.single-area .cms-box .img-box .content {
	width: 100%;
}
.single-area .box ul.breadcrumbs {
	font-size: 14px;
}
}