
/* 共通設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    line-height: 1;
    font-family: YakuHanJP_Narrow, "helvetica" , "Roboto", "Zen Kaku Gothic New","Zen Old Mincho","Hiragino Kaku Gothic" , "メイリオ", "Meiryo", sans-serif;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: Grad 6s infinite alternate;
  }

a:hover {
    opacity: 0.5;
}

img {
    width: 100%;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}



.sec-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(transparent 60%, #f15a24 30%);
    display: inline-block;
    padding: 0 1rem;
    margin-bottom: .5rem;
}

.sub-title {
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.btn {
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
}

.btn:hover {
    color: #f15a24;
    background-color: #fff;
    opacity: 0.8;
}

/* パンクズリスト */
.pankuzu {
  background-color: #f15a24;
  margin-bottom: 5rem;
}
.pankuzu-inner {
    width: 100%;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.pankuzu-inner ul {
    display: flex;
    gap: 1rem;
    color: #fff;
    font-size: 1rem;
    height: 100%;
    align-items: center;
    
}

.pankuzu-inner li:last-child {
  color: black;
}

.pankuzu-inner li:last-child ::before {
  content: "＞";
  color: black;
  padding-right: .5rem;
}
 @media (max-width: 500px) {
  .sec-title {
    font-size: 2rem;
  }
 }
  /*------------------------------------------------------------------------------
  javascript アニメーション用CSS
  ------------------------------------------------------------------------------*/


  /* フェードイン　左から */
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

  /* フェードイン　右から */

.fadeIn_right {
  opacity: 0;
  transform: translate( 50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


/* フェードイン　下から */
.fadeIn {
  opacity: 0;
  transform: translate( 0, 50% );
  transition: 3s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: translate(0, 0);
}

/* フェードイン　その場から */
.fade {
  opacity: 0;
  transition: 4s;
}
.fade.is-show {
  opacity: 1;
}


/* フェードインレスポンシブ */

@media (max-width: 1500px) {
  .fadeIn_right,.fadeIn_left {
    opacity: 0;
  transform: translate( 0, 20%);
  transition: 2s;
}
.fadeIn_right.is-show , .fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
}




  /*------------------------------------------------------------------------------
  Header
  ------------------------------------------------------------------------------*/

#header {
    height: 70px;
    align-content: center;
    background-color: #323738;

}

.header-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.header-inner ul {
    display: flex;
    list-style: none;
    color: #fff;
    font-size: 1rem;
    height: 100%;
    height: 70px;
    align-items: center;
    padding: 0 2rem;
}

.header-inner ul li {
    height: 70px;
    padding: 0 2rem;
}


.header-inner ul :hover {
    background-color: #f15a24;
    opacity: 1;
}

.header-inner ul li a {
    display: block;
    height: 70px;
    align-content: center;
}

.header-inner ul li a:hover {
    opacity: .5;
} 

#header h1 {
  height: 70px;
  align-content: center;
}

#header h1:hover {
    background-color: #f15a24;
    opacity: 1;
}

#header h1 a {    
    display: block;
    padding: 0 1rem;
}

