@charset "UTF-8";

/*================================================
 *  一般・共通設定
 ================================================*/
*, *:before, *:after {
    box-sizing: border-box;
}
body {
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	color: #333;
	letter-spacing: 0.2em;
}
#wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
#contents {
	width:100%;
  text-align: center;
}
a {
	text-decoration: none;
	color: #333;
}
h2 {
  border-left: 7px #009bb5 solid;
  border-right: 7px  #3e3beb solid;
  display: inline-block;
  padding: 5px 0;
  margin-bottom: 100px;
}
h2 .ttl-en {
  display: block;
  padding: 0 70px;
  font-family: 'Barlow', sans-serif;
  font-size: 44px;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  font-weight: 500;
}
h2 .ttl-jp {
  font-size: 16px;
  letter-spacing: 0.5em;
}
.bg-white {
  padding-top: 100px;
}
.bg-color {
  background: #F7F5F2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.sp-addbr br {
  display: none;
}
.l-space:before {
  content:"　";
}
@media screen and (max-width:1120px) {
  .sp-nobr br {
    display: none;
  }
  .sp-addbr br {
    display: block;
  }
  .l-space:before {
    content:"";
  }
}
@media screen and (max-width:767px) {
    h2 {
      border: none;
      padding: 0;
      margin-bottom: 60px;
    }
    h2 .ttl-en {
      padding: 0;
      font-size: 34px;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }
    h2 .ttl-jp:after {
      content: "";
      border-bottom: 3px  #009bb5 solid;
      width: 70px;
      display: block;
      margin: 0 auto;
      height: 20px;
    }
    .bg-white {
      padding-top: 60px;
    }
    .bg-color {
      padding-top: 60px;
      padding-bottom: 60px;
    }
}

/*================================================
 *  ヘッダー／グローバルナビゲーション
 ================================================*/

header {
	width: 100%;
	background: #fff;
    border-bottom: 1px #009bb5 solid;
	position: relative;
	z-index: 999;
	height: 100px;
}
header.fixed{
	position: fixed;
	top: 0;
	left: 0;
}
#head_box {
	max-width:1130px;
	margin:0 auto;
	overflow: hidden;
}

#head_box img{
    height: 50px;
    position: fixed;
	top:20px;
    padding-left: 30px;
}
#gnav {
	float: right;
	width: 450;
	overflow: hidden;
	font-family: 'Barlow', sans-serif;
    font-weight: 500;
	letter-spacing: 0.1em;
}
#gnav li {
	float: left;
	width: 129px;
	margin-left: 16px;
}
#gnav li:first-child {
	margin-left: 0;
}
#gnav a {
	width: 129px;
  position: relative;
  display: block;
  font-size: 15px;
	padding-top: 40px;
	text-align: center;
}
#gnav a::before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 5px;
    background:  linear-gradient(to bottom left, #009bb5, #3e3beb);
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#gnav a:hover::before,
#gnav a.current::before {
	transform: scale(1, 1);
}
#gnav .gnav_contact {
	padding-top: 25px;
	width: 160px;
}
#gnav .gnav_contact a {
    background: linear-gradient(to right, #009bb5, #3e3beb);
	color: #fff;
	border-radius: 23px;
	height: 46px;
	line-height: 46px;
	padding: 0;
	padding-right: 10px;
	width: 150px;
	position: relative;
	transition-property: all;
	transition: 0.3s linear;
}
#gnav .gnav_contact a::before {
	display: none;
}
#gnav .gnav_contact a::after {
	position: absolute;
	content:'';
	width: 17px;
	height: 8px;
	top: 20px;
	right: 15px;
	background: url("../images/arrow_down_w.svg") no-repeat;
}
#gnav .gnav_contact a:hover,
#gnav .gnav_contact a.current {
    background: linear-gradient(to right, #009bb5, #3e3beb);
}

/*ハンバーガー*/
.navToggle {
	display: none;
}

