@charset "UTF-8";
body {
  color: #15283f;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  -webkit-tap-highlight-color: transparent; /* 強調をなくす */
}

.sora, .en {
  font-family: "Sora", sans-serif;
}

/* Loading */
#loading {
  transition: width 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1.8s;
  background-color: #879db9;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3000;
}

#loading.active {
  width: 0;
}

#loading .logo {
  position: absolute;
  top: 50%;
  left: -1%;
  opacity: 0;
  color: #fff;
  font-size: 210px;
  font-weight: 900;
  line-height: 1.15;
  background-size: 100% auto;
  animation-delay: 0.3s;
  animation: logo 0.8s ease 0.2s 1 forwards;
  transform: translate(0, -50%);
  transform-origin: center;
}

#loading .bar {
  position: relative;
  width: 0;
  height: 100%;
  background-color: #f2f1ef;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1.2s;
}

#loading .bar.active {
  width: 100%;
}
@keyframes logo {
  0% {
    opacity: 0;
    margin-top: 22px;
  }
  50% {
    opacity: 0;
    margin-top: 22px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
/* Button */
.round-btn {
  pointer-events: auto;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: stretch;
  display: inline-flex;
  width: 210px;
  height: 60px;
}

.round-btn:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #d6e2ed;
  border-radius: 40px;
  transition-duration: 0.8s;
}

.top-news__bl:hover .round-btn:before {
  background-color: #fff;
  transition-duration: 0.8s;
}

.round-btn__label {
  z-index: 2;
  position: relative;
  padding-left: 30px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 20px;
  text-decoration: underline;
}

.round-btn__arw {
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 27px;
  height: 27px;
  margin-top: -13.5px;
  border-radius: 50%;
  border: 1px solid #cdd4d4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: stretch;
}

.round-btn__arw:after {
  content: "";
  display: block;
  width: 15px;
  height: 7px;
  background-image: url("../img/index/arrow.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.round-btn--blank .round-btn__arw:after {
  transform: rotate(0.0001deg) rotateZ(-45deg);
}

.round-btn--small {
  width: 120px;
  height: 40px;
}

.round-btn--small .round-btn__label {
  padding-left: 19px;
  font-size: 1.3rem;
  line-height: 15px;
  text-decoration: none;
}

.round-btn--small .round-btn__arw {
  right: 6px;
}

.round-btn--black:before {
  background-color: #364246;
}

.round-btn--black .round-btn__label {
  color: #ffffff;
}

.round-btn--black .round-btn__arw {
  border-color: #646f73;
}

.round-btn--black .round-btn__arw:after {
  background-image: url("../img/index/arrow.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.round-btn--white:before {
  background-color: #ffffff;
}

.top-news__arw::after {
  display: block;
  width: 15px;
  height: 1px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 21px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition-duration: 0.3s;
}

.top-news__arw::before {
  display: block;
  width: 6px;
  height: 2px;
  background-color: #fff;
  transform: rotate(20deg);
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  transform: translateX(-50%, -50%);
  z-index: 100;
  transition-duration: 0.3s;
}

a:hover .top-news__arw::after {
  background-color: #024a90;
  transition-duration: 0.3s;
}

a:hover .top-news__arw::before {
  background-color: #024a90;
  transition-duration: 0.3s;
}

.round-btn__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.round-btn__line rect {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  transform: translate(1px, 1px);
  fill: none;
  stroke: #024a90;
  stroke-width: 1;
  stroke-dasharray: 0, 100;
  stroke-dashoffset: 100;
  transition-property: all;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0, 0.7, 0, 1);
  backface-visibility: hidden;
}

a:hover .round-btn__label {
  color: #024a90;
  text-decoration: none;
}

a:hover .round-btn__arw:after {
  background-image: url("../img/index/arrow.png");
  background-repeat: no-repeat;
  background-position: left top;
}

a:hover .round-btn__line rect,
button:hover .round-btn__line rect {
  stroke-width: 2;
  stroke-dasharray: 100, 0;
  stroke-dashoffset: 0;
}

a:hover .round-btn__arw {
  border-color: #024a90;
}

.round-btn:before {
  transition-property: opacity;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  backface-visibility: hidden;
  transition-delay: 0.2s;
}

a:hover:before,
button:hover:before {
  opacity: 0;
  transition-duration: 0.2s;
  transition-delay: 0s;
}

_::-webkit-full-page-media, _:future, :root .round-btn rect {
  stroke-width: 0;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .round-btn:hover {
    border: 1px solid #024a90;
    border-radius: 210px;
  }
}
/* peropero */
.fade-bg {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
  transition: clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1), -webkit-clip-path 0.8s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.fade-bg:before {
  background: linear-gradient(114deg, rgba(39, 132, 249, 0), rgba(40, 115, 155, 0.8) 30%, rgba(40, 69, 155, 0.8) 80%, rgba(52, 85, 252, 0) 110%);
  bottom: 0;
  left: 0;
  opacity: 0.85;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transform-origin: right;
  content: "";
}

.fade-bg.on {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}

.fade-bg.on:before {
  animation: slide 1s cubic-bezier(0.43, 0.05, 0.17, 1) 0.25s;
  animation-fill-mode: none;
  animation-fill-mode: forwards;
  transform: translateX(0);
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.mv-sec {
  position: relative;
  width: 100%;
}

.mv-img {
  /* width: 64.28%; */
  height: 100vh;
  margin-left: auto;
}

.mv-img img {
  height: 100%;
  width: auto;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  height: 100px;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  align-items: center;
  padding: 0 30px;
  z-index: 200;
}
header .logo {
  width: 180px;
}

.header__list {
  display: flex;
  list-style: none;
}
.header__list li {
  margin-right: 35px;
}
.header__list li:last-of-type {
  margin-right: 0;
}
.header__list li:last-of-type a:hover::after {
  background-color: transparent;
  transition-duration: 0.6s;
}
.header__list li a {
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
.header__list li a::after {
  transition-duration: 0.6s;
  width: 7.5px;
  height: 7.5px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  transition-duration: 0.6s;
}
.header__list li a:hover::after {
  background-color: #63abd6;
  transition-duration: 0.6s;
}
.header__list li.contact-link {
  background-color: #024a90;
  padding: 3px 15px 6px;
  border-radius: 50px;
}
.header__list li.contact-link a {
  color: #fff;
}
.header__list li.base__btn .round-btn {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding: 7px 15px 7px;
}
.header__list li.base__btn .round-btn__label {
  font-size: 13px;
}

#hamuburger, .sp-menu {
  display: none;
}

.mv {
  background-image: url(../img/index/mv-bg.png);
  background-size: 70%;
  background-position: 100%;
  height: 620px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mv__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
.mv__title-en {
  color: #6eabdb;
  font-size: 16px;
}

.inner {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.js-top-news {
  position: absolute;
  right: 70px;
  bottom: 50px;
  width: 400px;
  height: 80px;
  border-radius: 3.2px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.swiper-slide {
  background-color: #fff;
}

.top-news__bl {
  display: block;
  width: 400px;
  height: 80px;
  padding: 15px;
  position: relative;
  cursor: pointer;
}
.top-news__date {
  font-weight: 300;
  color: #024a90;
  font-size: 12px;
  margin-bottom: 3px;
  display: block;
}
.top-news__txt {
  font-size: 14px;
  display: block;
}
.top-news__arw {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 50px;
  display: block;
}
.top-news__arw .round-btn {
  width: 30px;
  height: 30px;
}
.top-news__arw .round-btn__line rect {
  stroke-dasharray: 0, 30;
  stroke-dashoffset: 30;
}
.top-news__arw .round-btn:hover .round-btn__line rect {
  stroke-dasharray: 30, 0;
}

#sec-global {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/index/global-bg.jpg);
  padding: 130px 0 250px;
  position: relative;
}

.top-global__cont {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.top-global__cont .txt {
  color: #fff;
  margin-bottom: 30px;
  width: 400px;
  max-width: 100%;
}
.top-global__cont .round-btn__label {
  color: #024a90;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  display: block;
  width: 100%;
  padding-left: 0;
}
.top-global__cont .round-btn:before {
  background-color: #fff;
}
.top-global__cont .round-btn:hover:before {
  background-color: #fff;
  opacity: 1;
}
.top-global__cont a:hover .round-btn__label {
  color: #15283f;
}
.top-global__title {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
}
.top-global__title-middle {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.top-global__link {
  width: calc(50% + 600px);
  position: absolute;
  left: auto;
  right: 0;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  padding: 70px 0;
  bottom: -130px;
}
.top-global__link-flex {
  width: 1200px;
  display: flex;
}
.top-global__link-flex .item {
  padding: 0 60px;
  width: 50%;
  position: relative;
}
.top-global__link-flex .item:first-of-type {
  border-right: 1px solid #dddddd;
}
.top-global__link-flex .item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-global__link-flex .item a .ja {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.top-global__link-flex .item a .en {
  font-size: 200px;
  font-size: 14px;
  color: #ddd;
}
.top-global__link-flex .item a .round-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-global__link-flex .item a .round-btn .arrow {
  width: 40%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transform: translateX(-60%);
}
.top-global__link-flex .item a .round-btn .arrow::after {
  content: "";
  display: block;
  width: 9px;
  height: 2px;
  background-color: #fff;
  transform: rotate(23deg);
  right: 0;
  bottom: 1px;
  left: auto;
  position: absolute;
}
.top-global__link-flex .item a:hover .round-btn .arrow {
  background-color: #15283f;
}
.top-global__link-flex .item a:hover .round-btn .arrow::after {
  height: 1px;
  background-color: #15283f;
}
.top-global__link-flex .item a .round-btn__line rect {
  stroke-dasharray: 0, 50;
  stroke-dashoffset: 50;
}
.top-global__link-flex .item a:hover .round-btn .round-btn__line rect {
  stroke-dasharray: 50, 0;
}
.top-global__link-flex .item a:hover .round-btn:before {
  background-color: #fff;
  transition-duration: 0.8s;
}

#sec-service {
  background-color: #e7ecf3;
  padding: 330px 0 140px;
}
#sec-service .base__btn {
  margin: 30px auto 100px;
  text-align: center;
}

.top-service__flex {
  display: flex;
}
.top-service__flex .title-bl {
  width: 35%;
}
.top-service__flex .cont {
  width: 65%;
  padding-top: 30px;
}

.base__title-hosoku {
  font-size: 12px;
  font-weight: bold;
  padding-left: 1.5em;
  position: relative;
}

.base__title-hosoku::before {
  width: 0.8em;
  height: 0.8em;
  background-color: #63abd6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  border-radius: 50%;
  content: "";
  display: block;
}

.base__title {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.1;
}

.base__title-middle {
  font-size: 21px;
  font-weight: bold;
}

.base__btn .round-btn__label {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  display: block;
  width: 100%;
  padding-left: 0;
  transition-duration: 0.8s;
  font-family: "Noto Sans JP", sans-serif;
}
.base__btn .round-btn:before {
  background-color: #024a90;
  transition-duration: 0.3s;
}
.base__btn a:hover .round-btn:before {
  background-color: #fff;
  opacity: 1;
  transition-duration: 0.8s;
}
.base__btn a:hover .round-btn__label {
  color: #024a90;
  transition-duration: 0.8s;
}

.top-service__list {
  display: flex;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  flex-wrap: wrap;
}
.top-service__list a {
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  padding: 60px 0;
}
.top-service__list a:hover {
  background-color: #cacee3;
}
.top-service__list a .icon {
  width: 43px;
}
.top-service__list a .icon.p1 {
  width: 48px;
}
.top-service__list a .icon.p2 {
  width: 66px;
}
.top-service__list a .icon.p3 {
  width: 43px;
}
.top-service__list a .icon.p4 {
  width: 63px;
}
.top-service__list a .icon.p5 {
  width: 39px;
}
.top-service__list a .icon.p6 {
  width: 58px;
}
.top-service__list-txt {
  padding-left: 20px;
}
.top-service__list-txt .ja {
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.top-service__list-txt .en {
  font-weight: 200;
  font-size: 12px;
  display: block;
}

#sec-area {
  padding: 300px 0 120px;
  position: relative;
  background-size: 40%;
  background-position: 10% 30px;
  background-image: url(../img/index/area-bg.png);
  overflow: hidden;
}
#sec-area .float-txt {
  bottom: 0;
  position: relative;
  z-index: 1;
}
#sec-area .float-txt .swiper-slide {
  font-size: 6vw;
  color: #e5edf3;
  font-weight: 200;
}

.top-area__flex {
  display: flex;
  justify-content: space-between;
}
.top-area__flex .cont {
  width: 48%;
  padding-left: 40px;
  position: relative;
}
.top-area__flex .cont .img {
  width: calc(100% + 50px);
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(55%);
  z-index: 3;
}
.top-area__flex .img {
  width: 48%;
  position: relative;
  z-index: 3;
}

.top-produce__flex {
  display: flex;
  padding-bottom: 130px;
}
.top-produce__flex .img {
  width: 50%;
}
.top-produce__flex .cont {
  width: 50%;
  padding-left: 60px;
}

#sec-produce .fixed-img {
  height: 500px;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/index/fix-bg.jpg);
}

#sec-sdgs {
  background-color: #e7ecf3;
  padding: 80px 0 120px;
}

.top-sdgs__flex {
  display: flex;
}
.top-sdgs__flex .cont {
  width: 45%;
  padding-right: 50px;
}
.top-sdgs__flex .img {
  width: 55%;
}

#sec-company {
  padding: 130px 0;
}