#header h1 a img {
    width: auto;
    height: 40px;
}


  /* メニューのスタイル */
  .menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では画面の外に隠れている */
    width: 100%;
    height: 100%;
    background-color: #f15a24;
    opacity: .95;
    color: #333;
    transition: right 0.3s ease; /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 20;
  }
  
  /* メニューが開いているとき */
  .menu.open {
    right: 0;
  }
  
  /* ボタンのスタイル */
  .hamburger {
    position: fixed;
    top: 10px;
    right: 50px;
    width: 50px;
    aspect-ratio: 1/1;
    cursor: pointer;
    z-index: 20;
    background-color: #fff;
    padding: 10px;
    border-radius: .5rem;
  }

    @media (max-width: 1024px) {
    .hamburger {
      right: 1rem;
    }
}
  
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #f15a24;
    margin: 5px 0;
    transition: 0.4s;
  }
  


  /* バツ印に変化するスタイル */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);

  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* メニューリストのスタイル */
  .menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 150px;
    
  }
  
  .menu li {
    padding: 30px 0;
    border-bottom: 1px solid #ffffff;
  }
  
  .menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
  }

  @media (min-width: 1025px) {
  .hamburger , .menu {
    display: none;
  }
}
 

  @media (max-width: 1025px) {
  .menu-desktop li {
    display: none;
  }
 }


 
  /*------------------------------------------------------------------------------
    Main Visual
  ------------------------------------------------------------------------------*/
  .main-visual {
    width: 100%;
    border: 15px solid #f15a24;
    position: relative;

  }

  .main-visual::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
  line-height: 3px;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}

  .main-visual video {
      width: 100%;
      display: block;
      line-height: 1px;
      
  }


 .mv-title {
    width: 510px;
    font-size: 4rem;
    font-family: "Zen Old Mincho";
    color: #fff;
    font-weight: 900;
    position: absolute;
    left: 50px;
    bottom: 100px;
    z-index: 10;
    padding: 0 0 0 1rem;
    
 } 

  .mv-title1{
    
    background: linear-gradient(transparent 60%, #f15a24 30%);
    display: inline-block;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
 
  .mv-title2  {
    background: linear-gradient(transparent 60%, #f15a24 30%);
    display: inline-block;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

  .mv-title3 {
    background: linear-gradient(transparent 60%, #f15a24 30%);
    display: inline-block;
    padding: 0 1rem;
  }

  @media (max-width: 1050px) {
    .main-visual {
    border: 10px solid #f15a24;
    }
    .mv-title {
      font-size: 2rem;
      left: 0px;
      bottom: 0px;
      width: 40%;
     }
    .mv-title1 , .mv-title2 , .mv-title3 {
      margin-bottom: 1rem;
    }
  }

  @media (max-width: 710px) {
     .mv-title {
      font-size: 2rem;
      writing-mode: vertical-rl;
      width: 10%;
      height: 80%;
      top:  90%;                     /* 位置指定 */
      bottom:  0;                  /* 位置指定 */
      left:  50%;                    /* 位置指定 */
      right:  0;                   /* 位置指定 */
      transform: translate(50%, 0%);
     } 
      .mv-title1 , .mv-title2 , .mv-title3 {
      background: none;
      }
  }
   @media (max-width: 500px) {
    .mv-title {
      font-size: 1.5rem;
      width: 20%;
      height: 15rem;
      top:  17rem;                     /* 位置指定 */
      bottom:  0;                  /* 位置指定 */
      left:  44%;                    /* 位置指定 */
      right:  0;                   /* 位置指定 */
      transform: translate(50%, 0%);
     }
     .mv-title1 , .mv-title2 , .mv-title3 {
      margin-bottom: .5rem;
     }
   }
/*------------------------------------------------------------------------------
  about-us
------------------------------------------------------------------------------*/
#about-us {
  background-color: #323738;
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

#about-us .aboutus-container {
  display: flex;
  margin-bottom: 2rem;
}

#about-us .aboutus-container h4 {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Zen Old Mincho";
  margin-bottom: 2rem;
  text-decoration:underline solid 20px;
  text-decoration-color: #f15a24;
  text-underline-offset: -0.5rem;
}

#about-us .aboutus-container .bgi_logo {
  position: absolute;
  width: 40%;
  opacity: .05;
  z-index: 1;
  left: 6rem;
  top: 3rem;
  
}

#about-us .aboutus-container .aboutus-container-inner {

  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  padding: 2rem;
  height: 100%;
  padding: 2rem;
}

#about-us .aboutus-container img {
  width: 50%;
  object-fit: contain;
}

  @media (max-width: 1050px) {
    #about-us .aboutus-container {
      flex-direction: column-reverse;
      text-align: center;
    }
    #about-us .aboutus-container h4 {
      text-align: center;
    }
    #about-us .aboutus-container p {
      text-align: center;
    }
      #about-us .aboutus-container img {
      width: 100%;
      padding: 0 1.5rem;
      margin-bottom: 0;
    }
      #about-us .aboutus-container .bgi_logo {
      top:  100px;                     /* 位置指定 */
      left:  50%;                    /* 位置指定 */
      transform: translate(-50%, 0%);
      width: 40%;
    }
      #about-us {
      padding-top: 20rem;
      padding-bottom: 3rem;
      
    }
  }

  @media (max-width: 710px) {
      #about-us .aboutus-container .bgi_logo {
      top:  35px;                     /* 位置指定 */
      left:  50%;                    /* 位置指定 */
      transform: translate(-50%, 0%);
      width: 75%;
    }
    #about-us .aboutus-container h4 {
      font-size: 1.5rem;
      text-decoration:underline solid 10px;
      text-decoration-color: #f15a24;
      text-underline-offset: -0.25rem;
    }    


  }

