@charset "utf-8";

/*----------------------

Theme name:indigo|佐賀県鳥栖市の民間車検工場「千代自動車工業有限会社」
Theme URL:https://sendaizidousya.com
Description:
Auther:
Auther 
-----------------------------------------*/

/* RESET
----------------------------------------------------------------------------------------------------*/

a,article,body,dd,div,dl,dt,em,form,footer,header,
h1,h2,h3,h4,h5,h6,html,i,iframe,img,label,legend,
li,nav,ol,p,section,main,span,table,tbody,tfoot,thead,
time,tr,th,td,ul,video,figure{
  font-family:inherit;
  font-size:100%;
  font-weight:inherit;
  font-style:inherit;
  vertical-align:baseline;
  white-space:normal;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  line-height:2;
  clear: both;
  }
textarea{
  font-family:inherit;
  font-size:100%;
  font-weight:inherit;
  font-style:inherit;
  vertical-align:baseline;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  background:transparent;
  line-height:1.6;
  }
article,footer,header,nav,section,main{
  display:block;
  }
ol,ul{
  list-style:none;
  }
table{
  border-collapse:collapse;
  border-spacing:0;
}
*{
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  }
body {
  margin: 0 0;
  padding: 0 0;
  font-size: 16px;
  font-size:1rem;
  height:100vh;
  line-height: 1.8;
  font-family:'Noto Serif JP','serif';
  font-weight: 500;
  color: #333;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
a{
  outline:none;
  color: #333;
}
a:hover {
  text-decoration: none;
}
a,a:hover,a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:focus{
  outline:none !important;
}
/*-------------------------------
  margin
--------------------------------*/
.mg-top5{  
  margin-top:5px !important;
}
.mg-top10{ 
  margin-top:10px;
}
.mg-top15{  
  margin-top:15px !important;
}
.mg-top-15{
  margin-top:-15px !important;
}
.mg-top30{  
  margin-top:30px !important;
}
.mg-top-30{
  margin-top:-30px !important;
}
.mg-top50{  
  margin-top:50px !important;
}
.mg-top-50{
  margin-top:-50px !important;
}
.mg-top75{
  margin-top:75px !important;
}
.mg-top100{
  margin-top:100px !important;
}
.mg-top150{
  margin-top:150px !important;
}
.mg-b5{
  margin-bottom:5px;
}
.mg-b15{  
  margin-bottom:15px;
}
.mg-b30{ 
  margin-bottom:30px;
}
.mg-b50{ 
  margin-bottom:50px;
}
.mg-b100{ 
  margin-bottom:100px;
}
.mg-l5{
  margin-left:5px;
}
.mg-l15{ 
  margin-left: 15px;
}
.mg-l30{  
  margin-left:30px;
}
.mg-r5{ 
  margin-right:5px;
}
.mg-r15{  
  margin-right: 15px;
}
.mg-r30{ 
  margin-right: 30px;
}
/*-------------------------------
  padding
--------------------------------*/
.pd-5{
  padding:5px;
}
.pd-15{ 
  padding:15px;  
}
.pd-top50{ 
  padding-top:50px;
}
.pd-top75{ 
  padding-top:75px;
}
.pd-top100{  
  padding-top:100px;
}
.pd-top150{  
  padding-top:150px;
}
.pd-b50{
  padding-bottom: 50px;
}
.pd-b75{
  padding-bottom:75px;
}
.pd-b100{ 
  padding-bottom: 100px;
}
.pd-b150{ 
  padding-bottom: 150px;
}
/*===========
 text
=============*/

.text-center{ 
  text-align: center;
}
.text-right{
  text-align:right;
}
.text-left{
  text-align:left !important;
}   
.white{
  color:#fff !important;
}
.yellow{
  color:#ffe200;
}
.bold{
  font-weight:bold;
}
.small{
  font-size:80%;
}
.relative{
  position: relative;
}
/*--------------------
  background-color
----------------------*/
.bg-glay{
  background-color:#e7e7e7;  
}
.bg-white{
  background-color:#fff;
}
.bg-offwhite{
  background-color: rgba( 255, 255, 255, 0.9);
}
.bg_blue{
  background-color:#4169E1;
}
/*--------------------
  fade
--------------------*/
@media screen and (min-width: 768px) {
section .blog_post .blog_list:nth-of-type(2){
  transition-delay: .15s;
  }
section .blog_post .blog_list:nth-of-type(3){
  transition-delay: .25s;
  }
}
/*-------------------
  ttl animation
  -------------------*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;
  opacity:0;
}
  @keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
    to {
      opacity:1;  
   }
  }
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}
  @keyframes bgextendAnimeSecond{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
   }
  }
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  content: "";
  position: absolute;
  top:15%;
  width: 100%;
  height: 100%;
  background-color: #0066FF;
}
  @keyframes bgLRextendAnime{
    0% {
      transform-origin:left;
      transform:scaleX(0);
    }
    50% {
      transform-origin:left;
      transform:scaleX(1);
    }
    50.001% {
      transform-origin:right;
    }
    100% {
      transform-origin:right;
      transform:scaleX(0);
    }
}
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}
/*---------------------
  btn
-----------------------*/
.read_btn{
  margin-top:30px;
  position:relative;
  display:block;
}
.read_btn a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: absolute;
  right:0;
  width:220px;
  height:45px;
  font-size:0.9rem;
  font-weight:800;
  color:#4169E1;
  border:solid 1px #4169E1;
  padding-left:15px;
  background-color:#fff;
}
.read_btn a:hover{
  background-color:#4169E1;
  color:#fff;
  transition:.6s;
}
.read_btn a::before{
  content: '';
	position: absolute;
	top:calc(50% - 5px);
	right:15px;
	transform: rotate(30deg);
	width:12px;
	height:1px;
  background-color:#4169E1;
}
.read_btn a::after{
  content: '';
	position: absolute;
	top: 50%;
	right:15px;
	transform: translateY(-50%);
	width:70px;
	height:1px;
	background-color:#4169E1;
}
.read_btn a:hover::before,
.read_btn a:hover::after{
  background-color:#fff;
  transition:.6s;
}

