@charset "UTF-8";
@import url(../css/sub.css);
@import url(../css/header.css);
:root {
  --main-bg-color: #27ae60;
  --shade2-bg-color: #27ae60;
  --window-padding: 50px;
  --vertical-window-padding: 100px;
  --font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-family2: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.no-borderBox *,
.no-borderBox *::before,
.no-borderBox *::after {
  box-sizing: content-box;
}

/* .no-line-height, 
.no-line-height * {
  line-height: normal;
} */

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  /* background-image: url(../img/body-bg.png); */
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

/* #top main {
    margin-top: 0;
    background: url(../img/company/diagonal.svg) no-repeat;
    background-size: cover;
    background-position: center;
} */

.pd-tb {
  padding-top: var(--vertical-window-padding);
  padding-bottom: var(--vertical-window-padding);
}

.pd-b {
  padding-bottom: var(--vertical-window-padding);
}

.mg-b {
  margin-bottom: var(--vertical-window-padding);
}

.pd-lr {
  padding-left: var(--window-padding);
  padding-right: var(--window-padding);
}

.btn01 {
  background-color: var(--main-bg-color);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100vh;
  position: relative;
  border: solid #fff;
}

.btn01.center {
  margin: 0 auto;
}

.btn01::after {
  content: "";
  /* background: url(../img/arrow.png) no-repeat; */
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 25px;
  height: 25px;
}

.btn01.btn01noarrow::after {
  content: unset;
}

.btn02 {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 70px;
  padding: 0 20px;
  border-radius: 100vh;
  position: relative;
  background-color: #fff;
  border: solid #000;
  color: #000;
}

.btn02::after {
  content: "";
  background: url(../img/arrow-black.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 25px;
  height: 25px;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hv {
  transition: 0.5s ease;
}

.hv:hover {
  opacity: 0.7;
}

/* header-end */

.section_ttl {
  font-size: 45px;
  color: var(--main-bg-color);
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.section_ttl.center {
  text-align: center;
}

.section_ttl span {
  font-size: 20px;
  color: #000;
}

.mv {
  height: 100vh;
  /* background-image: url(../img/top_mv.jpg);
    background-size: cover;
    background-repeat: no-repeat; */
  position: relative;
}

.mv .inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1700px;
}

.mv_text {
  position: absolute;
  left: 100px;
  bottom: 60px;
}

.mv_text p {
  font-size: 80px;
  color: #fff;
  filter: drop-shadow(1px 1px 2px #3338);
  line-height: 90px;
  font-weight: 600;
}

.sp {
  display: none;
}

#page_top {
  position: fixed;
  bottom: 50px;
  right: 50px;
}

/* footer */
.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  border-top: solid 1px #3333;
  background-color: #fff;
}

.footer .inner {
  display: flex;
  margin-bottom: 20px;
  max-width: 1100px;
}

.footer_nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 40px;
}

.footer_nav ul {
  width: 40%;
}

.footer_nav ul li {
  width: 100%;
  padding: 0 0 10px;
}

.footer_nav ul li a {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

.footer_nav ul li a span {
  margin-right: 10px;
}

.footer_logo {
  width: 100%;
  text-align: end;
}

.footer_logo .logo img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
}

.footer_logo .address {
  line-height: 20px;
  font-size: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
  font-weight: 500;
  color: #000;
}

.footer_logo .address::after {
    content: "";
    background-color: #000;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    position: absolute;
}

.footer_logo .footer_btns {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer_logo .footer_btns a img {
  height: 50px;
  width: 100%;
}

.copyright {
  text-align: center;
  color: #000;
  font-size: 15px;
}

/* footer */
@media screen and (max-width: 1400px) {
  .btn01 {
    height: 65px;
  }

  .inner {
    max-width: 1000px;
  }

  .mv_text p {
    font-size: 60px;
    line-height: 70px;
  }

  .footer_nav ul {
    width: 50%;
  }

  .footer_nav ul li a,
  .footer_logo .address {
    font-size: 14px;
    line-height: 25px;
  }
}

@media screen and (max-width: 1250px) {
}

@media screen and (max-width: 1100px) {
  .mv_text {
    left: 25px;
    bottom: 25px;
  }

  .mv_text p {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  body {
    background-size: cover;
  }
}