/*------------------------------------------------------------------------------
  service
------------------------------------------------------------------------------*/
#service {
  background-color: #f15a24;
  padding: 10rem 0;
  text-align: center;
}

#service .sec-title {
    background: linear-gradient(transparent 60%, #000 30%);
}

#service .service-container-top {
  display: flex;
  margin-bottom: 5rem;
}
#service img {
  display: block;
  object-fit: contain;
  width: 50%;
  height: auto;
}

#service .service-container-top .service-container-inner {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  padding: 0 0 0 2rem;
  height: 100%;

}

#service .service-container-top .service-container-inner h4 {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Zen Old Mincho";
  margin-bottom: 2rem;
  text-decoration:underline solid 20px;
  text-decoration-color: #000;
  text-underline-offset: -0.5rem;
}

#service .service-container {
  display: flex;
}

#service .service-container li {
  width: 100%;
  padding-right: 2rem;
}

#service .service-container li:last-child {
  padding-right: 0;
}

#service .service-container li img {
  display: block;
  object-fit: contain;
  width: 100%;
  margin-bottom: .75rem;
    object-fit: contain;
}

#service .service-container a {
  font-size: 1.2rem;
  display: block;
  color: #fff;
}

  @media (max-width: 1050px) {
    #service {
    padding: 5rem 1.5rem;
    }
    #service .service-container-top {
    flex-direction: column;
    margin-bottom: 1rem
    }
    #service .service-container-top img {
      width: 100%;
    }
    #service .service-container-top h4 {
      text-align: center;
    }
    #service .service-container-top .service-container-inner {
      padding: 0;

    }
    #service .service-container li {
     width: 100%;
     padding-right: 1rem;
  }

    #service .service-container li:last-child {
    padding-right: 0;
  }
  #service .service-container {
    margin-bottom: 3rem
  }
}

  @media (max-width: 710px) {
    #service .service-container-top img {
      margin-bottom: 2rem;
    }
    #service .service-container-top .service-container-inner h4 {
      font-size: 1.5rem;
      text-decoration:underline solid 10px;
      text-decoration-color: #000;
      text-underline-offset: -0.25rem;
    }
    #service .service-container a {
      font-size: .8rem;
    }
    #service .service-container li {
      padding-right: .5rem;
    }

    #service .service-container li:last-child {
      padding-right: 0;
    }
  }
/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
#footer {

  color: #fff;
  line-height: 1;
  position: relative;
}

#footer .footer-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#footer .footer-image img {
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(30%);
}

#footer .footer-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;

}

#footer .footer-inner .footer-menu ul {
  display: flex;
  justify-content: center;
  padding: 4rem 0 1rem;
  z-index: 10;
}


#footer .footer-inner .footer-menu ul li:hover, #footer .footer-inner .footer-menu .privacy:hover {
  background-color: #f15a24;
  opacity: 1;
}

#footer .footer-inner .footer-menu ul li {
  border-right: #fff 2px solid;
  padding : .5rem 1.5rem;
  z-index: 10;
}

#footer .footer-inner .footer-menu ul li:last-child {
  border-right: none;
}
#footer .footer-inner .privacy {
  color: #fff;
  font-size: .8rem;
  z-index: 10;
  padding: .5rem;
}

#footer .footer-inner .footer-logo {
  display: block;
  width: 300px;
  margin: 2rem auto;
  z-index: 10;
}

#footer .footer-container {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  z-index: 10;
}

#footer .footer-container .contact-container , #footer .footer-container .access-container {
  width: 100%;
  padding: 0 1rem;
  z-index: 10;
}