.top-company__link {
  display: flex;
}
.top-company__link a {
  width: 33.333%;
  height: 375px;
  display: block;
  overflow: hidden;
  position: relative;
}
.top-company__link a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1, 1);
  transition-duration: 0.8s;
}
.top-company__link a:hover img {
  transform: scale(1.1, 1.1);
  transition-duration: 0.8s;
}
.top-company__link a .cont {
  position: absolute;
  left: 25px;
  bottom: 25px;
}
.top-company__link a .cont .top-company__link-title {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
}
.top-company__link a .cont .en {
  font-size: 12px;
  font-weight: 200;
  color: #fff;
}

footer {
  background-color: #a4b0bc;
  padding: 100px 0 70px;
}
footer .inner {
  position: relative;
}

.footer__logo {
  width: 150px;
  margin-bottom: 50px;
}
.footer__flex {
  display: flex;
}
.footer__flex .item {
  width: 16.6666666667%;
}
.footer__list {
  list-style: none;
}
.footer__list li {
  margin-bottom: 5px;
}
.footer__list li.big a {
  font-size: 13px;
  font-weight: bold;
}
.footer__list li a {
  color: #fff;
  font-size: 12px;
}
.footer__little-list {
  display: flex;
  list-style: none;
  margin-top: 80px;
}
.footer__little-list li {
  margin-right: 40px;
}
.footer__little-list li a {
  color: #fff;
  font-size: 12px;
}
.footer__copy {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
  color: #fff;
}

