/*/////////////////////////////////////////////
// スマホ用レイアウト
//////////////////////////////////////////////*/
@media screen and (max-width: 960px) {
/* 960pxまでの幅の場合に適応される */



html{
  height: -webkit-fill-available;
}
body{
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

a,
a:visited {
  text-decoration: none;
  transition: unset;
}
a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}
*:focus {
  outline: none;
}

/*共通設定*/
.pc-none{
  display: block !important;
}
.sp-none{
  display: none !important;
}

.row{
  width:100%;
  margin:0 auto;
  text-align:center;
}
.in_row{
  width:100%;
  margin:0 auto;
  text-align:center;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
div.head_main{
  width: 100%;
  height:400px;
  background-image:url(../images/kv_bg.jpg);
  background-repeat:no-repeat;
  background-position:center center;
  position:relative;
}
div.head_main_low{
  width: 100%;
  height:200px;
  background-image:url(../images/kv_bg.jpg);
  background-repeat:no-repeat;
  background-position:center center;
  position:relative;
}
div.head_in{
  width:100%;
  /*background:#fff;*/
  padding:25px;
  box-sizing:border-box;
  display:flex;
  justify-content:flex-start;
  align-items:center;
}
div.head_logo_area{
width: 150px;
}
div.head_navi_area{
  margin-left:auto;
}

div.head_text_wrap{
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
div.head_text{
  padding:120px 30px 0 0;
  box-sizing:border-box;
  width:100%;
  margin:0;
  text-align:right;
}
div.head_text h1{
  font-size:30px;
}
div.head_text h2{
  font-size:16px;
  padding:15px 0 20px;
}
.head_btn{
  display:inline-block;
  width:170px;
  background:#04a777;
  color:#fff;
  font-weight:bold;
  text-align:center;
  font-size:16px;
  padding:15px 0 15px;
  border-radius:100px;
}
.head_btn:hover{
  opacity:0.8;
}


/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 15px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #1067d2;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

.globalMenuSp{
}
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  padding: 10% 0 0 0;
  height: 100%;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
.globalMenuSp ul li a:after{
  display:none;
}

nav.globalMenuSp ul {
  display:flex;
  justify-content:flex-start;
  align-items:center;
  flex-direction:column;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}

nav.globalMenuSp ul li {
  text-align:left;
  list-style-type: none;
  padding: 0;
  padding-left:25px;
  box-sizing:border-box;
  width: 100%;
  border-bottom: 1px solid #1067d2;
  position:relative;
}
nav.globalMenuSp ul li:before{
  position: absolute;
  top: 25px;
  left: 10px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.3em solid #1067d2;
  content: "";
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}


nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
  font-size:14px;
}


/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
div.footer{
  padding:10px 0 ;
  box-sizing:border-box;
  flex-direction:column;
}

ul.foot_nav{
  width: 90%;
  margin:20px auto;
}
ul.foot_nav li{
	text-align: left;
  margin:0;
  display: block;
  padding:5px 0;
  font-size:16px;
  color:#fff;
}


div.footer_copy{
  margin:0 auto 40px;
  padding:15px 0 0;
}
div.footer_copy h5{
  font-size:12px;
  text-align:center;
  font-weight:normal;
}




/*--------------------------------------------------------
コンテンツ
--------------------------------------------------------*/


div.title_wrap{
  padding:0 0 20px;
}
div.title_wrap h2{
  font-size:30px;
}
div.title_wrap p{
  padding:10px 0 0;
  font-size:16px;
  line-height:1.5;
  text-align:left;
}

div.service{
  padding:20px;
  box-sizing:border-box;
  height:auto;
}
div.sv_in{
  margin:0 auto;
}
ul.sv_list{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:wrap;
  flex-direction:column;
  margin:0px auto 0;
}
ul.sv_list li{
  width:100%;
  margin:10px auto;
}

ul.sv_list li h3{
  font-size:18px;
  padding:15px 15px 0 15px;
}
ul.sv_list li p{
  padding:15px;
  font-size:16px;
  line-height:1.6;
}
div.sv_icon{
  width:100%;
  height: 250px;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
div.sv_icon img{width:100%;}


/*company*/
div.company{
  padding:20px;
  box-sizing:border-box;
  background-image:url(../images/com_bg.jpg);
  background-repeat:no-repeat;
  background-position:center center;
}

table.com_tb{
  width:100%;
  margin:0px auto 20px;
  border-collapse:collapse;
}
table.com_tb th{
  border-collapse:collapse;
  font-size:14px;
}
table.com_tb td{
  border-collapse:collapse;
  font-size:14px;
}

.banner_area{
width:94%;
margin:30px auto;
display: block;
}

.banner_area a{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:space-around;
  background:#f6f6f6;
  border-radius: 5px;
  padding:40px;
  margin: 0px 0 10px 0;
}

.banner_area a img{width:20%;}
.banner_area a div{width:70%;}
.banner_area h3{
font-size: 24px;
color:#1067d2;
}
.banner_area h4{}

/*//////////////////////////////////
//下層ページ
//////////////////////////////////*/
.privacy_wrap {
  padding: 15px;
  box-sizing: border-box;
  text-align: left;
  width:95%;
  margin: 0 auto;
}
.privacy_wrap p{
  font-size:14px;
  transform: rotate(0.05deg);
}
.privacy_wrap h4{
  font-size:14px;
  font-weight:bold;
  transform: rotate(0.05deg);
}

.privacy_wrap a{
}


































}
/*end 768 */