#footer .footer-container .contact-container h2 , #footer .footer-container .access-container h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(transparent 60%, #f15a24 30%);
    display: inline-block;
    padding: 0 1rem;
    margin-bottom: .5rem;
    z-index: 10;
}

#footer .footer-container .contact-container h3 ,#footer .footer-container .access-container h3{
    color: #fff;
    margin-bottom: 3rem;
    z-index: 10;
}

#footer .footer-container .contact-container dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  font-size: 1.5rem;
  z-index: 10;
}

#footer .footer-container .contact-container dl dt {
  width: 35%;
  text-align: right;
  padding-right: 1rem;
  font-weight: normal;
}

#footer .footer-container .contact-container dl dd {
  width: 65%;
  margin-bottom: 1rem;
  text-align: left;
}

#footer .footer-container .contact-container dl dd .small {
  font-size: 1rem;
  padding-bottom: ;
}

#footer .footer-container .access-container p{
  text-align-last: left;
  line-height: 1.5;
  margin-bottom: .5rem;
  z-index: 10;
}

.contact-btn {
  font-size: 1.2rem;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  z-index: 10;
  margin-bottom: 2rem;
}

.contact-btn:hover {
    color: #f15a24;
    background-color: #fff;
    opacity: 0.8;
    
}

#footer .copy-right {
  background-color: #323738;
  display: block;
  padding: 1rem 0;
  text-align: center;
  z-index: 10;
}

@media (max-width: 650px) {
  #footer .footer-inner .footer-logo {
    width: 200px;
    margin: 1rem auto;
  }

  #footer .footer-inner .footer-menu ul {
    font-size: .8rem;
  }
  #footer .footer-inner .footer-menu ul li {
    padding: .25rem 1rem;
  }
  #footer .footer-container {
    flex-direction: column;
  }
  #footer .footer-container .contact-container {
    display: none;
  }
    .sec-title ,#footer .footer-container .contact-container h2 , #footer .footer-container .access-container h2 {
    font-size: 2.5rem;
  }
  #footer .footer-container .contact-container h3 , #footer .footer-container .access-container h3 {
    margin-bottom: 1rem;
  }
  #footer .copy-right {
    font-size: .7rem;
  }
}

/*------------------------------------------------------------------------------
  Company Page
------------------------------------------------------------------------------*/
#message {
  width: 100%;
  text-align: center;
  padding: 5rem;

}

#message .sec-title {
  color: #000;
  text-align: center;
  margin: 0 auto .5rem;
}

#message .sub-title {
  color: #000;
}

#message .message-container {
  display: flex;
  position: relative;
  margin-bottom: 5rem;
}

#message .message-container .message-image {
  display: block;
  width: 50%;
}

#message .message-contaier .message-image img{
  width: 50%;
}

#message .message-logo {
  position: absolute;
  top: 25rem;
  right: 5rem;
  width: 40%;
  opacity: .15;
}

#message .message-container .kajiwara-profile {
  align-content: end;
  text-align: left;
  padding: 0 2rem;
}

#message .message-container .kajiwara-profile h5 {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic";
  font-weight: 800;
  margin-bottom: 1rem;
}

#message .message-container .kajiwara-profile .kajiwara-akihiro {
  display: flex;
}

#message .message-container .kajiwara-profile .kajiwara-akihiro h3 {
  font-family: "Zen Old Mincho";
  font-size: 1.8rem;
}

#message .message-container .kajiwara-profile .kajiwara-akihiro h6 {
  font-family: "Zen Old Mincho";
  padding-right: 1rem;
  align-content: center;
}


#message .message-text {
  font-size: 1.5;
  text-align-last: left;
  font-family: YakuHanJP_Narrow , "Zen Old Mincho";
  line-height: 1.5;
  padding: 2rem 8rem;
}

