﻿@charset "utf-8";

:root {
  --ink: #414141;
  --black: #2a2a2a;
  --mint: #75ffea;
  --yellow: #fff858;
  --paper: #f2f2f2;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1080px;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

.pc{display: block;}
.sp{display: none;}

a {
  color: inherit;
  text-decoration: none;
}

.contents {
  width: 1160px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}

.site-header.is-solid,
.site-header.is-solid2 {
  background: #fff;
  box-shadow: 0 4px 40px rgba(65,65,65,.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 36px;
}

/*.header-logo span,
.footer-logo span,
.section-logo span {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: .8;
  color: var(--mint);
}*/

.header-logo{
	width: 70px;
}

.header-logo span{
	height: 42px;
	display: block;
	background: url("../img/logo-head_w.png") no-repeat center /contain;
}
.is-solid .header-logo span,
.is-solid2 .header-logo span{background: url("../img/logo-head.png") no-repeat center /contain;}

.site-header.is-solid .header-logo span,
.site-header.is-solid2 .header-logo span{
  color: var(--ink);
}

.menu-button {
  position: relative;
  z-index: 1100;
  display: grid;
  gap: 9px;
  width: 70px;
  padding: 0;
  border: 0;
  background: transparent;
  
}

.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform .3s ease, background .3s ease;
}

.site-header.is-solid .menu-button span,
.site-header.is-solid2 .menu-button span {
  background: var(--ink);
}

body.is-menu-open .menu-button span {
  background: #fff!important;
}

body.is-menu-open .menu-button span:nth-child(1) {
  transform: translateY(5.5px) rotate(28deg);
}

body.is-menu-open .menu-button span:nth-child(2) {
  transform: translateY(-5.5px) rotate(-28deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(0,0,0,.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  width: min(530px, 100vw);
  height: 100vh;
  background: #414141;
  transform: translateX(100%);
  transition: transform .42s ease;
  display: grid;
  place-content: center;
}

.drawer-menu ul li{
	margin-bottom: 40px;
}

.drawer-menu ul li a{
	font-size: 14px;
	color: #FFF;
	display: block;
}

.drawer-menu ul li a span{
  font-family: "Saira Condensed", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
}

.drawer-menu p a{
	padding-left: 40px;
	background: url("../img/icon_fb.png") no-repeat left center / 32px;
	line-height: 32px;
	font-size: 14px;
	letter-spacing: 2px;
	color: #FFF;
	display: block;	
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.is-menu-open .drawer-menu {
  transform: translateX(0);
}

.fixed-join {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1100;
  width: 90px;
  height: 280px;
  padding: 40px 10px 40px 20px;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(to bottom, #1EA7B9, #75FFEA);
  color: #fff;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  display: block;
}

@media(any-hover:hover){
.fixed-join:hover {
  width: 100px;
  padding: 40px 20px 40px 20px;
}
}

.fixed-join span{
	color: #fff;
	display: block;
}

.fixed-join-ja {
position: absolute;
  left: 0;
  bottom: 100%;
  width: 16em;
  padding: 0 0 20px 40px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  writing-mode: horizontal-tb;
  transform: rotate(90deg);
  transform-origin: bottom left;
}

.fixed-join-en {
  font-family: "Saira Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

.mv {
  position: relative;
  height: 3000px;
  background: #85dce1;
}

.mv-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(123,220,224,.72), rgba(0,52,63,.28)), url("../img/mv-bg.png") center / cover no-repeat;
}

.mv-bg::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(0,91,112,0), rgba(0,52,63,.48));
  content: "";
}

.mv-shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.06);
}

.mv-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  height: 100%;
  color: #fff;
  text-align: center;
}

.mv-logo {
  position: absolute;
  top: var(--logo-top, 50%);
  left: 50%;
  width: 420px;
  max-width: none;
  transform: translate(-50%, -50%) scale(var(--logo-scale, 1));
  transform-origin: center;
  transition: top .08s linear, transform .08s linear;
}

.mv-copy {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 960px;
  opacity: var(--copy-opacity, 0);
  transform: translate(-50%, -50%) translateY(var(--copy-y, 40px));
  transition: opacity .08s linear, transform .08s linear;
}

.mv-copy h1 {
  margin-bottom: 38px;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 4px;
}

