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

a {
  text-decoration: none;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
}

.detail {
  margin: 0 auto;
  margin-top: 30px;
  border: solid 1px black;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 200px;
  padding: 10px 25px;
  color: black;
  transition: 0.3s ease-in-out;
  font-family: serif;
}
.detail:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}
.detail:hover {
  background: black;
  color: white;
}
.detail:hover:after {
  right: -2.5em;
}

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

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

.header {
  height: 120px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  position: fixed;
  z-index: 1000;
  width: 100vw;
}
.header__contents {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header__contents__name {
  margin-top: 30px;
  margin-left: 40px;
}
.header__contents__name a img {
  height: 30px;
  width: 200px;
  padding-left: 20px;
  margin-top: 10px;
}
.header__contents__nav {
  margin-top: 20px;
}
.header__contents__nav .pcnav ul {
  display: flex;
  justify-content: space-around;
}
.header__contents__nav .pcnav ul li {
  font-size: 14px;
}
.header__contents__nav .pcnav ul li:hover ul {
  display: block;
}
.header__contents__nav .pcnav ul li a {
  color: black;
  line-height: 70px;
  margin-right: 20px;
  position: relative;
  text-decoration: none; /*デフォルトで下線を非表示*/
}
.header__contents__nav .pcnav ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: #cc3638; /*下線の色*/
  transition: all 0.3s; /*アニメーション速度*/
  transform: scaleX(0);
}
.header__contents__nav .pcnav ul li a:hover::after {
  width: 100%;
  transform: scaleX(1);
}
.header__contents__nav .pcnav ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
  margin-bottom: 4px;
}
.header__contents__nav .pcnav ul li p {
  line-height: 70px;
  margin-right: 20px;
  cursor: pointer;
}
.header__contents__nav .pcnav ul ul {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  box-shadow: 6px 6px 25px 0 rgba(116, 116, 116, 0.5);
  width: -moz-max-content;
  width: max-content;
  height: 246px;
  display: none;
}
.header__contents__nav .pcnav ul ul:before {
  content: "";
  position: absolute;
  left: 45%;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
}
.header__contents__nav .pcnav ul ul li {
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  margin: 0 auto;
}
.header__contents__nav .pcnav ul ul li a {
  color: #444;
  line-height: 1;
  font-size: 16px;
}
.header__contents__nav .pcnav ul ul li a:hover {
  color: black;
}
.header__contents__nav .pcnav ul ul li a:hover::after {
  display: none;
}
.header__contents__nav .pcnav ul ul li a img {
  width: 240px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 24px;
  margin-bottom: 10px;
  display: block;
  filter: brightness(40%);
  transition: 0.6s;
}
.header__contents__nav .pcnav ul ul li a img:hover {
  filter: brightness(100%);
}
.header__contents__nav .pcnav ul ul li a .number {
  font-size: 18px;
  margin-right: 10px;
  color: #cc3638;
  font-family: serif;
}
.header__contents__lang {
  height: 70px;
}
.header__contents__lang .english {
  margin-top: 20px;
  margin-right: 40px;
  display: inline-block;
  letter-spacing: 0.1rem;
  line-height: 70px;
  color: black;
}
.header__contents__lang .english img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  position: absolute;
  top: 43px;
  right: 105px;
}
.header .hambarger {
  display: none;
}
.header .globalMenuSp {
  display: none;
}