#message .message-text p {
  margin-bottom: 2rem;
}

 @media (max-width: 1000px) {
  #message .message-logo {
  top: 22rem;
  right: 6rem;
  width: 35%;
  }
  #message .message-container .kajiwara-profile h5 {
  font-size: 1.8rem;
  text-align: center;
  }
  #message .message-container .kajiwara-profile .kajiwara-akihiro h3 {
  font-size: 1.6rem;
}

  #message .message-text {
    padding: 2rem 2rem;
  }
 }

  @media (max-width: 763px) {
    #message.wrapper {
      padding: 3rem 0;
    }
    #message .message-text p {
    margin-bottom: .5rem;
    }

    #message .message-container {
      flex-direction: column;
      justify-items: center;
      margin-bottom:  2rem;
    }
    #message .message-container .message-image {
      margin: 0 auto;
    }
      
    #message .message-contaier .message-image img{
      width: 100%;
      padding-left: 10rem;
  }
    #message .message-container .kajiwara-profile h5 {
      margin-top:  1.5rem;
      font-size: 1.5rem;
      text-align: center;
      margin-bottom:  .5rem;
    }
    #message .message-container .kajiwara-profile .kajiwara-akihiro {
      justify-content: center;
      margin: 0 auto;
    }
      #message .message-logo {
      top: 42rem;
      right: 50%;
      transform: translate(50%, 0%);
      width: 50%;
      opacity: .055;
    
  }
}
  
/*------------------------------------------------------------------------------
  Company-profile
------------------------------------------------------------------------------*/
#company {
  background-color: #f15a24;
  text-align: center;
  padding: 5rem 0 10rem 0;
}

#company .sec-title {
  background: linear-gradient(transparent 60%, #000 30%);
}

#company .company-profile {
  margin-top: 3rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 0 6rem;
  line-height: 1.2;
  

}

#company .company-profile dt {
  font-weight: normal;
  width: 30%;
  border-bottom: #000 solid 4px;
  padding: 2rem 3rem .5rem 3rem;
  text-align-last: justify;
}

#company .company-profile dd {
  width: 70%;
  border-bottom: #fff solid 4px;
  text-align: left;
  padding: 2rem 1rem .5rem 3rem;
}

 @media (max-width: 1000px) {
  #company .company-profile dt {
    width: 25%;
    padding: 2rem 1.5rem .5rem 1.5rem;
  }
  #company .company-profile dd {
    width: 75%;
    padding: 2rem 1rem .5rem 1rem;
  }
 }

   @media (max-width: 763px) {
    #company {
      padding: 5rem 0 5rem 0;
    }
    #company .wrapper {
      padding: 0 1.5rem;
    }
    #company .company-profile {
      flex-direction: column;
    }
    #company .company-profile dt {
      width: 30%;
      padding: .5rem .25rem 0rem .25rem;
      text-align-last:left;
      border-bottom: none;
      color: #000;
      font-weight: 900;
      font-size: .7rem;
      
    }
    #company .company-profile dd {
      width: 100%;
      padding: .25rem .25rem .5rem .25rem;
      margin-bottom:  1.5rem;
      border-bottom: #fff solid 1px;
      font-size: .8rem;
    } 

   }


/*------------------------------------------------------------------------------
  Company-history
------------------------------------------------------------------------------*/

#history {
  background-color: #323738;
  text-align: center;
  padding: 5rem 0 10rem 0;
}

#history .sec-title {
  background: linear-gradient(transparent 60%, #f15a24 30%);
}

#history .history-profile {
  margin-top: 3rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 0 6rem;
  line-height: 1.5;
  

}

#history .history-profile dt {
  font-weight: normal;
  width: 30%;
  border-bottom: #f15a24 solid 4px;
  padding: 2rem 1rem .5rem 3rem;
  text-align-last: justify;
}