/* container
------------------*/
.container {
  margin:0 auto;
  padding:0 15px;
}
@media (min-width: 768px) {
.container {
  width: 750px;
  padding:0 10px;
  }
}
@media (min-width: 991px) {
.container {
  width: 980px;
 }
}
@media (min-width: 1280px) {
.container {
  width: 1140px;
 }
}
/*-------------
  loading
----------------*/
#loading{
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color:#1d2b55;
  display:flex;
  align-items:center;
}
#loading_logo{
  display:block;
  width:220px;
  height:auto;
  z-index:9999;
  margin:30px auto;
}
#loding_logo img{
  object-fit: cover;
}
#loading_text{
  position: absolute;
  top: 70%;
  left: 50%;
  z-index: 9999;
  width: 80%;
  margin:0 auto;
  transform: translate(-50%, -30%);
  color: #fff;
}
/*IE11対策用*/
#loding_text svg{
    height: 2px;
}
/*================
  header
  ===============*/
.header{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  background-color:#fff;
  width:100%;
  height:60px;
  padding:5px 0 0 0;
  margin:0;
  border-bottom:solid 3px #4169E1;
  z-index:30;
}
@media screen and (min-width:991px){
.header{ 
  padding:0;
 }
}
.h_logo{
  margin:0;
  padding-left:10px;
}
@media screen and (min-width:991px){
  .h_logo{
    padding:5px 0 0 20px;
  }  
}
.h_logo img{
  width:220px;
}
.h_btn{
  position:fixed;
  right:0;
  top:0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  align-items: center;
  border:none;
  width:68px;
  height:60px;
  background-color:#0066FF;
}
@media screen and (min-width:991px){
  .h_btn{
    display:none;
 }
}
.h_btn span{
  display:block;
  position: relative;
  top:0;
  margin:0 auto;
  width:24px;
  height:3px;
  background-color:#fff;
  transition:.6s;
}
.h_btn span::before,
.h_btn span::after{
  content:'';
  display:block;
  position: absolute;
  left:0;
  width:100%;
  height:3px;
  transition:all .6s;
  background-color:inherit;
}
.h_btn span::before{
  top:-9px;
}
.h_btn span::after{
  top:9px;
}
body.open .h_btn{
  z-index:999;
  background-color:#fff;
}
body.open .h_btn span{
  width:30px;
  background-color:transparent;
}
body.open .h_btn span::before,
body.open .h_btn span::after{
  top:0;
  background-color:#0066FF;
}
body.open .h_btn span::before{
  transform:rotate(45deg);
}
body.open .h_btn span::after{
  transform:rotate(-45deg);
}
.g_nav{
  z-index:99;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction:column;
  position:fixed;
  top:0;
  width:100vw;
  height:100vh;
  background-color:#4169E1;
  transform:translateX(100%);
  transition:.6s ease;
  padding:100px 0 30px 30px;
  overflow-y: scroll;
}
body.open .g_nav{
  transform:translateX(0);
}
@media screen and (min-width:768px){
  .g_nav{
    flex-direction:row;
    justify-content: center;
    align-items:center;
 }
}
@media screen and (min-width:991px){
  .g_nav{
    position:static;
    width:100%;
    max-width:1000px;
    height:auto;
    background-color:transparent;
    transform:none;
    padding:0;
    overflow-y:hidden;
  }
}
.g_nav-logo{
  display:block;
  width:100%;
  max-width:280px;
  margin:0 0 15px -7px;
}
@media screen and (min-width:768px){
  .g_nav-logo{
    margin:0 auto 0;
 }
}
@media screen and (min-width:991px){
  .g_nav-logo{
    display:none;
 }
}
@media screen and (min-width:768px){
  .g_nav-ul{
    width:50%;
  }
}
@media screen and (min-width:991px){
  .g_nav-ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction:row;
    justify-content:flex-end;
    width:100%;
  }
}
.g_nav-list{
  text-align:left;
  font-size:1.1rem;
  vertical-align: middle;
  font-weight:800;
}
.g_nav-list span{
  font-size:0.7rem;
  margin-left:10px;
}
@media screen and (min-width:991px){
  .g_nav-list{
    font-size:1rem;
    margin:0 15px;
    text-align:center;
  }
  .g_nav-list:first-child{
    margin-left:30px;
  }
  .g_nav-list span{
    display:block;
    margin:0;
  }
}
.g_nav-list a{
  color:#fff;
  display:block;
  padding:8px 15px 8px 0;
}
@media screen and (min-width:991px){
  .g_nav-list a{
    color:#333;
    display:block;
    padding:15px 30px 5px;
    line-height:1;
 }
  .g_nav-list a:hover{
   color:#fff;
   background-color:#4169E1;
   transition:.6s;
 }
  .list-r a{
   background-color:#333;
   color:#fff;
   padding:15px 30px 5px;
   box-sizing:border-box;
 }
 .list-r a:hover{
  color:#1d2b55;
  background-color:#4169E1;
  transition:.6s;
 }
 .sp{
  display:none;
}
}
/*==================
  hero-aria
======================*/
#hero_area{
  position: relative;
  width:100%;
  height:95vh;
  margin:0;
  padding:30px 0 0;
}