.top {
  width: 100vw;
  margin: 0 auto;
}
.top__img .slide-container .slide {
  position: relative;
  width: 100vw;
  margin: 0 0 0 auto;
  height: 100vh;
  overflow: hidden;
}
.top__img .slide-container .slide .slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  overflow: hidden;
  animation: slider-1 24s linear infinite;
}
.top__img .slide-container .slide .slide-image:nth-child(1) {
  background-image: url(../img/top2.jpg);
  animation-delay: -2s;
}
.top__img .slide-container .slide .slide-image:nth-child(2) {
  background-image: url(../img/kamaishi_sea.jpg);
  animation-delay: 6s;
}
.top__img .slide-container .slide .slide-image:nth-child(3) {
  background-image: url(../img/top3.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 .slide-container .ttl {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: 40px;
  z-index: 200;
}
.top__img .slide-container .ttl__box {
  display: inline-block;
}
.top__img .slide-container .ttl__box .title_text {
  text-align: left;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  width: 0%;
  animation: title_text 1.5s forwards linear;
}
.top__img .slide-container .ttl__box .title_text h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 100px;
  display: inline;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5803921569), rgba(255, 255, 255, 0.5803921569));
  padding-left: 10px;
  padding-right: 10px;
  font-family: serif;
}
.top__img .slide-container .ttl__box .delay {
  animation-delay: 1.1s;
}
@keyframes title_text {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.top__img .slide-container .scrolldown {
  position: absolute;
  bottom: 40px;
  left: 50%;
}
.top__img .slide-container .scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.top__img .slide-container .scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 80px;
  background: #eee;
}
@keyframes circlemove {
  0% {
    bottom: 75px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.info__ttl {
  margin-left: 90px;
  padding-top: 140px;
}
.info__ttl h2 {
  font-size: 28px;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  word-break: keep-all;
  margin-right: 80px;
}
.info__ttl h2::before {
  border-top: 2px solid black;
  content: "";
  width: 100px;
  margin-right: 20px;
}
.info__contents {
  padding-bottom: 80px;
  width: 900px;
  margin: 0 auto;
}
.info .tab-wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.info .tab-wrap:after {
  content: "";
  height: 20px;
  order: -1;
  width: 100%;
}
.info .tab-wrap .tab-label {
  color: Gray;
  flex: 1;
  font-weight: bold;
  order: -1;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  border-bottom: 2px lightgray solid;
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.info .tab-wrap .tab-label:hover {
  cursor: pointer;
}
.info .tab-wrap .tab-label:after {
  background: #cc3638;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  top: 48px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) 0.2s 80ms;
  width: 100%;
  z-index: 1;
}
.info .tab-wrap .tab-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform 0.3s 80ms, opacity 0.3s 80ms;
  width: 100%;
}
.info .tab-wrap .tab-content p {
  line-height: 3;
  font-size: 14px;
}
.info .tab-wrap .tab-content p .tag {
  font-size: 12px;
  margin: 20px 30px;
  background-color: rgb(220, 220, 220);
  display: inline-block;
  width: 120px;
  text-align: center;
}
.info .tab-switch:checked + .tab-label {
  color: #cc3638;
}
.info .tab-switch:checked ~ .tab-label::after {
  transform: translateX(-100%);
}
.info .tab-switch:checked + .tab-label::after {
  opacity: 1;
  transform: translateX(0);
}
.info .tab-switch:checked ~ .tab-content {
  transform: translateX(30%);
}
.info .tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.info .tab-switch {
  display: none;
}
.info .more {
  margin: 0 200px 100px auto;
}

.aboutus {
  background-color: #E7F0F7;
  padding-top: 100px;
  padding-bottom: 100px;
}
.aboutus__contents {
  width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.aboutus__contents__sentence {
  font-family: serif;
  width: 504px;
  line-height: 2;
  margin-top: 30px;
}
.aboutus__contents__sentence h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.aboutus__contents__sentence p {
  font-size: 16px;
  padding-bottom: 18px;
}
.aboutus__contents__img {
  max-width: 450px;
  height: 710px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 30px;
}
.aboutus__contents__img img {
  width: 450px;
  height: 800px;
  overflow: hidden;
}

.products {
  margin-top: 100px;
  margin-bottom: 120px;
  position: relative;
}
.products__ttl h2 {
  font-size: 28px;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  margin-left: 100px;
}
.products__ttl h2::before {
  border-top: 2px solid black;
  content: "";
  width: 100px;
  margin-right: 20px;
}
.products__contents {
  width: 860px;
  margin: 0 auto;
}
.products__contents__btob__img {
  position: absolute;
}
.products__contents__btob__img img {
  width: 540px;
}
.products__contents__btob__sentence {
  background-color: white;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -webkit-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -moz-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  width: 440px;
  height: 320px;
  padding: 30px;
  position: relative;
  top: 120px;
  left: 420px;
  margin-bottom: 200px;
}
.products__contents__btob__sentence .number {
  font-size: 18px;
  margin-left: 4px;
}
.products__contents__btob__sentence h3 {
  font-size: 28px;
  letter-spacing: 0.1rem;
}
.products__contents__btob__sentence .discription {
  font-size: 14px;
  margin-top: 16px;
}
.products__contents__btob__sentence a {
  margin: 30px auto 0 0;
}
.products__contents__btoc {
  margin-left: 280px;
}
.products__contents__btoc__img {
  position: absolute;
}
.products__contents__btoc__img img {
  width: 580px;
}
.products__contents__btoc__sentence {
  background-color: white;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -webkit-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -moz-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  width: 440px;
  height: 320px;
  padding: 30px;
  position: relative;
  top: 120px;
  right: 280px;
  margin-bottom: 200px;
}
.products__contents__btoc__sentence .number {
  font-size: 18px;
  margin-left: 4px;
  margin-top: 0;
}
.products__contents__btoc__sentence h3 {
  font-size: 28px;
  letter-spacing: 0.1rem;
}
.products__contents__btoc__sentence .discription {
  font-size: 14px;
  margin-top: 16px;
}
.products__contents__btoc__sentence p {
  margin: 30px auto 0 0;
}
.products__contents__restran__img {
  position: absolute;
}
.products__contents__restran__img img {
  width: 540px;
}
.products__contents__restran__sentence {
  background-color: white;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -webkit-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  -moz-box-shadow: rgba(238, 238, 238, 0.509804) 9px 9px 10px -4px;
  width: 440px;
  height: 330px;
  padding: 30px;
  position: relative;
  top: 120px;
  left: 420px;
  margin-bottom: 200px;
}
.products__contents__restran__sentence .number {
  font-size: 18px;
  margin-left: 4px;
}
.products__contents__restran__sentence h3 {
  font-size: 28px;
}
.products__contents__restran__sentence .discription {
  font-size: 14px;
  margin-top: 16px;
}
.products__contents__restran__sentence a {
  margin: 30px auto 0 0;
}

.process {
  background-color: #E7F0F7;
  padding-top: 100px;
  padding-bottom: 100px;
}
.process h2 {
  font-size: 28px;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  margin-left: 90px;
}
.process h2::before {
  border-top: 2px solid black;
  content: "";
  width: 100px;
  margin-right: 20px;
}
.process .swiper--wrapper {
  width: 100%;
  height: 300px;
}
.process .swiper-slide .process__img {
  width: 700px;
  position: relative;
  margin: 0 auto;
}
.process .swiper-slide .process__img img {
  width: 700px;
}
.process .swiper-slide .sentence {
  background-color: white;
  border: 1px solid rgb(238, 238, 238);
  box-shadow: rgba(170, 170, 170, 0.5) 9px 9px 10px -4px;
  -webkit-box-shadow: rgba(170, 170, 170, 0.5) 9px 9px 10px -4px;
  -moz-box-shadow: rgba(170, 170, 170, 0.5) 9px 9px 10px -4px;
  width: 600px;
  height: 160px;
  margin: 0 auto;
  margin-top: -80px;
  margin-bottom: 100px;
  position: relative;
  z-index: 100;
}
.process .swiper-slide .sentence .ttl {
  font-size: 24px;
  letter-spacing: 0.1rem;
  margin-top: 20px;
  margin-left: 30px;
}
.process .swiper-slide .sentence .ttl span {
  letter-spacing: 0;
  font-size: 20px;
}
.process .swiper-slide .sentence .discription {
  font-size: 14px;
  margin-top: 10px;
  margin-left: 30px;
  width: 540px;
  word-wrap: break-word;
}
.process .swiper-button-prev {
  display: none;
}
.process .swiper-button-next {
  display: none;
}

.sdgs {
  margin-top: 100px;
  margin-bottom: 50px;
}
.sdgs a {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  position: relative;
  top: 0;
  transition-duration: 0.5s;
}
.sdgs a:hover {
  top: -20px;
  opacity: 0.7;
  transition: 0.5s;
}
.sdgs a .sdgs__sentence {
  background-color: #cc3638;
  color: white;
  width: 26%;
  height: 420px;
  text-align: center;
}
.sdgs a .sdgs__sentence__ttl {
  font-size: 16px;
  margin-top: 140px;
}
.sdgs a .sdgs__sentence h3 {
  font-size: 36px;
  margin: 14px;
  letter-spacing: 0.1rem;
}
.sdgs a .sdgs__sentence div img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  padding-bottom: 4px;
}
.sdgs a .sdgs__img {
  width: 74%;
}
.sdgs a .sdgs__img img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}

.activity-recruit {
  display: flex;
  justify-content: space-between;
  width: 80vw;
  margin: 0 auto;
  margin-bottom: 100px;
}
.activity-recruit a {
  position: relative;
  color: black;
  position: relative;
  top: 0;
  transition-duration: 0.5s;
  width: 38vw;
}
.activity-recruit a:hover {
  top: -20px;
  opacity: 0.7;
  transition: 0.5s;
}
.activity-recruit a img {
  width: 38vw;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.activity-recruit a p {
  position: absolute;
  top: 80px;
  margin-left: 60px;
}
.activity-recruit a h3 {
  position: absolute;
  top: 104px;
  margin-left: 60px;
  font-size: 36px;
  letter-spacing: 0.1rem;
}
.activity-recruit a .recruit {
  color: white;
}

.sitemap {
  padding-bottom: 80px;
  width: 80vw;
  margin: 0 auto;
}
.sitemap img {
  width: 260px;
  height: 50px;
  margin-left: 50px;
}
.sitemap__contents {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}
.sitemap__contents__columns {
  display: flex;
  flex-flow: column;
}
.sitemap__contents__columns p {
  margin-bottom: 10px;
}
.sitemap__contents__columns a {
  margin-bottom: 10px;
  font-size: 14px;
  color: black;
}
.sitemap__contents__columns a:hover {
  opacity: 0.6;
}
.sitemap__contents__columns .ttl {
  font-size: 16px;
  font-weight: bolder;
}
.sitemap__contents__columns .border {
  display: flex;
  align-items: center;
}
.sitemap__contents__columns .border:before {
  border-top: 1px solid;
  content: "";
  width: 10px;
  margin-right: 6px;
}

footer {
  background-color: #0E2C59;
  color: white;
  text-align: center;
}
footer p {
  font-size: 12px;
  line-height: 4;
}
footer #page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}
footer #page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cc3638;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}
footer #page-top a:hover {
  background: #777;
}
footer .LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
footer #page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #0E2C59;
}

#loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.loading-one {
  display: inline-block;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

.loading-one p.loading-txt {
  color: #fff;
  font-family: serif;
  font-size: 32px;
  letter-spacing: 0.25em;
  line-height: 2;
  padding: 2em 0;
}

.animation_loading {
  animation: equalizer_loading 7000ms infinite;
  animation-iteration-count: 10;
}

@keyframes equalizer_loading {
  0% {
    width: 70%;
  }
  10% {
    width: 50%;
  }
  20% {
    width: 100%;
  }
  30% {
    width: 10%;
  }
  40% {
    width: 50%;
  }
  50% {
    width: 70%;
  }
  60% {
    width: 50%;
  }
  70% {
    width: 10%;
  }
  80% {
    width: 100%;
  }
  90% {
    width: 10%;
  }
  100% {
    width: 70%;
  }
}
@media only screen and (max-width: 1000px) {
  .aboutus {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .aboutus__contents {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .aboutus__contents__sentence {
    font-family: serif;
    width: 90%;
    margin: 0 auto;
  }
  .aboutus__contents__img {
    max-width: 90vw;
    height: 460px;
    margin: 0 auto;
    margin-top: 60px;
  }
  .aboutus__contents__img img {
    height: 460px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 900px) {
  .header {
    height: 80px;
    position: fixed;
    z-index: 1000;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    /* ナビ開いてる時のボタン */
    /* このクラスを、jQueryで付与・削除する */
  }
  .header__contents__name {
    margin-top: 10px;
    margin-left: 0px;
  }
  .header__contents__name img {
    margin-left: 0px;
  }
  .header__contents__lang {
    display: none;
  }
  .header__contents__nav {
    display: none;
  }
  .header .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    transition: 0.3s ease-in-out;
  }
  .header .hamburger span:nth-child(1) {
    top: 10px;
  }
  .header .hamburger span:nth-child(2) {
    top: 20px;
  }
  .header .hamburger span:nth-child(3) {
    top: 30px;
  }
  .header .hamburger.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  .header .hamburger.active span:nth-child(2) {
    width: 0px;
  }
  .header .hamburger.active span:nth-child(1),
  .header .hamburger.active span:nth-child(3) {
    background: #fff;
    transition-delay: 0.3s;
  }
  .header .hamburger.active span:nth-child(1) {
    transform: translateY(4px);
  }
  .header .hamburger.active span:nth-child(3) {
    transform: translateY(-16px) rotate(90deg);
  }
  .header .globalMenuSp {
    display: none;
    position: fixed;
    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 .globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .header .globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  .header .globalMenuSp ul li:first-child {
    margin-top: 100px;
  }
  .header .globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  .header .globalMenuSp ul li:hover {
    background: #ddd;
  }
  .header .globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }
  .header nav.globalMenuSp.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .info__ttl {
    margin-left: 40px;
    padding-top: 100px;
  }
  .info__ttl h2 {
    font-size: 24px;
  }
  .info__ttl h2::before {
    width: 70px;
  }
  .info__contents {
    padding-bottom: 40px;
    width: 90vw;
  }
  .info .tab-wrap .tab-content p {
    line-height: 3;
    font-size: 14px;
  }
  .info .tab-wrap .tab-content p .tag {
    font-size: 10px;
    margin: 16px 24px;
    width: 100px;
  }
  .info .more {
    margin: 0 50px 60px auto;
  }
  .products__ttl h2 {
    font-size: 24px;
    margin-left: 40px;
  }
  .products__ttl h2::before {
    width: 70px;
  }
  .products__contents {
    width: 90vw;
  }
  .products__contents__btob__img img {
    width: 54vw;
  }
  .products__contents__btob__sentence {
    width: 60vw;
    height: 320px;
    top: 80px;
    left: 34%;
  }
  .products__contents__btob__sentence .number {
    font-size: 16px;
  }
  .products__contents__btob__sentence h3 {
    font-size: 24px;
  }
  .products__contents__btob__sentence a {
    margin: 16px auto 0 0;
  }
  .products__contents__btoc__img img {
    width: 54vw;
  }
  .products__contents__btoc__sentence {
    width: 60vw;
    height: 280px;
    top: 80px;
    right: 280px;
    margin-bottom: 200px;
  }
  .products__contents__btoc__sentence .number {
    font-size: 16px;
  }
  .products__contents__btoc__sentence h3 {
    font-size: 24px;
  }
  .products__contents__btoc__sentence a {
    margin: 16px auto 0 0;
  }
  .products__contents__restran__img img {
    width: 54vw;
  }
  .products__contents__restran__sentence {
    width: 60vw;
    height: 320px;
    top: 80px;
    left: 34%;
    margin-bottom: 200px;
  }
  .products__contents__restran__sentence .number {
    font-size: 16px;
  }
  .products__contents__restran__sentence h3 {
    font-size: 24px;
  }
  .products__contents__restran__sentence a {
    margin: 16px auto 0 0;
  }
}
@media only screen and (max-width: 780px) {
  .top__img .slide-container .ttl__box .title_text h1 {
    font-size: 40px;
    line-height: 80px;
  }
  .top__img .slide-container .ttl__box .delay {
    animation-delay: 1.1s;
  }
  .process {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .process h2 {
    margin-bottom: 40px;
    font-size: 24px;
    margin-left: 40px;
  }
  .process h2::before {
    width: 70px;
  }
  .process .swiper-slide .process__img {
    width: 70%;
  }
  .process .swiper-slide .process__img img {
    width: 100%;
  }
  .process .swiper-slide .sentence {
    width: 60%;
    margin-bottom: 80px;
  }
  .process .swiper-slide .sentence .discription {
    width: 90%;
  }
  .process .swiper-button-prev {
    width: 60px;
    height: 60px;
    margin-left: 20px;
  }
  .process .swiper-button-next {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  .sdgs {
    margin-top: 80px;
    margin-bottom: 30px;
  }
  .sdgs a .sdgs__sentence {
    height: 280px;
  }
  .sdgs a .sdgs__sentence__ttl {
    font-size: 12px;
    margin-top: 80px;
  }
  .sdgs a .sdgs__sentence h3 {
    font-size: 30px;
    margin: 10px;
  }
  .sdgs a .sdgs__sentence div img {
    width: 26px;
    margin-right: 10px;
    padding-bottom: 4px;
  }
  .sdgs a .sdgs__img img {
    height: 280px;
  }
  .activity-recruit {
    width: 80vw;
    margin-bottom: 80px;
  }
  .activity-recruit a img {
    height: 200px;
  }
  .activity-recruit a p {
    top: 70px;
    margin-left: 30px;
  }
  .activity-recruit a h3 {
    top: 90px;
    margin-left: 30px;
    font-size: 30px;
  }
  .sitemap {
    padding-bottom: 40px;
  }
  .sitemap img {
    width: 180px;
    height: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 20px;
  }
  .sitemap__contents {
    margin-top: 30px;
  }
  .sitemap__contents__columns a {
    font-size: 12px;
    color: black;
  }
  .sitemap__contents__columns .ttl {
    font-size: 14px;
    font-weight: bolder;
  }
  footer p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .products__contents {
    width: 90vw;
  }
  .products__contents__btob__img img {
    width: 52vw;
  }
  .products__contents__btob__sentence {
    width: 60vw;
    height: 280px;
    top: 80px;
    left: 34%;
  }
  .products__contents__btob__sentence .number {
    font-size: 16px;
  }
  .products__contents__btob__sentence h3 {
    font-size: 24px;
  }
  .products__contents__btob__sentence a {
    margin: 16px auto 0 0;
  }
  .products__contents__btoc {
    margin-left: 260px;
  }
  .products__contents__btoc__img img {
    width: 52vw;
  }
  .products__contents__btoc__sentence {
    width: 56vw;
    height: 280px;
    top: 80px;
    right: 300px;
    margin-bottom: 200px;
  }
  .products__contents__btoc__sentence .number {
    font-size: 16px;
  }
  .products__contents__btoc__sentence h3 {
    font-size: 24px;
  }
  .products__contents__btoc__sentence a {
    margin: 16px auto 0 0;
  }
  .products__contents__restran__img img {
    width: 52vw;
  }
  .products__contents__restran__sentence {
    width: 60vw;
    height: 320px;
    top: 80px;
    left: 34%;
    margin-bottom: 200px;
  }
  .products__contents__restran__sentence .number {
    font-size: 16px;
  }
  .products__contents__restran__sentence h3 {
    font-size: 24px;
  }
  .products__contents__restran__sentence a {
    margin: 16px auto 0 0;
  }
  .sitemap {
    padding-bottom: 20px;
  }
  .sitemap img {
    width: 180px;
    height: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0px;
  }
  .sitemap__contents {
    margin-top: 30px;
    flex-direction: column;
  }
  .sitemap__contents__columns {
    margin-bottom: 20px;
  }
  .sitemap__contents__columns a {
    font-size: 16px;
    color: black;
  }
  .sitemap__contents__columns .ttl {
    font-size: 18px;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 600px) {
  .products__contents {
    width: 80vw;
  }
  .products__contents__btob {
    padding-bottom: 280px;
  }
  .products__contents__btob__img img {
    width: 80vw;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .products__contents__btob__sentence {
    width: 80vw;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    top: 240px;
    margin-bottom: 0px;
    padding: 14px 24px;
  }
  .products__contents__btob__sentence h3 {
    font-size: 22px;
  }
  .products__contents__btob__sentence .discription {
    margin: 8px auto 0 0;
  }
  .products__contents__btoc {
    padding-bottom: 260px;
    margin-left: 0px;
  }
  .products__contents__btoc__img img {
    width: 80vw;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .products__contents__btoc__sentence {
    width: 80vw;
    height: -moz-fit-content;
    height: fit-content;
    right: 0;
    top: 220px;
    margin-bottom: 0px;
    padding: 14px 24px;
  }
  .products__contents__btoc__sentence h3 {
    font-size: 22px;
  }
  .products__contents__btoc__sentence .discription {
    margin: 8px auto 0 0;
  }
  .products__contents__restran {
    padding-bottom: 160px;
  }
  .products__contents__restran__img img {
    width: 80vw;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .products__contents__restran__sentence {
    width: 80vw;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    top: 220px;
    margin-bottom: 0px;
    padding: 14px 24px;
  }
  .products__contents__restran__sentence h3 {
    font-size: 22px;
  }
  .products__contents__restran__sentence .discription {
    margin: 8px auto 0 0;
  }
  .sdgs {
    margin-top: 50px;
  }
  .sdgs a {
    height: 200px;
  }
  .sdgs a .sdgs__sentence {
    height: 200px;
    width: 130px;
  }
  .sdgs a .sdgs__sentence__ttl {
    display: none;
  }
  .sdgs a .sdgs__sentence h3 {
    font-size: 26px;
    margin: 60px 10px 10px 10px;
  }
  .sdgs a .sdgs__sentence div {
    font-size: 12px;
    margin: 0 10px;
  }
  .sdgs a .sdgs__sentence div img {
    width: 20px;
    margin-right: 6px;
  }
  .sdgs a .sdgs__img img {
    height: 200px;
  }
}
@media only screen and (max-width: 530px) {
  .top__img .slide-container .ttl {
    top: 5%;
    left: 32%;
    transform: translateX(-50%);
  }
  .top__img .slide-container .ttl__box {
    writing-mode: vertical-rl;
  }
  .top__img .slide-container .ttl__box .title_text h1 {
    font-size: 28px;
    line-height: 30px;
    display: inline-block;
    padding: 20px 10px;
    margin: 10px;
  }
}
@media only screen and (max-width: 430px) {
  .detail {
    margin-top: 0px;
    max-width: 160px;
    padding: 6px 20px;
    font-size: 16px;
  }
  .detail:after {
    width: 50px;
  }
  .detail:hover:after {
    right: -2.5em;
  }
  .aboutus {
    padding-top: 38px;
    padding-bottom: 50px;
  }
  .aboutus h3 {
    margin-bottom: 20px;
    line-height: 1.8;
  }
  .aboutus p {
    line-height: 1.8;
  }
  .aboutus .more {
    margin-top: 14px;
  }
  .info {
    margin-top: 50px;
  }
  .info__ttl {
    padding-top: 0;
  }
  .info__ttl h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .info__ttl h2::before {
    width: 50px;
  }
  .info__contents {
    padding-bottom: 20px;
    width: 90vw;
  }
  .info .tab-wrap .tab-label {
    font-size: 14px;
    padding: 10px 12px 17px 12px;
  }
  .info .tab-wrap .tab-content p {
    line-height: 3;
    font-size: 14px;
  }
  .info .tab-wrap .tab-content p .tag {
    font-size: 10px;
    margin: 16px 20px;
    width: 100px;
  }
  .info .tab-wrap .tab-content p .block {
    display: block;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .info .more {
    margin: 0 auto 50px auto;
  }
  .products {
    margin-top: 50px;
  }
  .products__ttl h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .products__ttl h2::before {
    width: 50px;
  }
  .process {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .process h2 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .process h2::before {
    width: 50px;
  }
  .process .swiper-slide .process__img {
    width: 80%;
  }
  .process .swiper-slide .process__img img {
    width: 100%;
  }
  .process .swiper-slide .sentence {
    width: 70%;
    height: 220px;
    margin-bottom: 50px;
  }
  .process .swiper-slide .sentence .ttl {
    font-size: 20px;
    margin-bottom: 14px;
    margin-left: 20px;
  }
  .process .swiper-slide .sentence .ttl span {
    font-size: 14px;
  }
  .process .swiper-slide .sentence .discription {
    width: 90%;
    margin: 0 auto;
    padding-left: 10px;
    font-size: 16px;
  }
  .process .swiper-button-prev {
    display: none;
  }
  .process .swiper-button-next {
    display: none;
  }
  .process .more {
    margin-top: 20px;
  }
  .activity-recruit {
    margin-bottom: 70px;
  }
  .activity-recruit a img {
    height: 140px;
  }
  .activity-recruit a p {
    top: 40px;
    margin-left: 10px;
    font-size: 12px;
  }
  .activity-recruit a h3 {
    top: 60px;
    margin-left: 10px;
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */