@charset "utf-8";
/*
Theme Name: base_theme348_resp
Theme URI: http://theme.o2gp.com/
Description: base_theme348_resp
Version: 1.0
Author: o2 Group
Author URI: http://theme.o2gp.com/
Tags: simple

	o2 Group v1.0
	 http://theme.o2gp.com/

	This theme was designed and built by o2 Group,
	whose blog you will find at http://theme.o2gp.com/

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php

*/

*{margin:0;padding:0;}

html{background:#ffffff;}

body{
  font: 12px/1.5 "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
  color:#252525;
  background:#fff;
}

a{color:#777;text-decoration:none;}
a:hover{color:#999;text-decoration:none;}
a:active, a:focus {outline: 0;}

img{border:0;}
.clear{clear:both;}
p{margin-bottom: 10px;}
.center{text-align:center;}
.right{text-align:right;}

li{list-style: none;}

hr{
  border: none;
  border-top: dotted 1px #A2A2A2;
  height: 5px;
  margin: 25px 0px 25px 0px;
  width: 100%;
  clear: both;
}

.d-block > span{
  display: block;
}


/*******************************
box-sizing
*******************************/
*{
  box-sizing: border-box;  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}


/*************************
/* flex-box
*************************/
.flex-box{
  display: -webkit-flex; /* Safari */
  display: flex;
}

.flex-box-nowrap{
  -webkit-flex-wrap: nowrap; /* Safari */
  flex-wrap:         nowrap;
}

.flex-box-wrap{
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap:         wrap;  
}

.flex-box-row-rever{
  -webkit-flex-direction: row-reverse; /* Safari */
  flex-direction:         row-reverse;  
}

.flex-box-space-b{
  -webkit-justify-content: space-between; /* Safari */
  justify-content:         space-between;  
}

.flex-box-space-a{
  -webkit-justify-content: space-around; /* Safari */
  justify-content:         space-around;  
}

.flex-box-space-c{
  -webkit-justify-content: center; /* Safari */
  justify-content:         center;
}

.flex-box-item-c{
  -webkit-align-items: center;
  align-items:         center;
}


/*******************************
*中央寄せ
*******************************/
.center-type1{
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.center-type2{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


/*******************************
*フォント
*******************************/
.font-mincho{
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}


/*******************************
全体幅
*******************************/
.inner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}


/*******************************
/* ヘッダー
*******************************/
header{
  position:fixed;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
}

header > .inner{
  position: relative;
  padding: 14px 50px
}

#header h1,#header h2, #header h3{
  font-weight:normal;
  top:0;
  color: #252525;
  font-size: 10px;
  line-height: 1.0;
}

/* ヘッダーナビゲーション */
header #menunav > nav > ul{
  -webkit-align-items: flex-end; /* Safari */
  align-items:         flex-end;
}

header #menunav > nav > ul > li{
  font-size: 16px;
}

header #menunav > nav > ul > li:not(:first-child){
  margin-left: 30px;
}

header #menunav > nav > ul > li > ul{
  display: none;
}

header #menunav li.telphone-img{
  display: none;
}


.mean-bar{background: #fff;}


@media screen and (max-width: 767px){
  /* Mobile */
  header{
    height: 65px;
  }

  header > .inner{
    padding: 5px 0;
  }

  header .logo{
    position: absolute;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    width: 210px;
    height: 51px;
    z-index: 1000;
  }

  header #menunav{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    position: relative;
    z-index: 10;
  }

  header #menunav .icon-link-type1::after{
    content: none;
  }

  header #menunav .icon-link-type1 a::after{
    content: "";
    position: absolute;
    right: 15px;
    display: inline-block;
    width: 25px;
    height: 19px;
    margin-left: 10px;
    background: url(images/icon-link1.png) no-repeat 0 center;
  }

  header #menunav li:nth-child(4){
    margin-bottom: 40px;
    border-bottom: 1px solid #E5E6E6;
  }

  header #menunav li.telphone-img{
    display: block;
    width: 50%;
    border-bottom: 1px solid #E5E6E6;
  }


  header #menunav li:nth-child(5),
  header #menunav li:nth-child(6){
    border-top: 1px solid #E5E6E6;
  }

  header #menunav li.telphone-img > a{
    padding: 0 0 0 0;
    width: 100%;
    font-size: 0;
    border-top: transparent;
  }

  header #menunav li.telphone-img > a img{
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 960px){
  /* PC */
  header div.logo{
    position: relative;
    z-index: 1000;
  }

  header .mean-container .mean-nav ul li{
    position: relative;
    float: left;
    width: 100%;
  }

  header #menunav{
    width: 100%;
    position: absolute;
    top: 15px;
    right: 0px;
    z-index: 0;
  }

  header .mean-container .mean-nav ul li.icon-link-type1::after{
    content: none;
  }

  header .mean-container .mean-nav ul li.icon-link-type1 a{
    background: url(images/icon-link1.png) no-repeat 98.5% center;
  }
}


/*******************************
コンテンツ位置
*******************************/
#container{
  padding: 90px 0 20px;
}

#main {
  width: 100%;
  padding-bottom:40px;
}

#sidebar {
  /*width: 225px;*/
  padding-bottom:40px;
}

@media screen and (max-width: 767px){
  /* Mobile */
  #container{
    padding-top: 65px;
  }
}

@media screen and (min-width: 768px){
  /* PC */

}


/*******************************
main-visual
*******************************/
.main-visual{
  width: 100%;
  height: 308px;
  margin-bottom: 80px;
}

.main-visual > .inner{position: relative;}

.main-visual.company{background: url(images/main-visual-company-bg.png) no-repeat center 0;}
.main-visual.service{background: url(images/main-visual-service-bg.png) no-repeat center 0;}
.main-visual.kosodate{background: url(images/main-visual-kosodate-bg.png) no-repeat center 0;}
.main-visual.qtaxi{background: url(images/main-visual-qtaxi-bg.png) no-repeat center 0;}
.main-visual.haken{background: url(images/main-visual-haken-bg.png) no-repeat center 0;}
.main-visual.gps{background: url(images/main-visual-gps-bg.png) no-repeat center 0;}

.main-visual.information{
  height: 188px;
  margin-bottom: 50px;
  background: url(images/main-visual-information-bg.png) no-repeat center 0;
}

#container .main-visual h2{
  padding-left: 45px;
  padding-top: 60px;
  font-size: 27px;
  font-weight: normal;
  color: #fff;
}

.main-visual.home{
  height: 460px;
  margin-bottom: 50px;
  /* background: url(images/main-visual-home-bg.png) no-repeat center 0; */
  background: url(https://www.toho-taxi.jp/wp/wp-content/uploads/2021/09/recruit-main-visual-home-bg.png) no-repeat center 0;
}

.main-visual.home .img-pc,
.main-visual.home .img-sp{
  display: none;
}

.main-visual.home .rec-pc{
  display: none;
}


@media screen and (max-width: 767px){
  /* Mobile */
  #container .main-visual h2{
    padding: 60px 20px;
  }

  .main-visual.home .img-sp{
    display: flex;
  }

  .main-visual.home .img-sp > div{
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .main-visual.home .img-sp > div:nth-child(even){
    border-left: 1px solid #FEFEFE;
  }

  .main-visual.home .img-sp > div:nth-child(n+3){
    border-top: 1px solid #FEFEFE;
  }
  
  .main-visual.home .img-sp > div a{
    display: block;
    font-size: 0;
  }

  .main-visual.home .img-sp > div img{
    max-width: 100%;
    width: 100%;
    height: 100%;
  }

  .main-visual.home .main-video video{ 
    width: 100%;
    height: 100%;
  }



}

@media screen and (min-width: 768px){
  /* PC */
  .main-visual.home .img-pc{
    display: block;
    position: absolute;
    top: 25px;
    right: 50px;
  }
}

@media screen and (min-width: 768px){
  /* PC */
  .main-visual.home .img-recruit{
    display: block;
    position: absolute;
    top: 372px;
    left: 315px;
  }
}

@media screen and (max-width: 750px){
  /* SP */
  .main-visual.home.img-recruit-sp{
    display: block;
    position: absolute;
    top: 600px !important;
    left: 315px !important;
  }
}


/*************************
/* ボックス
*************************/
#date {
  text-align: right;
  padding-right: 5px;
  padding-top: 15px;
  padding-bottom: 10px;
  font-weight:bold;
  color:#858585;
}

#next {
  padding-top: 30px;
  padding-bottom: 30px;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
}

img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.box_img_border{
  border: 1px solid #cccccc;
  padding: 1px;
  margin: 1px;
}


/*************
/* 見出し
*************/
#container h3{
  font-weight: normal;
  line-height: 1.0;
}

#container h2{
  padding: 0 0px 0 0px;
  font-weight: normal;
  line-height: 1.0;
}


#container .title-type1{
  font-size: 30px;
  color: #0d366e;
  letter-spacing: 5px;
  text-align: center;
}

#container .title-type1 > span{
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: #717071;
  letter-spacing: 0;
}

.title-color1{color: #0d366e;}


/*************
/* リスト
*************/
#container ul{margin-left: 0px;}

#container ul li, #footer ul li{
  margin-bottom: 0px;
  padding: 0 0px 0 0px;
  /*background:url(images/bullet.gif) no-repeat 0 5px;*/
}

#sidebar ul{margin-left:0px;}


/*************
汎用クラス
*************/
.icon-telphone-type1{
  padding-left: 50px;
  background: url(images/icon-telphone1.png) no-repeat 0 center;
  font-size: 22px;
  line-height: 1.3;
}

.icon-telphone-type1 > span{
  display: block;
}

.icon-telphone-type1 > span:nth-child(1){
  font-size: 15px;
}

.icon-arrow-type1{
  padding-left: 24px;
  background: url(images/icon-arrow1.png) no-repeat 0 center;
}

.icon-link-type1::after{
  content: "";
  display: inline-block;
  width: 25px;
  height: 19px;
  margin-left: 10px;
  background: url(images/icon-link1.png) no-repeat 0 center;
}

.contents-inner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

