@charset "utf-8";

/*common.css*/

/*●●●●●●●●●●●●●●●●●●●●　共通　●●●●●●●●●●●●●●●●●●●●*/

html {
  font-size: 62.5%;/* 10px */
}

body {
  font-family: "Noto Sans JP", 'Yu Gothic', 'メイリオ', Meiryo, 'ヒラギノ角ゴシック', 'Hiragino Sans', "League Spartan", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2px;
  color: #2A2A2A;
  position: relative;
}

.font_en {
  font-family: "League Spartan", sans-serif;
}

/*●●●●●●●●●●●●●●●●●●●●　SP　●●●●●●●●●●●●●●●●●●●●*/

/*----------header----------*/
header {
  position: relative;
}

header .wrap {
  width: 100%;
  padding: 10px;
  position: absolute;
}

/*logo*/
header .logo {
  width: 50px;
	position: relative;
  z-index: 1000;
}

/*hamburger*/
.hamburger {
	width: 50px;
  height: 50px;
	cursor: pointer;
	background:#fff;
  position:fixed;
/*	position: absolute;*/
  top: 10px;
  right: 12px;
  z-index: 1000;
}
	
.hamburger > div span {
  position: relative;
}

.hamburger > div span{
  display: inline-block;
  transition: all .2s;
  position: absolute;
  left: 14px;
  height: 2px;
	background-color: #00559F;
}

.hamburger > div span:nth-of-type(1) {
	top: 20px;	
	width: 50%;
}

.hamburger > div span:nth-of-type(2) {
	top: 30px;
	width: 30%;
}

.hamburger.active > div span:nth-of-type(1) {
  top: 19px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
}

.hamburger.active > div span:nth-of-type(2) {
  top: 31px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/*g-nav*/
.g_nav{
  position:fixed;
  z-index: 900;
	top:-120%;
  left:0;
	width:100%;
  height: 100vh;
	background:rgba(0,85,159,0.85);
	transition: all 0.6s;
}

.g_nav.panelactive{
  top: 0;
}

.g_nav.panelactive .g_nav-list{
  position: fixed;
  z-index: 900; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g_nav ul {
  position: absolute;
  top:30%;
  left:50%;
  transform: translate(-50%,-50%);
}

.g_nav ul.nav_btn {
  top: 56%;
}

.g_nav ul li{
	list-style: none;
  text-align: center;
  margin-left: 30px;
  padding: 10px 0;
}

.g_nav ul li a {
	color: #fff;
  font-size: 2rem;
  font-family: "League Spartan", sans-serif;
	margin: 10px 0;
	display: block;
	letter-spacing: 0.2em;
	font-weight: 700;
}
.g_nav ul.nav_btn li a {
  width: 250px;
  padding: 12px 10px 10px 30px;
  border-radius: 30px;
  color: #00559F;
  background-color: #FFFFFF;
  background-image: url("../img/mail.png");
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: left 40px center;
}

.g_nav ul.nav_btn li:first-child a {
  letter-spacing: 3px;
}

.g_nav ul.nav_btn li:nth-child(2) {
  margin-top: -10px;
}

.g_nav ul.nav_btn li:nth-child(2) a {
  color: #FFFFFF;
  background: #3D3D3D;
  background-image: url("../img/lang.png");
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: left 40px center;
  padding: 13px 10px 9px 34px;
}

/*----------mv----------*/
/*mv*/
.mv {
  position: fixed;
  overflow-x: hidden;
	width: 100vw;
	height: 100vh;
  background-repeat: no-repeat;
	background-position:center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.txt_box {
  padding-top: 980px;
}

.mv .slider_box {
  position: relative;
}

/*slider*/
.mv .slider {
  position:relative;
	height: 100vh;
}

.mv .slider .slider-item {
  width: 100%;
  height:100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.mv .slider .slider-item01 {
  background:url(../img/slider01.jpg);
}

.mv .slider .slider-item02 {
  background:url(../img/slider02.jpg);
}

.mv .slider .slider-item03 {
  background:url(../img/slider03.jpg);
}

.mv .logo_slider {
  width: 640vw;
  max-width: 4500px;
  position: absolute;
  top: 19%;
  z-index: 800;
  display: flex;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.catch {
  width: 90%;
  color: #FFFFFF;
  font-size: 4rem;
  font-size: clamp(2rem,5vw,4rem);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1.5;
  position: absolute;
  top: 18%;
  left: 5%;
  z-index: 800;
}

#about {
  width: 90%;
  position: absolute;
  top: 40%;
  left: 5%;
  color: #fff;
}

#about .sub_ttl {
  font-size: 6rem;
  font-weight: bold;
}

#about h2 {
  font-size: 2rem;
  margin-top: -20px;
}

#about h3 {
  font-size: 3.2rem;
  margin: 20px 0;
}

#about figure {
  width: 100%;
  max-width: 350px;
  margin: 30px auto 60px;
}

