@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img {
  max-width: 100%;
}
.white{
  color: #fff;
}
/*-----------------------------------------------------------------

ハンバーガーメニュー

-----------------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(0,0,0,0.80);
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  /*top: 10px;*/
  top: 55px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  /*background-color: #666;*/
  background-color: #EE0000;
  /*width: 45%;*/
  width: 50%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*--------------------------------------------------------------------------*/

/*-----------------------------------------------------------------

ページトップ

-----------------------------------------------------------------*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  opacity: .8;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
    opacity: 1;
  transform: translateX(0);
  }
  to {
    opacity: 1;
  transform: translateX(100px);
  }
}
/*--------------------------------------------------------------------------*/
/*-----------------------------------------------------------------

フェードイン

-----------------------------------------------------------------*/
.fadeInUpTrigger,
.fadeInDownTrigger,
.fadeInUpTriggerOnce{
    opacity:0;
}
/*--------------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
h1 {
  padding: 1vw;
}
.header_inner {
  width: 100%;
  /*height: 90px;*/
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: #FFFFFF;*/
  background-color: #9d93a7;
}
.gnav ul {
  display: flex;
}
.gnav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  font-size: max(1vw, 1.4rem);
  font-weight: 500;
}
.gnav ul li {
  border-left: 1px solid #CCCCCC;
  padding: 0 2vw;
}
.gnav ul li:last-child {
  border-left: 1px solid #CCCCCC;
  padding: 0 2vw;
  border-right: 1px solid #CCCCCC;
}
.mv {
  width: 100%;
  position: relative;
  padding-top: 140px;
}
.catch {
  padding: 2vw;
  position: absolute;
  bottom: -8rem;
  right: 3vw;
  background: #EE0000;
  color: #FFFFFF;
  font-size: max(2vw, 2rem);
  font-weight: 600;
  box-shadow: 2px 3px 10px -2px #777777;
}
.catch span {
  font-size: max(1vw, 1.4rem);
  font-weight: 700;
}
.en {
  font-family: "adobe-garamond-pro", serif;
}
#service {
  padding: 4vw 0 3vw;
  position: relative;
  background-color: #58525e;
}
#service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24vw;
  height: 24vw;
  background: #EE0000;
  /*z-index: -1;*/
  z-index: 0;
}
.sec01{
  background-color: #58525e;
}
.container {
  max-width: calc(1300px + 6%);
  padding: 3%;
  margin: 0 auto;
}
#service .container {
  max-width: 1460px;
}
.h3_ttl {
  text-align: center;
  font-size: max(2vw, 2rem);
  margin-bottom: 4vw;
  line-height: 1;
  font-weight: 600;
}
.h3_ttl span {
  font-size: max(1vw, 1.4rem);
  color: #EE0000;
}
.flex {
  display: flex;
  justify-content: space-between;
    flex-wrap: wrap;
}
.service_flex{
  margin: 0 auto;
  gap: 30px;
}
.service_box {
  max-width: calc(100% / 3 - 2vw);
  box-shadow: 2px 3px 10px -2px #777777;
  padding-bottom: 4vw;
  position: relative;
  background-color: #fff;
}
.service_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("images/arrow.png") no-repeat center;
  width: 40px;
  height: 40px;
  background-size: contain;
}
.service_inner {
  width: 100%;
}
.service_ttl {
  font-size: max(1.4vw, 1.8rem);
  padding: 2vw 0;
  text-align: center;
  font-weight: 600;
}
.t16 {
  font-size: max(1vw, 1.6rem);
}
.service_inner p {
  padding: 0 1vw;
}
#area {
  background: url("images/area_bg.png") no-repeat center;
  padding: 12vw 0;
  background-size: cover;
  color: #FFFFFF;
}
#area .h3_ttl {
  color: #FFFFFF;
  position: relative;
}
#area .h3_ttl span {
  color: #FFFFFF;
}
#area .h3_ttl::before {
  content: "";
  background: url("images/map_icon.png")no-repeat center;
  background-size: contain;
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  height: 35px;
  width: 29px;
}
.tc {
  text-align: center;
}
#company {
  padding: 4vw 0;
  background-color: #58525e;
}
#company .flex
{
    align-items: center;
}
.company-detail {
  display: flex;
  flex-wrap: wrap;
  font-size: max(1vw, 1.4rem);
}
.company-detail dt {
  width: 30%;
  margin: 0 0 1vw;
  padding: 0 0 1vw;
  border-bottom: 1px #EE0000 dashed;
  line-height: 1.5;
}
.company-detail dd {
  width: 70%;
  margin: 0 0 1vw;
  padding: 0 0 1vw;
  border-bottom: 1px #EE0000 dashed;
  line-height: 1.5;
}
.txt {
  max-width: 48%;
}
.img {
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#company .txt {
  padding: 0 3vw;
}
#footer
{
    color: #FFFFFF;
    text-align: center;
}
.footer_inner
{
    background: url("images/contact_bg.png")no-repeat center;
    background-size: cover;
    padding: 6vw 0;
}
.btn
{
    padding-top: 5vw;
    text-align: center;
}
.btn a
{
    font-size: max(1.4vw , 1.8rem);
    font-weight: 600;
    position: relative;
    padding: 1.5rem 3rem 1.5rem 6rem;
    border: 1px solid #FFFFFF;
}
.btn a::before
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: url("images/contact_icon.png") no-repeat center;
    background-size: contain;
    width: 37px;
    height: 25px;
}
.copy
{
    text-align: center;
    padding: 2rem 0;
    /*background: #EE0000;*/
	background-color: #9d93a7;
}
/*--------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/
.h2_ttl
{
    padding: 17vw 0 10vw;
    text-align: center;
    color: #FFFFFF;
    font-size: max(3vw , 3rem);
    background: url("images/h2_ttl.png")no-repeat center;
    background-size: cover;
    font-weight: 700;
}
.re
{
    flex-direction: row-reverse;
}
.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {

  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {

}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #d04444;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #e00;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
    text-align: center;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
/*--------------------------------------------------------------------------

PC

--------------------------------------------------------------------------*/
@media only screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
  .tab-sp-only {
    display: none !important;
  }
}
/*--------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
  .service_box{
    max-width: calc(100% / 2 - 2vw);
  }
}
/*--------------------------------------------------------------------------

sp

--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
    .header_inner {
  width: 100%;
  /*height: 80px;*/
  height: 140px;
    }
	.openbtn1{
	  top: 45px;
	}
    h1 {
  padding: 4vw;
        width: 40%;
}
    .mv
    {
        /*height: 40vh;*/
        /*margin-bottom: 10rem;*/
    }
    .mv img
    {
        /*height: 75vh;*/
        object-fit: cover;
        width: 100%;
    }
    .service_box {
  max-width: 100%;
        margin-bottom: 3rem;
}
    .img {
  max-width: 100%;
        margin-bottom: 3rem;
}
    .txt {
  max-width: 100%;
}
  .company-detail {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.6rem;
    flex-direction: column;
    width: 100%;
  }
    
  .company-detail dt {
    width: 100%;
    margin: 0 0 2rem;
    padding: 0 0 2rem;
    border-bottom: 1px #EE0000 dashed;
    line-height: 1.5;
  }
  .company-detail dd {
    width: 100%;
    margin: 0 0 2rem;
    padding: 0 0 2rem;
    border-bottom: 1px #EE0000 dashed;
    line-height: 1.5;
  }
    .h2_ttl {
  padding: 14rem 0 8rem;
}
  #footer{
    /*padding-top: 440px;*/
  }
  .copy{
    padding: 3.5rem 0;
  }
}