@charset "UTF-8";
html {
  height: 100%;
}

body {
  background-color: #f1f1f1;
  padding-top: 0;
  height: 100%;
}

.inner {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 30px;
}

@media only screen and (max-width: 768px) {
  .inner {
    padding: 0 8vw;
  }
}

.module_button-link {
  display: block;
  padding: 17px 40px;
  color: #ffffff;
  font-size: 1.8rem;
  text-align: center;
  background: #00954D;
  border: solid 1px #00954D;
  /* -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 13, 7, 0.15);
          box-shadow: 0px 0px 30px 0px rgba(0, 13, 7, 0.15); */
  position: relative;
  -webkit-transition-duration: 0.3s;
       -o-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.module_button-link::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  /* background-image: url("/wp-content/themes/mitsuibf-theme/images/index/main-arrow-sm-right_off_pc.png"); */
  background-image: url("/wp-content/themes/mitsuibf-theme/images/index/main-arrow-sm-right_on_pc.png");
  background-size: contain;
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
}
@media only screen and (max-width: 768px) {
  .module_button-link::after {
    background-image: url("/wp-content/themes/mitsuibf-theme/images/index/main-arrow-sm-right_on_pc.png");
    width: 5px;
    height: 10px;
    top: calc(50% - 5px);
  }
}
@media only screen and (min-width: 769px) {
  .module_button-link:hover {
    color: #101010;
    background-color: #ffffff;
  }
  .module_button-link:hover::after {
    background-image: url("/wp-content/themes/mitsuibf-theme/images/index/main-arrow-sm-right_off_pc.png");
  }
}
@media only screen and (max-width: 768px) {
  .module_button-link {
    font-size: 3.9vw;
  }
}

footer .inner {
  max-width: 1100px;
  width: auto;
}