#about figure img {
  border-radius: 15px;  
}

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

.campany {
  width: 100%;
  position: absolute;
  top: 2000px;
  background: #FFF;
}

.campany .sub_ttl {
  font-size: 5rem;
  margin-top: 40px;
  font-weight: bold;
  color: #00559F;
  text-align: center;  
}

.campany .sub_ttl h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: -20px;
  text-align: center;  
}

.campany table {
  width: 90%;
  margin: 20px auto;
}

.campany table th {
  color: #fff;
  font-weight: normal;
  vertical-align: middle;
  background: #00559F;
  padding: 15px;
  border-bottom: 1px solid #fff;
}

.campany table tr:last-child th {
  border-bottom: none;
}

.campany table td {
  font-weight: normal;
  padding: 15px;
  border: 1px solid #dcdcdc;
}

.campany iframe {
  display: block;
  width: 90%;
  margin: 20px auto 0;
}

.campany .building {
  width: 90%;
  margin: 0 auto 100px;
}

.contact {
  width: 100%;
  position: absolute;
  top: 3500px;
  background: url("../img/contact_bg.jpg") no-repeat center center;
  background-size: cover;
  padding-bottom: 80px;
}

.contact .sub_ttl {
  font-size: 5rem;
  padding-top: 30px;
  font-weight: bold;
  color: #FFF;
  text-align: center;  
}

.contact .sub_ttl h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: -20px;
  text-align: center; 
}

.contact .inputarea {
  width: 90%;
  max-width: 650px;
  margin: auto;
}

.contact form .required:before {
  content: "必須";
  background-color: #00559F;
  color: #fff;
  text-align: center;
  padding: 3px 10px 5px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 10px;
}

.contact form .option:before {
  content: "任意";
  background-color: #888888;
  color: #fff;
  text-align: center;
  padding: 3px 5px;
  font-weight: bold;
  font-size: 12px;
  margin-right: 10px;
}

.contact .en form .required:before {
  content: "required";
}

.contact .en form .option:before {
  content: "option";
}

.contact form dt {
  margin: 30px 0 8px;
  padding-left: 3px;
  color: #fff;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: #d9d9d9 solid 1px;
}

.contact form .reply input {
	width: 15px;
}
.contactform .radio dd {
  line-height: 2;
}
.contact form .radio dd input {
  width: 20px;
  margin-top: -2px;
}
.contact form textarea {
  height: 200px;
  width: 100%;
}
.contact form .check-Box {
  margin: 50px auto;
  text-align: center;
}
.contact form .check-Box input {
  width: inherit;
  margin: 4px 5px 0 0;
}
.contact form .check-Box p a {
  text-decoration: underline;
  color: blue;
}
.contact form .check-Box p a:hover {
  opacity: 0.5;
}
.contact .annotation {
  font-size: 80%;
  margin-top: 15px;
  color: #fff;
/*  text-align: center;*/
}
.contact .form_btn {
  margin-top: 40px;
}
.contact .form_btn input {
  width: 100%;
  max-width: 500px;
  color: #fff;
  background-color: #044585;
  border-radius: 10px;
  display: block;
  margin: auto;
  padding: 20px;
  font-weight: bold;
  font-size: 16px;border: none;
}  
/*----------footer----------*/
footer {
  position: absolute;
  top: 4429px;
  width: 100%;
  background: #161616;
}
footer .footer_logo {
  width: 30%;
  max-width: 300px;
  margin: auto;
  padding: 70px 0 60px;
}
footer .copyright {
  letter-spacing: 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding-bottom: 30px;
}
/*●●●●●●●●●●●●●●●●●●●●　TB　●●●●●●●●●●●●●●●●●●●●*/

  @media (min-width:768px) {
  #about {
    top: 47%;
}
    .contact {
  top: 3560px;
}
    footer {
  top: 4480px;
}