.js-top-area-loop .swiper-wrapper {
  transition-timing-function: linear;
}

#hamburger {
  display: none;
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

@media only screen and (max-width: 1200px) {
  header {
    padding: 0 20px;
  }
  header .logo {
    width: 165px;
  }
  .header__list li a {
    font-size: 14px;
  }
  .header__list li {
    margin-right: 30px;
  }
  .header__list li.base__btn .round-btn__label {
    font-size: 12px;
  }
  .header__list li.base__btn .round-btn {
    padding: 5px 15px 5px;
  }
  #loading .logo {
    font-size: 170px;
  }
  .top-global__link-flex .item {
    padding: 0 40px;
  }
  .top-global__link {
    width: 95%;
  }
  .top-global__link-flex {
    width: 100%;
  }
  .top-service__list-txt .ja {
    font-size: 17px;
  }
  .top-service__list-txt {
    padding-left: 14px;
  }
  #sec-area {
    padding: 250px 0 170px;
  }
  .top-area__flex .cont .img {
    transform: translateY(67%);
  }
}
@media only screen and (max-width: 1024px) {
  header .logo {
    width: 145px;
  }
  #hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
    z-index: 300;
    cursor: pointer;
  }
  .hamburger {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    transition-duration: 0.8s;
  }
  .hamburger span {
    width: 60%;
    height: 1px;
    background-color: #024a90;
    left: 20%;
    position: absolute;
    display: block;
    transition-duration: 0.8s;
  }
  .hamburger span:first-of-type {
    top: 20px;
  }
  .hamburger span:nth-of-type(2) {
    top: 32.5px;
  }
  .hamburger span:last-of-type {
    top: 45px;
  }
  .hamburger.active {
    transform: rotate(360deg);
    transition-duration: 0.8s;
  }
  .hamburger.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
    transition-duration: 0.8s;
  }
  .hamburger.active span:nth-of-type(2) {
    transform: translateY(0) rotate(45deg);
    transition-duration: 0.8s;
  }
  .hamburger.active span:nth-of-type(3) {
    opacity: 0;
    transition-duration: 0.8s;
  }
  header {
    height: 65px;
    width: 100%;
  }
  .header__list {
    display: none;
  }
  .sp-menu {
    display: block;
    width: 100%;
    height: auto;
    position: fixed;
    top: -100%;
    left: 0;
    transition-duration: 0.8s;
    background-color: #fff;
    z-index: 10;
  }
  .sp-menu.active {
    top: 0;
    transition-duration: 0.8s;
  }
  .sp-menu__wrapper {
    width: 100%;
    overflow-y: scroll;
    padding: 80px 20px;
  }
  .sp-menu__wrapper::-webkit-scrollbar {
    display: none;
  }
  .sp-menu__list {
    list-style: none;
  }
  .sp-menu__list li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 15px;
  }
  .sp-menu__list li a {
    color: #15283f;
    font-weight: bold;
    font-size: 16px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  .sp-menu__list li a .en {
    color: #a9a9a9;
    font-size: 12px;
    display: block;
    font-weight: 300;
  }
  .sp-menu__list li.base__btn {
    margin-top: 20px;
  }
  .sp-menu__list li.base__btn .round-btn {
    font-weight: 500;
    height: 45px;
    display: inline-flex;
    width: 210px;
  }
  .mv {
    height: 500px;
  }
  .js-top-news {
    right: 30px;
    bottom: 35px;
  }
  .top-global__link-flex .item a .ja {
    font-size: 20px;
  }
  .top-global__link {
    padding: 40px 0;
    bottom: -100px;
  }
  #sec-global {
    padding: 100px 0 200px;
  }
  .top-global__link-flex .item a .round-btn {
    right: -13px;
  }
  #sec-service {
    padding: 160px 0 110px;
  }
  .top-area__flex .cont .img {
    transform: translateY(252px);
  }
  #sec-area {
    padding: 170px 0 260px;
  }
  .top-produce__flex {
    padding-bottom: 90px;
  }
  #sec-produce .fixed-img {
    height: 350px;
  }
  .top-sdgs__flex {
    flex-direction: column;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .top-sdgs__flex .cont {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .top-sdgs__flex .img {
    width: 100%;
  }
  #sec-sdgs {
    padding: 80px 0 90px;
  }
  #sec-company {
    padding: 90px 0;
  }
  .top-company__link a {
    height: 290px;
  }
  #loading .logo {
    font-size: 120px;
  }
  .anchor {
    padding-top: 65px;
    margin-top: -65px;
  }
}
@media only screen and (max-width: 834px) {
  .js-top-news {
    right: 5%;
    bottom: 20px;
    width: 90%;
  }
  .mv {
    height: 400px;
    padding: 120px 0 0;
    display: block;
  }
  .mv__title {
    font-size: 26px;
    margin-bottom: 10px;
    margin-top: 0;
  }
  .mv__title-en {
    font-size: 15px;
  }
  .top-news__arw {
    right: 45px;
  }
  .top-news__bl {
    width: 100%;
  }
  .sp-menu__wrapper {
    padding: 75px 20px 40px;
  }
  .sp-menu__list li {
    padding-bottom: 12px;
    padding-top: 0;
  }
  #sec-global {
    padding: 60px 0 200px;
    background-attachment: inherit;
  }
  .top-global__title {
    font-size: 44px;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  .top-global__title-middle {
    font-size: 19px;
    margin-bottom: 15px;
  }
  .top-global__cont .txt {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .top-global__link {
    padding: 0;
    bottom: -145px;
    width: 500px;
    max-width: 95%;
  }
  .top-global__link-flex {
    flex-direction: column;
  }
  .top-global__link-flex .item {
    padding: 25px;
    width: 100%;
  }
  .top-global__link-flex .item:first-of-type {
    border-right: none;
    border-bottom: 1px solid #dddddd;
  }
  .top-global__link-flex .item a .ja {
    font-size: 18px;
    margin-bottom: 0;
  }
  .top-service__flex {
    flex-direction: column;
  }
  .top-service__flex .title-bl {
    width: 100%;
  }
  .base__title-middle {
    font-size: 18px;
  }
  .base__title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  .top-service__flex .cont {
    width: 100%;
    padding-top: 20px;
  }
  .top-service__flex .cont .txt {
    font-size: 15px;
  }
  #sec-service {
    padding: 200px 0 50px;
  }
  #sec-service .base__btn {
    margin: 25px auto 50px;
  }
  .top-service__list a {
    width: 50%;
  }
  #sec-area .float-txt {
    bottom: -20px;
  }
  #sec-area {
    padding: 120px 0 100px;
  }
  .top-area__flex .cont .img {
    transform: translateY(165%);
    width: 70%;
    right: auto;
    left: 0;
    top: 0;
  }
  .top-area__flex .img {
    max-width: 60%;
    margin-top: 0;
    position: relative;
    margin-right: 0;
    margin-left: auto;
    transform: translateY(-50px);
  }
  .top-produce__flex .img {
    width: 500px;
    margin: 40px auto 10px;
    max-width: 111%;
    left: -13%;
    position: relative;
  }
  .top-produce__flex .cont {
    width: 100%;
    padding-left: 0;
  }
  .top-area__flex .cont {
    width: 100%;
    padding-left: 0;
  }
  .top-area__flex {
    flex-direction: column;
  }
  .top-produce__flex {
    padding-bottom: 60px;
    flex-direction: column-reverse;
  }
  #sec-produce .fixed-img {
    height: 220px;
    background-attachment: inherit;
  }
  #sec-sdgs {
    padding: 60px 0 60px;
  }
  #sec-company {
    padding: 60px 0;
  }
  footer {
    padding: 60px 0 40px;
  }
  .footer__flex {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__flex .item {
    width: 47%;
  }
  .footer__copy {
    position: relative;
    text-align: center;
    margin-top: 30px;
  }
  .footer__list .big {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-top: 30px;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
  .top-company__link a {
    height: auto;
    aspect-ratio: 1/1;
  }
  .top-company__link a .cont {
    left: 30px;
    bottom: 41px;
  }
  .top-company__link a .cont .top-company__link-title {
    font-size: 18px;
  }
  #loading .logo {
    font-size: 17vw;
  }
  .top-area__flex .cont .img.fade-bg:before {
    height: 28.35vw;
  }
  #sec-area .float-txt .swiper-slide {
    font-size: 11vw;
  }
  #sec-area {
    background-size: 65%;
  }
}
@media only screen and (max-width: 640px) {
  #sec-area .float-txt {
    bottom: -15px;
  }
  .top-company__link a {
    width: 100%;
    aspect-ratio: 3/1;
    margin-bottom: 20px;
  }
  .top-company__link {
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .top-area__flex .cont .img {
    transform: translateY(146%);
  }
  .top-service__list {
    border-top: none;
    border-left: none;
    justify-content: space-between;
  }
  .top-service__list a {
    width: 48.5%;
    border: 1px solid #cccccc;
    flex-direction: column;
    padding: 30px 0;
    margin-bottom: 10px;
  }
  .top-service__list a .icon {
    height: 50px;
    margin-bottom: 5px;
  }
  .top-service__list-txt .ja {
    font-size: 12px;
    text-align: center;
  }
  .top-service__list-txt .en {
    font-size: 9px;
    text-align: center;
  }
  .top-service__list-txt {
    padding-left: 0;
  }
}
@media only screen and (max-width: 500px) {
  .footer__list .big {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
  }
  .footer__flex .item {
    width: 100%;
  }
  footer {
    padding: 40px 0 40px;
  }
  .footer__logo {
    margin-bottom: 10px;
  }
  .footer__flex .item {
    width: 100%;
  }
  .footer__list .big {
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    margin-top: 30px;
  }
  .footer__little-list {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .footer__little-list li {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .footer__little-list li a {
    font-size: 11px;
  }
  .top-area__flex .img {
    margin-top: 102px;
  }
  .top-area__flex .cont .img {
    transform: translateY(197%);
  }
  #sec-area {
    padding: 120px 0 75px;
  }
}
@media only screen and (max-width: 450px) {
  #sec-area {
    padding: 120px 0 65px;
  }
  .top-area__flex .cont .img {
    transform: translateY(173%);
  }
  #sec-produce .fixed-img {
    height: 180px;
  }
}/*# sourceMappingURL=style.css.map */