@media screen and (max-width:1000px) {
      header {
        height: 64px;
      }
       #head_box img{
        top:0px;
        left: 10px;
        transform: scale(0.8);
        width: 150px;
      }
      #gnav {
        position: fixed;
        top: 63px;
        left: 0;
        text-align: center;
        transform: translateY(-150%);
        transition: all 0.6s;
        width: 100%;
        float: none;
        z-index: 1;
      }
      #gnav.active {
        z-index: 500;
        transform: translateY(0%);
        height: 100vh;
        background:  linear-gradient(to bottom left, #3e3beb, #009bb5);
      }
      #gnav li {
        padding: 0;
        margin: 0;
        width: 100%;
        border-bottom: 1px #fff solid;
      }
      #gnav li:last-child {
        padding-bottom: 0;
        border-bottom: none;
      }
      #gnav li a {
        width: 100%;
        color: #fff;
        padding: 40px 0;
      }
      #gnav a::before {
        display: none;
      }
      #gnav .gnav_contact {
        width: 100%;
      }
      #gnav .gnav_contact a {
        background: #fff;
        color: #009bb5;
        margin: 0 auto;
      }
      #gnav .gnav_contact a::after {
        position: absolute;
        content:'';
        width: 17px;
        height: 8px;
        top: 20px;
        right: 15px;
        background: url("../images/arrow_down_g.svg") no-repeat;
      }
      #gnav .gnav_contact a:hover,
      #gnav .gnav_contact a.current {
        background: #F7F5F2;
      }

      /*ハンバーガー*/
      .navToggle {
          display: block;
          position: absolute;
          right: 15px;
          top: 12px;
          width: 42px;
          height: 51px;
          cursor: pointer;
          z-index: 600;
          text-align: center;
        }

        .navToggle span {
            display: block;
            position: absolute;
            width: 30px;
            border-bottom: solid 4px #3e3beb;
            transition: .35s ease-in-out;
            left: 6px;
        }
        .navToggle span:nth-child(1) {
            top: 9px;
        }
        .navToggle span:nth-child(2) {
            top: 18px;
        }
        .navToggle span:nth-child(3) {
            top: 27px;
        }
        /* 最初のspanをマイナス45度に */
        .navToggle.active span:nth-child(1) {
            top: 18px;
            left: 6px;
            transform: rotate(-45deg);
        }
        /* 2番目と3番目のspanを45度に */
        .navToggle.active span:nth-child(2),
        .navToggle.active span:nth-child(3) {
            top: 18px;
            transform: rotate(45deg);
        }
}

/*================================================
 *  フッター
 ================================================*/
footer {
	width: 100%;
	background: linear-gradient(to bottom left, #3e3beb, #009bb5);
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
#foot_box {
	max-width:1130px;
	margin:0 auto;
	overflow: hidden;
  margin-bottom: 50px;
}
#foot_box p.foot_logo {
	float: left;
	width: 300px;
	height: 100px;
	line-height: 100px;
	padding-left: 115px;
	position: relative;
	font-size: 16px;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
}

#foot_box img{
    height: 50px;
    padding-left: 30px;
}

#foot_nav {
	float: right;
    width: 450px;
	overflow: hidden;
	font-family: 'Barlow', sans-serif;
  font-weight: 500;
	letter-spacing: 0.1em;
}
#foot_nav li {
	float: left;
	width: 129px;
	margin-left: 16px;
}
#foot_nav li:first-child {
	margin-left: 0;
}
#foot_nav a {
	width: 129px;
  position: relative;
  display: block;
  font-size: 15px;
	padding-top: 40px;
	text-align: center;
  color: #fff;
}
#foot_nav a::before {
	position: absolute;
	bottom: -13px;
	left: 0;
  right: 0;
  margin: auto;
	content: '';
	width: 82px;
	height: 3px;
    background:  #fff;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#foot_nav a:hover::before {
	transform: scale(1, 1);
}
#foot_nav .gnav_contact {
	padding-top: 25px;
	width: 160px;
}
#foot_nav .gnav_contact a {
	background: #fff;
    color: #009bb5;
	border-radius: 23px;
	height: 46px;
	line-height: 46px;
	padding: 0;
	padding-right: 10px;
	width: 150px;
	position: relative;
	transition-property: all;
	transition: 0.3s linear;
}
#foot_nav .gnav_contact a::after {
	position: absolute;
	content:'';
	width: 17px;
	height: 8px;
	top: 20px;
	right: 15px;
	background: url("../images/arrow_down_g.svg") no-repeat;
  transform: rotate(180deg);
  transition-property: all;
	transition: 0.3s linear;
}
#foot_nav .gnav_contact a:hover {
    background:  #009bb5;
    color: #fff;
}
#foot_nav .gnav_contact a:hover::after {
  background: url("../images/arrow_down_w.svg") no-repeat;
  transform: rotate(180deg);
}
#copyright {
  overflow: hidden;
  max-width: 1170px;
  margin: 0 auto;
  line-height: 1.7;
}
#copyright p {
  float: left;
  font-size: 14px;
  padding-left: 20px;
}
#copyright small {
  float: right;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  padding-right: 20px;
}
@media screen and (max-width:1000px) {
      #foot_box {
        margin-bottom: 20px;
      }

      #foot_box {
        width: 100%;  
        text-align: center;
      }
      #foot_box img {
          transform: scale(0.8); 
      }
      #foot_nav {
        width: 100%;
        margin-bottom: 50px;
      }
      #foot_nav li {
        padding: 0;
        margin: 0;
        width: 100%;
      }
      #foot_nav li a {
        width: 100%;
        color: #fff;
        padding: 20px 0;
        transition-property: all;
	      transition: 0.3s linear;
      }
      #foot_nav li a:hover {
        color: #00b0cc;
      }
      #foot_nav a::before {
        display: none;
      }
      #foot_nav .gnav_contact {
        width: 100%;
      }
      #foot_nav .gnav_contact a {
        background: #fff;
        color: #00b0cc;
        margin: 0 auto;
      }
      #foot_nav .gnav_contact a::after {
        position: absolute;
        content:'';
        width: 17px;
        height: 8px;
        top: 20px;
        right: 15px;
        background: url("../images/arrow_down_g.svg") no-repeat;
      }
      #foot_nav .gnav_contact a:hover {
        background: #009bb5;
        color: #fff;
      }
      #copyright {
        text-align: center;
      }
      #copyright p {
        width: 100%;
        float: none;
        margin-bottom: 20px;
        padding: 0;
      }
      #copyright small {
        width: 100%;
        float: none;
        font-size: 11px;
        margin-left: 0.2em;
        padding: 0;
        display: inline-block;
        line-height: 1.2;
      }
}