#history .history-profile dd {
  width: 70%;
  border-bottom: #fff solid 4px;
  text-align: left;
  padding: 2rem 1rem .5rem 3rem;
}


 @media (max-width: 1000px) {
  #history .history-profile dt{
    width: 25%;
    padding: 2rem 1.5rem .5rem 1.5rem;
  }
  #history .history-profile dd {
    width: 75%;
    padding: 2rem 1rem .5rem 1.5rem;
  }
 }
   @media (max-width: 763px) {
    #history {
      padding: 5rem 0 3rem 0;
    }
    #history .wrapper {
      padding: 0 1.5rem;
    }
    #history .history-profile {
      flex-direction: column;
    }
     #history .history-profile dt .return {
      display: none;
     }

    #history .history-profile dt {
      width: 60%;
      padding: .5rem .25rem 0rem .25rem;
      text-align-last:left;
      border-bottom: none;
      color: #f15a24;
      font-weight: 900;
      font-size: .7rem;
    }
    #history .history-profile dd {
      width: 100%;
      padding: .25rem .25rem .5rem .25rem;
      margin-bottom:  1.5rem;
      border-bottom: #fff solid 1px;
      font-size: .8rem;
    } 

   }
/*------------------------------------------------------------------------------
  service-page
------------------------------------------------------------------------------*/
.pankuzu {
  background-color: #f15a24;
  margin-bottom: 0;
}

#service-page {
  background-color: #fff;
  padding: 5rem 0;
  
}

#service-page .sub-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: YakuHanJP_Narrow, "Zen Kaku Gothic";
  color: #f15a24;
  margin-bottom: 1rem;
}

#service-page .service-text {
  padding: 1rem 10rem 0 10rem;
  text-align-last: left;
  font-family: "Zen Old Mincho" , serif;
  line-height: 1.8;
  margin-bottom: 2rem;
}

#service-page .service-container {
  display: flex;
  margin-bottom: 5rem;
  gap: 2rem;
  text-align: center;
}
#service-page .service-container img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: .7rem;
  object-fit: contain;
}

  @media (max-width: 1024px) {
  #service-page .sub-title {
  font-size: 1.7rem;
  }
  #service-page .service-text {
  padding: 1rem 2.5rem 0 2.5rem;
  }
  #service-page {
  padding: 5rem 0 1rem;
  }
  #service-page .service-container {
    padding: 0 1.5rem;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
 
   @media (max-width: 763px) {
    #service-page .sub-title {
    padding: 0 1rem;
    font-size: 1.6rem;
    line-height:  1.5;
    }
    #service-page .service-container {
    flex-direction: column;}
   }

/*------------------------------------------------------------------------------
  service-page whb　貨物保管業務
------------------------------------------------------------------------------*/

#whb {
  background-color: #f15a24;
  padding: 8rem 0;
}

#whb .sec-title {
  background: linear-gradient(transparent 60%, #323738 30%);
  margin-bottom: 2rem;
  font-size: 3rem;
}

#whb .whb-container {
  display: flex;
}

#whb .whb-container .whb-text {
  padding-right: 2rem;
  color: #fff;
  font-family: YakuHanJP_Narrow,"Zen Old Mincho" , serif;
  line-height: 2;
}

#whb .whb-image {
  display: block;
  object-fit: contain;
  width: 50%;
}
@media (max-width:1025px) {
    #whb {
    padding: 4rem 1.5rem;
    }
    #whb .sec-title {
    font-size: 2.5rem;
    }
    #whb .whb-container .whb-text {
      line-height: 1.5;
    }
  }

  @media (max-width:763px) {
    #whb .sec-title {
      font-size: 2rem;
      margin-bottom: .75rem;
      text-align: center;
    }
    #whb .whb-container {
    flex-direction: column;
    }
    #whb .whb-container .whb-content {
      text-align: center;
    }
    #whb .whb-container .whb-text {
      padding-right: 0;
      padding-left: 0rem;
      margin-bottom: 1rem;
      text-align: left;
    }
    #whb .whb-container .whb-image {
      width: 100%;
      height: auto;
    }
}


/*------------------------------------------------------------------------------
  service-page cho　貨物荷役業務
------------------------------------------------------------------------------*/

#cho {
  background-color: #323738;
  padding: 8rem 0;
}

#cho .right {
  text-align: center;

}

#cho .sec-title {
  background: linear-gradient(transparent 60%, #f15a24 30%);
  margin-bottom: 2rem;
  font-size: 3rem;
  
}

#cho .cho-container {
  display: flex;
  flex-direction: row-reverse;
  
}

#cho .cho-content {
  padding-left: 2rem;
}