/* slide
--------------*/
#slider{
  width: 100%;
  height: 80vh;
}
@media screen and (min-width:768px){
#slider{
  position: absolute !important;
  top:0 !important;
  left:0 !important;
  width:100%;
  height: 95vh;
}
}
/* top-title
--------------------*/
.top_ttl{
  position: absolute;
  top:70%;
  left:0;
  font-size:1.1rem;
  line-height: 1.2;
  background-color: rgba( 65, 105, 225, 0.9);
  padding:10px;
  display:block;
  z-index:3;
  color:#fff;
}
@media screen and (min-width:360px){
  .top_ttl{
    top:85%;
    left:0;
    font-size:1.2rem;
 }
}
@media screen and (min-width:768px){
  .top_ttl{
    top:75%;
    left: 0;
    font-size:2.2rem;
    line-height: 1.6;
    padding:15px 30px;
 }
 .top_ttl br{
   display:none;
 }
}
/*================
  top_concept
=================*/
.top_concept{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  flex-direction:column;
}
@media screen and (min-width:768px){
  .top_concept{
    flex-direction:row;
}
}
.left_photo{
  width:100%;
  margin:30px 0;
}
@media screen and (min-width:991px){
  .left_photo{
    width:60%;
    padding:0 15px;
 }
}
.left_photo img{
  object-fit: cover;
  object-position: 50% 50%;
  width:100%;
}
.right_contents{
  width:100%;
  margin:30px 0;
}
@media screen and (min-width:991px){
  .right_contents{
    width:40%;
    padding:0 15px 0 30px;
}
}
.ttl{
  font-size:2.2rem;
  color:#4169E1;
  margin:0 0 30px;
  font-family: 'Roboto Slab', serif;
  position: relative;
  padding-left:40px;
  max-width:300px;
}
.ttl::after{
  position: absolute;
  top:50%;
  left:0;
  content:'';
  width:30px;
  height:2px;
  background-color:#4169E1;
}
@media screen and (min-width:991px){
  .ttl{
    font-size:3rem;
 }
}
  .contents_p{
    font-size:1rem;
    padding-bottom:20px;
}
/* top-service
-------------------*/
.service_inner{
  background-color:rgba( 255, 255, 255, 0.9);
  padding:30px 0;
  margin:50px auto auto;
  width:90%;
  height:90%;
}
/* gallary
-------------------------*/
.gallery{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display:flex;
  flex-wrap:nowrap;
  overflow-x:scroll;
  margin:30px 0;
  text-align: center;
} 
.gallery li {
  margin-bottom: 15px;
}
.gallery img{
  width:85vw;
  padding-right:10px;
}
@media screen and (min-width:768px){
  .gallery img{
    width:50vw;
    padding-right:30px;
  }
  }