/*================================================
 *  メインビジュアル
 ================================================*/
#mv {
	max-width:1130px;
	margin: 0 auto;
	text-align: center;
  padding-top: 100px;
  padding-bottom: 70px;
}
#mv .mv_box {
	overflow: hidden;
  margin-bottom: 40px;
}
#mv .mv_box .maincopy {
	float: left;
	text-align: left;
  width: 55%;
  padding-left: 30px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 3;
  padding-top: 30px;
}
#mv .mv_box .maincopy strong {
  color: #009bb5;
}
#mv .mv_box .mv-image {
  float: right;
  width: 45%;
  text-align: right;
}

#mv .mv-image img{
    padding-left: 100px;
    width: 100%;
}

#mv .mv-btn {
  clear: both;
  z-index: 500;
  position: relative;
  width: 43px;
  height: 43px;
  margin: 0 auto;
  padding-top: 30px;
}
#mv .mv-btn a {
  display: block;
}
#mv .spon{
    display: none;
}
#mv .spoff{
    display: block;
}
@media screen and (max-width:1000px) {
  #mv {
    padding: 0;
    padding-bottom: 50px;
  }
  #mv .mv_box {
    padding: 0;
    margin: 0;
        padding-left: 20px;
        padding-right: 20px;
  }
  #mv .mv_box .maincopy {
    float: none;
    text-align: center;
    width: 100%;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0.2em;
    line-height: 3;
    margin-bottom: 10px;
  }

  #mv .mv_box .mv-image {
    float: none;
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
  #mv .mv_box .mv-image img {
    padding-left: 0px;
    width: 167px;
  }
  #mv .spon{
    display: block;
  }
  #mv .spoff{
    display: none;
  }
}

@media screen and (max-width:375px) {
  #mv .mv_box .maincopy {
    letter-spacing: 0;
  }
}

/*================================================
 *  会社概要
 ================================================*/

#about dl {
  overflow: hidden;
  text-align: left;
  margin: 0 auto;
  max-width: 1170px;
  font-size: 16px;
  padding: 0 15%;
  line-height: 1.7;
}
#about dl dt {
  float: left;
  width: 23%;
  margin-bottom: 20px;
}
#about dl dd {
  width: 75%;
  margin-left: 23%;
  margin-bottom: 20px;
}
@media screen and (max-width:767px) {
  #about dl {
    max-width: inherit;
    padding: 0 20px;
  }
  #about dl dt {
    float: none;
    width: 100%;
    margin: 0;
    font-weight: bold;
  }
  #about dl dd {
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
  }
}

/*================================================
 *  所在地
 ================================================*/

#access h2 {
  margin-bottom: 80px;
}
#access p {
  margin-bottom: 80px;
  line-height: 1.7;
}
#access .google-maps {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}
#access .google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}


/*================================================
 *  お問い合わせ
 ================================================*/
/*contact.css*/

/*================================================
 *  ページトップへの戻り
 ================================================*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 100;
}
.pagetop.close {
  z-index: 1;
}
.pagetop.foot {
  bottom: 270px;
}
@media screen and (max-width:1000px) {
  .pagetop.foot {
    bottom: 530px;
  }
}