/*--------------------------
parallax
---------------------------*/
.parallax {
  background-image: url("/wp-content/themes/mitsuibf-theme/images/index/parallax_pc.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 300px;
}
@media only screen and (max-width: 768px) {
  .parallax {
    background-image: url("/wp-content/themes/mitsuibf-theme/images/index/parallax_sp.webp");
    height: 37vw;
  }
}


/*--------------------------
swiper
---------------------------*/
.swiper {
  width: auto;
  height: auto;
}
.swiper-block {
  position: relative;
  padding: 0 0 50px;
}
.swiper-container {
  overflow: hidden;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.swiper-pagination-bullet-active {
  color: #ffffff;
  background-color: #00954D;
}
.swiper-button-next, .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: #ffffff;
  background-color: #00954D;
  transform: translateY(-60px);
  border: 1px solid #00954D;
  transition-duration: 0.3s;
}
.swiper-button-next {
  right: -20px;
}
.swiper-button-prev {
  left: -20px;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 12px;
}
@media only screen and (min-width: 769px) {
  .swiper-button-next:not(swiper-button-disabled):hover, .swiper-button-prev:not(swiper-button-disabled):hover {
    color: #00954D;
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 768px) {
  .swiper-block {
    padding: 0 0 5vw;
  }
}


/*--------------------------
Keyvisual
---------------------------*/
section.keyvisual {
  width: 100%;
  height: calc(100vh - 62px);
  position: relative;
  overflow: hidden;
  margin-top: 62px;
}
@media only screen and (max-width: 768px) {
  section.keyvisual {
    height: calc(100% - 50px);
    margin-top: 50px;
  }
}
section.keyvisual .moviewrap {
  width: 100%;
  height: 100%;
}
section.keyvisual .moviewrap #moviearea {
  position: absolute;
  width: 100%;
  height: 100%;
}

section.keyvisual .moviewrap #moviearea::before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  z-index: 1;
  opacity: 1;
  transition: all linear 0.5s;
}
section.keyvisual .moviewrap #moviearea::after {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  /* transform: translateX(-50%) translateY(-50%); */
  content: "";
  z-index: 2;
  opacity: 1;
  transition: all linear 0.5s;

  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #f1f1f1;
  border-right-color: #00954D;
  animation: l2 1s infinite linear;
  opacity: 0.5;
}
section.keyvisual .moviewrap #moviearea.js_active::before,
section.keyvisual .moviewrap #moviearea.js_active::after {
  opacity: 0;
}
section.keyvisual .moviewrap #moviearea.js_active.js_complet::before,
section.keyvisual .moviewrap #moviearea.js_active.js_complet::after {
  display: none;
}
@keyframes l2 {to{transform: rotate(1turn)}}
section.keyvisual .moviewrap .catch {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.keyvisual .moviewrap .catch p {
  color: #ffffff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 4.6rem;
  /* font-weight: bold; */
  text-shadow: 0 0 5px #000, 0 0 5px #000;
  line-height: 1.5;
  text-align: center;
}
section.keyvisual .moviewrap .catch p br {
  display: none;
}
section.keyvisual .moviewrap .catch .img {
  width: 360px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  section.keyvisual .moviewrap .catch p {
    font-size: 9vw;
  }
  section.keyvisual .moviewrap .catch p br {
    display: block;
  }
  section.keyvisual .moviewrap .catch .img {
    width: 64vw;
    margin: 5.33vw auto 0;
  }
}
section.keyvisual .moviewrap #moviearea + .catch {
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}
section.keyvisual .moviewrap #moviearea.js_active + .catch {
  -webkit-animation: boxmove 1s .5s forwards;
          animation: boxmove 1s .5s forwards;
}
section.keyvisual .moviewrap .scrtop {
  position: absolute;
  width: 100px;
  height: 120px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
section.keyvisual .moviewrap .scrtop p {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
}
section.keyvisual .moviewrap .scrtop p::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: -110px;
  left: 50%;
}
@media only screen and (max-width: 768px) {
  section.keyvisual .moviewrap .scrtop {
    height: 80px;
  }
  section.keyvisual .moviewrap .scrtop p::after {
    height: 60px;
    bottom: -70px;
  }
}
#moviearea video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*--------------------------
Topics
---------------------------*/
section.topics {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 60px 0;
}
@media only screen and (max-width: 768px) {
  section.topics {
    width: 100%;
    padding: 8vw 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
section.topics .title {
  width: 110px;
  margin-bottom: 50px;
}
section.topics .title h2 {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  color: #00954d;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  section.topics .title {
    width: auto;
    margin-bottom: 4vw;
  }
  section.topics .title h2 {
    font-size: 5.33vw;
  }
}
@media only screen and (max-width: 768px) {
  section.topics ul {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
section.topics ul li a {

}
section.topics ul li a .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
section.topics ul li a .date {
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  width: 5.5em;
}
section.topics ul li a .cat {
  display: inline-block;
  border: 1px solid #000000;
  font-size: 1.1rem;
  padding: 2px 0;
  width: 10em;
  text-align: center;
}
section.topics ul li a .cat.news {
  color: #e47407;
  border-color: #e47407;
}
section.topics ul li a .cat.recruit {
  color: #19c0ca;
  border-color: #19c0ca;
}
section.topics ul li a .cat.company-owned-forest {
  color: #29bc71;
  border-color: #29bc71;
}
section.topics ul li a .cat.gallery {
  color: #7eb80f;
  border-color: #7eb80f;
}
section.topics ul li a .cat.others {
  color: #798881;
  border-color: #798881;
}
section.topics ul li a .desc {
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
  font-size: 1.6rem;
  line-height: 1em;
  padding: 1px 0;
  cursor: pointer;
  margin-top: 20px;
}
section.topics ul li a .desc:hover {
  text-decoration: underline;
  color: #00964c;
}
section.topics ul li a.pdf .desc::after {
  display: inline-block;
  content: "";
  background-image: url("/wp-content/themes/mitsuibf-theme/images/common/icon-pdf.png");
  width: 15px;
  height: 20px;
  background-size: contain;
  margin-left: 5px;
  vertical-align: -4px;
}
section.topics ul li a.extlink .desc::after {
  display: inline-block;
  content: "";
  background-image: url("/wp-content/themes/mitsuibf-theme/images/common/icon-extlink.png");
  width: 17px;
  height: 15px;
  background-size: contain;
  margin-left: 5px;
  vertical-align: -2px;
}
@media only screen and (max-width: 768px) {
  section.topics ul li a .info {
    margin-top: 4vw;
  }
  section.topics ul li a .date {
    font-size: 3.6vw;
  }
  section.topics ul li a .cat {
    font-size: 3.1vw;
    width: 30vw;
  }
  section.topics ul li a .desc {
    font-size: 3.8vw;
    margin-top: 4vw;
  }
}
section.topics .more {
  position: absolute;
  top: 0;
  right: 30px;
  width: 240px;
}
@media only screen and (max-width: 768px) {
  section.topics .more {
    position: unset;
    width: 100%;
    margin-top: 4vw;
  }
}


/*--------------------------
Main Area
---------------------------*/
section.mainpage {
  padding: 100px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  section.mainpage {
    padding: 13.33vw 0;
  }
}


/*--------------------------
Main Area whatwedo
---------------------------*/
section.mainpage .whatwedo {
  position: relative;
  margin-bottom: 80px;
}
section.mainpage .whatwedo .inner {
  z-index: 2;
}
section.mainpage .whatwedo .box {
  position: absolute;
}
section.mainpage .whatwedo .etitle {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #00954d;
  line-height: 1.5;
  margin-bottom: 15px;
}section.mainpage .whatwedo .title {
  margin-bottom: 30px;
}
section.mainpage .whatwedo .title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
section.mainpage .whatwedo .title br {
  display: none;
}
section.mainpage .whatwedo .lead {
  width: 49%;
  line-height: 1.5;
}
section.mainpage .whatwedo .whatwedo_img {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  z-index: 1;
}
section.mainpage .whatwedo .whatwedo_img_txt {
  position: absolute;
  top: 33%;
  left: 44%;
  width: 13.85vw;
  max-width: 180px;
  height: 13.85vw;
  max-height: 180px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.15vw;
  font-weight: 500;
  color: #00954D;
  background-color: #ffffff;
  border-radius: 50%;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
section.mainpage .whatwedo .whatwedo_img_txt .num {
  font-size: 4.54vw;
}
section.mainpage .whatwedo .whatwedo_img_txt .uptxt {
  font-size: 2.54vw;
}
@media only screen and (min-width: 1301px) {
  section.mainpage .whatwedo .whatwedo_img_txt {
    font-size: 2.8rem;
  }
  section.mainpage .whatwedo .whatwedo_img_txt .num {
    font-size: 5.9rem;
  }
  section.mainpage .whatwedo .whatwedo_img_txt .uptxt {
    font-size: 3.3rem;
  }
}
@media only screen and (max-width: 1100px) {
  section.mainpage .whatwedo .box {
    position: unset;
  }
}
@media only screen and (max-width: 768px) {
  section.mainpage .whatwedo {
    margin-bottom: 10.67vw;
  }
  section.mainpage .whatwedo .box {
    position: unset;
  }
  section.mainpage .whatwedo .etitle {
    font-size: 5.33vw;
    margin-bottom: 15px;
  }
  section.mainpage .whatwedo .title {
    font-size: 6.4vw;
  }
  section.mainpage .whatwedo .title br {
    display: block;
  }
  section.mainpage .whatwedo .lead {
    width: 100%;
    font-size: 3.73vw;
  }
  section.mainpage .whatwedo .whatwedo_img {
    margin-top: 4vw;
    padding: 0;
  }
  section.mainpage .whatwedo .whatwedo_img_txt {
    position: absolute;
    top: 30%;
    left: 34%;
    width: 22.4vw;
    height: 22.4vw;
    font-size: 3.47vw;
  }
  section.mainpage .whatwedo .whatwedo_img_txt .num {
    font-size: 7.2vw;
  }
  section.mainpage .whatwedo .whatwedo_img_txt .uptxt {
    font-size: 4vw;
  }
}


/*--------------------------
Main Area whatwedo
---------------------------*/
.mainpage_inner {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}
.mainpage_2column {
  display: flex;
  align-items: center;
  gap: 0 7.14vw;
}
.mainpage_2column .column {
  width: 50%;
}
.mainpage_2column .txtbox {
  margin: 0 30px 0 0;
}
.mainpage_2column .title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.mainpage_2column .lead {
  line-height: 1.5;
}
.mainpage_2column .module_button-link {
  max-width: 300px;
  margin-top: 40px;
}
.mainpage_2column + .mainpage_2column {
  margin-top: 60px;
}
.mainpage_2column:nth-of-type(even) {
  flex-direction: row-reverse;
}
.mainpage_2column:nth-of-type(even) .txtbox {
  margin: 0 0 0 30px;
}
@media only screen and (min-width: 1401px) {
  .mainpage_2column {
    gap: 0 100px;
  }
  .mainpage_2column .txtbox {
    max-width: 430px;
    margin-right: 150px;
  }
  .mainpage_2column:nth-of-type(even) .txtbox {
    margin-left: 150px;
  }
}
@media only screen and (max-width: 768px) {
  .mainpage_2column {
    display: block;
  }
  .mainpage_2column .column {
    width: auto;
  }
  .mainpage_2column .txtbox,
  .mainpage_2column:nth-of-type(even) .txtbox {
    margin: 6.4vw 0 0;
    padding: 0 8vw;
  }
  .mainpage_2column .title {
    font-size: 5.33vw;
    margin-bottom: 4.27vw;
  }
  .mainpage_2column .lead {
    font-size: 3.73vw;
  }
  .mainpage_2column .module_button-link {
    max-width: none;
    margin: 6.4vw 0 0;
  }
  .mainpage_2column + .mainpage_2column {
    margin: 16vw 0 0;
  }
}


/*--------------------------
Profile Area
---------------------------*/
section.profilearea {
  background-image: url("/wp-content/themes/mitsuibf-theme/images/index/bg_profile.png");
  background-position: center;
  background-repeat: repeat;
  padding: 100px 0;
  text-align: center;
}
section.profilearea .etitle {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #00954d;
  line-height: 1.5;
  margin-bottom: 15px;
}section.profilearea .title {
  margin-bottom: 30px;
}
section.profilearea .title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
section.profilearea .title br {
  display: none;
}
section.profilearea .profile_3column {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
section.profilearea .profile_3column .column {
  width: 33.3%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.25;
}
section.profilearea .profile_3column .column img {
  max-width: 230px;
}
section.profilearea .profile_3column .column p {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2em;
}
section.profilearea .profile_3column .column .num {
  font-size: 3.2rem;
}
section.profilearea .profile_3column .column .fs18 {
  font-size: 1.8rem;
}
section.profilearea .profile_3column .column .fs20 {
  font-size: 2rem;
}
section.profilearea .module_button-link {
  width: 300px;
  margin: 60px auto 0;
}
@media only screen and (max-width: 768px) {
  section.profilearea {
    padding: 13.33vw 0;
  }
  section.profilearea .etitle {
    font-size: 5.33vw;
    margin-bottom: 2.67vw;
  }
  section.profilearea .title {
    margin-bottom: 10.67vw;
  }
  section.profilearea .title {
    font-size: 6.4vw;
  }
  section.profilearea .title br {
    display: block;
  }
  section.profilearea .profile_3column {
    flex-wrap: wrap;
    gap: 4vw 8vw;
  }
  section.profilearea .profile_3column .column {
    width: calc(50% - 8vw);
    font-size: 4.8vw;
  }
  section.profilearea .profile_3column .column:nth-of-type(1) {
    width: 100%;
  }
  section.profilearea .profile_3column .column img {
    width: 100%;
  }
  section.profilearea .profile_3column .column p {
    min-height: 2em;
  }
  section.profilearea .profile_3column .column .num {
    font-size: 6.4vw;
  }
  section.profilearea .profile_3column .column .fs18 {
    font-size: 4.27vw;
  }
  section.profilearea .profile_3column .column .fs20 {
    font-size: 4.27vw;
  }
  section.profilearea .module_button-link {
    width: auto;
    margin: 9.33vw auto 0;
  }
}


/*--------------------------
Recruit Area
---------------------------*/
section.recruitarea {
  width: 100%;
  /* height: 31vw; */
  min-height: 437px;
  background-image: url("/wp-content/themes/mitsuibf-theme/images/index/ph-recruit_pc.webp");
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  text-align: center;
}
section.recruitarea.recruit_2025 {
  background-image: url("/wp-content/themes/mitsuibf-theme/images/index/ph-recruit-2025_pc.jpg");
}
@media only screen and (max-width: 768px) {
  section.recruitarea {
    background-image: url("/wp-content/themes/mitsuibf-theme/images/index/ph-recruit_sp.webp");
    background-position: center;
    height: 85.33vw;
  }
  section.recruitarea.recruit_2025 {
    background-image: url("/wp-content/themes/mitsuibf-theme/images/index/ph-recruit-2025_sp.jpg");
  }
}
section.recruitarea .title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  section.recruitarea .title {
    font-size: 6.4vw;
  }
}
section.recruitarea .etitle {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  section.recruitarea .etitle {
    font-size: 5.33vw;
    margin-bottom: 3.2vw;
  }
}
section.recruitarea .desc {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  section.recruitarea .desc {
    font-size: 4vw;
    margin-top: 8vw;
  }
}
section.recruitarea .module_button-link {
  width: 300px;
  margin: 40px auto 0;
}
@media only screen and (max-width: 768px) {
  section.recruitarea .module_button-link {
    margin: 9.6vw auto 0;
  }
}


/*--------------------------
Letter Area
---------------------------*/
section.letterarea {
  padding: 80px 0;
  background-color: #FFFDF6;
}
section.letterarea .etitle {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #00954d;
  line-height: 1.5;
  margin-bottom: 15px;
}
section.letterarea .box {
  margin-bottom: 50px;
}
section.letterarea .title {
  margin-bottom: 30px;
}
section.letterarea .title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
section.letterarea .lead {
  line-height: 1.5;
}
section.letterarea .module_button-link {
  max-width: 300px;
  margin: 45px 0 0 auto;
}
.letterarea .swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}
.letterarea .swiper-container .swiper-wrapper img {
  width: 100%;
}
.letterarea .desc {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(99,99,99,0.4) 0%, rgba(22,22,22,1)100%);
  font-size: 1.5rem;
  line-height: 1.25;
  color: #ffffff;
  padding: 18px 10px;
}
.letterarea .swiper-slide {
  width: 240px;
}
.letterarea .img {
  width: 100%;
  height: 135px;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  section.letterarea {
    padding: 10.67vw 0;
  }
  section.letterarea .box {
    margin-bottom: 10.67vw;
  }
  section.letterarea .etitle {
    font-size: 5.33vw;
    margin-bottom: 3.2vw;
  }
  section.letterarea .title {
    margin-bottom: 10.67vw;
    font-size: 6.4vw;
  }
  section.letterarea .lead {
    font-size: 3.73vw;
  }
  section.letterarea .module_button-link {
    max-width: none;
    margin: 9.6vw 0 0 auto;
  }
  .letterarea .desc {
    font-size: 3.47vw;
    padding: 1.6vw 2.67vw;
  }
  .letterarea .swiper-slide {
    width: 180px;
  }
  .letterarea .img {
    height: 100px;
  }
}


/*--------------------------
Banner Area
---------------------------*/
section.topbannerarea ul {
  padding: 60px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.topbannerarea ul li + li {
  margin-left: 60px;
}
@media only screen and (max-width: 768px) {
  section.topbannerarea ul {
    display: block;
    padding: 8vw 6.4vw;
  }
  section.topbannerarea ul li {
    text-align: center;
  }
  section.topbannerarea ul li + li {
    margin: 8vw 0 0 0;
  }
}

@-webkit-keyframes boxmove {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes boxmove {
  from {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*--------------------------
topics Area Animation
---------------------------*/
@media only screen and (min-width: 769px) {
  section.topics[data-emergence=hidden] .inner {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.topics[data-emergence=visible] .inner {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
}
/*--------------------------
Main Area Animation
---------------------------*/
@media only screen and (min-width: 769px) {
  section.mainpage .whatwedo[data-emergence=hidden] .inner, section.mainpage .whatwedo[data-emergence=hidden] .whatwedo_img {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.mainpage .whatwedo[data-emergence=visible] .inner {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
  section.mainpage .whatwedo[data-emergence=visible] .whatwedo_img {
    -webkit-animation: boxmove 1s 0.25s forwards;
            animation: boxmove 1s 0.25s forwards;
            opacity: 0;
  }

  section.mainpage .mainpage_2column .column[data-emergence=hidden], section.mainpage .mainpage_2column .column[data-emergence=hidden] .txtbox {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.mainpage .mainpage_2column .column[data-emergence=visible] {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
  section.mainpage .mainpage_2column .column[data-emergence=visible] .txtbox {
    -webkit-animation: boxmove 1s .25s forwards;
            animation: boxmove 1s .25s forwards;
            opacity: 0;
  }
}
/*--------------------------
Profile Area Animation
---------------------------*/
@media only screen and (min-width: 769px) {
  section.profilearea .box[data-emergence=hidden], section.profilearea .profile_3column[data-emergence=hidden] .column, section.profilearea .module_button-link[data-emergence=hidden] {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.profilearea .box[data-emergence=visible] {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
  section.profilearea .profile_3column[data-emergence=visible] .column:nth-of-type(1) {
    -webkit-animation: boxmove 1s 0.1s forwards;
            animation: boxmove 1s 0.1s forwards;
            opacity: 0;
  }
  section.profilearea .profile_3column[data-emergence=visible] .column:nth-of-type(2) {
    -webkit-animation: boxmove 1s 0.2s forwards;
            animation: boxmove 1s 0.2s forwards;
            opacity: 0;
  }
  section.profilearea .profile_3column[data-emergence=visible] .column:nth-of-type(3) {
    -webkit-animation: boxmove 1s 0.3s forwards;
            animation: boxmove 1s 0.3s forwards;
            opacity: 0;
  }
  section.profilearea .module_button-link[data-emergence=visible] {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
}
/*--------------------------
Recruit Area Animation
---------------------------*/
@media only screen and (min-width: 769px) {
  section.recruitarea[data-emergence=hidden] {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.recruitarea[data-emergence=visible] {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
}
/*--------------------------
Letter Area Animation
---------------------------*/
@media only screen and (min-width: 769px) {
  section.letterarea[data-emergence=hidden] {
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  section.letterarea[data-emergence=visible] {
    -webkit-animation: boxmove 1s;
            animation: boxmove 1s;
  }
}