/*●●●●●●●●●●●●●●●●●●●●　TB　●●●●●●●●●●●●●●●●●●●●*/

@media (min-width:980px) {
  /*----------header----------*/
  /*hamburger*/
  .hamburger {
    display: none;
  }
  /*g-nav*/
  .g_nav_fix {
    position: fixed;
    top: 4px;
    right: -20px;
    z-index: 999;
  }
  .g_nav {
    position: static;
    width: 100%;
    height: inherit;
    background: transparent;
    transition: all 0.6s;
  }
  .g_nav {
    display: flex;
  }
  .g_nav ul {
    display: flex;
    top: 8px;
    left: initial;
    right: 480px;
    z-index: 1000;
    transform: translate(0, 0);
  }
  .g_nav ul.nav_btn {
    top: -5px;
    right: 30px;
  }
  .g_nav > ul li {
    margin-left: 35px;
  }
  .g_nav ul.nav_btn li:nth-child(2) {
    margin-top: 0;
    margin-left: 10px;
  }
  .g_nav.change-color ul li a {
  color: #00559F;
}

  .g_nav ul.nav_btn li a {
    background-position: left 30px center;
    padding: 12px 10px 10px 30px;
    width: 210px;
  }
  .g_nav ul.nav_btn li:nth-child(2) a {
    background-position: left 30px center;
    padding: 13px 10px 9px 45px;
  }
  
/*----------header----------*/
  
  /*logo*/
  header .logo {
    width: 75px;
	  position: relative;
    z-index: 1000;
  }

  /*slider*/
  
  .mv .slider {
    height: 100vh;
  }
  
  .mv .logo_slider {
  animation: scroll 150s linear infinite!important;
  }

  .catch {
    font-size: 6rem;
    top: 23%;
  }
  
  .mv .logo_slider {
    width: 10000vw;
    max-width: 15000px;
    position: absolute;
    top: 26%;
    z-index: 800;
    display: flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
  }
  
  .mv .slider .slider-item {
    height:100vh;
  }
  
  #about {
    top: 55%;
  }
#about h3 {
  margin: 40px 0 20px;
}
#about .txt p {
  font-size: 20px;
}
  
  #about section div {
    display: flex;
  }
 
  #about figure {
    margin: 0 0 40px 70px;
  }

  #about section.business div {
    flex-direction: row-reverse;
  }
 
  #about section.business figure {
    margin: 0 70px 40px 0;
  }
  .campany .building {
    width: 90%;
    margin: 0 auto 50px;
  }
  .campany .flex {
    display: flex;
    width: 90%;
    margin: 0 auto 60px;
  }
  .campany iframe {
    display: block;
    width: calc(100% - 500px);
    height: 352px;
    margin: 20px auto 0;
  }
  .campany .building {
    width: 500px;
    height: 352px;
    margin: 20px auto 0;
}
      .contact {
        top: 3040px;
    }
.contact .annotation {
     text-align: center; 
}
      footer {
        top: 3960px;
    }
}
}
/*●●●●●●●●●●●●●●●●●●●●　PC　●●●●●●●●●●●●●●●●●●●●*/

@media (max-width:1200px) {
}

