@charset "UTF-8";

/* ================================================================================
mv
================================================================================ */
#mv {
  position: relative;
  /* height: 386px; */
}
#mv > .inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
#mv .swiper {
  width: 100%;
  padding: 40px 0 0;
  background: linear-gradient(
    180deg,
    rgba(184, 219, 242, 1) 0%,
    rgb(252, 254, 230, 1) 80%,
    rgba(252, 254, 230, 0) 80.001%,
    rgba(252, 254, 230, 0) 100%
  );
}
#mv .swiper-slide {
  width: 760px;
  height: 500px;
  border-radius: 30px;
  box-shadow: 0px 0px 10px rgba(0, 10, 40, 0.2);
  overflow: hidden;

  filter: brightness(70%);
  transition: 1s ease-in-out 0.7s;
  transition-property: filter;

  pointer-events: none;
}
#mv .swiper-slide > .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
#mv .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1, 1);
  transition: 0.5s ease-in-out 0s;
  transition-property: transform;
}
#mv .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mv .swiper-slide a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#mv .swiper-slide a:hover {
  opacity: 1;
}
#mv .swiper-slide a::before {
  position: absolute;
  bottom: 0;
  left: 0;

  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    180deg,
    rgba(0, 10, 40, 0) 0%,
    rgba(0, 10, 40, 0.7) 100%
  );
}
#mv .swiper-slide a::after {
  position: absolute;
  top: 0;
  left: 0;

  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    360deg,
    rgba(0, 10, 40, 0) 0%,
    rgba(0, 10, 40, 0.7) 100%
  );
}
#mv .swiper-slide p.swiper-slide_ttl {
  position: absolute;
  top: 25px;
  right: 25px;
  left: auto;
  font-size: 20px;
  z-index: 9;
}
#mv .swiper-slide p {
  position: absolute;
  bottom: 25px;
  left: 25px;

  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.44;

  opacity: 0;
  transition: 1s ease-in-out 0.7s;
  transition-property: opacity;
}

#mv .swiper-slide.swiper-slide-active {
  filter: brightness(100%);
  pointer-events: all;
}
#mv .swiper-slide.swiper-slide-active p {
  opacity: 1;
}
/* #mv .swiper-slide:hover picture{	transform: scale(1.05);	} */

#mv .swiper {
  position: relative;
}

#mv .controller {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 760px;
  height: 70px;
  margin: 0 auto;
}

#mv .swiper-pagination {
  position: static;
  width: auto;
  margin: 0 10px;
  font-size: 0;
  line-height: 0;
}
#mv .swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  margin: 0;
  background-color: rgba(160, 168, 195, 1);
  border-radius: 0;
}
#mv .swiper-pagination-bullet-active {
  background-color: var(--colorBlueDeep);
}

#mv .numE,
#mv .numS {
  color: var(--colorBlueDeep);
  font-size: 16px;
  line-height: 1;
}
#mv .numE {
  margin: 0 15px 0 0;
}

#mv .swiper-button-prev,
#mv .swiper-button-next {
  position: static;
  width: 35px;
  height: 28px;
  margin: 0 1px 0 0;
  background-color: var(--colorBlueDeep);
  border: 2px solid var(--colorBlueDeep);

  transition: 0.3s ease-in-out 0s;
  transition-property: background-color;
}
#mv .swiper-button-prev {
  border-radius: 7px 0 0 7px;
}
#mv .swiper-button-next {
  border-radius: 0 7px 7px 0;
}
/* #mv .swiper-button-prev:hover,
#mv .swiper-button-next:hover
{
	opacity: 1;
	background-color: white;
} */

#mv .swiper-button-prev::after,
#mv .swiper-button-next::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid white;
  border-left: 1px solid white;
}
#mv .swiper-button-prev::after {
  transform: translate(2px, 0) rotate(-45deg);
}
#mv .swiper-button-next::after {
  transform: translate(-2px, 0) rotate(135deg);
}
/* #mv .swiper-button-prev:hover::after,
#mv .swiper-button-next:hover::after
{	border-color: var(--colorBlueDeep);	} */

#mv .playButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 28px;
  margin: 0 0 0 10px;
  background-color: var(--colorBlueDeep);
  border: 2px solid var(--colorBlueDeep);
  border-radius: 7px;

  transition: 0.3s ease-in-out 0s;
  transition-property: background-color;

  cursor: pointer;
}
/* #mv .playButton:hover{	background-color: white;	} */
#mv .playButton::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent white;
}
/* #mv .playButton:hover::after{	border-color: transparent transparent transparent var(--colorBlueDeep);	} */
#mv .playButton.on::after {
  display: none;
}
#mv .playButton::before {
  content: "";
  display: none;
  width: 7px;
  height: 10px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  border-color: transparent white transparent white;
}
/* #mv .playButton:hover::before{	border-color: transparent var(--colorBlueDeep) transparent var(--colorBlueDeep);	} */
#mv .playButton.on::before {
  display: block;
}

/* ========================================
animation
======================================== */
@media screen and (min-width: 768px) {
  #mv .swiper-slide:hover picture {
    transform: scale(1.05);
  }
  #mv .swiper-button-prev:hover,
  #mv .swiper-button-next:hover {
    opacity: 1;
    background-color: white;
  }
  #mv .swiper-button-prev:hover::after,
  #mv .swiper-button-next:hover::after {
    border-color: var(--colorBlueDeep);
  }

  #mv .playButton:hover {
    background-color: white;
  }
  #mv .playButton:hover::after {
    border-color: transparent transparent transparent var(--colorBlueDeep);
  }
  #mv .playButton:hover::before {
    border-color: transparent var(--colorBlueDeep) transparent
      var(--colorBlueDeep);
  }
}

/* ========================================
-767
======================================== */
@media screen and (max-width: 767px) {
  #mv .swiper-slide {
    width: 80vw;
    height: 80vw;
    border-radius: 5vw;
    box-shadow: 0px 0px 2vw rgba(0, 10, 40, 0.2);
  }

  #mv .controller {
    width: 80vw;
  }
  #mv .swiper-slide p.swiper-slide_ttl {
    font-size: 16px;
  }
  #mv .swiper-slide p {
    font-size: 18px;
  }
}

/* ================================================================================
lead
================================================================================ */
#lead {
  margin: 0 0 90px;
}
#lead .inner {
  padding: 45px 0 0;
}
#lead .sub {
  margin: 0 0 12px;

  color: #009bb1;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
#lead h1 {
  padding: 0 10px;
  margin: 0 0 40px;

  color: var(--colorBlueDeep);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

#lead .button {
  width: 265px;
  height: 62px;
  margin: 0 auto;
}
#lead .button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;

  background-color: var(--colorBlueDeep);
  border: 2px solid var(--colorBlueDeep);
  border-radius: 31px;

  transition: var(--transition03);
  transition-property: background-color;
}
#lead .button p {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

/* ========================================
animation
======================================== */
@media screen and (min-width: 768px) {
  #lead .button a:hover {
    background-color: white;
    text-decoration: none;
    opacity: 1;
  }
  #lead .button a:hover p {
    color: var(--colorBlueDeep);
  }
}

/* ========================================
-767
======================================== */
@media screen and (max-width: 767px) {
  #lead h1 {
    font-size: 20px;
  }
}

.banner__wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .banner__wrapper {
    width: 100%;
    height: 380px;
  }
}

.banner__wrapper:hover .banner__bg {
  transform: scale(1.05);
}

.banner__bg {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background-position: 25% 75%;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;

  transition: 0.5s ease-in-out 0s;
  transition-property: transform;
}

.banner__bg._sustaina {
  background-image: url(../img/banner1.jpg);
}

.banner__bg._ir {
  background-image: url(../img/banner2.jpg);
}

.banner__bg._recruit {
  background-image: url(../img/banner3.jpg);
}

.banner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 280px;
}
@media screen and (min-width: 768px) {
  .banner {
    height: 380px;
  }
}

.banner:hover {
  opacity: 1;
}

.banner._sustaina {
  color: #fff;
}
.banner._ir {
  color: #fff;
}
.banner._recruit {
  color: #333;
}
.banner__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 10px auto 0;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 8px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .banner__heading {
    align-items: center;
    padding: 8px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .banner__heading {
    padding: 12px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) and (min-width: 1280px) {
  .banner__heading {
    padding: 20px;
  }
}

.banner._recruit .banner__heading {
  align-items: flex-start;
}
.banner__heading .main {
  display: block;
  margin-right: auto;
  margin-left: 0;
  font-size: 32px;
  font-family: "Archivo", sans-serif;
}
@media screen and (min-width: 768px) {
  .banner__heading .main {
    margin-top: 10px;
    margin-left: auto;
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .banner._ir .banner__heading .main {
    margin-top: 5%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .banner._ir .banner__heading .main {
    margin-top: 0;
  }
}

.banner._recruit .banner__heading .main {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .banner._recruit .banner__heading .main {
    margin-top: 16px;
    margin-left: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .banner._recruit .banner__heading .main {
    margin-left: 6.25vw;
  }
}

.banner__heading .sub {
  display: inline-block;
  margin-top: 5px;
  margin-left: 0;
  font-size: 14px;
  line-height: 1.71;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .banner__heading .sub {
    margin-top: 12px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .banner__heading .sub {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75;
  }
}

@media screen and (min-width: 768px) {
  .banner._recruit .banner__heading .sub {
    margin-top: 15px;
    margin-left: 1.3020833333vw;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .banner._recruit .banner__heading .sub {
    margin-left: 6.25vw;
  }
}

@media screen and (min-width: 768px) {
  .banners__inner {
    display: flex;
    overflow: hidden;
  }
}

.btn {
  display: block;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 50vh;
  background-color: #0b1f64;
  width: 265px;
  height: 62px;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn {
    transition: 0.5s ease-in-out 0s;
    transition-property: transform;
  }
}

@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 1;
    border: 2px solid #0b1f64;
    background-color: #fff;
    color: #0b1f64;
    font-weight: 700;
  }
}

.cat {
  display: inline-block;
  margin-top: 4px;
  border-radius: 2px;
  padding: 0 16px 2px;
  width: 97px;
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
}

.cat._news {
  background-color: #c52c30;
}

.cat._timely {
  background-color: #318fbd;
}

.cat._ir {
  background-color: #406c51;
}

.newsItem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .newsItem {
    width: calc((100% - 30px) / 2);
    max-width: 575px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .newsItem {
    width: calc((100% - 48px) / 2);
  }
}

.newsItem__heading {
  border-bottom: 1px solid #0b1f64;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .newsItem__heading {
    padding-bottom: 29px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .newsItem__heading {
    padding-bottom: 19px;
  }
}

.newsItem__heading .main {
  display: inline-block;
  color: #0b1f64;
  font-weight: 700;
  font-size: 22px;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .newsItem__heading .main {
    display: block;
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .newsItem__heading .main {
    display: inline-block;
  }
}

.newsItem__heading .sub {
  display: inline-block;
  color: #333;
  font-weight: 400;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .newsItem__heading .sub {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .newsItem__heading .sub {
    display: inline-block;
  }
}

.newsItem__item {
  border-bottom: 1px solid #d9e1e1;
  padding: 18px 0 19px;
}
@media screen and (min-width: 768px) {
  .newsItem__item {
    padding: 18px 0 20px;
  }
}

.newsItem__info {
  display: flex;
  align-items: center;
}
.newsItem__date {
  display: inline-block;
  color: #333;
  font-weight: 400;
  font-size: 14px;
}
.newsItem__cat {
  margin-left: 20px;
}
.newsItem__pdf {
  margin-top: 8px;
  color: #333;
  font-size: 14px;
  line-height: 1.57;
}
@media screen and (min-width: 768px) {
  .newsItem__pdf {
    margin-top: 6px;
    max-width: 544px;
    font-size: 16px;
    line-height: 1.68;
  }
}

.newsItem__pdf a {
  display: inline-block;
  color: #0b1f64;
}
@media screen and (min-width: 768px) {
  .newsItem__pdf a {
    transition: 0.5s ease-in-out 0s;
    transition-property: transform;
  }
}

@media screen and (min-width: 768px) {
  .newsItem__pdf a:hover,
  .newsItem__btn a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.newsItem__linkTitle {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .newsItem__linkTitle {
    margin-top: 9px;
  }
}

.newsItems {
  background-color: #ecf0f0;
  padding: 26px 0 55px;
}
@media screen and (min-width: 768px) {
  .newsItems {
    padding: 93px 0 90px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .newsItems {
    padding: 70px 0 90px;
  }
}

@media screen and (min-width: 768px) {
  .newsItems__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.newsItems__timely {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .newsItems__timely {
    margin-top: 0;
  }
}

.pickUp {
  padding: 57px 0 58px;
}
@media screen and (min-width: 768px) {
  .pickUp {
    padding: 94px 0 98px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .pickUp {
    padding: 94px 0 120px;
  }
}

.pickUp__heading {
  color: #0b1f64;
  font-weight: 700;
  font-size: 32px;
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .pickUp__heading {
    font-size: 40px;
  }
}

.pickUp__cards {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .pickUp__cards {
    margin-top: 43px;
  }
}

.snsIcons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 33px 0 35px;
}
@media screen and (min-width: 768px) {
  .snsIcons {
    padding: 59px 0 80px;
  }
}

.snsIcons__item {
  display: block;
}
.snsIcons__item span {
  margin-left: 10px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}
.snsIcons__item._share {
  display: flex;
  align-items: center;
}
.snsIcons__item._share img {
  width: 28px;
}
.snsIcons__item._facebook {
  margin-left: 14px;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .snsIcons__item._facebook {
    margin-left: 15px;
  }
}

.snsIcons__item._facebook img {
  width: 100%;
}
.snsIcons__item._twitter {
  margin-left: 5px;
  width: 40px;
}
@media screen and (min-width: 768px) {
  .snsIcons__item._twitter {
    margin-left: 10px;
  }
}

.snsIcons__item._twitter img {
  width: 100%;
}
.topSlider {
  display: flex;
}

.topSlider__item {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-radius: 10px;
  width: 90%;
  max-width: 507px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .topSlider__item {
    transition: 0.5s ease-in-out 0s;
    transition-property: transform;

    border-radius: 35px;
    width: 68%;
    max-width: none;
    height: 500px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .topSlider__item {
    width: 100%;
    max-width: 780px;
  }
}

.topSlider__item img {
  -o-object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 306/309;
  width: 100%;
  height: 306px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .topSlider__item img {
    -o-object-fit: cover;
    -o-object-position: center;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 35px;
    aspect-ratio: 507/500;
    height: 500px;
    object-fit: cover;
    object-position: center;

    transition: 0.5s ease-in-out 0s;
    transition-property: transform;
  }
}

.topSlider__item a {
  display: block;
  transition: 0.5s ease-in-out 0s;
  transition-property: transform;
}

.topSlider__item a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 60%,
    rgba(11, 31, 100, 0.6) 100%
  );
  width: 100%;
  height: 100%;
  content: "";

  transition: 0.5s ease-in-out 0s;
  transition-property: transform;
}
@media screen and (min-width: 768px) {
  .topSlider__item a::after {
    border-radius: 35px;
  }
}

@media screen and (min-width: 768px) {
  .topSlider__item a:hover {
    transform: scale(1.05);
    opacity: 1;
  }
}

.topSlider__text {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 0 20px;
  width: 100%;
  max-width: 326px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .topSlider__text {
    bottom: 30px;
    margin: 0 auto;
    padding: 0 28px;
    max-width: 512px;
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .topSlider__text {
    transform: translateX(-77%);
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */

.tsumugu {
  padding: 57px 0 58px;
}
@media screen and (min-width: 768px) {
  .tsumugu {
    padding: 94px 0 38px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1024px) {
  .tsumugu {
    padding: 94px 0 60px;
  }
}

.tsumugu__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
}

.tsumugu__heading img {
  width: 265px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .tsumugu__heading {
    flex-direction: row;
  }
  .tsumugu__heading img {
    width: 460px;
  }
}
.tsumugu__headingLink {
  color: #0b1f64;
  font-weight: normal;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  display: inline-flex;
  position: relative;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .tsumugu__headingLink {
    position: absolute;
    top: 50%;
    right: 0;
    font-size: 18px;
  }
}
.tsumugu__headingLink::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  transition: all 0.3s ease-in-out 0s;
  border-top: 1px solid #0b1f64;
  border-right: 1px solid #0b1f64;
  background-color: transparent;
  width: 7px;
  height: 7px;
  content: "";
}
.tsumugu__cards {
  margin-top: 31px;
}
@media screen and (min-width: 768px) {
  .tsumugu__cards {
    margin-top: 43px;
  }
}
.card__desc {
  position: static;
  margin-top: 19px;
  padding-right: 0;
  color: #333;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