#cho .cho-container .cho-text {
  
  color: #fff;
  font-family: YakuHanJP_Narrow,"Zen Old Mincho" , serif;
  line-height: 2;
  text-align: left;
}

#cho .cho-container .cho-image {
  display: block;
  object-fit: contain;
  width: 50%;
}

@media (max-width:1025px) {
    #cho {
    padding: 4rem 1.5rem;
    }
    #cho .sec-title {
    font-size: 2.5rem;
    }
    #cho .cho-container .cho-text {
      line-height: 1.5;
    }
  }

  @media (max-width:763px) {
    #cho {
      padding: 4rem 1rem;
    }
    #cho .sec-title {
      font-size: 2rem;
      margin-bottom: .75rem;
      text-align: center;
    }
    #cho .cho-container {
    flex-direction: column;
    }
    #cho .cho-container .cho-content {
      padding-left: 0;
      text-align: center;
    }
    #cho .cho-container .cho-text {
      padding-right: 0;
      padding-left: 0rem;
      margin-bottom: 1rem;
    }
    #cho .cho-container .cho-image {
      width: 100%;
      height: auto;
    }
  }

/*------------------------------------------------------------------------------
  service-page cdrb　貨物配送依頼業務
------------------------------------------------------------------------------*/

#cdrb {
  background-color: #fff;
  padding: 8rem 0;
}

#cdrb .sec-title {
  background: linear-gradient(transparent 60%, #f15a24 30%);
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #323738;
}

#cdrb .cdrb-container {
  display: flex;
}

#cdrb .cdrb-container .cdrb-text {
  padding-right: 2rem;
  color: #323738;
  font-family: YakuHanJP_Narrow,"Zen Old Mincho" , serif;
  line-height: 2;
}

#cdrb .cdrb-image {
  display: block;
  object-fit: contain;
  width: 50%;
  height: auto;
}

@media (max-width:1025px) {
    #cdrb {
    padding: 4rem 1.5rem;
  }
  #cdrb .sec-title {
    font-size: 2.5rem;
    }
  #cdrb .cdrb-container .cdrb-text {
    line-height: 1.5;
  }
}

  @media (max-width:763px) {
    #cdrb .sec-title {
    font-size: 2rem;
    margin-bottom: .75rem;
    }
    #cdrb .cdrb-container {
    flex-direction: column;
    }
    #cdrb .cdrb-container .cdrb-content {
      text-align: center;
    }
    #cdrb .cdrb-container .cdrb-text {
      padding-right: 0;
      padding-left: 0rem;
      margin-bottom: 1rem;
      text-align: left;
    }
    #cdrb .cdrb-container .cdrb-image {
      width: 100%;
      height: auto;
    }
  }

/*------------------------------------------------------------------------------
  privacy
------------------------------------------------------------------------------*/
#privacy {
  text-align: center;
  padding: 5rem 0;
}

#privacy .sec-title {
  color: #323738;
}

#privacy .sub-title {
  color: #323738;
}

#privacy h4 {
  color: #323738;
  text-align-last: left;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: YakuHanJP_Narrow, "Zen Kaku Gothic";
  margin-bottom: 4rem;
}

#privacy h5 {
  color: #323738;
  text-align-last: left;
  font-size: 1rem;
  font-weight: 700;
  font-family: YakuHanJP_Narrow, "Zen Kaku Gothic";
  margin-bottom: .5rem;
}

#privacy p {
  text-align-last: left;
  font-weight: 400;
  font-size: .9rem;
  font-family: YakuHanJP_Narrow, "Zen Kaku Gothic";
  line-height: 1.5;
  margin-bottom: 2rem;
}

#privacy .otoiawase {
  margin-bottom: .25rem;
}


/*------------------------------------------------------------------------------
  contact-page
------------------------------------------------------------------------------*/
#contact-page {
  text-align: center;
  padding: 5rem 0;
}

#contact-page .sec-title {
  color: #323738;
}

#contact-page .sub-title {
  color: #323738;
}

#contact-page p {
  line-height: 1.5;
  margin-bottom: 5rem;
}

.contact-form {
  border: 1px solid #aaa;
  padding: 50px 30px;
}

.title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}