@media screen and (min-width:991px){
.gallery img{
  width:30vw;
  padding-right:30px;
}
}
/*================
  top-access
=================*/
footer{
  width:100%;
  margin:0;
  padding:30px 0;
}
.footer_access{
  display:block;
  margin:30px 0 0;
  padding:0;
  width:100%;
}
@media screen and (min-width:991px){
.footer_access{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap:wrap;
  flex-direction: row-reverse;
}
}
.f_map{
  width:100%;
  margin:0;
  padding:0;
  display:block;
}
.f_info{
  width:100%;
  margin:0;
  padding:0;
  display:block;
}
@media screen and (min-width:991px){ 
  .f_map{
    width:50%; 
 }
  .f_info{
    width:50%; 
 }
}
.access_photo{
  overflow: hidden;
  width:100%;
  margin:0 0 30px;
}
.access_photo img{
  object-fit: cover;
  object-position: 50% 50%;
  width:100%;
}
.f_access-dl{
  width:calc(100% - 20px);
  color:#333;
  margin:0 auto 30px;
  padding:10px 0;
  font-size:1rem;
}
@media screen and (min-width:991px){ 
  .f_access-dl{
    padding:0 10px 10px 30px;
 } 
}
.f_access-dl dt{
  padding:10px 10px 5px;
  font-weight:bold;
}
.f_access-dl dt:first-child{
  padding:0 10px 5px;
}
.f_access-dl dd{
  border-bottom:dashed 1px #333;
  padding:0 10px 10px;
  line-height: 1.2;
}
.f_access-dl dd:last-child{
  border-bottom:none;
}
/*  footer
------------------*/
.f_logo{
  display:block;
  max-width:280px;
  margin:30px auto;
  width:100%;
}
.f_menu-list{
  width:100%;
  padding:10px;
  display: block;
}
.f_menu{
  padding:30px 0 0;
}
@media screen and (min-width:768px){
  .f_menu{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
  }
}
.f_menu li{
  padding:10px;
  border-bottom:solid 1px #fff;
  display:block;
}
.f_menu li:nth-of-type(9){
  border-bottom:none;
}
.f_menu .empty{
  display:none;
}
@media screen and (min-width:768px){
  .f_menu li{
    width:23%;
    border-bottom:none;
    margin:0 1%;
    text-align:center;
 }
  .f_menu .empty{
    width:23%;
    margin:0 1%;
    content:'';
    display:block;
  }
}
@media screen and (min-width:991px){
  .f_menu li{
    width:18%;
 }
  .f_menu .empty{
    width:18%;
  }
}
.f_menu li a{
  color:#fff;
  display:block;
}
.copyright{
  text-align:center;
  color:#fff;
  font-size:0.7rem;
  margin:50px 0 0;
}
/*===================
  page
===================*/

