@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #ffffff;
  /* RGB */
  background-color: #000000;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1rem;
}

a:hover {
  opacity: 0.5;
}

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

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}



.red {
  color: #5b0d11;
}


.white {
  color: #ffffff;
}

.ft18 {
  font-size: 1.4rem;
}

.ft24 {
  font-size: 2.4rem;
}

.ft30 {
  font-size: 3rem;
}

.ft40 {
  font-size: 4rem;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

/* header */
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgb(255, 255, 255, 0.7);
  border-top: 8px solid #5b0d11;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header_inner {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 0 2vw
}

.header_inner .logo {
  width: 160px;

}



.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #5b0d11;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem
}



.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin-right: 16px;
  background-color: #5b0d11;
  margin: 0;
  top: -4px;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 1px;
  background: #fff;
  width: 30px;
  top: 27px;
}

.ham_btn span:nth-of-type(1) {
  top: 18px;

}

.ham_btn span:nth-of-type(2) {
  top: 36px;

}


.ham_btn.active span:nth-of-type(1) {
  top: 23px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 35px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}







/* MV */
.MV {

  position: relative;

}

.MV_slide {

  margin-inline: auto;
  overflow: hidden;

}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  position: absolute;
  bottom: 30%;
  left: 6vw;
  z-index: 20;
  width: 80%;
  max-width: 720px;

}

/* 共通 */
section {
  position: relative;
  padding: 80px 0 120px;
}

.section_ttl {
  font-size: 4.0rem;
  margin-bottom: 80px;
  text-align: center;
  width: 86%;
  background-color: #3c3f48;
  padding: 50px 30px;
  font-weight: 500;
}

.section_ttl h2 {
  padding-right: 20%;
}

.section_lead {
  padding: 0 6vw;
  margin-bottom: 80px;
  text-align: justify;
}

.content {
  padding: 80px 6vw;
}

h3 {
  font-size: 3.0rem;
  text-align: center;
}

.more a {
  display: block;
  width: 80%;
  max-width: 220px;
  margin: 40px auto;
  padding: 12px 0px;
  position: relative;
  text-align: left;

}

.more a::after {
  content: "";
  width: 113px;
  height: 9px;
  background-image: url(../img/arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;

  right: 0px;
  z-index: 10;
}

.contentInner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#top_01 .content_item--ttl span {
  display: block;
}
#top_01 .content_item--img {
  overflow:hidden; 
}
#top_01 .content_item--img img {
  transition:1s all; 
}
#top_01 .content_item--img img:hover{
  transform:scale(1.1,1.1);
  transition:1s all;
}

#top_02 {
  background-color: #3c3f48;
}

#top_02 .section_inner {
  position: relative;
  z-index: 10;
}

#top_02 .section_ttl {
  font-size: 4.0rem;
  margin: 0 0 80px auto;
  text-align: center;
  width: 86%;
  background-color: #000000;
  padding: 40px;
  font-weight: 500;
}

#top_02 .section_ttl h2 {
  padding-left: 20%;
  padding-right: 0;
}

#top_02 .content_item p {
  text-align: center;
  font-size: 2.4rem
}

#top_02 .contentInner {
  margin-bottom: 100px;
  padding: 0 6vw;
}

#top_02 .section_deco {
  height: 103%;
  width: 100%;
  position: absolute;
  top: -3%;
  overflow: hidden;
}

#top_02 .section_deco img {
  height: 110%;
  width: 100%;

}

#top_03 {
  background-color: #5b0d11;
  padding-bottom: 0;
}

#top_03 .section_lead {
  font-size: 4.5rem;
  margin: 0 auto;
  display: inline-block;
  padding: 40px 6vw;
}

#top_03 .content {
  padding: 0;
}

#top_03 .content_text {
  border: 1px solid #ffffff;
  padding: 40px 20px;
  margin: 40px 6vw;
}

#top_03 .content_text p {
  font-size: 3.0rem;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

#top_03 .content_item--img {
  margin: 60px 0 0;
}

#top_04 {
  background-image: url(../img/top04_bg@2x.png);
  background-size: cover;
  padding-bottom: 0;
}

#top_04 .section_inner {
  padding: 0 6vw;
}

#top_04 .content {
  background-color: rgb(255, 255, 255, 0.8);
  margin-bottom: 100px;
  padding-bottom: 40px;
}

#top_04 .section_ttl {
  font-size: 4.0rem;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
  background: none;
  padding: 0px;
  font-weight: 500;
  color: #333333;
}

#top_04 .section_ttl h2 {
  padding-right: 0;
}