.mv-copy p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 3px;
  text-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.mv_info{
	height: 250px;
	margin-top: 90px;
	background: url("../img/mv.jpg") no-repeat center bottom -100px / cover;
    font-family: "Saira Condensed", sans-serif;
	place-content: center;
	letter-spacing: 4px;
}

.mv_info h1{
	font-size: 60px;
	color: #FFF;
	text-align: center;
}

/*.scroll-sign {
  position: absolute;
  left: 20px;
  bottom: 58px;
  z-index: 3;
  color: #fff;
  font-family: "Saira Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.scroll-sign::after {
  display: block;
  width: 1px;
  height: 40px;
  margin: 14px auto 0;
  background: #fff;
  content: "";
}*/

.path{
	width: 778px;
	margin: 2em auto 0 auto;
	font-size: 14px;
	color: #666;
}

.path ul{
	display: flex;
	gap:0.6em;
}

.path ul li:before{
	padding-right: 0.8em;
	content: ">";
	transform: scale(0.8, 1);
	display: inline-block;
}

.path ul li:first-child:before{
	display: none;
}

.path ul li a{
	text-decoration: underline;
}

.about-action {
  position: relative;
  padding: 118px 0 178px;
  background: #f1f1f1;
  overflow: hidden;
}

.about-action::after {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 118px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  content: "";
}

.about-action .contents {
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 270px;
  align-items: start;
  margin-bottom: 85px;
}

.section-logo small,
.footer-logo small {
  display: block;
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
}

.intro-text h2,
.membership h3 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.intro-text p,
.section-lead {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2px;
}

.mission {
  position: relative;
  padding: 150px 0 170px;
  overflow: hidden;
  background: #fff;
}

.mission-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,65,65,.72), rgba(117,255,234,.2)), url("../img/city-section.png") center top / cover no-repeat;
  opacity: .92;
}

.mission .contents {
  position: relative;
  z-index: 1;
}

.big-title,
.section-title {
  font-family: "Saira Condensed", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: 4px;
}