.form_block {
  width: 100%;
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: 1rem;
  align-items: center;
  height: 5rem;
  text-align: left;
  margin-bottom: 2rem;
  
}


.form_label {
  width: 4.5rem;
  padding: 0 .25rem;
  text-align-last: justify;
  margin-right: 3rem;
}


/* 必須アイコン */
.form-required {
  width: 4rem;
  margin-top: .25rem;
  color: #fff;
  background-color: #f15a24;
  padding: .25rem 1rem;
  font-size: .8rem;
  border-radius: 3px;
  display: block;
  text-align: center;
  margin-right: 0rem;
}
/* 入力欄 */
.form_field {
  width: 90%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1rem 1rem;
  margin-left: 2rem;
}

@media (max-width:1000px) {
  #contact-page {
    padding: 0 0;
  }
  .form_field {
  width: 90%;
  margin-left: 2rem;
  }
  .form-required , .form_label{
  }
}

@media (max-width:500px) {
  #contact-page {
  width: 100%;
  padding: 0 1rem;
  }
  #contact-page .sec-title {
    font-size: 3rem;
  }
  #contact-page p{
    text-align: left;
    padding: 0rem;
  }
  .form_field {
  width: 100%;
  margin-left: 1.5rem;
  }
  #contact-page .contact_form{
    padding-left: 0;
  }
  #contact-page .form_block {
    padding-left: 0;
  }
  #contact-page .privacy {
  width: 90%;
  }
}

/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  height: auto;
}
.form_field.--textfield {
  height: 20em;
  resize: none;
}
/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 3rem;
  font-size: 1rem;
  background-color: #f15a24;
  border-radius: .5rem;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

   #contact-page .privacy-policy-container {
    padding: 0 4.5rem;
   }


#contact-page .privacy {
  width: 100%;                /* 横幅を200pxに指定 */
  height: 100px;               /* 横幅を200pxに指定 */
  border: 1px solid  #ccc;      /* わかりやすくボーダーを引く */
  overflow-y: scroll;          /* 縦方向にスクロール可能にする */
  text-align: left;
  margin-bottom: 1rem;
  border-radius: 5px;

  
}

#contact-page .check-box {
  margin-bottom: 2rem;
  font-size: .8rem;
}

#contact-page h4 {
  margin-right: 20px;
  border-left: solid 3px #f15a24;
  padding-left: 10px;
  font-size: .9rem;
  margin-bottom: .25rem;
  text-align: left;
  
}

#contact-page .privacy .privacy-txt {
  font-size: .7rem;
  line-height: 1.25;
  padding: .25rem;
  
}

   @media (max-width: 500px) {
    #contact-page {
      padding: 4rem 1rem;
    }
    #contact-page form {
      width: 100%;
      padding: 0 1.5rem;
    }
    #contact-page p {
      text-align: left;
    }
    #contact-page .label {
      padding: 0 0 0 1rem;
    }
    #contact-page .privacy-policy-container {
    padding: 0 .5rem;
    }
   }


/*------------------------------------------------------------------------------
  thanks
------------------------------------------------------------------------------*/
#thanks {
  text-align: center;
  padding: 5rem 0;
}

#thanks h2 {
  color: #323738;
  font-family: "Zen Kaku Gothic";
  font-size: 2rem;
  margin-bottom: 5rem;
  font-weight: 900;
}

#thanks h3 {
  font-family: "Zen Kaku Gothic";
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
#thanks p {
  margin-bottom: 3rem;
  line-height: 1.25;
}

   @media (max-width: 500px) {
    #thanks {
      padding: 2rem 1rem;
    }
   }


/*------------------------------------------------------------------------------
  ページ遷移アニメーション
------------------------------------------------------------------------------*/
.loading-anime-wrap {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: rgb(200,228,255);
background: linear-gradient(180deg, #f15a24 0%, #f15a24 10%);
  z-index: 9999;
}
.loading-anime-wrap .loading-anime-img {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 500px;
}
.loading-anime-wrap .loading-anime-line {
  background-color: #fff;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 75%;
  transform: scale(0, 1);
  animation: example 1.5s ease 0.5s 1 forwards;
}
@keyframes example {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