#top_04 dl {
  width: 100%;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  font-size: 2.0rem;
  font-weight: 500;
  color: #333333;
}

#top_04 dt,
#top_04 dd {
  padding: 20px 8px 16px;
  border-bottom: 1px solid #333333;
  line-height: 1.8;
}

#top_04 .more a {
  color: #333333;

}

#top_04 .more a::after {

  background-image: url(../img/arrow_b@2x.png);

}







#contact {
  background-image: url(../img/top05_bg@2x.png);
  background-position: center;
  background-size: cover;

  padding: 140px 0;
  color: #ffffff;
}

#contact .section_ttl {
  font-size: 4.0rem;
  margin: 0 0 120px auto;
  text-align: center;
  width: 86%;
  background-color: #000;
  padding: 40px 0;
  font-weight: 500;
}

#contact .section_ttl h2 {
  padding: 0;
}

#contact .section_lead {

  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  display: inline-block;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 6vw;
}

.contact_btn a {
  background-color: #ffffff;
  display: flex;
  height: 66px;
  border-radius: 33px;
  align-items: center;
  margin: 0px auto;
  width: 100%;
  max-width: 360px;
  position: relative;
  justify-content: center;

}

.tel a {
  font-size: 3.0rem;
  color: #333;
}

.tel a img {
  width: 214px;
  transform: translateX(10%);
}

.tel a::before {
  content: "";
  position: absolute;
  background-image: url(../img/tel_b@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 39px;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a p {
  font-size: 2.4rem;
  padding-left: 50px;
  display: inline-block;
  color: #333333;
}

.contact_btn.mail a::before {
  content: "";
  position: absolute;
  background-image: url(../img/mail_b@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 34px;
  height: 25px;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.contact_btn a:hover:after {
  opacity: 1;
  visibility: visible;
  border-radius: 33px;
  background-color: rgba(255, 255, 255, 0.5);
}

#access {
  padding: 0;
  margin: 0;
}

#access iframe {
  height: 450px;
  width: 100%;
  display: block;
}

footer {
  border-top: 20px solid #5b0d11;
  color: #5b0d11;
}



.footer_inner {
  background-image: url(../img/footer_bg@2x.png);
  background-size: cover;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer_item01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 290px;
  margin: 0 auto;

}

.footer_logo {
  width: 40%;
  max-width: 180px;
  margin: 0 auto;
}

.footer_logo2 {
  margin-bottom: 10px;
}

.footer_inner .tel {
  position: relative;

}

.footer_inner .tel a {

  font-size: 2.4rem;
  color: #5b0d11;
  display: block;
}

.footer_inner .tel a p {


  display: block;
}


.footer_inner .tel a::before {

  background-image: url(../img/tel@2x.png);

  width: 23px;
  height: 23px;
  left: 10%;

}


.footer_item02 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.footer_item02 p {
  text-align: center;
  width: 100%;
}




.footer_nav li {
  margin-bottom: 8px;
  text-align: left;
}

.footer_nav li a {
  color: #5b0d11;
}

.cr {
  padding: 10px 0;
  background-color: #5b0d11;
  color: #ffffff;

  text-align: center;
}

#go_top {
  width: 47px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
}



@media screen and (max-width: 480px) {
  #top_03 .section_lead {
    font-size: 10vw;
  }
}