.big-title {
  margin-bottom: 90px;
  color: #fff;
  text-align: right;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-cards article {
  min-height: 260px;
  padding: 34px;
  background: rgba(255,255,255,.95);
  border-radius: 8px;
}

.mission-cards span {
  color: var(--mint);
  font-family: "Saira Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
}

.mission-cards h3,
.department-text h3 {
  margin: 16px 0 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
}

.departments {
  padding: 140px 0;
  background: #f7f7f7;
}

.section-title {
  margin-bottom: 54px;
  color: var(--ink);
  text-align: right;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.department-grid article {
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  background: linear-gradient(180deg, rgba(65,65,65,0), rgba(65,65,65,.35)), url("../img/project-photo.png") center / cover no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

.department-grid article:nth-child(2) {
  background: linear-gradient(135deg, #fffbc7, #dedede);
}

.department-grid article:nth-child(3) {
  background: linear-gradient(135deg, #d8f7ff, #dcdcdc);
}

.department-text {
  width: 100%;
  padding: 34px;
  background: #414141;
}

.department-text h3,
.department-text p {
  color: #fff;
}

.department-text p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 94px;
}

.stats-grid dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 164px;
  padding: 0 40px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.stats-grid dt {
  color: #fff;
  /*font-family: "DIN Alternate", "Saira Condensed", sans-serif;*/
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: 2px;
}

.stats-grid dt span {
  margin-left: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
}

.stats-grid dd {
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.scenario-block {
  margin-bottom: 102px;
  text-align: center;
}

.overview-kicker {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
}

.scenario-block h2 {
  margin-bottom: 36px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.scenario-grid article {
  /*min-height: 312px;*/
  padding: 32px 45px 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 35px rgba(65,65,65,.05);
}

.scenario-grid h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  margin: 0 auto 28px;
  border-radius: 2px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.scenario-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--mint);
}

.scenario-icon img {
  width: auto;
  height: 36px;
}

.scenario-grid p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2px;
}

.information-block {
  position: relative;
  padding-bottom: 32px;
}

.information-block h2 {
  position: relative;
  margin: 0 0 52px auto;
  width: max-content;
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
}

.information-block h2::after {
  display: block;
  width: 175px;
  height: 4px;
  margin: 22px 0 0 auto;
  background: var(--mint);
  transform: rotate(-7deg);
  content: "";
}

.information-block ul {
  width: 778px;
}

.information-block li {
  position: relative;
  display: grid;
  grid-template-columns: 112px 76px 1fr 10px;
  gap: 14px;
  align-items: center;
  height: 64px;
  margin-bottom: 24px;
  padding: 0 30px 0 40px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 35px rgba(65,65,65,.08);
}

.information-block time {
  color: var(--ink);
  /*font-family: "DIN Alternate", "Saira Condensed", sans-serif;*/
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}

.information-block li span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.information-block li span::after {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--mint);
  content: "";
}

.information-block a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.information-block li:after{
	position: absolute;
	width: 70px;
	height: 10px;
	top: 25px;
	right: 0;
	background: url("../img/icon_info_link.png") no-repeat center / contain;
	content: "";
	display: block;
	visibility: hidden;
	transition: .3s;
}

.information-block li:hover:after{
	right: -30px;
	visibility: visible;
	display: block;
}

.info-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 373px;
  height: 71px;
  margin: 34px 0 0 393px;
  padding: 0;
  border: 1px solid var(--mint);
  border-radius: 36px;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

@media(any-hover:hover){
.info-more:hover {
  background: var(--mint);
}
}

.information-block.contents {
	width: 778px;
	margin: 80px auto;
}


  
.information-block.contents .data {
  display: flex;
  align-items: center;
  gap: 14px;
}

.information-block.contents .data time {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
  
/*.information-block.contents time::after {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--mint);
  content: "";
}*/

.information-block.contents h2 {
  position: relative;
  margin: 0 0 52px auto;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 2px;
}

.information-block.contents h2:after {
	display: none;
}

.entry{
	width: 778px;
	margin: 0 auto 80px auto;	
}

.entry p{
	margin-bottom: 1em;
}

.entry ul{
	margin-bottom: 1em;
  padding-left: 1.5em;
}

.entry ol{
	margin-bottom: 1em;
	padding-left: 0.5em;
}

.entry ul{
  list-style-type: disc!important;
  background: none;
}

.entry ol{
  list-style-type: decimal!important;
  background: none;
}

.entry ul li,
.entry ol li {
  position: relative;
  display: list-item;
  height: auto;
  margin-bottom: 0.5em;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.entry ul li:after,
.entry ul li:hover:after,
.entry ol li:after,
.entry ol li:hover:after{
	display: none;
}

.entry table{
	margin-bottom: 1em;
}

.entry table th,
.entry table td{
	padding: 0.8em;
	border: 1px solid #D9D9D9;
}

.entry table th{
	background: var(--ink);
	color: #FFF;
}

.entry a{
	text-decoration: underline;
}

.btn{
  width: 300px;
	padding: 20px;
	margin: 0 auto;
  border: 1px solid #2A2A2A;
  border-radius: 49px;
  background: #FFF;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
	text-align: center;
	display: block;
}

.btn:hover{
  border: 1px solid var(--mint);
  background: var(--mint);
}

.sup-action {
  padding: 78px 0 120px;
  background: #fff;
  overflow: hidden;
}

.action-heading {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 150px;
  align-items: end;
  margin-bottom: 54px;
}

.action-kicker {
  grid-column: 1 / -1;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 4px;
}

.action-heading h2,
.initiatives h2 {
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 4px;
}

.action-heading h2::after {
  display: block;
  width: 175px;
  height: 4px;
  margin: 30px 0 0 142px;
  background: var(--mint);
  transform: rotate(-7deg);
  content: "";
}

.action-heading p:last-child {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.project-feature {
  position: relative;
  margin-bottom: 104px;
  padding-left: calc(calc(100% - 1160px) / 2);
}

.project-slider {
  overflow: hidden;
  border-radius: 8px;
}

.project-track {
  display: flex;
  width: 100%;
  transform: translateX(calc(var(--project-index, 0) * -100%));
  transition: transform .45s ease;
}

.project-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 455px 1fr;
  align-items: center;
}

.project-body {
  position: relative;
  z-index: 1;
  /*min-height: 380px;*/
  padding: 92px 65px 92px;
  background: var(--ink);
  border-radius: 8px 0 0 8px;
}

.project-body span {
  position: absolute;
  left: 68px;
  top: -74px;
  color: var(--mint);
  font-family: "Saira Condensed", sans-serif;
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
}

.project-body h3 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 2px;
}

.project-body p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 2px;
}

.project-card figure {
  height: 580px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
  object-fit: cover;
}

.motion-label {
  position: absolute;
  left: calc(calc(100% - 1260px) / 2);
  top: 206px;
  color: var(--ink);
  font-family: "Saira Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  z-index: 2;
}

.project-arrow {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 80px;
  border: 0;
  background: #f2f2f2;
  transform: translateY(-50%);
}

.project-arrow::before {
  position: absolute;
  inset: 0;
  width: 22px;
  height: 22px;
  margin: auto;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  content: "";
}

.project-arrow-prev {
  top: auto;
  bottom: 17px;
  left: 0;
  z-index: 1;
}

.project-arrow-prev::before {
  transform: rotate(-45deg);
}

.project-arrow-next {
  top: auto;
  bottom: 17px;
  right: 0;
  z-index: 1;
}

.project-arrow-next::before {
  transform: rotate(135deg);
}

.project-progress {
  height: 1px;
  margin-top: 56px;
  background: #e7e7e7;
}

.project-progress span {
  display: block;
  width: 376px;
  height: 1px;
  background: #777;
}

.initiatives {
  padding-top: 4px;
  text-align: center;
}

.initiatives > h2 {
  margin-bottom: 18px;
  font-size: 42px;
}

.initiatives > p {
  margin-bottom: 36px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}

.initiative-grid article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  align-items: center;
  /*min-height: 190px;*/
  padding: 42px 50px;
  background: #f2f2f2;
  border-radius: 8px;
}

.initiative-icon {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-content:center;
}

.initiative-icon img{
	width: auto;
	height: 32px;
}

.initiative-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.initiative-grid p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 2px;
}