/* page loading*/

#page_load{
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align:center;
  color:#1d2b55;
}
#page_load-logo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*画面遷移アニメーション*/
.page_load-bg{
  display: none;
}
body.appear .page_load-bg{
  display: block;
  content: "";
  position:fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #4169E1;
  animation-name:PageAnime;
  animation-duration:1.2s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
}
@keyframes PageAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}
#main_area{
  opacity: 0;
}
body.appear #main_area{
  animation-name:PageAnimeAppear;
  animation-duration:0.2s;
  animation-delay:0.8s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
 }
}

/* page hero
---------------------*/
.page_hero{
  width:100%;
  height:90vh;
  margin:0 0 50px;
  padding:50px 0 0;
  position: relative;
  display:block;
}
.page_hero::after{
  clear: both;
}
@media screen and (min-width:991px){
  .page_hero{
    width:100%;
    height:550px;
 } 
}
.page_about{
  position: static;
  right:0;
  top:0;
  width:100%;
  height:90vh;
  overflow: hidden;
  background:url(images/sp_page-bg.jpg) no-repeat;
  background-size:cover;
  background-position:center center;
}
@media screen and (min-width:768px){
  .page_about{
    position: absolute;
    right:0;
    top:0;
    width:100%;
    height:550px;
    background:url(images/page_bg.jpg) no-repeat;
    background-size:cover;
    background-position:center center;
    background-attachment: fixed;
 } 
}
.page_menu{
  position: static;
  right:0;
  top:0;
  width:100%;
  height:90vh;
  overflow: hidden;
  background:url(images/page_bg02.jpg) no-repeat;
  background-size:cover;
  background-position:center center;
}
@media screen and (min-width:768px){
  .page_menu{
    position: absolute;
    right:0;
    top:50px;
    width:88%;
    height:550px;
    background:url(images/page_bg02.jpg) no-repeat;
    background-size:cover;
    background-position:center center;
    background-attachment: fixed;
 } 
}
.page_ttl-area{
  position: absolute;
  bottom:0;
  left:0;
  width:60%;
  padding:10px 10px 10px 0;
  margin:0 0;
  background-color:#4169E1;
  display:block;
}
@media screen and (min-width:768px){
  .page_ttl-area{
    bottom:10%;
    left:0;
 }  
}
@media screen and (min-width:991px){
  .page_ttl-area{
    bottom:-50px;
    left:0;
    width:60%;
    padding:10px 10px 10px 0;
    margin:0;
    background-color:#4169E1;
 }  
}
.page_ttl{
  margin-left:5%;
  color:#fff;
  font-size:1.8rem;
  line-height: 1.2;
}
.page_sub-ttl{
  font-size:0.9rem;
}
@media screen and (min-width:991px){
  .page_ttl{
    margin-left:15%;
    font-size:2.5rem;
 }
  .page_sub-ttl{
    font-size:1rem;
 } 
}
/*================
  About Page
==================*/
.about_concept{
  display:block;
  margin:30px 0 0;
  padding:0;
}
@media screen and (min-width:768px){
  .about_concept{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    align-items:center;
    width:100%;
 }
}
.left-box{
  width:100%;
  margin:0 0 30px;
  overflow: hidden;
}
.left-box figure img{
  object-fit: cover;
  object-position: 50% 50%;
  width:100%;
}
.right-box{
  width:100%;
  margin:0 0 30px;
}
@media screen and (min-width:768px){
  .left-box{
    width:48%;
    margin:0 1%;
    padding:10px;
}
  .right-box{
    width:48%;
    margin:50px 1% 30px;
}
}
.about_h3{
  font-size:1.5rem;
  padding-left:10px;
  border-left:solid 8px #4169E1;
  color:#4169E1;
  margin:0 0 30px;
}
.a_ul{
  width:100%;
  background-color:#e7e7e7;
  padding:10px 10px 10px 15px;
}
.a_ul li{
  margin-bottom:10px;
  font-weight:800;
}
.a_table{
  width:100%;
  margin:30px 0;
  padding:0;
  box-sizing: border-box;
}
.a_table th,
.a_table td{
  width:100%;
  padding:15px;
  vertical-align: middle;
  display:inline-block;
}
.a_table th{
  background-color: #4169E1;
  color:#fff;
}
.a_table td{
  text-align:center;
}
@media screen and (min-width:768px){
  .a_table th{
    width:30%;
    display:table-cell;
    border-bottom:solid 2px #fff;
  }
  .a_table td{
    width:70%;
    text-align:left;
    padding-left:30px;
    display:table-cell;
    border-bottom:solid 2px #eee;
  }
}
.c_tel{
    display: none;
}
.c_sp-tel{
  margin:50px 0 30px;
  text-align: center;
}
.c_sp-tel a{
    display:block;
    font-size:1.4rem;
    font-weight:bold;
    background-color:#0066FF;
    border-radius:50px;
    text-align: center;
    color:#fff;
}
@media screen and (min-width:768px){
  .c_tel{
    display:block;
    font-size:1.8rem;
    font-weight:bold;
    color:#4169E1;
    margin:50px 0 30px;
  }
  .c_sp-tel{
    display:none;
  }
}
.c_tel span{
  font-size:1.1rem;
  color:#333;
}
.g_flex{
  display:block;
  margin:30px 0 0;
  padding:0;
}
.g_h3{
  font-size:1.4rem;
  margin:0 0 30px;
}
/* トップページtable */
.t_scroll{
  overflow-x: scroll;
}
.price_table{
  width:1140px;
  border-collapse: collapse;
  margin:0 auto 30px;
  padding:0;
  background-color:#fff;
}
.price_table thead th{
  background-color:#4169E1;
  color:#fff;
  padding:10px;
  margin:0;
  line-height: 1.1;
  text-align:center;
  font-weight:bold;
  font-size:1rem;
  vertical-align: middle;
}
.price_table tbody tr:nth-child(even){
  background-color: #eee;
}
.price_table tbody th{
  padding:10px;
  text-align:center;
  font-weight:bold;
  line-height: 1.4;
  font-size:0.95rem;
  background-color:#4169E1;
  color:#fff;
  border-bottom:solid 1px #fff;
  vertical-align: middle;
}
.price_table tbody td{
  padding:10px;
  text-align:center;
  line-height: 1.4;
  border-right:dotted 1px #e6e6e6;
  vertical-align: middle;
}
.h3_ttl{
  font-size:1.6rem;
  color:#4169E1;
  text-align:center;
  margin:50px 0 30px;
  font-weight:bold;
}
.p_scroll{
  font-size:1rem;
  text-align:right;
  font-weight:bold;
}
.p_ul{
  width:100%;
  margin:30px 0;
}
.p_ul li{
  margin-bottom:10px;
  line-height: 1.4;
}
@media screen and (min-width:1280px){
  .price_table{
    width:100%;
  }
  .p_scroll{
    display:none;
  }
}