/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }



  header {
    width: 100%;
    height: 150px;
  }

  .header_inner {
    height: 100%;

  }

  .header_left {
    width: calc(100% - 600px);
    max-width: 440px;
  }

  .header_inner .logo {

    width: 100%;
  }


  .header_right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: calc(100% - 200px);
    max-width: 750px;
    height: 100%;
    background: none;
    align-items: flex-end;
    min-width: 680px;
    font-weight: 700;
  }

  .header_right-upper {
    display: flex;
    gap: 60px;
    align-items: flex-end;
    color: #5b0d11;
  }

  .header_tel {
    position: relative;
    padding-right: 10px;
  }

  header .tel a {
    color: #5b0d11;
  }

  .header_tel a::before {
    content: "";
    position: absolute;
    background-image: url(../img/tel@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 39px;
    height: 38px;
    left: -20%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_right-bottom {
    width: 100%;
  }

  .header_right nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .header_right nav ul li {
    padding: 0 10px 10px;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 6);
    position: relative;
  }

  .header_right nav ul li a {
    width: 100%;
    color: #5b0d11;
    font-size: 1.8rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
  }




  .MV_text {

    bottom: 30%;
    left: 20%;
    z-index: 20;
    width: 80%;
    max-width: 720px;

  }


  section {

    padding: 100px 0 120px;
  }

  .section_inner {
    padding: 0 6vw;
  }

  .section_ttl {
    background: none;
    margin: 0 auto 120px;
    max-width: 1280px;



  }

  section::before {
    content: "";
    width: 50vw;
    height: 154px;
    background-color: #3c3f48;
    position: absolute;
    left: 0;
    top: 126px;

  }

  .section_ttl h2 {
    text-align: left;
    font-size: 5.2rem;
    padding-right: 0;
      position: relative;

  }

  .section_lead {
    padding: 0;
    max-width: 1280px;
    margin: 0 auto 80px;
  }

  .contentInner {
    flex-direction: row;
    max-width: 1460px;
    margin: 0 auto;
    gap: 80px;
  }

  #top_02 .section_ttl,
  #contact .section_ttl {
    background: none;
    margin: 0 auto 120px;
    max-width: 1280px;



  }

  #top_02::before,
  #contact::before {
    content: "";
    width: 50vw;
    height: 154px;
    background-color: #000000;
    position: absolute;
    left: auto;
    right: 0;
    top: 120px;
    z-index: 10;

  }

  #top_02 .section_ttl h2,
  #contact .section_ttl h2 {
    text-align: right;
    font-size: 6.0rem;
    padding-right: 0;
    position: relative;
    z-index: 12;

  }

  #top_02 .content {
    padding: 80px 0;
    max-width: 1280px;
    margin: 0 auto;

  }

  #top_02 .contentInner {

    padding: 0;
    margin: 0 auto 100px 0;
  }

  #top_02 .contentInner:nth-of-type(even) {
    justify-content: flex-end;
  }

  #top_02 .section_deco {
    top: 0;
  }

  #top_03 {
    padding-bottom: 60px;
  }

  #top_03::before {

    width: 40vw;

  }

  #top_03 .section_lead {
    font-size: 3vw;
    position: absolute;
    top: 100px;
    padding: 40px 0;
    left: 50%;
  }

  #top_03 .content_item--img {
    position: absolute;
    width: 70%;
    right: 0;
    bottom: 0;
    margin: 0;
  }

  #top_03 .contentInner {
    padding-bottom: 7vw;
    position: relative;
    z-index: 10;

  }

  #top_03 .content_text {
    padding: 0;
    margin: 40px auto 40px 60px;
    width: 525px;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #top_04 {
    padding-bottom: 120px;
  }

  #top_04::before,
  #access::before {
    background: none;

  }

  #top_04 .section_ttl {
    margin: 0 20px 0px;
  }

  #top_04 .content {
    padding: 80px 40px 20px;
    max-width: 1280px;
    margin: 0 auto;

  }

  #top_04 .contentInner {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 60px 20px;

  }

  #top_04 dl {
    max-width: 580px;

  }

  #top_04 .description-item {
    display: flex;

  }

  #top_04 dt {
    width: 220px;

  }

  #top_04 dd {
    width: calc(100% - 220px);

  }

  #contact {

    padding: 100px 0 140px;

  }

  #contact .section_lead {
    margin-bottom: 120px;
  }

  .contact_btn--wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 800px;
    gap: 0;
    margin: 0 auto;
    padding: 0;
  }

  .contact_btn {
    width: 100%;
  }

  .footer_inner {
    flex-direction: row;
    gap: 100px;
    justify-content: flex-start;

  }

  .footer_item01 {
    margin: 0;
    flex-direction: row;
    width: 100%;
    max-width: 450px;
  }

  .footer_logo {
    width: 180px;
  }

  .footer_logo2 {
    width: 280px;
  }
  .footer_item02 {
    max-width:700px ;
    margin: 0;
    justify-content: flex-end;
    gap: 80px;
}
.footer_nav {
  width: 100%;
}

.footer_nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 0px;
}

.footer_nav ul li {
  padding: 0 10px 10px;
  display: flex;
  justify-content: space-between;
  width: calc(100% / 6);
  position: relative;
}

#go_top {
  width: 60px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 900;
}
}

/*--------------------------------------------------------------

下層ページ

--------------------------------------------------------------*/