.partners{
	margin-bottom: 300px;
}

.partners .section-title,
.contact .section-title {
  text-align: center;
}

.partners .section-title{
	margin-bottom: 20px;
}

.partners .section-lead,
.membership .section-lead,
.contact .section-lead {
  margin-bottom: 50px;
  text-align: center;
}

.partners .section-lead{
	margin-bottom: 40px;
}

.partner-list{
  padding: 70px 100px 30px 100px;
  background: #f2f2f2;
}

.partner-list dl {
  margin-bottom: 42px;
}

.partner-list dt {
  margin-bottom: 24px;
  padding: 11px 36px 13px;
  background: var(--ink);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
}

.partner-list dd {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2px;
}

.partner-list dd ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 30px;
}

.partner-list dd ul li{
	display: grid;
}

.partner-list dd ul li a{
	min-height: 180px;
	padding: 10px 25px;
	background: #FFF;
	display: grid;
	place-content: center;
	font-weight: bold;
	text-align: center;
}

.partner-list dd ul li img{
	width: 100%;
	max-height: 180px;
	height: auto;
	margin: 0 auto;
}

.membership {
  position: relative;
  padding: 0 0 260px 0;
  background: #414141;
}

.membership::before {
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 118px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  content: "";
}

.membership img{
	position: relative;
	top: -200px;
	z-index: 1;
}

.membership .contents {
  padding: 80px 100px 100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 4px 6px 30px rgba(65,65,65,.1);
  box-sizing: border-box;
}

.membership .section-title{
	font-size: 90px;
	color: #FFF;
}

.membership .section-title,
.membership h3 {
  text-align: center;
}