.bg-color1{background: #efefef;}

.base-color1{color: #11366E;}
.base-color1-bg{background: #11366E;}


.link-btn img{
  max-width: 100%;
  height: 100%;
}

.btn-hover1:hover{opacity: 0.8;}

.img-hover1{overflow: hidden;}
.img-hover1 img{
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
}

.img-hover1 img:hover{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.telphone-btn1 .btn-pc,
.telphone-btn1 .btn-sp{
  display: none;
}

.telphone-btn1 > .btn-hover1:hover,
.telphone-btn1 > .btn-hover1:hover{
  opacity: 1.0;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .contents-inner{
    padding-left: 15px;
    padding-right: 15px;
  }

  .telphone-btn1 .btn-sp{display: block;}    
}

@media screen and (min-width: 768px){
  /* PC */
  .telphone-btn1 .btn-pc{display: block;}
}


/*************
トップページ
*************/
.home-contents1{padding-bottom: 55px;}
#container .home-contents1 h2{
  margin-bottom: 40px;
  line-height: 1.2;
}

.home-contents1 div.flex-box > div{
  -webkit-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 430px;
}

.home-contents1 div.twitter{
  padding: 7px 5px;
  border: 1px solid #EFEFEF;
}

.home-contents1 div.twitter iframe{
  border: 1px solid #EFEFEF !important;
  border-radius: 7px;
}

.home-contents1 div.flex-box > div img{
  max-width: 100%;
  height: 100%;
}

.home-contents1 div.banner > div:not(:last-child){margin-bottom: 15px;}

.home-contents2{
  padding-top: 50px;
  padding-bottom: 100px;
}

.home-contents2 div.flex-box > div{
  -webkit-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 430px;
}

.home-contents2 div.flex-box div.youtube{
  margin-bottom: 15px;
  text-align: center;
}

.home-contents2 div.flex-box div.youtube iframe{
  max-width: 100%;
}

.home-contents2 div.flex-box > div img{
  max-width: 100%;
  height: 100%;
}

.visual-bg1{
  background: url(images/visual-bg1.png) no-repeat 0 0;
  background-size: cover;
  height: 280px;
}

.home-contents4{
  padding-top: 100px;
  padding-bottom: 80px;
}

.home-contents4 h2{margin-bottom: 65px;}

.home-contents4 div.flex-box > div{
  -webkit-flex: 0 0 48%;
  flex: 0 0 48%;
  max-width: 430px;
}

.home-contents4 div.flex-box > div img{
  max-width: 100%;
  height: 100%;
}

.home-contents4 .box-text1{
  position: relative;
  height: 387px;
  margin-bottom: 40px;
  background: #fff;
}

.home-contents4 .box-text1::after{
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 6px;
  background: url(images/bg-stripe1.png) no-repeat 0 0;
}

.home-contents4 .thumnail{margin-bottom: 35px;}

.home-contents4 h3{
  margin-bottom: 20px;
  font-size: 19px;
  text-align: center;
}

.home-contents4 p{
  font-size: 17px;
  padding: 0 40px;
}

.home-contents5{
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(images/information-bg1.png) no-repeat 0 0;
  background-size: cover; 
}

.home-contents5 h2{margin-bottom: 65px;}
.home-contents5 .information-box{margin-bottom: 10px;}
.home-contents5 .information-box.flex-box > div{
  -webkit-flex: 0 0 32%;
  flex: 0 0 32%;
  max-width: 275px;
}

.home-contents5 .information-box.flex-box > div img{
  max-width: 100%;
  height: 100%;
}

.home-contents5 .information-box.flex-box > div:not(:nth-child(3n+1)){
  margin-left: 37px;
}

.home-contents5 .link-btn{
  text-align: center;
}

.home-contents6{
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-contents6 h2{margin-bottom: 50px;}
.home-contents6 h2 + p{
  margin-bottom: 70px;
  font-size: 16px;
  text-align: center;
}

.home-contents6 div.flex-box > div{
  -webkit-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 209px;
  margin: 0 27px;
  text-align: center;
}

.home-contents6 div.flex-box div.thumnail{
  width: 209px;
  height: 209px;
  border-radius: 50%;
}

.home-contents6 div.flex-box > div img{
  max-width: 100%;
  height: 100%;
}

.home-contents6 .link-text{
  margin-top: 25px;
}

.home-contents6 .link-text > a{
  font-size: 19px;
  color: #10366E;
}


@media screen and (max-width: 767px){
  /* Mobile */

  .home-contents1 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .home-contents1 div.twitter{
    margin-bottom: 20px;
  }

  .home-contents2{
    padding-bottom: 50px;
  }

  .home-contents2 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .home-contents3 .pickuparea-contents .contents-inner{
    padding-top: 50px;
    padding-bottom: 0;
  }

  .visual-bg1{
    background-position: center 0;
  }

  .home-contents4{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-contents4 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .home-contents5{
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .home-contents5 .contents-inner{
    padding-left: 0;
    padding-right: 0;
  }

  .home-contents5 .information-box{margin-bottom: 30px;}
  #container .home-contents5 .contents-inner h2{
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-contents5 .information-box.flex-box{
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
  }

  .home-contents5 .information-box.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .home-contents5 .information-box.flex-box > div:not(:nth-child(3n+1)){
    margin-left: 0px;
  }

  .home-contents5 .information-box.flex-box > div img {
    max-width: none;
    height: auto;
  }

  .home-contents6{
    padding-top: 50px;
    padding-bottom: 0px;
  }

  .home-contents6 div.flex-box > div{
    margin-bottom: 30px;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;

  }

}

@media screen and (min-width: 768px) and (max-width: 960px){
  /* PC */
  .home-contents5 .information-box.flex-box{
    -webkit-justify-content: space-between; /* Safari */
    justify-content:         space-between;  
  }

  .home-contents5 .information-box.flex-box > div {
    -webkit-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 275px;
  }

   .home-contents5 .information-box .eyecatch {
    width: 100%;
    max-width: 245px;
    margin: 15px auto;
    text-align: center;
    overflow: hidden;
  }

  .home-contents5 .information-box.flex-box > div:not(:nth-child(3n+1)) {
    margin-left: 0px;
  }

  .home-contents6 div.flex-box > div{
    margin: 0 27px 15px;
  }

}


/*******************
固定ページ
*******************/
/* 固定ページ 汎用クラス*/
.page-catchcopy{
  text-align: center;
}

.page-catchcopy .title{
  margin-bottom: 20px;
  font-size: 30px;
  color: #11366E;
}

.page-catchcopy .title + p{
  margin-bottom: 70px;
  font-size: 16px;
}

.thumnail-box-type1{
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
}

.thumnail-box-type1 > div {
  -webkit-flex: 0 0 380px;
  flex: 0 0 380px;
  position: relative;
  padding: 30px 25px;
  margin-bottom: 40px;
  border: 1px solid #e5e6e6;
}

.thumnail-box-type1 .thumnail{
  margin-bottom: 20px;
  text-align: center;
}

.thumnail-box-type1 .title{
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: normal;
  color: #11366E;
  text-align: center;
}

.thumnail-box-type1 .title > span{display: block;}
.thumnail-box-type1 .title ~ p{font-size: 17px;}

.thumnail-box-type1 .btn-type1{
  position: relative;
  margin-top: 30px;
  display: block;
  bottom: 0px;
}

.thumnail-box-type1 .btn-type1 > span{
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
}

.contents-title-type1{
  padding: 12px;
  margin-bottom: 40px;
  font-size: 19px;
  font-weight: normal;
  color: #fff;
  background: #11366E;
  text-align: center;
}

.contents-title-type2{
  margin-bottom: 70px;
  font-size: 30px;
  color: #11366E;
  text-align: center; 
}

.link-btn-type1{background: #efefef;}
.link-btn-type1 > .link-btn-box{
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-wrap: wrap; /* Safari */
  flex-wrap:         wrap;  
  -webkit-justify-content: space-between; /* Safari */
  justify-content:         space-between;  
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 50px;
}

.link-btn-type1 > .link-btn-box img{
  max-width: 100%;
  height: 100%;
}

.qa-box-type1{background: #efefef;}
.qa-box-type1 > .contents-inner{
  padding-top: 100px;
  padding-bottom: 100px;
}

.qa-box-type1 .title-type1{
  margin-bottom: 70px;
}

.qa-box-type1 .qa-text{
  padding: 40px 30px;
  margin-bottom: 50px;
  font-size: 17px;
  background: #fff;
}

.qa-box-type1 .qa-text dt{
  margin-bottom: 15px;
  color: #11366E;
}

.qa-box-type1 .qa-text dt::before{
  content: "Q. ";
}

.qa-box-type1 .qa-text dd::before{
  content: "A. ";
}

.qa-box-type1 .qa-text dd:not(:last-child){
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #f3f3f3;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .thumnail-box-type1 > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .thumnail-box-type1 > div img{
    max-width: 100%;
    height: 100%;
  }

  .link-btn-type1 > .link-btn-box{
    padding: 50px 50px;
  }

  .qa-box-type1 > .contents-inner{
    padding-top: 50px;
    padding-bottom: 50px;
  }


}

@media screen and (min-width: 768px){
  /* PC */

}


/* 会社概要 company */
.company-contents-visual{
  width: 100%;
  height: 188px;
  margin-bottom: 100px;
}

.company-contents-visual > div.text1{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 70px;
  padding-left: 50px;
  font-size: 25px;
  color: #fff;
}

.company-contents1 .company-contents-visual{
  background: url(images/company-contents1-visual.png) no-repeat center 0;
}

.company-contents2 .company-contents-visual{
  background: url(images/company-contents2-visual.png) no-repeat center 0;
}

.company-contents3 .company-contents-visual{
  background: url(images/company-contents3-visual.png) no-repeat center 0;
}

.company-contents1 .box-text1{
  margin-bottom: 100px;
  text-align: center;
}

.company-contents1 .box-text1 h3{
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: normal;
}

.company-contents1 .box-text1 h3 + p{
  font-size: 19px;
  line-height: 1.8;
}

.company-contents1 .box-text2{
  margin-bottom: 100px;
}

.company-contents1 .box-text2 h3{
  margin-bottom: 70px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.company-contents1 .box-text2 table{
  width: 100%;
  font-size: 17px;
  border-collapse: collapse;
}

.company-contents1 .box-text2 table td{
  padding: 20px;
  border: 1px solid #e5e6e6;
  vertical-align: middle;
}

.company-contents1 .box-text2 table td:nth-child(1){
  width: 200px;
}

.company-contents1 .box-text2 table td:nth-child(2) > span.text1{
  font-size: 14px;
}

.company-contents1 .box-text3{
  margin-bottom: 100px;
}

.company-contents1 .box-text3 h3{
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.company-contents1 .box-text3 table{
  width: 100%;
  font-size: 17px;
  border-collapse: collapse;
}

.company-contents1 .box-text3 table td{
  vertical-align: top;
}

.company-contents1 .box-text3 table td:nth-child(1){
  width: 100px;
}

.company-contents1 .box-text3 table td:nth-child(2){
  width: 100px;
  color: #11366E;
  text-align: center;
}

.company-contents1 .box-text3 table td:nth-child(3){
  width: 540px;
  padding-left: 20px;
  border-left: 3px solid #dcdddd;
}

.company-contents1 .box-text3 table tr:not(:last-child) td:nth-child(3){
  padding-bottom: 40px;
}

.company-contents1 .box-text3 table td:nth-child(4){
  text-align: right;
}

.company-contents2 .box-text1{
  margin-bottom: 70px;
  text-align: center;
}

.company-contents2 .box-text1 h3{
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.company-contents2 .box-text1 h3 + p{
  font-size: 16px;
}

.company-contents2 .box-text2{margin-bottom: 100px;}
.company-contents2 .box-text2 div.flex-box{margin-bottom: 50px;}
.company-contents2 .box-text2 div.flex-box > div:nth-child(1){
  -webkit-flex: 0 0 200px;
  flex: 0 0 200px;
}

.company-contents2 .box-text2 div.flex-box > div.text1{
  -webkit-flex: 0 0 660px;
  flex: 0 0 660px;
  font-size: 17px;
}

.company-contents3 h3{
  margin-bottom: 60px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.company-contents3 .box-text1{
  margin-bottom: 50px;
  font-size: 17px;
}

.company-contents3 .box-text1 div.text1{
  text-align: right;
}

.company-contents3 .box-text3{
  margin-bottom: 50px;
  font-size: 17px;
}

.company-contents3 .box-text3 table{
  width: 100%;
  border-collapse: collapse;

}

.company-contents3 .box-text3 table td{
  border: 1px solid #dcdddd;
  padding: 20px;
}

.company-contents3 .box-text3 table td:nth-child(1){
  width: 200px;
}

.company-contents3 .box-text3 table td .box-img{margin-top: 15px;}
.company-contents3 .box-text3 table td .box-img > span{
  display: inline-block;
}

.company-contents3 .box-text4{
  font-size: 17px;
}

.company-contents3 .box-text4 p{
  margin-bottom: 30px;
}

.company-contents3 .box-text4 p > span:nth-child(1){
  margin-bottom: 10px;
  font-size: 19px;
}


@media screen and (max-width: 767px){
  /* Mobile */

  .company-contents1 .box-text2 table td{
    display: block;
  }

  .company-contents1 .box-text2 table tr:nth-child(1) td:nth-child(1){
    border-top: 1px solid #e5e6e6;
  }

  .company-contents1 .box-text2 table td:nth-child(1){
    width: 100%;
    background: #ececec;
    border-top: transparent;
    border-bottom: transparent;
  }

  .company-contents1 .box-text3 table td:nth-child(4){
    display: none;
  }

  .company-contents2 .box-text2 div.flex-box > div:nth-child(1){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .company-contents2 .box-text2 div.flex-box > div.text1{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }
 
}

@media screen and (min-width: 768px){
  /* PC */

}


/* 基本サービス service*/
#container.service{padding-bottom: 0;}
#container.service #main{padding-bottom: 0;}

.service-catchcopy{margin-bottom: 70px;}
.service-contents1{margin-bottom: 60px;}

.service-contents1 div.thumnail-box-type1 > div:nth-child(3) div.thumnail{
  border: 1px solid #dcdddd;
}

.service-contents1 div.thumnail-box-type1 div.text1{
  font-size: 17px;
  color: #727171;
}

.service-contents3 > .contents-inner{
  padding-top: 100px;
  padding-bottom: 100px;
}

.service-contents3 h3{
  margin-bottom: 70px;
}

.service-contents3 div.table1 div.text1{
  font-size: 15px;
  text-align: right;
}

.service-contents3 div.table1 > table,
.service-contents3 div.table2 > table{
  width: 100%;
  margin-bottom: 20px;
  font-size: 17px;
  border-collapse: collapse;
  background: #fff;
}

.service-contents3 div.table1 > table td,
.service-contents3 div.table2 > table td{
  padding: 15px 20px;
  border: 1px solid #efefef;;
}

.service-contents3 div.table1 > table tr:nth-child(1) > td:nth-child(1),
.service-contents3 div.table2 > table td:nth-child(1){
  width: 220px;
}

.service-contents3 div.table1 > table tr:nth-child(1) > td:nth-child(2),
.service-contents3 div.table2 > table td:nth-child(2){
  width: 550px;
}

.service-contents3 div.table1 > table tr:nth-child(1) > td:nth-child(3),
.service-contents3 div.table2 > table td:nth-child(3){
  width: 125px;
  text-align: center;
}

.service-contents3 .service-btn3{
  margin-top: 50px;
  text-align: center;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .service-contents2 .pickuparea-contents .contents-inner{
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px){
  /* PC */

}


/* 子育てタクシーについて kosodate */
.kosodate-contents1 .contents-inner{
  height: 630px;
  background: url(images/kosodate-contents1-bg1.png) no-repeat center 0;
}

.kosodate-contents1 .box-text1{
  width: 475px;
  padding: 70px 0px;
  font-size: 17px;
}

.kosodate-contents1 .box-text1 h3{
  position: relative;
  margin-bottom: 35px;
  padding: 12px;
  font-size: 19px;
  color: #fff;
  background-color: #EA5514;
}

.kosodate-contents1 .box-text1 h3::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-width: 21px 20px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #fc910e;
}

.kosodate-contents1 .box-text1 h3 + p{
  margin-bottom: 20px;
  line-height: 1.6;
}

.kosodate-contents1 .box-text1 div.text1{
  padding-left: 22px;
  margin-bottom: 30px;
  background: url(images/icon-arrow3.png) no-repeat 0 center;
}

.kosodate-contents1 .box-text1 div.text1 a{
  color: #11366E;
}

.kosodate-contents1 .box-text1 div.text2 > div:nth-child(2){
  -webkit-flex: 0 0 350px;
  flex: 0 0 350px;
}

.kosodate-contents1 .box-text1 div.text2 .telphone{
  padding: 15px 0 15px 70px;
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: url(images/icon-telphone4.png) no-repeat 0 center;
}

.kosodate-contents1 .box-text1 div.text2 .telphone > span:nth-child(1){
  font-size: 16px;
}

.kosodate-contents2{padding-top: 100px;}

.kosodate-contents2 h3{
  margin-bottom: 70px;
  font-size: 30px;
  text-align: center;
}

.kosodate-contents2 .kosodate-kangaroo,
.kosodate-contents2 .kosodate-hiyoko,
.kosodate-contents2 .rakuda-course,
.kosodate-contents2 .tsubame-course{
  height: 730px;
}

.kosodate-contents2 .kosodate-kounotori,
.kosodate-contents2 .kosodate-fukurou{
  height: 590px;
}

.kosodate-contents2 .kosodate-kangaroo h4{background: url(images/icon-character1-2.png) no-repeat 0 0;}
.kosodate-contents2 .kosodate-hiyoko h4{background: url(images/icon-character2-2.png) no-repeat 0 0;}
.kosodate-contents2 .kosodate-kounotori h4{background: url(images/icon-character3-2.png) no-repeat 0 0;}
.kosodate-contents2 .kosodate-fukurou h4{background: url(images/icon-character4-2.png) no-repeat 0 0;}
.kosodate-contents2 .rakuda-course h4{background: url(images/icon-character5-2.png) no-repeat 0 0;}
.kosodate-contents2 .tsubame-course h4{background: url(images/icon-character6-2.png) no-repeat 0 0;}

.kosodate-contents2 .thumnail-box-type1 .text1{
  font-size: 17px;
}

.kosodate-contents2 .thumnail-box-type1 .btn-type1{
  position: absolute;
  bottom: 25px;
}

.kosodate-contents3 > .contents-inner{
  padding-top: 100px;
  padding-bottom: 100px;
}

.kosodate-contents3 h3{margin-bottom: 70px;}
.kosodate-contents3 .contents-inner div.text1{
  margin-bottom: 5px;
  font-size: 15px;
  text-align: right;
}

.kosodate-contents3 .qa-text dd{position: relative;}
.kosodate-contents3 .qa-text dd div.text2{
  width: 77%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}

.kosodate-contents3 .qa-text dd div.icon-box1{
  position: absolute;
  top: -40px;
  right: 0px;
  display: inline-block; 
}

.kosodate-contents-npo{background: #9fa0a0;}
.kosodate-contents-npo > div.box-text2{
  width: 100%;
  max-width: 1000px;
  padding: 50px 50px;
  margin: 0 auto;
}

.kosodate-contents-npo > div.box-text2 > div{
  display: inline-block;
  vertical-align: middle;
}

.kosodate-contents-npo > div.box-text2 div.text1{
  position: relative;
  margin-right: 50px;
  padding: 14px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-right-color: transparent;
}

.kosodate-contents-npo > div.box-text2 div.text1::after{
  content: "";
  position: absolute;
  top: 11px;
  right: -28px;
  width: 53px;
  height: 53px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.kosodate-contents-npo > div.box-text2 div.text1 > span:nth-child(1){
  font-size: 17px;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .kosodate-contents1 .contents-inner{
    height: 100%;
    background-size: cover;
  }

  .kosodate-contents1 .box-text1{
    width: 100%;
    max-width: 475px;
  }

  .kosodate-contents1 .box-text1 h3{
    font-size: 17px;
  }

  .kosodate-contents1 .box-text1 div.text2 > div:nth-child(2){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 350px;
    margin-top: 15px;
  }

  .kosodate-contents2 .thumnail-box-type1 .btn-type1{
    position: relative;
    bottom: 0px;
  }

  .kosodate-contents2 h4 > span{
    padding: 0 0 0 70px;
    text-align: left;
  }
  .kosodate-contents2 h4 > span br{display: none;}


  .kosodate-contents3 .qa-text dd div.icon-box1{
    position: relative;
    top: 0px;
    right: 0px;
    display: block;
    margin-top: 10px; 
    text-align: center;
  }



  .kosodate-contents-npo > div.box-text2 div.text1{
    position: relative;
    margin-right: 0px;
    margin-bottom: 50px;
    border: 1px solid #fff;
    border-right-color: #fff;
  }

  .kosodate-contents-npo > div.box-text2 div.text1::after{
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: #ffffff transparent transparent transparent;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .kosodate-contents-npo > div.box-text2 > div.banner{
    width: 100%;
    text-align: center;
  }

  .kosodate-contents-npo > div.box-text2 > div.banner img{
    max-width: 100%;
    height: 100%;
  }

}

@media screen and (min-width: 768px){
  /* PC */

}


/* Qタクサービスについて qtaxi */
.qtaxi-contents1 .contents-inner{
  height: 630px;
  background: url(images/qtaxi-contents1-bg1.png) no-repeat center 0;
}

.qtaxi-contents1 .box-text1{
  width: 475px;
  padding: 70px 0px;
  font-size: 17px;
  color: #fff;
}

.qtaxi-contents1 .box-text1 h3{
  position: relative;
  margin-bottom: 35px;
  padding: 12px;
  font-size: 19px;
  color: #fff;
  background-color: #4fa235;
}

.qtaxi-contents1 .box-text1 h3::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-width: 21px 20px;
  border-style: solid;
  border-color: transparent;
  border-right-color: #af9a82;
}

.qtaxi-contents1 .box-text1 h3 + p{
  margin-bottom: 20px;
  line-height: 1.6;
  /* for modan browser */
  text-shadow: 1px 1px 1px #999, -1px 1px 1px #222, 1px -1px 1px #999, -1px -1px 1px #999;
  /*text-shadow:0px 1px 1px #777,0px 0px 1px #777,1px 0px 1px #777,0px -1px 1px #777,-1px -1px 1px #777,-1px 0px 1px #777;*/

  /* for IE */
  filter:dropshadow(color=#777,offx=0,offy=1,positive=1),dropshadow(color=#777,offx=0,offy=0,positive=1),dropshadow(color=#777,offx=0,offy=-1,positive=1),dropshadow(color=#777,offx=-1,offy=-1,positive=1),dropshadow(color=#777,offx=-1,offy=0,positive=1);
}

.qtaxi-contents1 .box-text1 div.text1{
  padding-left: 22px;
  margin-bottom: 30px;
  background: url(images/icon-arrow3.png) no-repeat 0 center;
}

.qtaxi-contents1 .box-text1 div.text1 a{
  color: #11366E;
}

.qtaxi-contents1 .box-text1 div.text2{}
.qtaxi-contents1 .box-text1 div.text2 > div:nth-child(2){
  -webkit-flex: 0 0 350px;
  flex: 0 0 350px;
}

.qtaxi-contents1 .box-text1 div.text2 .telphone{
  padding: 15px 0 15px 70px;
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: url(images/icon-telphone4-2.png) no-repeat 0 center;
}

.qtaxi-contents1 .box-text1 div.text2 .telphone > span:nth-child(1){
  font-size: 16px;
}

.qtaxi-contents1 .qtaxi-course-btn1 > div.flex-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 50px;  
}

.qtaxi-title-type1{
  position: relative;
  text-align: center;
}

.qtaxi-title-type1 .icon-character{
  position: absolute;
  left: 10%;
}

.qtaxi-title-type1 h3{
  margin-bottom: 25px;
  font-size: 30px;
}

.qtaxi-title-type1 h3 + p{
  font-size: 17px;
}

.qtaxi-contents2 .contents-inner{
  padding-top: 90px;
  padding-bottom: 40px;
}

.qtaxi-contents2 .qtaxi-title-type1{margin-bottom: 60px;}
.qtaxi-contents2 .box-text1{font-size: 17px;}

.qtaxi-contents2 .box-text1 div.flex-box > div:nth-child(1){
  -webkit-flex: 0 0 127px;
  flex: 0 0 127px;
}

.qtaxi-contents2 .box-text1 div.flex-box > div:nth-child(2){
  -webkit-flex: 1 0 730px;
  flex: 1 0 730px;
  margin-left: 25px;
}

.qtaxi-contents2 .box-text1 div.flex-box > div:nth-child(2) img{
  max-width: 100%;
  height: auto;
}

.qtaxi-contents2 .box-text1 .text1{margin-bottom: 20px;}
.qtaxi-contents2 .box-text1 .text1 > span:nth-child(1){
  font-size: 19px;
}

.qtaxi-contents2 .box-text1 .text1 > span:nth-child(3){
  text-decoration: underline;
}

.qtaxi-contents2 .box-text1 div.img1{margin-bottom: 20px;}

.qtaxi-contents3{
  padding-top: 50px;
  padding-bottom: 50px;
}

.qtaxi-contents3 .box-text1{
  margin-bottom: 50px;
  font-size: 17px;
}

.qtaxi-contents3 .box-text1 div.flex-box > div{
  -webkit-flex: 0 0 49.8%;
  flex: 0 0 49.8%;
  margin-bottom: 5px;
  padding: 5px;
  border: 1px solid #f7f7f7;  
}

.qtaxi-contents3 .box-text1 div.flex-box > div > div{
  padding: 10px 10px 10px 60px;
  line-height: 1.55;
}

.qtaxi-contents3 .box-text1 div.flex-box > div:nth-child(1) > div{
  background: url(images/icon1.png) no-repeat 0 center;
}

.qtaxi-contents3 .box-text1 div.flex-box > div:nth-child(2) > div{
  background: url(images/icon2.png) no-repeat 0 center;
}

.qtaxi-contents3 .box-text1 div.flex-box > div:nth-child(3) > div{
  background: url(images/icon3.png) no-repeat 0 center;
}

.qtaxi-contents3 .box-text1 div.flex-box > div:nth-child(4) > div{
  background: url(images/icon4.png) no-repeat 0 center;
  padding: 0 0 0 60px;
}

.qtaxi-contents3 .box-text2{margin-bottom: 50px;}
.qtaxi-contents3 .box-text2 > div.img1{margin-bottom: 30px;}
.qtaxi-contents3 .box-text2 > div.text1{font-size: 19px;}

.comments-list-type1 p{
  font-size: 19px;
  color: #11366E;
}

#container .comments-list-type1 ul{margin-left: 8px;}
#container .comments-list-type1 ul li{
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.3;
}

.comments-list-type1 ul li::before{
  content: "●";
  margin-right: 5px;
  font-size: 19px;
  color: #11366e;
}

.qtaxi-contents3 .box-text3{margin-bottom: 50px;}
.qtaxi-contents3 .box-text3 div.flex-box > div:nth-child(2){
  -webkit-flex: 0 0 32%;
  flex: 0 0 32%;
  margin-left: 20px;
}

.qtaxi-contents3 .comments-list-type1 ul li::before{
  content: "■";
}

.qtaxi-contents3 .box-text4{margin-bottom: 50px;}
.qtaxi-contents3 .box-text4 h3 + p{
  margin-bottom: 30px;
  font-size: 17px;
}

.qtaxi-contents3 .box-text5{margin-bottom: 50px;}
.qtaxi-contents3 .box-text5 h3 + p{
  margin-bottom: 30px;
  font-size: 17px;
}

.qtaxi-contents3 .box-text5 p.text1{
  margin-bottom: 30px;
  font-size: 17px;
}

.qtaxi-contents3 .box-text5 p.text1 > span:nth-child(1){
  margin-bottom: 5px;
  font-size: 19px;
}

.qtaxi-contents3 .box-text5 .table-type1 p{
  margin-bottom: 15px;
  font-size: 19px;
}

.qtaxi-contents3 .box-text5 .table-type1 table{
  width: 100%;
  font-size: 17px;
  background: #fff;
  border-collapse: collapse;
}

.qtaxi-contents3 .box-text5 .table-type1 table th{
  font-weight: normal;
}

.qtaxi-contents3 .box-text5 .table-type1 table th,
.qtaxi-contents3 .box-text5 .table-type1 table td{
  border: 1px solid #dcdddd;
  padding: 10px;
}

.qtaxi-contents3 .box-text6 div.box1{margin-bottom: 30px;}
.qtaxi-contents3 .box-text6 div.box1 > div:nth-child(1){
  -webkit-flex: 0 0 530px;
  flex: 0 0 530px;
}

.qtaxi-contents3 .box-text6 div.box1 h4{
  margin-bottom: 15px;
  padding-bottom: 4px;
  font-size: 19px;
  color: #11366E;
  border-bottom: 2px solid #11366e;
}

.qtaxi-contents3 .box-text6 div.box1 h4 + p{
  font-size: 17px;
}

.qtaxi-contents3 .box-text6 div.box1 p.text1{
  padding: 0 0 0 65px;
  color: #53A235;
  font-size: 17px;
  background: url(images/qtaxi-contents3-img11.png) no-repeat 0 center;
}

.qtaxi-contents3 .box-text6 img{
  border: 1px solid #e5e6e6;
}

.qtaxi-contents5 .contents-inner{
  padding-top: 90px;
  padding-bottom: 40px;
}

.qtaxi-contents5 .qtaxi-title-type1{margin-bottom: 60px;}
.qtaxi-contents5 .qtaxi-title-type1 .icon-character{
  left: 4%;
}

.qtaxi-contents5 .box-text1{font-size: 17px;}

.qtaxi-contents5 .box-text1 div.flex-box > div:nth-child(1){
  -webkit-flex: 0 0 127px;
  flex: 0 0 127px;
}

.qtaxi-contents5 .box-text1 div.flex-box > div:nth-child(2){
  -webkit-flex: 1 0 730px;
  flex: 1 0 730px;
  margin-left: 25px;
}

.qtaxi-contents5 .box-text1 div.flex-box > div:nth-child(2) img{
  max-width: 100%;
  height: auto;
}

.qtaxi-contents5 .box-text1 .text1{margin-bottom: 20px;}
.qtaxi-contents5 .box-text1 .text1 > span:nth-child(1){
  font-size: 19px;
}

.qtaxi-contents5 .box-text1 .text1 > span:nth-child(3){
  text-decoration: underline;
}

.qtaxi-contents5 .box-text1 div.img1{margin-bottom: 20px;}

.qtaxi-contents5 .text-color1,
.qtaxi-contents6 .text-color1{color: #6392C0;}

.qtaxi-contents5 .text-color2,
.qtaxi-contents6 .text-color2{color: #68B158;}

.qtaxi-contents6{
  padding-top: 50px;
  padding-bottom: 50px;
}

.qtaxi-contents6 .box-text1 {
  margin-bottom: 50px;
  font-size: 17px;
}

.qtaxi-contents6 .box-text1 div.flex-box > div{
  -webkit-flex: 0 0 49.8%;
  flex: 0 0 49.8%;
  margin-bottom: 5px;
  padding: 5px;
  border: 1px solid #f7f7f7;  
}

.qtaxi-contents6 .box-text1 div.flex-box > div > div{
  padding: 10px 10px 10px 60px;
  line-height: 1.55;
}

.qtaxi-contents6 .box-text1 div.flex-box > div:nth-child(1) > div{
  background: url(images/icon1.png) no-repeat 0 center;
}

.qtaxi-contents6 .box-text1 div.flex-box > div:nth-child(2) > div{
  background: url(images/icon2.png) no-repeat 0 center;
}

.qtaxi-contents6 .box-text1 div.flex-box > div:nth-child(3) > div{
  background: url(images/icon3.png) no-repeat 0 center;
}

.qtaxi-contents6 .box-text1 div.flex-box > div:nth-child(4) > div{
  background: url(images/icon4.png) no-repeat 0 center;
  padding: 0 0 0 60px;
}

.qtaxi-contents6 .box-text2 > div.img1 {
  margin-bottom: 30px;
}

.qtaxi-contents6 .box-text2 .comments-list-type1{
  margin-bottom: 30px;
}

.qtaxi-contents7 .qtaxi-contents-banner{
  background: #9fa0a0;
  position: relative;
}

.qtaxi-contents-banner::before{
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #fff;
}

.qtaxi-contents7 .qtaxi-contents-banner > .box1{
  width: 100%;
  max-width: 1000px;
  padding: 50px 50px;
  margin: 0 auto;
}

.qtaxi-contents7 .qtaxi-contents-banner > .box1 > div{
  display: inline-block;
  vertical-align: middle;
}

.qtaxi-contents7 .qtaxi-contents-banner > .box1 div.text1{
  position: relative;
  width: 67%;
  margin-right: 70px;
  padding: 14px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-right-color: transparent;
}

.qtaxi-contents7 .qtaxi-contents-banner > .box1 div.text1 > span:nth-child(1){
  font-size: 17px;
}

.qtaxi-contents7 .qtaxi-contents-banner > .box1 div.text1::after{
  content: "";
  position: absolute;
  top: 10px;
  right: -28px;
  width: 52px;
  height: 52px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


@media screen and (max-width: 767px){
  /* Mobile */
  .qtaxi-title-type1 .icon-character{
    position: static;
    margin-bottom: 10px;
  }

  .qtaxi-contents1 .contents-inner{
    height: 100%;
    background-size: cover;
  }

  .qtaxi-contents1 .box-text1{
    width: 100%;
    max-width: 475px;
  }

  .qtaxi-contents2 .box-text1 div.flex-box > div:nth-child(1){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .qtaxi-contents2 .box-text1 div.flex-box > div:nth-child(2){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0px;
  }

  .qtaxi-contents2 div.img1 img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents3 .box-text1 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .qtaxi-contents3 div.img1 img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents3 .box-text3 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .qtaxi-contents3 .box-text3 div.flex-box > div:nth-child(2){
    margin-left: 0px;
  }

  .qtaxi-contents3 .box-text3 img{
    max-width: 100%;
    height: 100%; 
  }

  .qtaxi-contents3 .box-text3 div.flex-box > div:nth-child(2){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 10px;
    margin-left: 0px;
  }

  .qtaxi-contents3 .box-text6 div.box1 > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .qtaxi-contents3 .box-text6 div.box1 > div:nth-child(1){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .qtaxi-contents3 .box-text6 div.box1 > div img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents3 .box-text6 div.box2 > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .qtaxi-contents3 .box-text6 div.box2 > div:not(:last-child){
    -webkit-flex: 0 0 49%;
    flex: 0 0 49%;
  }

  .qtaxi-contents3 .box-text6 div.box2 > div img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents5 .box-text1 div.flex-box > div:nth-child(1){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .qtaxi-contents5 .box-text1 div.flex-box > div:nth-child(2){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0px;
  }

  .qtaxi-contents5 div.img1 img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents6 .box-text1 div.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .qtaxi-contents6 div.img1 img{
    max-width: 100%;
    height: 100%;
  }

  .qtaxi-contents7 .qtaxi-contents-banner > .box1 div.text1{
    width: 100%;
    margin-right: 0px;
    margin-bottom: 50px;
    border-right-color: #fff;
  }

  .qtaxi-contents7 .qtaxi-contents-banner > .box1 div.text1::after{
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 40px;
    border-color: #ffffff transparent transparent transparent;

    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .qtaxi-contents7 .qtaxi-contents-banner > .box1 > div.banner{
    width: 100%;
    text-align: center;
  }
}

@media screen and (min-width: 768px){
  /* PC */

}


/* ドライバー派遣について haken */
.haken-catchcopy{margin-bottom: 70px;}
.haken-contents1{margin-bottom: 30px;}

.haken-contents1 .thumnail-box-type1 h4 ~ p{color: #736153;}
.haken-contents1 .thumnail-box-type1 h4 + p{color: #3E3A39;}

.haken-contents2{margin-bottom: 100px;}
.haken-contents2 .box-text1{font-size: 17px;}
.haken-contents2 .box-text1 div.flex-box > div:nth-child(1){
  -webkit-flex: 0 0 127px;
  flex: 0 0 127px;
}

.haken-contents2 .box-text1 div.flex-box > div:nth-child(2){
  -webkit-flex: 0 0 740px;
  flex: 0 0 740px;
  padding-right: 1em;
}

.haken-contents2 .box-text1{margin-bottom: 50px;}
.haken-contents2 .box-text1 .telphone{
  margin-top: 30px;
  font-size: 16px;
}

.haken-contents2 .box-text1 .telphone > span:nth-child(2){
  padding: 3px 0 2px 33px;
  font-size: 24px;
  line-height: 1.0;
  background: url(images/icon-telphone3.png) no-repeat 0 center;
}

.haken-contents2 .box-text1 p.text1 > span:nth-child(1){
  margin-bottom: 5px;
  font-size: 19px;
  color: #11366E;
}

.haken-contents3 > .contents-inner{
  padding-top: 100px;
  padding-bottom: 100px;
}

.haken-contents3 h3{margin-bottom: 70px;}


@media screen and (max-width: 767px){
  /* Mobile */
  .haken-contents2 .box-text1 div.flex-box > div:nth-child(1){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .haken-contents2 .box-text1 div.flex-box > div:nth-child(2){
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .haken-contents3 > .contents-inner{
    padding-top: 50px;
    padding-bottom: 50px;
  }

}

@media screen and (min-width: 768px){
  /* PC */

}


/* 配車事前登録について gps */
#container.gps{border-bottom: 1px solid #f7f7f7;}
.gps-contents1 h4,
.gps-contents2 h4{margin-bottom: 30px;}

.gps-contents1 h3{
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
}

.gps-contents1 h3 + p{
  margin-bottom: 70px;
  font-size: 16px;
  text-align: center;
}

.gps-contents1 .box-text1{
  margin-bottom: 30px;
  font-size: 17px;
}

.gps-contents1 .list-text1{margin-bottom: 50px;}
.gps-contents1 .list-text1 li > span{margin-right: 5px;}
.gps-contents1 .list-text2{margin-bottom: 40px;}
.gps-contents1 .gps-btn1 .center-type1{
  height: 180px;
}

.gps-contents2{padding-top: 90px;}

.gps-contents2 .service-block .kosodate-kangaroo,
.gps-contents2 .service-block .kosodate-hiyoko,
.gps-contents2 .service-block .rakuda-course,
.gps-contents2 .service-block .tsubame-course{
  height: 730px;
}

.gps-contents2 .service-block .kosodate-kounotori,
.gps-contents2 .service-block .kosodate-fukurou{
  height: 590px;
}

.gps-contents2 .service-block .kosodate-kangaroo h5{background: url(images/icon-character1-2.png) no-repeat 0 0;}
.gps-contents2 .service-block .kosodate-hiyoko h5{background: url(images/icon-character2-2.png) no-repeat 0 0;}
.gps-contents2 .service-block .kosodate-kounotori h5{background: url(images/icon-character3-2.png) no-repeat 0 0;}
.gps-contents2 .service-block .kosodate-fukurou h5{background: url(images/icon-character4-2.png) no-repeat 0 0;}
.gps-contents2 .service-block .rakuda-course h5{background: url(images/icon-character5-2.png) no-repeat 0 0;}
.gps-contents2 .service-block .tsubame-course h5{background: url(images/icon-character6-2.png) no-repeat 0 0;}

.gps-contents2 .thumnail-box-type1 div.text1{font-size: 17px;}
.gps-contents2 .thumnail-box-type1 .btn-type1{
  position: absolute;
  display: block;
  bottom: 25px;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .gps-contents1 .gps-btn1 .center-type1 img{
    max-width: 100%;
    height: 100%;
  }

  .gps-contents2 .service-block .kosodate-kangaroo,
  .gps-contents2 .service-block .kosodate-hiyoko,
  .gps-contents2 .service-block .rakuda-course,
  .gps-contents2 .service-block .tsubame-course{
    height: 100%;
  }

  .gps-contents2 .service-block .kosodate-kounotori,
  .gps-contents2 .service-block .kosodate-fukurou{
    height: 100%;
  }

  .gps-contents2 .service-block h5 > span{
    padding: 0 0 0 70px;
    text-align: left;
  }

  .gps-contents2 .service-block h5 > span br{display: none;}

  .gps-contents2 .thumnail-box-type1 .btn-type1{
    position: relative;
    bottom: 0px;
  }

}

@media screen and (min-width: 768px){
  /* PC */

}


/*******************
テンプレートパーツ
*******************/
/* pickup area */
.pickuparea-contents{
  position: relative;
  width: 100%;
  font-size: 17px;
}

.pickuparea-contents .contents-inner{
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  /*background: url(images/bg-map1.png) no-repeat right bottom;*/
}

.pickuparea-contents h2{
  margin-bottom: 65px;
  font-size: 30px;
  font-weight: normal;
  color: #0d366e;
  letter-spacing: 5px;
  text-align: center;
}

.pickuparea-contents h2 > span{
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: #717071;
  letter-spacing: 0;
}

.pickuparea-contents h3{
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: normal;
}

.pickuparea-contents .box-text1{
  position: relative;
  width: 472px;
  z-index: 10;
}

.pickuparea-contents .text-color1{color: #00A0E8;}
.pickuparea-contents .text-color2{color: #8EC31E;}
.pickuparea-contents .text1,
.pickuparea-contents .text2{
  margin-bottom: 15px;
  font-size: 15px;
}

.pickuparea-contents .text2 ul li{font-size: 13px;}
.pickuparea-contents .icon-telphone-type1{
  padding: 20px 0 20px 70px;
  border-top: 1px solid #C9C9CA;
  border-bottom: 1px solid #C9C9CA;
  background: url(images/icon-telphone2.png) no-repeat 0 center;
}

.pickuparea-contents .icon-telphone-type1 > span:nth-child(1){font-size: 16px;}
.pickuparea-contents .icon-telphone-type1 > span:nth-child(2){font-size: 26px;}

.pickuparea-contents .img-map{
  position: absolute;
  display: inline-block;
  bottom: 130px;
  right: 0;
  z-index: 0;
  font-size: 0;
} 

.pickuparea-contents .img-map img{
  max-width: 100%;
  height: 100%;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .pickuparea-contents .contents-inner{
    padding-top: 0px;
    padding-bottom: 0px;
  }

 
  .pickuparea-contents .box-text1{
    width: 100%;
    margin-bottom: 20px;
  }

  .pickuparea-contents .img-map{
    position: static;
    display: block;
  } 
}

@media screen and (min-width: 768px){
  /* PC */

}


/*************
フォーム
*************/
.form-top{
  padding-top: 80px;
  padding-bottom: 30px;
}

.form-top h2{
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
}

.form-top h2 + p{
  margin-bottom: 70px;
  font-size: 16px;
  text-align: center;
}

.form-top .box-text1{
  padding: 30px 25px;
  border: 1px solid #DCDDDD;
}

.form-top .box-text1 > p{font-size: 19px;}
.form-top .box-text1 li{
  font-size: 16px;
}

.form-top .box-text1 .text1{
  display: block;
  text-indent: 1em;
}

.form-top .box-text1 .text-color1{color: #2EA7E0;}

.form-contents{}
.form-wrapper{
  border: 1px solid #DCDDDD;
}

.formpage-upper{
  font-size: 17px;
  background: #dcdddd;
}

.formpage-upper > div{
  -webkit-flex: 1 0 24%;
  flex: 1 0 24%;
  text-align: center;
}

.formpage-upper > div:not(:last-child){
  border-right: 1px solid #fff;
}

.formpage-upper > div a{
  display: block;
  padding: 15px;
  color: #3E3A39;
}

.formpage-upper > div.active{background: #fff;}
.formpage-upper > div.active a{color: #11366E;}

.formpage-lower{
  font-size: 17px;
  background: #fff;
}

#container.form-taxi-touroku .formpage-lower,
#container.form-qtaxi .formpage-lower,
#container.form-inquiry .formpage-lower{
  display: none;
}

.formpage-lower > div{
  -webkit-flex: 1 0 25%;
  flex: 1 0 25%;
  text-align: center;
}

.formpage-lower > div a{
  display: block;
  padding: 15px;
  color: #3E3A39;
  text-decoration: underline;
}

.formpage-lower > div.active{background: #fff;}

.formpage-lower > div.active a{
  color: #11366E;
  text-decoration: none;
}

.form-wrapper .box-text1{
  padding-left: 50px;
  padding-right: 50px;
}

.form-wrapper .character-img{
  text-align: center;
  margin: 50px 0 25px;
}

.form-wrapper h3.title-type1{margin-bottom: 40px;}

#container.form-taxi-touroku .form-wrapper h3.title-type1,
#container.form-qtaxi .form-wrapper h3.title-type1,
#container.form-inquiry .form-wrapper h3.title-type1{
  margin-top: 70px;
}

.form-wrapper .box-text1 .text1{
  padding: 4px;
  margin-bottom: 40px;
  font-size: 16px;
  color: #fff;
  background: #11366E;
  text-align: center;
}

.form-wrapper .box-text1 ul{margin-bottom: 20px;}
.form-wrapper .box-text1 li{font-size: 17px;}
.form-wrapper .box-text1 li.text-color1{color: #C30D23;}

.form-wrapper .box-text1 .step-box{
  margin-bottom: 35px;
  font-size: 16px;
}

.form-wrapper .box-text1 .step-box.flex-box > div{
  -webkit-flex: 0 0 260px;
  flex: 0 0 260px;
  padding: 13px;
  margin-bottom: 15px;
  color: #3E3A39;
  border: 1px solid #DCDDDD;
}

.form-wrapper .box-text1 .step-box.flex-box > div.bg-color{
  background: #f3f6fb;
}

.form-wrapper .box-text1 .step-box.flex-box > div span{
  color: #11366E;
}

.form-wrapper .box-text1 .step-box.flex-box > div > div{
  position: relative;
  line-height: 1.1;
}

.form-wrapper .box-text1 .step-box.flex-box > div:not(:last-child) > div::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 23px;
  height: 18px;
  background: url(images/icon-arrow2.png) no-repeat 0 center;
}

.form-short-code{font-size: 17px;}

.form-short-code table{
  width: 100%;
  margin-bottom: 50px;
  border-collapse: collapse;
}

.form-short-code table td{
  border: 1px solid #e4e5e5;
}

.form-short-code table td:nth-child(1){
  width: 180px;
  padding: 30px 20px;
  color: #3E3A39;
  background: #dcdddd;
}

.form-short-code table td:nth-child(1) > span{
  color: #2EA7E0;
}

.form-short-code table td:nth-child(2){
  padding: 15px 18px;
}

.form-short-code table td:nth-child(2) > input{
  width: 100%;
  padding: 12px;
  color: #565656;
  border: 1px solid #f7f7f7;
}

.form-short-code table td input::-webkit-input-placeholder,
.form-short-code table td textarea::-webkit-input-placeholder{
  color: #cecece;
  font-weight: normal;
}

.form-short-code table td input:-ms-input-placeholder,
.form-short-code table td textarea:-ms-input-placeholder{
  color: #cecece;
  font-weight: normal;
}

.form-short-code table td input::-moz-placeholder,
.form-short-code table td textarea::-moz-placeholder{
  color: #cecece;
  font-weight: normal;
}

.form-short-code table td:nth-child(2) > input.age-text{
  width: 90px;
}

.form-short-code table td:nth-child(2) > textarea{
  width: 100%;
  height: 290px;
  padding: 12px;
  border: 1px solid #f7f7f7;
}

.form-short-code table td:nth-child(2) span.comments-text1{
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.3;
}

.mw_wp_form_input .policy-check,
.mw_wp_form_preview .policy-check{
  margin-bottom: 50px;
  text-align: center;
}

.mw_wp_form_preview .policy-check{display: none;}

.mw_wp_form_input .policy-check a,
.mw_wp_form_preview .policy-check a{
  color: #11366E;
}

.mw_wp_form_input .confirm-btn,
.mw_wp_form_preview .confirm-btn{
  margin-bottom: 90px;
  text-align: center;
}

.mw_wp_form_input .confirm-btn input:hover{
  opacity: 0.8;
}

.mw_wp_form_input .confirm-btn input{
  background:url(images/form-btn1.png) no-repeat 0 0;
  width:381px;
  height:75px;
  text-indent:-9999px;
  overflow:hidden;
  border:none;
  cursor:pointer;
}

.mw_wp_form_preview .confirm-btn input[type="submit"]{
  padding: 10px 30px;
}

@media screen and (max-width: 767px){
  /* Mobile */

  .form-wrapper .box-text1{
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-wrapper .box-text1 .step-box.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .form-short-code table td:nth-child(1){
    display: block;
    width: 100%;
    padding: 15px 18px;
  }

  .form-short-code table td:nth-child(2){
    display: block;
    width: 100%;
  }

  .mw_wp_form_input .confirm-btn input{
    width:100%;
    max-width: 282px;
    height:50px;
    background-size: contain;
    background-position-x: center; 
  }

  .mw_wp_form_input .confirm-btn img{
    max-width: 100%;
    height: 100%;
  }


}

@media screen and (min-width: 768px){
  /* PC */

}


/*****************
/* カテゴリ・投稿
*****************/
/* お役立ち情報 information 汎用クラス*/
.information-box.flex-box > div{
  -webkit-flex: 0 0 280px;
  flex: 0 0 280px;
  background: #fff;
  margin-bottom: 40px;
  box-shadow: 2px 2px 4px 2px rgba(0,0,0,0.1);
}

.information-box .eyecatch{
  -webkit-flex: 0 0 245px;
  flex: 0 0 245px;
  margin: 15px;
  text-align: center;
  overflow: hidden;
}

.information-box .eyecatch img{
	width: 100%;
	height: auto;
}

.information-box .box-text1{
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
}

.information-box .tag-text > span{
  display: inline-block;
  font-size: 16px;
  vertical-align: middle;
}

.information-box .tag-box{
  padding: 2px 12px;
  margin-right: 5px;
  font-size: 14px;
  color: #fff;
}

.information-box .tag-box.news{background: #10366E;}
.information-box .tag-box.tips{background: #796A55;}

.information-box h3{
  padding: 20px;
  font-size: 17px;
}


/* 投稿・カテゴリ・アーカイブ */
#container.archive > div.flex-box,
#container.single > div.flex-box{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 45px;
  padding-right: 45px;
  -webkit-flex-direction: row-reverse;
  flex-direction:         row-reverse;
}

#container.archive #main,
#container.single #main{
  -webkit-flex: 0 0 600px;
  flex: 0 0 600px;
}

#container.archive #sidebar,
#container.single #sidebar{
  -webkit-flex: 0 0 275px;
  flex: 0 0 275px;
}

#container .pagenavi{margin: 100px 0 50px;}

#container.single .single-contents{
  padding: 40px 30px;
  margin-bottom: 30px;
  border: 1px solid #dcdddd;
}

#container.single .single-contents h3{
  padding-bottom: 30px;
  font-size: 25px;
  font-weight: normal;
  color: #11366E;
  border-bottom: 1px solid #e5e6e6;
}

#container.single .single-contents #date{
  margin-bottom: 20px;
  font-size: 13px;
  color: #B5B5B6;
}

#container.single .single-contents .post-content{
  font-size: 17px;
}

#container.single #next{
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  font-size: 14px;
}

#container.single #next > a{
  width: 190px;
  display: inline-block;
  padding: 15px;
  border: 1px solid #dcdddd;
  text-align: center;
}

#container.single #next > a.link-category-list{
  width: 120px;
  margin: 0 10px;
}


@media screen and (max-width: 767px){
  /* Mobile */
  .information-box.flex-box > div{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    background: transparent;
    box-shadow: none;
  }

  .information-box .eyecatch{
    position: relative;
    -webkit-flex: 0 0 72px;
    flex: 0 0 72px;
    height: 72px;
    margin: 0;
    display: inline-block;
    border: 1px solid #a5a3a1;
    background: #fff;
    vertical-align: top;
  }

  .information-box .eyecatch img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }

  .information-box .box-text1{
    -webkit-flex: 1 0 71%;
    flex: 1 0 71%;
    margin-left: 12px;
  }
  
  .information-box .tag-text{margin-bottom: 7px;}

  .information-box h3{
    padding: 0 0;
  }

  #container.archive #sidebar,
  #container.single #sidebar{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  }


  #container.archive > div.flex-box,
  #container.single > div.flex-box{
    padding-left: 15px;
    padding-right: 15px;
  }

  #container.archive #main,
  #container.single #main{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 600px;
  }

  #container.single .single-contents img{
    max-width: 100%;
    height: 100%;
  }

}

@media screen and (min-width: 768px){
  /* PC */

}


/*************
サイド（右側）コンテンツ
*************/
#sidebar p{margin-bottom:20px;}
#sidebar ul{margin-bottom:0px;}

#sidebar div.box1{
  margin-bottom: 30px;
  border: 1px solid #e5e6e6;
}

#sidebar div.box1 > .box1-inner{
  padding: 40px 25px;
}

#sidebar h3{
  padding: 12px;
  font-size: 19px;
  font-weight: normal;
  color: #fff;
  background: #898989;
  text-align: center;
}

#sidebar .post-information li:not(:last-child){
  margin-bottom: 25px;
}

#sidebar .post-information li > span{
  display: inline-block;
}

#sidebar .tag-box{
  width: 66px;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

#sidebar .post-date{
  width: 60%;
  font-size: 15px;
}

#sidebar .post-information li a{
  display: block;
  font-size: 15px;
}

#sidebar .widget ul{
  padding: 40px 25px;
}

#sidebar .widget_archive ul li:not(:last-child){
  border-bottom: 1px dotted #dcdddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#sidebar .widget_archive ul li,
#sidebar .widget_archive ul li a{
  font-size: 15px;
}

#sidebar .widget_categories ul li:not(:last-child){
  border-bottom: 1px dotted #dcdddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

#sidebar .widget_categories ul li,
#sidebar .widget_categories ul li a{
  font-size: 15px;
}

@media screen and (max-width: 767px){
  /* Mobile */
 
}

@media screen and (min-width: 768px){
  /* PC */

}


/*************
ページトップ
*************/
#page-top{
  position: fixed;
  bottom: 5%;
  right: 5%;
  font-size: 77%;
  background: rgba(135, 133, 142, 0.60);
}

#page-top a{
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 55px;
  text-align: center;
  width: 55px;
  padding: 20px 0;
  color: #3a90d3;
  border-radius: 5px;
}

#page-top a:hover{
  text-decoration: none;
  color: #B1B1B1;
}

#page-top a > span{
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 12px 7px;
  border-color: transparent transparent #ffffff transparent;
}


/*******************************
/* フッター
*******************************/
footer{
  background: url(images/footer-bg.png) no-repeat 0 0;
  background-size: cover;
}

footer > .inner{
  padding-top: 60px;
  padding-bottom: 40px;
  font-size: 16px;
  color: #fff;
}

footer a{color: #fff;}

footer div.logo{
  margin-bottom: 60px;
  text-align: center;
}

footer div.footer-contents{
  margin-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px;
}

.footer-contents-left .address-text1{margin-bottom: 25px;}
.footer-contents-left .telphone-text1 > div{margin-bottom: 25px;}
.footer-contents-left .text1 a{text-decoration: underline;}

.footer-contents-center li{margin-bottom: 15px;}
.footer-contents-center li:not(.icon-arrow-type1) > a{
  text-decoration: underline;
}

.footer-contents-right div.text1{margin-bottom: 15px;}
.footer-contents-right li{margin-bottom: 15px;}
.footer-contents-right li:not(.icon-link-type1) > a{
  text-decoration: underline;
}

.footer-contents-right .icon-link-type1::after{
  width: 22px;
  height: 17px;
  background: url(images/icon-link2.png) no-repeat 0 center;
}

footer div.copyright address{
  font-style:normal;
  font-size:10px;
  color: #fff;
  text-align: center;
}


.footer-contents-left{
  -webkit-flex: 0 0 35%;
  flex: 0 0 35%;
} 

.footer-contents-center,
.footer-contents-right{
  -webkit-flex: 0 0 21%;
  flex: 0 0 21%;
}


@media screen and (max-width: 767px){
  /* Mobile */
  footer div.footer-contents{
    margin-bottom: 40px;
  }

  footer div.footer-contents {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-contents-left,
  .footer-contents-center,
  .footer-contents-right{
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
  } 

  .footer-contents-left{margin-bottom: 30px;}
  .footer-contents-center{margin-bottom: 30px;}

  .footer-contents-right ul li:not(.icon-link-type1){
    display: none;
  }
}

@media screen and (min-width: 768px){
  /* PC */

}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}


/* レイアウト調整 */
.mt-100{
    margin-top: 100px !important;
  }