@charset "UTF-8";
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

body {
  font-family: serif;
  max-width: 100vw;
  overflow-x: hidden;
  color: #353535;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

html {
  scroll-behavior: smooth;
}

.header {
  width: 100vw;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__name p {
  writing-mode: vertical-rl;
  white-space: nowrap;
  padding: 50px 0 0 30px;
  font-size: 20px;
}
.header__nav {
  margin: auto 0;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  /* ナビ開いてる時のボタン */
}
.header__nav .pcnav {
  margin-top: 34px;
}
.header__nav .pcnav ul {
  display: flex;
  flex-direction: row;
}
.header__nav .pcnav ul li a {
  font-size: 18px;
  color: #353535;
  margin-right: 2rem;
  position: relative;
  font-family: sans-serif;
}
.header__nav .pcnav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.5px;
  background-color: #000;
  bottom: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header__nav .pcnav ul li a:hover::after {
  visibility: visible;
  bottom: -4px; /*アニメーションが止まる位置*/
  opacity: 1;
}
.header__nav .hamburger {
  margin-left: 20px;
  display: none;
  position: relative;
  z-index: 3;
  right: 10px;
  top: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
}
.header__nav .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #434343;
  transition: 0.3s ease-in-out;
}
.header__nav .hamburger span:nth-child(1) {
  top: 10px;
}
.header__nav .hamburger span:nth-child(2) {
  top: 20px;
}
.header__nav .hamburger span:nth-child(3) {
  top: 30px;
}
.header__nav .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.header__nav .hamburger.active span:nth-child(2) {
  width: 0px;
}
.header__nav .hamburger.active span:nth-child(1),
.header__nav .hamburger.active span:nth-child(3) {
  background: #fff;
  transition-delay: 0.3s;
}
.header__nav .hamburger.active span:nth-child(1) {
  transform: translateY(4px);
}
.header__nav .hamburger.active span:nth-child(3) {
  transform: translateY(-16px) rotate(90deg);
}
.header__nav .globalMenuSp {
  display: none;
  position: fixed;
  font-family: sans-serif;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.header__nav .globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.header__nav .globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
.header__nav .globalMenuSp ul li:first-child {
  margin-top: 100px;
}
.header__nav .globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
.header__nav .globalMenuSp ul li:hover {
  background: #ddd;
}
.header__nav .globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}
.header__nav nav.globalMenuSp.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.top {
  position: relative;
  width: 100vw;
}
.top__ttl h1 {
  position: absolute;
  top: -200px;
  right: 10%;
  font-size: 50px;
  color: #353535;
}
.top__ttl h1 .blue {
  color: #6C7C88;
}
.top__img {
  position: relative;
}
.top__img .slide-container {
  margin-top: 300px;
}
.top__img .slide {
  position: relative;
  width: 88vw;
  margin: 0 0 0 auto;
  height: 750px;
  overflow: hidden;
}
.top__img .slide .slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 88vw;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  animation: slider-1 24s linear infinite;
}
.top__img .slide .slide-image:nth-child(1) {
  background-image: url(../image/top8.jpg);
  animation-delay: -2s;
}
.top__img .slide .slide-image:nth-child(2) {
  background-image: url(../image/top4.jpg);
  animation-delay: 6s;
}
.top__img .slide .slide-image:nth-child(3) {
  background-image: url(../image/top6.jpg);
  animation-delay: 14s;
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.top__img p {
  text-align: left;
  position: absolute;
  bottom: 2%;
  left: 14%;
  font-size: 18px;
  color: #ffffff;
  font-family: sans-serif;
}
.top .youtube {
  display: none;
}

.greeting {
  width: 870px;
  margin: 0 auto;
  padding-top: 140px;
}
.greeting__ttl h2 {
  font-size: 80px;
  padding-bottom: 10px;
}
.greeting__content {
  display: flex;
  justify-content: space-between;
}
.greeting__content .sentence {
  width: 580px;
}
.greeting__content .sentence p {
  width: 500px;
  overflow-wrap: normal;
  letter-spacing: 0.07rem;
  font-size: 18px;
  font-family: sans-serif;
}
.greeting__content .representative {
  text-align: center;
  font-size: 14px;
  white-space: nowrap;
  font-family: sans-serif;
}
.greeting__content .representative img {
  height: 200px;
  width: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 40px;
}

.movie {
  padding-top: 100px;
  width: 870px;
  margin: 0 auto;
}
.movie iframe {
  width: 100%;
  height: 540px;
}

.feature {
  margin-top: 130px;
  background-color: #88A3AE;
  padding-bottom: 120px;
  width: 100vw;
}
.feature__ttl h2 {
  font-size: 80px;
  color: #ffffff;
  width: 870px;
  margin: 0 auto;
  padding-top: 70px;
}
.feature__contents {
  margin-top: 70px;
}
.feature__contents ul li {
  background-color: #ffffff;
  width: 870px;
  margin: 0 auto;
  margin-bottom: 30px;
  padding: 20px;
  position: relative;
}
.feature__contents ul li .number {
  position: absolute;
  top: -30px;
  font-size: 40px;
}
.feature__contents ul li .space-btw {
  display: flex;
  justify-content: space-between;
}
.feature__contents ul li .space-btw .sentence h3 {
  padding-top: 20px;
  padding-bottom: 8px;
  font-size: 22px;
}
.feature__contents ul li .space-btw .sentence p {
  width: 450px;
  overflow-wrap: normal;
  font-size: 18px;
  font-family: sans-serif;
}
.feature__contents ul li .space-btw .sentence p span {
  font-size: 14px;
}
.feature__contents ul li .space-btw img {
  width: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__btn {
  margin-top: 70px;
}
.feature__btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1.4em;
  width: 180px;
  color: #ffffff;
  font-size: 18px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  transition: 0.7s;
}
.feature__btn a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
}
.feature__btn a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.slogan {
  width: 100vw;
}
.slogan__ttl h2 {
  font-size: 80px;
  width: 870px;
  margin: 0 auto;
  margin-top: 100px;
}
.slogan__contents {
  margin-top: 40px;
}
.slogan__contents .vision1 {
  width: 870px;
  margin: 0 auto;
}
.slogan__contents .vision1__ttl h3 {
  border-bottom: solid 1px #555;
  margin-top: 20px;
  font-size: 28px;
}
.slogan__contents .vision1__ttl p {
  margin-top: 18px;
  font-size: 18px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list {
  width: 870px;
  margin: 0 auto;
}
.slogan__contents .vision1__list ::after {
  background-color: transparent;
}
.slogan__contents .vision1__list .sea {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 20px;
  background-color: #eee;
  height: 300px;
}
.slogan__contents .vision1__list .sea__img img {
  height: 300px;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slogan__contents .vision1__list .sea__sentence {
  width: 530px;
  height: 300px;
}
.slogan__contents .vision1__list .sea__sentence p {
  width: 90%;
  margin-top: 20px;
  margin-left: 18px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .sea__sentence hr {
  background-color: #353535;
  width: 90%;
  margin-left: 16px;
  margin-top: 10px;
}
.slogan__contents .vision1__list .sea__sentence .initiatives {
  margin-left: 14px;
  color: #676767;
}
.slogan__contents .vision1__list .sea__sentence .initiatives p {
  margin-top: 10px;
  font-size: 14px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .sea__sentence ul li {
  font-size: 13px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .human {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 20px;
  background-color: #eee;
  height: 300px;
  overflow: hidden;
}
.slogan__contents .vision1__list .human__img img {
  height: 300px;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slogan__contents .vision1__list .human__sentence {
  width: 530px;
  height: 300px;
}
.slogan__contents .vision1__list .human__sentence p {
  width: 90%;
  margin-top: 10px;
  margin-left: 18px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .human__sentence hr {
  background-color: #353535;
  width: 90%;
  margin-left: 16px;
  margin-top: 10px;
}
.slogan__contents .vision1__list .human__sentence .initiatives {
  margin-left: 14px;
  color: #676767;
}
.slogan__contents .vision1__list .human__sentence .initiatives p {
  margin-top: 10px;
  font-size: 14px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .human__sentence ul li {
  font-size: 13px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .town {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 20px;
  background-color: #eee;
  height: 300px;
  overflow: hidden;
}
.slogan__contents .vision1__list .town__img img {
  height: 300px;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slogan__contents .vision1__list .town__sentence {
  width: 530px;
  height: 300px;
}
.slogan__contents .vision1__list .town__sentence p {
  width: 90%;
  margin-top: 20px;
  margin-left: 18px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .town__sentence hr {
  background-color: #353535;
  width: 90%;
  margin-left: 16px;
  margin-top: 10px;
}
.slogan__contents .vision1__list .town__sentence .initiatives {
  margin-left: 14px;
  color: #676767;
}
.slogan__contents .vision1__list .town__sentence .initiatives p {
  margin-top: 10px;
  font-size: 14px;
  font-family: sans-serif;
}
.slogan__contents .vision1__list .town__sentence ul li {
  font-size: 13px;
  font-family: sans-serif;
}
.slogan__contents .vision2 {
  width: 870px;
  margin: 100px auto;
}
.slogan__contents .vision2__ttl h3 {
  border-bottom: solid 1px #555;
  margin-top: 20px;
  font-size: 28px;
}
.slogan__contents .vision2__ttl p {
  margin-top: 16px;
  font-size: 18px;
  font-family: sans-serif;
}
.slogan__contents .vision2__img ul {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
}
.slogan__contents .vision2__img ul li img {
  width: 400px;
  height: 268px;
  -o-object-fit: cover;
     object-fit: cover;
}
.slogan__contents .vision2__btn {
  margin-bottom: 20px;
}
.slogan__contents .vision2__btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0.5em 1.4em;
  width: 140px;
  color: #737373;
  font-size: 12px;
  border: 1px solid #737373;
  border-radius: 50px;
  transition: 0.7s;
}
.slogan__contents .vision2__btn ::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #737373;
  border-right: 1px solid #737373;
  transform: rotate(45deg);
}
.slogan__contents .vision2__btn a:hover {
  background-color: rgba(197, 197, 197, 0.4);
}

.message {
  margin-top: 140px;
  position: relative;
  background-color: #000000;
  height: 500px;
  width: 100vw;
}
.message img {
  height: 500px;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.message h3 {
  width: 870px;
  margin: 0 auto;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 50px;
}
.message p {
  width: 870px;
  margin: 0 auto;
  margin-top: 30px;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 26px;
}

.sdgs {
  width: 100vw;
  margin: 0 auto;
}
.sdgs__ttl {
  width: 870px;
  margin: 0 auto;
  margin-top: 100px;
}
.sdgs__ttl h2 {
  font-size: 60px;
  word-break: keep-all;
}
.sdgs__ttl p {
  font-size: 18px;
  margin-top: 20px;
  font-family: sans-serif;
}
.sdgs__contents .sdgs-img {
  width: 870px;
  margin: 0 auto;
}
.sdgs__contents .sdgs-img img {
  width: 870px;
}

.info {
  width: 100vw;
  margin: 0 auto;
  margin-top: 50px;
  background-color: #eee;
}
.info__ttl h2 {
  font-size: 80px;
  width: 870px;
  margin: 0 auto;
  padding-top: 50px;
}
.info__ttl h2 span {
  display: inline-block;
}
.info__contents {
  width: 870px;
  margin: 0 auto;
  padding-bottom: 100px;
  font-family: sans-serif;
}
.info__contents dl {
  border-bottom: 1px solid #000;
}
.info__contents dl dt {
  margin-top: 1rem;
  padding-left: 10px;
  font-size: 18px;
}
.info__contents dl dd {
  margin-bottom: 0.2rem;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
}

.aboutus {
  background-color: #88A3AE;
  color: #ffffff;
  width: 100vw;
}
.aboutus__ttl h2 {
  width: 870px;
  margin: 0 auto;
  font-size: 80px;
  padding-top: 50px;
}
.aboutus__contents table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 870px;
  margin: 0 auto;
  font-family: sans-serif;
}
.aboutus__contents table tr {
  border-bottom: 1px solid #fff;
  line-height: 4;
  text-align: left;
  font-size: 18px;
}
.aboutus__contents table tr th {
  padding-left: 20px;
}
.aboutus__contents p {
  text-align: center;
  line-height: 4;
  padding-bottom: 60px;
}

.footer {
  height: 70px;
}
.footer .copy {
  text-align: center;
  line-height: 30px;
  margin-top: 10px;
  font-family: sans-serif;
  font-size: 16px;
}
.footer .scroll-top {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
  writing-mode: vertical-rl;
  white-space: nowrap;
  animation: arrowmove 1s ease-in-out infinite;
  font-family: sans-serif;
}
@keyframes arrowmove {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 25px;
  }
  100% {
    bottom: 20px;
  }
}
.footer .scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}
.footer .scroll-top a {
  text-decoration: none;
  color: #353535;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}
.footer .js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #353535;
}
.footer .js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #353535;
  transform: skewX(-31deg);
}
.footer _:-ms-lang(x), .footer .js-scroll a::before {
  right: -11px;
}
.footer .js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 70px;
  background: #353535;
}
.footer .js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #353535;
  transform: skewX(31deg);
}
.footer _:-ms-lang(x), .footer .js-pagetop a::before {
  right: 0;
}
.footer section {
  padding: 500px 0;
}

@media screen and (max-width: 1200px) {
  .header .pcnav {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .top__ttl h1 {
    right: 50px;
    font-size: 46px;
    top: -170px;
  }
  .top__img .slide-container {
    margin-top: 240px;
  }
  .top__img .slide {
    width: 80vw;
    height: 500px;
  }
  .top__img .slide .slide-image {
    width: 80vw;
    height: 500px;
  }
  .top__img p {
    left: 22%;
    font-size: 17px;
  }
  .greeting {
    padding-top: 100px;
    width: 100vw;
  }
  .greeting__ttl {
    width: 80vw;
    margin: 0 auto;
  }
  .greeting__ttl h2 {
    font-size: 50px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .greeting__content {
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }
  .greeting__content .sentence {
    width: 80vw;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .greeting__content .sentence p {
    width: 80vw;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
  }
  .greeting__content .representative {
    width: 600px;
    margin: 0 auto;
    height: 280px;
    display: flex;
    justify-content: space-around;
    background-color: #eee;
  }
  .greeting__content .representative img {
    height: 220px;
    width: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 0;
    margin: auto 0;
    margin-left: 20px;
  }
  .greeting__content .representative p {
    text-align: left;
    margin: auto 0;
    line-height: 1.7;
    margin-right: 20px;
  }
  .movie {
    padding-top: 60px;
    width: 600px;
  }
  .movie iframe {
    height: 380px;
  }
  .feature {
    margin-top: 100px;
    padding-bottom: 60px;
  }
  .feature__ttl h2 {
    width: 80vw;
    font-size: 50px;
  }
  .feature__contents {
    margin-top: 20px;
  }
  .feature__contents ul li {
    width: 80vw;
    padding: 16px;
  }
  .feature__contents ul li .space-btw .sentence h3 {
    font-size: 20px;
  }
  .feature__contents ul li .space-btw .sentence p {
    width: 40vw;
    font-size: 16px;
  }
  .feature__contents ul li .space-btw img {
    width: 35vw;
  }
  .slogan__ttl {
    width: 80vw;
    margin: 0 auto;
  }
  .slogan__ttl h2 {
    font-size: 50px;
    width: 80vw;
  }
  .slogan__contents {
    margin-top: 0;
  }
  .slogan__contents .vision1 {
    width: 80vw;
    position: relative;
  }
  .slogan__contents .vision1__ttl {
    width: 78vw;
    margin: 0 auto;
  }
  .slogan__contents .vision1__ttl h3 {
    font-size: 24px;
    margin-top: 0;
  }
  .slogan__contents .vision1__ttl p {
    font-size: 16px;
  }
  .slogan__contents .vision1__list {
    width: 80vw;
    margin: 0 auto;
  }
  .slogan__contents .vision1__list .sea {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 50px;
  }
  .slogan__contents .vision1__list .sea__img {
    width: 100%;
  }
  .slogan__contents .vision1__list .sea__img img {
    width: 100%;
    height: 300px;
  }
  .slogan__contents .vision1__list .sea__sentence {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .slogan__contents .vision1__list .sea__sentence p {
    margin: 0 auto;
    margin-top: 20px;
    font-size: 16px;
  }
  .slogan__contents .vision1__list .sea__sentence hr {
    width: 90%;
    margin: 20px auto;
  }
  .slogan__contents .vision1__list .sea__sentence .initiatives {
    margin: 16px;
  }
  .slogan__contents .vision1__list .sea__sentence .initiatives ul {
    margin-bottom: 20px;
  }
  .slogan__contents .vision1__list .sea__sentence .initiatives ul li {
    margin-left: 22px;
  }
  .slogan__contents .vision1__list .human {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 50px;
  }
  .slogan__contents .vision1__list .human__img {
    width: 100%;
  }
  .slogan__contents .vision1__list .human__img img {
    width: 100%;
    height: 300px;
  }
  .slogan__contents .vision1__list .human__sentence {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .slogan__contents .vision1__list .human__sentence p {
    margin: 0 auto;
    margin-top: 20px;
    font-size: 16px;
  }
  .slogan__contents .vision1__list .human__sentence hr {
    width: 90%;
    margin: 20px auto;
  }
  .slogan__contents .vision1__list .human__sentence .initiatives {
    margin: 16px;
  }
  .slogan__contents .vision1__list .human__sentence .initiatives ul {
    margin-bottom: 20px;
  }
  .slogan__contents .vision1__list .human__sentence .initiatives ul li {
    margin-left: 22px;
  }
  .slogan__contents .vision1__list .town {
    flex-direction: column;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 50px;
  }
  .slogan__contents .vision1__list .town__img {
    width: 100%;
  }
  .slogan__contents .vision1__list .town__img img {
    width: 100%;
    height: 300px;
  }
  .slogan__contents .vision1__list .town__sentence {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .slogan__contents .vision1__list .town__sentence p {
    margin: 0 auto;
    margin-top: 20px;
    font-size: 16px;
  }
  .slogan__contents .vision1__list .town__sentence hr {
    width: 90%;
    margin: 20px auto;
  }
  .slogan__contents .vision1__list .town__sentence .initiatives {
    margin: 16px;
  }
  .slogan__contents .vision1__list .town__sentence .initiatives ul {
    margin-bottom: 20px;
  }
  .slogan__contents .vision1__list .town__sentence .initiatives ul li {
    margin-left: 22px;
  }
  .slogan__contents .vision2 {
    width: 80vw;
  }
  .slogan__contents .vision2__ttl h3 {
    font-size: 24px;
  }
  .slogan__contents .vision2__ttl p {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .slogan__contents .vision2__img {
    width: 80vw;
  }
  .slogan__contents .vision2__img ul {
    margin-top: 0px;
    margin-bottom: 40px;
  }
  .slogan__contents .vision2__img ul li img {
    width: 38vw;
    height: auto;
    margin-bottom: 0;
    overflow: hidden;
  }
  .message {
    width: 100vw;
    height: 380px;
    margin-top: 0;
  }
  .message img {
    height: 380px;
  }
  .message h3 {
    font-size: 34px;
    width: 560px;
    margin: 0 auto;
  }
  .message p {
    font-size: 18px;
    width: 560px;
    margin: 0 auto;
  }
  .sdgs {
    width: 100vw;
  }
  .sdgs__ttl {
    width: 80vw;
  }
  .sdgs__ttl h2 {
    width: 80vw;
    margin: 0 auto;
    font-size: 50px;
  }
  .sdgs__ttl p {
    font-size: 16px;
    width: 80vw;
    margin: 0 auto;
  }
  .sdgs__contents .sdgs-img {
    width: 78vw;
  }
  .sdgs__contents .sdgs-img img {
    width: 78vw;
  }
  .info__ttl {
    width: 80vw;
    margin: 0 auto;
  }
  .info__ttl h2 {
    font-size: 50px;
  }
  .info__contents {
    width: 80vw;
    margin: 0 auto;
  }
  .info__contents dl dt {
    font-size: 16px;
    margin-top: 1rem;
    padding-left: 10px;
  }
  .info__contents dl dd {
    font-size: 16px;
    margin-bottom: 0.2rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  .aboutus__ttl {
    width: 80vw;
    margin: 0 auto;
  }
  .aboutus__ttl h2 {
    font-size: 50px;
    margin-bottom: 0px;
  }
  .aboutus__contents table {
    width: 80vw;
  }
  .aboutus__contents table tr {
    line-height: 4;
    font-size: 16px;
  }
  .aboutus__contents table tr th {
    padding-left: 20px;
    padding-right: 20px;
  }
  .aboutus__contents table tr td {
    line-height: 1.2;
  }
  .aboutus__contents p {
    width: 70vw;
    margin: 0 auto;
    font-size: 16px;
    padding-bottom: 50px;
    line-height: 1.2;
    margin-top: 20px;
    text-align: left;
  }
  .footer {
    height: 70px;
  }
  .footer .copy {
    width: 90vw;
    margin: 0 auto;
    text-align: left;
    line-height: 20px;
    margin-top: 20px;
    font-family: sans-serif;
    font-size: 14px;
  }
}
@media screen and (max-width: 840px) {
  .top__ttl h1 {
    right: 40px;
    font-size: 40px;
    top: -150px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 730px) {
  .top__ttl h1 {
    right: 30px;
    font-size: 36px;
    top: -130px;
  }
  .greeting__content .representative {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    flex-direction: column;
    background-color: white;
  }
  .greeting__content .representative img {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .greeting__content .representative p {
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .top__ttl h1 {
    right: 20px;
    font-size: 32px;
    top: -120px;
  }
  .slogan__contents .vision2__img ul {
    flex-direction: column;
  }
  .slogan__contents .vision2__img ul li img {
    width: 80vw;
    height: auto;
    margin-bottom: 20px;
  }
  .message {
    height: 300px;
  }
  .message img {
    height: 300px;
  }
  .message h3 {
    font-size: 30px;
    width: 500px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .message p {
    font-size: 16px;
    width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .header {
    width: 100vw;
  }
  .header__name p {
    padding-left: 0px;
    writing-mode: horizontal-tb !important;
    padding-top: 20px;
    padding-left: 20px;
    word-break: break-all;
    text-align: center;
    font-size: 14px;
  }
  .header__nav {
    margin-top: 0;
    padding-right: 14px;
  }
  .header__nav .hamburger {
    margin-left: 14px;
    right: 4px;
    top: 12px;
  }
  .top {
    position: relative;
  }
  .top__ttl h1 {
    margin: 0 auto;
    top: -100px;
    white-space: nowrap;
    font-size: 26px;
  }
  .top__img .slide-container {
    margin-top: 100px;
  }
  .top__img .slide-container p {
    bottom: 20px;
    left: 20px;
  }
  .top__img .slide-container p .number {
    text-combine-upright: all;
  }
  .top__img .slide-container p .inline-block {
    display: inline-block;
  }
  .top__img .slide {
    height: 500px;
    width: 100vw;
  }
  .top__img .slide .slide-image {
    width: 100vw;
  }
  .greeting {
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 50px;
  }
  .greeting__ttl {
    width: 90vw;
    margin: 0 auto;
  }
  .greeting__content {
    width: 90vw;
    margin: 0 auto;
  }
  .greeting__content .sentence {
    width: 90vw;
  }
  .greeting__content .sentence p {
    width: 90vw;
  }
  .movie {
    padding-top: 50px;
    width: 90vw;
  }
  .movie iframe {
    width: 90vw;
    height: 260px;
  }
  .feature {
    margin-top: 50px;
    padding-bottom: 50px;
  }
  .feature__ttl {
    width: 90vw;
    margin: 0 auto;
  }
  .feature__ttl h2 {
    width: 90vw;
    margin: 0 auto;
  }
  .feature__contents ul li {
    width: 90vw;
    margin-bottom: 40px;
  }
  .feature__contents ul li .space-btw {
    display: flex;
    flex-direction: column;
  }
  .feature__contents ul li .space-btw .sentence h3 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .feature__contents ul li .space-btw .sentence p {
    width: 100%;
    padding-bottom: 10px;
  }
  .feature__contents ul li .space-btw img {
    width: 100%;
  }
  .feature__btn {
    margin-top: 40px;
    margin-bottom: 0px;
  }
  .slogan__ttl {
    width: 90vw;
    margin: 0 auto;
  }
  .slogan__ttl h2 {
    padding-top: 50px;
    width: 90vw;
    margin: 0 auto;
  }
  .slogan__contents .vision1 {
    width: 90vw;
    margin: 0 auto;
    padding-top: 0;
    padding: 0;
  }
  .slogan__contents .vision1 ::after {
    background-color: transparent;
  }
  .slogan__contents .vision1__list {
    width: 90vw;
  }
  .slogan__contents .vision1__ttl {
    width: 90vw;
    margin: 0 auto;
  }
  .slogan__contents .vision1 .human {
    width: 90vw;
  }
  .slogan__contents .vision1 .human img {
    height: 200px;
    width: 90vw;
  }
  .slogan__contents .vision1 .human__sentence {
    width: 90vw;
  }
  .slogan__contents .vision1 .town {
    width: 90vw;
  }
  .slogan__contents .vision1 .town img {
    height: 200px;
    width: 90vw;
  }
  .slogan__contents .vision1 .town__sentence {
    width: 90vw;
  }
  .slogan__contents .vision1 .sea {
    width: 90vw;
  }
  .slogan__contents .vision1 .sea img {
    height: 200px;
    width: 90vw;
  }
  .slogan__contents .vision1 .sea__sentence {
    width: 90vw;
  }
  .slogan__contents .vision2 {
    width: 90vw;
    margin: 0 auto;
    padding-top: 0;
    padding: 0;
  }
  .slogan__contents .vision2 ::after {
    background-color: transparent;
  }
  .slogan__contents .vision2__ttl {
    width: 90vw;
    margin: 0 auto;
  }
  .slogan__contents .vision2__ttl P {
    font-size: 16px;
  }
  .slogan__contents .vision2__img ul {
    flex-direction: column;
  }
  .slogan__contents .vision2__img ul li img {
    width: 90vw;
    height: auto;
  }
  .sdgs__ttl {
    margin-top: 60px;
    width: 90vw;
  }
  .sdgs__ttl h2 {
    width: 90vw;
  }
  .sdgs__ttl p {
    width: 90vw;
  }
  .sdgs__contents .sdgs-img {
    width: 88vw;
  }
  .sdgs__contents .sdgs-img img {
    width: 88vw;
  }
  .info {
    margin-top: 0;
  }
  .info__ttl {
    width: 90vw;
  }
  .info__contents {
    width: 90vw;
  }
  .aboutus__ttl {
    width: 90vw;
  }
  .aboutus__contents table {
    width: 90vw;
  }
  .aboutus__contents table tr th {
    padding-left: 0;
  }
  .aboutus__contents p {
    width: 80vw;
  }
  .footer {
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer .copy {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 510px) {
  .message {
    height: 280px;
  }
  .message img {
    height: 280px;
  }
  .message h3 {
    font-size: 20px;
    width: 90vw;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .message p {
    width: 90vw;
  }
  .message p .non-br {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  .greeting__ttl h2 {
    font-size: 40px;
  }
  .feature__ttl h2 {
    font-size: 40px;
  }
  .slogan__ttl h2 {
    font-size: 40px;
  }
  .sdgs__ttl h2 {
    font-size: 40px;
  }
  .info__ttl h2 {
    font-size: 40px;
  }
  .aboutus__ttl h2 {
    font-size: 40px;
  }
}/*# sourceMappingURL=english.css.map */