.price-grid {
  padding: 50px 100px;
  border: 2px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.price-grid article {
}

.price-grid h4 {
  margin-bottom: 28px;
  padding: 10px;
  background: #888;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: #FFF;
}

.price-grid article:first-child h4 {
  background: #75FFEA;
  color: var(--ink);
}

.price{
    margin-bottom: 10px;
}

.price strong {
  margin-right: 10px;
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.price-grid ul{
    margin-top: 30px;
    list-style: disc;
}

.price-grid ul li{
    margin-left: 20px;
}

.price-grid ul li.none{
    color: #B4B4B4;
}

.price-btn {
  padding: 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.price-btn a{
    padding: 20px;
	border: 2px solid #FFF;
    border-radius: 50px;
    background: #75FFEA;
    text-align: center;
    display: block;
}

@media(any-hover:hover){
.price-btn a:hover{
	border: 2px solid var(--mint);
    background: #FFF;
}
}

.benefits table {
  width: 100%;
  border-collapse: collapse;
}

.benefits th,
.benefits td {
  padding: 22px;
  border-bottom: 2px dotted #d9d9d9;
  color: var(--ink);
  font-size: 15px;
  text-align: center;
}

.benefits th:first-child,
.benefits td:first-child {
  text-align: left;
}

.benefits th {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}

.benefits td.note{
	padding-left: 6em;
}

.membership-flow {
  margin-top: 42px;
  overflow: hidden;
}

.flow-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 88px;
  padding: 0 20px 0 40px;
  border: 1px solid #2A2A2A;
  border-radius: 80px;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
}

.flow-toggle-icon {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 10px;
  background: #75FFEA;
  border-radius: 26px;
  flex: 0 0 auto;
}

.flow-toggle-icon::before,
.flow-toggle-icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  content: "";
}

.flow-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.membership-flow.is-open .flow-toggle-icon::after {
  opacity: 0;
}

.flow-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.membership-flow.is-open .flow-panel {
  max-height: 680px;
}

.flow-list {
  counter-reset: flow;
}

.flow-list li {
  position: relative;
  min-height: 65px;
  margin: 42px 0 0 0;
  padding: 10px 20px;
  background:#E9E9E9;
  border-radius: 8px;
  gap: 70px;
  display: grid;
  place-content: center;
  color: var(--ink);
}

.flow-list li:after {
	position: absolute;
	bottom: -32px;
	width: 100%;
	height: 32px;
	background: url("../img/icon_flow.png") no-repeat center top / contain;
	content: "";
	display: block;
}

.flow-label {
  position: absolute;
  top: 10px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 65px;
  background: var(--ink);
  color: #fff;
  line-height: 65px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
}

.flow-list li:last-child .flow-label {
  background: #75FFEA;
  color: var(--ink);
}

.flow-list p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2px;
}