.h2_business
{
    padding: 270px 0 230px;
    text-align: center;
    font-size: 6rem;
    color: #FFFFFF;
    background: url("../img/h2_business.jpg")no-repeat center;
    background-size: cover;
}
.h2_company
{
    padding: 270px 0 230px;
    text-align: center;
    font-size: 6rem;
    color: #FFFFFF;
    background: url("../img/h2_company.jpg")no-repeat center;
    background-size: cover;
}
.h2_works
{
    padding: 270px 0 230px;
    text-align: center;
    font-size: 6rem;
    color: #FFFFFF;
    background: url("../img/h2_works.jpg")no-repeat center;
    background-size: cover;
}
.h2_recruit
{
    padding: 270px 0 230px;
    text-align: center;
    font-size: 6rem;
    color: #FFFFFF;
    background: url("../img/h2_recruit.jpg")no-repeat center;
    background-size: cover;
}
.h2_contact
{
    padding: 270px 0 230px;
    text-align: center;
    font-size: 6rem;
    color: #FFFFFF;
    background: url("../img/h2_contact.jpg")no-repeat center;
    background-size: cover;
}
.flex
{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.img
{
    width: 48%;
}
.txt
{
    width: 48%;
    text-align: left;
}
@media screen and (max-width: 480px) {
  .img
{
    width: 90%;
    margin: 0 auto
}
.txt
{
    width: 90%;
    text-align: left;
    margin: 0 auto
}
}
.sub_ttl
{
    font-size: 24px;
    font-weight: 600;
    margin: 15px 0 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333333;
    display: block;
}
.re
{
    flex-direction: row-reverse;
}
.sample_txt
{
    max-width: 500px;
    padding: 5vw;
    border: 1px solid #FFFFFF;
    font-size: 5rem;
    text-align: center;
    margin: 5rem auto;
}
/* contact_page */
.contact_content .content_ttl {
  letter-spacing: 1.2rem;
}

#form {
  text-align: left;
  width: calc(100% - 30px);
  max-width: 900px;
  margin: 0 auto;
}

.form_item--ttl, .form_item--input {
  display: inline-block;
  font-family: Hiragino Kaku Gothic ProN、ヒラギノ角ゴ ProN、Hiragino Kaku;
  font-weight: 300;
}

.form_item {
  border-bottom: 1px solid #b5b1b1;
  vertical-align: top;
  padding-top: 18px;
}

.form_item--ttl {
  width: 35%;
  padding: 8px 0 8px 26px;
  height: 100%;
  vertical-align: top;
  margin-top: 0;
  margin-bottom: 22px;
  min-width: 280px
}

#form .must {
  background-color: #5B0D11;
  color: #ffffff;
  padding: 8px 23px;
  margin-left: 20px;
}

.form_item--input {
  padding: 0 25.5px;
  width: 100%;
  margin-bottom: 22px;
}

.form_item--input.radio {
  width: 220px;
}

.form_item--input input {
  height: 44px;
  width: 100%;
  background-color: #ECECEC;
}

#form input[type=radio] {
  accent-color: #5B0D11;
  inline-size: 1.8rem;
  block-size: 1.8rem;
  vertical-align: middle;
  margin-bottom: 3px;
}

#form textarea {
  height: 182px;
  width: 100%;
  background-color: #ECECEC;
  resize: vertical;
}

#form label {
  display: block;
  margin-bottom: 6px;
}

.form_submit {
  text-align: center;
}

.form_submit button {
  margin-top: 72px;
  width: 80%;
  max-width: 286px;
  padding: 16px;
  margin: 72px auto 60px;
  border: none;
  background-color: #5B0D11;
  color: #ffffff;
  font-size: 1.8rem;
}

.form_item--input input:focus,
.form_item--input textarea:focus {
  outline: none;
  box-shadow: none;
}

.form_item--input input[type='text'],
.form_item--input input[type='email'],
.form_item--input input[type='tel'],
.form_item--input textarea {
  font-size: 18px;
  border: none;
}

@media screen and (max-width: 450px) {
  .contact_content .content_ttl {
    font-size: 2.4rem;
    letter-spacing: 1.0rem;
  }

}

@media screen and (min-width: 960px) {
  .form_item {
    border-bottom: 1px solid #b5b1b1;
    vertical-align: top;
    padding-top: 18px;
  }

  .form_item--ttl {
    width: 35%;
    padding: 8px 26px;
    height: 100%;
    vertical-align: top;
    margin-top: 0;
    min-width: 320px
  }

  #form .must {
    background-color: #5B0D11;
    color: #ffffff;
    padding: 8px 23px;
    margin-left: 20px;
  }

  .form_item--input {
    padding-right: 25.5px;
    width: 63%;
    margin-bottom: 22px;
  }

  .form_item--input input {
    height: 44px;
    width: 100%;
  }

  #form input[type=radio] {
    accent-color: #5B0D11;
    inline-size: 1.8rem;
    block-size: 1.8rem;
    vertical-align: middle;
    margin-bottom: 3px;
  }

  #form textarea {
    height: 182px;
    width: 100%;
  }

  #form label {
    display: block;
    margin-bottom: 6px;
  }

  .form_submit button {
    margin: 72px auto 100px;
  }
}
