@charset "UTF-8";

/*----------------------------  common  ----------------------------*/
/*--------------------------------------------
base
--------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-family: "Lato", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial",
    "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  line-height: 1.6;
}
.access,
.comany,
.contact {
  text-align: center;
}
.page-title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
  text-align: center;
}

/*--------------------------------------------
header
--------------------------------------------*/
header {
  width: 100%;
  border-top: 5px solid #d01717;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  height: 80px;
  padding: 0 30px;
}
.header-logo {
  font-size: 4rem;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.header-logo:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.header-nav-list {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.header-nav-item a {
  padding: 10px;
  font-size: 1.5rem;
}
.header-nav-list li {
  transition: transform 0.25s ease;
}
.header-nav-list li:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.contact-box {
  padding-left: 20px;
  font-size: 1.6rem;
}
.contact-box a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  border-radius: 8px;
  padding: 15px 30px;
  background-color: #000;
  color: #fff;
}

/*--------------------------------------------
hamburger
--------------------------------------------*/
.l-navbtn__bg {
  background-color: transparent;
  border-radius: 50px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 4;
}
.hamburger-list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 400px;
  max-width: calc(100% - 40px);
  height: auto;
  background-color: #eee;
  padding: 20px 10px;
  border: solid 20px #fff;
  border-radius: 10px;
  font-size: 2.2rem;
  text-decoration: none;
  z-index: 5;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  transform-origin: bottom;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: top 0.35s ease-in-out, transform 0.35s ease-in-out,
    opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
.hamburger-list.is-active {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}
.hamburger-list-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4;
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
.hamburger-list-bg.is-active {
  opacity: 1;
  visibility: visible;
}
#hamburger-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  font-size: 2.4rem;
  color: #333;
}
#hamburger-menu li {
  text-align: center;
  width: auto;
  margin: 0 auto;
  align-self: flex-start;
}
#hamburger-menu li a {
  display: inline-block;
  transition: transform 0.25s ease;
}
#hamburger-menu li a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.l-navbtn {
  background: transparent;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 100%;
  z-index: 3;
  transition: transform 0.25s ease;
}
.l-navbtn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 0.8;
}
.l-navbtn__bar.m-top {
  transform: translate(-50%, calc(-50% - 5.5px));
}
.l-navbtn__bar.m-middle {
  transform: translate(-50%, -50%);
}
.l-navbtn__bar.m-bottom {
  transform: translate(-50%, calc(-50% + 5.5px));
}
.l-navbtn__bar {
  background-color: #000;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}
.hamburger-list,
.hamburger-list-bg,
.l-navbtn__bg {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-list,
  .hamburger-list-bg,
  .l-navbtn__bg {
    display: block;
  }
  .header-nav {
    display: none;
  }
}

/*--------------------------------------------
footer
--------------------------------------------*/
footer {
  width: 100%;
  border-top: 1px solid rgb(225, 225, 225);
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1600px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 60px 30px 40px;
  font-weight: 300;
}
.under-1000-wrapper {
  color: #000;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  width: 50%;
}
.footer-company-name {
  font-size: 2.8rem;
  font-weight: 600;
}
.footer-address {
  margin: 0 0 15px;
}
.company-info {
  display: flex;
  flex-direction: column;
}
.company-info a {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  color: #2852b9;
  text-decoration: underline;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.company-info a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.telno {
  margin-bottom: 15px;
}
.footer-link {
  display: flex;
  justify-content: space-between;
  width: 50%;
  height: auto;
  padding: 0 80px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu li {
  font-size: 1.8rem;
  color: #000;
  padding: 5px;
  transition: transform 0.25s ease;
}
.footer-menu li:hover {
  transform: scale(1.1);
  opacity: 0.4;
}
.under-1000-img {
  display: block;
  max-width: 187px;
  width: 100%;
  height: auto;
}
.under-1000-fimg {
  display: block;
  max-width: 187px;
  width: 100%;
  height: auto;
}
.footer-copy {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #000;
  padding-bottom: 60px;
}
.under-1000-fimg {
  display: none;
}
.under-650-footer {
  display: none;
}

/*--------------------------------------------
footer レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 1000px) {
  .footer-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .under-1000-img {
    display: none;
  }
  .under-1000-fimg {
    display: block;
  }
  .footer-link {
    max-width: 700px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
  }
  .footer-menu {
    flex-direction: row;
  }
  .footer-menu {
    margin: 0 auto;
  }
  .under-1000-wrapper {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .under-650-footer {
    display: block;
  }
  .company-info {
    text-align: center;
  }
  .under-1000-wrapper {
    padding: 0 40px;
  }
  .company-info a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 610px) {
  .footer-wrapper {
    padding: 32px 30px 32px;
  }
  .footer-copy {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 565px) {
  .under-650-footer {
    display: none;
  }
  .under-1000-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 24px;
  }
  .under-1000-fimg {
    max-width: 100%;
    height: auto;
  }
  .footer-link {
    padding: 0;
  }
}
@media screen and (max-width: 510px) {
  .under-650-footer {
    display: block;
  }
}

/*----------------------------  TOP  ----------------------------*/
/*--------------------------------------------
fv
--------------------------------------------*/
.fv-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.fv-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.fv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
  font-size: 6.4rem;
  font-weight: 200;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.fv-text h2 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 20px;
}
.fv-img {
  display: block;
  width: 100%;
  height: 1033px;
  object-fit: cover;
}
.under-680 {
  display: none;
}

/*--------------------------------------------
fv レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 890px) {
  .fv-text h1 {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 800px) {
  .fv-text h1 {
    font-size: 4.8rem;
  }
  .fv-img {
    height: 100vh;
  }
}
@media screen and (max-width: 680px) {
  .under-680 {
    display: block;
  }
}

/*--------------------------------------------
intro
--------------------------------------------*/
.intro-figure {
  padding: 60px 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
.intro-figure1 {
  flex-direction: row-reverse;
}
.about-img {
  width: 50%;
  height: auto;
  margin: 0;
}
.intro .intro-figure .about-caption1 {
  margin: auto auto auto 0;
}
.intro .intro-figure .about-caption2 {
  margin: auto 0 auto auto;
}
.about-caption {
  width: 45%;
  height: auto;
  margin: auto;
}
.about-title,
.about-description {
  font-weight: 200;
  font-size: 1.8rem;
  color: #333;
}
.about-word {
  font-size: 4.8rem;
  font-weight: 600;
  color: #d01717;
  margin-top: 10px;
  margin-bottom: 20px;
}
.about-link {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 30px;
  background-color: #d01717;
  color: #fff;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform 0.25s ease;
}
.about-link:hover {
  transform: scale(1.05);
}
.under-1140 {
  display: none;
}
.under-400 {
  display: none;
}

/*--------------------------------------------
intro レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 1235px) {
  .about-word {
    font-size: 4rem;
  }
}
@media screen and (max-width: 1140px) {
  .under-1140 {
    display: block;
  }
  .above-1140 {
    display: none;
  }
}
@media screen and (max-width: 1050px) {
  .about-word {
    font-size: 3.6rem;
  }
  .above-1140 {
    display: block;
  }
}
@media screen and (max-width: 950px) {
  .about-word {
    font-size: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .intro-figure {
    flex-direction: column;
    align-items: center;
  }
  .about-img {
    width: 100%;
  }
  .intro .intro-figure .about-caption1,
  .intro .intro-figure .about-caption2 {
    margin: 0 auto;
  }
  .about-caption {
    width: 80%;
    height: auto;
    padding-top: 32px;
  }
  .about-word {
    font-size: 4.8rem;
  }
  .about-caption a .about-link {
    display: block;
    max-width: 135px;
    margin: 32px auto 0;
  }
  .above-1140 {
    display: none;
  }
}
@media screen and (max-width: 730px) {
  .about-word {
    font-size: 4rem;
  }
}
@media screen and (max-width: 610px) {
  .intro-figure {
    padding: 32px 30px;
  }
  .about-caption {
    padding-top: 24px;
  }
  .about-word {
    font-size: 3.6rem;
    margin: 8px auto;
  }
  .about-link {
    margin-top: 24px;
  }
}
@media screen and (max-width: 580px) {
  .about-word {
    font-size: 3rem;
  }
  .above-1140 {
    display: block;
  }
  .about-caption {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .under-400 {
    display: block;
  }
  .about-caption2 p br {
    display: none;
  }
}

/*----------------------------  access  ----------------------------*/
/*--------------------------------------------
access content
--------------------------------------------*/
.access {
  padding: 0 30px;
}
.access-info {
  padding: 10px;
  margin: 0 auto 20px;
  background-color: #eee;
  max-width: 788px;
  width: 100%;
  height: auto;
  font-size: 2rem;
  line-height: 1.8;
  color: #333;
  font-weight: 300;
}
.access-info p {
  text-align: left;
}
.access-map {
  max-width: 788px;
  width: 100%;
  max-height: 330px;
  margin-bottom: 20px;
}
.access > address {
  padding: 10px;
  margin: 0 auto 25px;
  max-width: 788px;
  width: 100%;
  height: auto;
  font-size: 2rem;
  font-weight: 300;
  text-align-last: left;
  display: block;
  width: auto;
}
.access-under-455 {
  display: none;
}

/*--------------------------------------------
access レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 550px) {
  .access-info,
  .access > address {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 455px) {
  .access-under-455 {
    display: block;
  }
}

/*----------------------------  company  ----------------------------*/
/*--------------------------------------------
company content
--------------------------------------------*/
.about-wrapper {
  padding: 0 30px;
  margin: 0 auto 25px;
  font-size: 2rem;
  font-weight: 300;
  max-width: 968px;
  width: 100%;
}
.company-img-container {
  max-width: 910px;
  width: 100%;
  height: 260px;
}
.company-about-img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  object-position: 0 50%;
}
.about-wrapper p:not(:last-child) {
  display: block;
  line-height: 60px;
  justify-content: center;
}
.about-sub-title {
  background-color: #eee;
}
.about-sub-content-detail {
  margin-top: 16px;
  padding: 0 16px;
  text-align-last: left;
}
.under-600-company,
.under-510-company {
  display: none;
}

/*--------------------------------------------
company content レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 715px) {
  .about-wrapper p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .under-600-company {
    display: block;
  }
  .about-wrapper p.about-sub-content-under600,
  .about-wrapper p.about-sub-content-detail {
    line-height: 1.6;
  }
  .about-sub-content-under600 {
    padding: 16px 0;
  }
}
@media screen and (max-width: 510px) {
  .under-510-company {
    display: block;
  }
}

/*----------------------------  contact  ----------------------------*/
/*--------------------------------------------
contact content
--------------------------------------------*/
.contact-wrapper {
  padding: 0 30px;
  margin: 0 auto 25px;
  font-size: 1.5rem;
  max-width: 660px;
  width: 100%;
  text-align: left;
}
.form-table {
  max-width: 600px;
  width: 100%;
  height: auto;
}
.form-table input.input,
.form-table textarea.input-area {
  max-width: 600px;
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  padding: 10px;
  margin: 10px auto;
  border-radius: 4px;
  font-weight: 500;
  color: #000;
  text-align-last: left;
}
.input-area {
  max-height: 160px;
}
.form-table input.input::placeholder,
.form-table textarea.input-area::placeholder {
  color: #aaa;
  opacity: 1;
  font-weight: 300;
}
.required {
  color: #f23a3c;
}
.form-name {
  font-weight: 500;
}
.check-box-area {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: start;
  margin-top: 20px;
}
.checkbox {
  border: 1px solid #eee;
  width: 13px;
  height: 13px;
  position: relative;
  margin-right: 10px;
  border: 1px solid #767676;
  border-radius: 2.5px;
}
.checkbox:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 1.5px;
  display: inline-block;
  width: 8px;
  height: 5px;
  border-left: 2px solid #2852b9;
  border-bottom: 2px solid #2852b9;
  transform: rotate(-54deg);
}
.button {
  width: 100%;
  margin: 30px auto 20px;
  padding: 15px;
  background-color: #333;
  border-radius: 4px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  transition: transform 0.25s ease;
}
.button:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.under540-404 {
  display: none;
}
.response {
  margin: 0 auto;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
  padding: 8px;
  width: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
  padding: 8px;
  width: 100%;
}

/*----------------------------  404  ----------------------------*/
/*--------------------------------------------
404 content
--------------------------------------------*/
.for-404 {
  display: flex;
  flex-direction: column;
  padding: 80px 30px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #333;
  justify-content: center;
  align-items: center;
}
.for-404 > h1 {
  font-size: 4rem;
  color: #767676;
  font-weight: 700;
  margin-bottom: 32px;
}

/*--------------------------------------------
404 content レスポンシブ
--------------------------------------------*/
@media screen and (max-width: 540px) {
  .under540-404 {
    display: block;
  }
}