.join-visual {
  position: relative;
  padding: 120px 0 70px 0;
  background: linear-gradient(rgba(42,42,42,.6), rgba(42,42,42,.6)), url("../img/join-bg.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}

.join-visual h2 {
  margin: 0 0 30px;
  color: #fff;
  font-family: "Saira Condensed", sans-serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 4px;
  line-height: 1.0;
}

.join-visual p {
  margin: 0 0 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
}

.join-visual a,
.contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 510px;
  height: 98px;
  border: 1px solid var(--mint);
  border-radius: 49px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}


@media(any-hover:hover){
.join-visual a:hover,
.contact button:hover {
  background: var(--mint);
}
}

.contact {
  position: relative;
  padding: 40px 0 140px 0;
  background: #fff;
}

.contact::before {
  position: absolute;
  left: 0;
  top: -118px;
  width: 100%;
  height: 118px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.contact form {
  width: 760px;
  margin: 0 auto;
  padding: 82px 100px 70px;
  background: #414141;
  border-radius: 8px;
  
}

.contact label {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact label span {
  color: var(--mint);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 18px 14px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: rgba(65,65,65,.75);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}

.contact label.is-error input,
.contact label.is-error textarea {
  outline: 2px solid #ff6b6b;
}

.form-error {
  grid-column: 2;
  margin-top: -22px;
  color: #ff8a8a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
}

.contact .check .form-error {
  flex-basis: 100%;
  margin-top: 0;
}

.contact textarea {
  height: 130px;
  resize: vertical;
}

.privacy {
  margin: 26px 0 32px 0;
  padding: 22px 26px;
  background: #fff;
  border-radius: 4px;
}

.privacy h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.privacy p {
  height: 44px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.contact .check {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 216px;
  font-weight: 500;
}

.contact .check input {
  width: 30px;
  height: 30px;
}

.contact button {
  display: flex;
  width: 420px;
  height: 66px;
  margin: 42px auto 0;
  border-radius: 33px;
  cursor: pointer;
}

footer {
  background: #f2f2f2;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 64px 72px;
  background: url("../img/bg_access.png") no-repeat center / cover;
}

.footer-left{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;	
}

.footer-right{
  color: #FFF;
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 40px;
  place-content: center;
}

.footer-right a{
	border-radius: 50%;
	background: #FFF;
	display: block;
}

@media(any-hover:hover){
.footer-right a:hover{
	background: #75FFEA;
}
}

.footer-logo span {
  color: var(--ink);
  font-size: 54px;
}

address {
  color: var(--ink);
  font-style: normal;
  font-size: 14px;
  line-height: 1.85;
  letter-spacing: 2px;
}

address .mail,
address .tel{
  font-family: "Barlow", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.8;
}

.footer-right div{
  display: grid;
  place-content: center;
}

.footer-right h2 {
  font-family: "Saira Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-right p {
	font-size:18px;
  letter-spacing: 2px;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  padding: 34px 72px;
  color: #2a2a2a;
  font-family: "Saira Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
}

@media screen and (min-width: 841px) and (max-width: 1200px) {
  body {
    min-width: 0;
  }

  .contents {
    width: min(92vw, 1160px);
  }

  .header-inner {
    padding: 0 3vw;
	box-sizing: border-box;
  }

  .fixed-join {
    width: 72px;
    height: 240px;
    padding: 32px 8px 32px 16px;
    overflow: hidden;
  }

  .fixed-join-ja {
    display: none;
  }

  .mv-logo {
    width: clamp(320px, 36vw, 420px);
  }

  .mv {
    height: 220vh;
  }

  .mv-sticky {
    min-height: 0;
  }

  .mv-copy {
    width: min(78vw, 960px);
  }

  .mv-copy h1 {
    font-size: clamp(42px, 5vw, 60px);
  }

  .intro-grid {
    grid-template-columns: minmax(260px, 32vw) 1fr;
    gap: 7vw;
  }

  .section-logo span {
    font-size: clamp(70px, 8vw, 96px);
  }

  .stats-grid,
  .department-grid,
  .mission-cards {
    gap: 18px;
  }

  .scenario-grid {
    gap: 16px;
  }

  .scenario-grid article {
    padding: 30px 28px 34px;
  }

  .scenario-grid h3 {
    width: 100%;
  }

  .information-block ul {
    width: min(70vw, 778px);
  }

  .info-more {
    margin-left: 34vw;
  }
  
  
  .information-block.contents {
	width: min(70vw, 778px);
	margin: 16vw auto;
  }

  .sup-action {
    padding-top: 70px;
  }

  .action-heading {
    grid-template-columns: 260px 1fr;
    gap: 0 8vw;
  }

  .project-feature {
    padding-left: 4vw;
  }

  .project-slider {
    width: calc(100vw - 8vw);
  }

  .project-card {
    grid-template-columns: minmax(360px, 40vw) 1fr;
  }

  .project-body {
    padding: 78px 52px 76px;
  }

  .project-body span {
    left: 52px;
  }

  .project-card figure {
    min-width: 0;
  }

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project-arrow-prev {
    left: 0;
  }

  .project-arrow-next {
    right: 0;
  }

  .initiatives,
  .partners,
  .membership,
  .contact {
    padding-left: 0;
    padding-right: 0;
  }

  .initiative-grid {
    gap: 24px;
  }

  .initiative-grid article {
    padding: 36px 30px;
  }

  .partners .contents{
    padding-left: 0;
    padding-right: 0;  
  }
  
  .membership .contents {
    padding-left: 6vw;
    padding-right: 6vw;
	box-sizing: border-box;
  }

  .price-grid,
  .price-btn {
    gap: 28px;
  }

  .price-btn {
    padding-left: 0;
    padding-right: 0;
  }

  .benefits {
    overflow-x: auto;
  }

  .benefits table {
    min-width: 860px;
  }

  .contact form {
    width: min(92vw, 760px);
    padding-left: 7vw;
    padding-right: 7vw;
	box-sizing: border-box;
  }

  .privacy,
  .contact .check {
    margin-left: 0;
  }

  .contact button {
    width: min(70vw, 420px);
  }

  .footer-info {
    gap: 42px;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  
  .footer-info img{
  	width: 200px;
	margin: 0 auto;
  }

  .footer-left,
  .footer-right {
    grid-template-columns: 1fr;
	text-align: center;
  }

  .footer-copy {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
