@charset "utf8";
/*共通部分*/
body{
    font-size: 15px;
    font-size:1rem;
    line-height: 2;
    color: var(--font_color);
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic'  
}
h1 {
    font-size: 36px;/* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(2.3rem + ((1vw - 0.64rem) * 2.1429));/* 24px~36pxで可変*/
    line-height: 1.3;
}
h2 {
    font-size: 24px;/* IE8以下とAndroid4.3以下用フォールバック */
    font-size: calc(1.6rem + ((1vw - 0.64rem) * 0.7143));/* 20px~24pxで可変*/
    line-height: 1.3;
}
a{
    text-decoration: none;
    color: var(--black);
}
a:hover{
    text-decoration: underline;
}
.color-white{
    color: var(--white);
}
/*電話番号発信*/
.a_tel {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
img{
    max-width: 100%;
}
:root {
    --basecolor: #ffff;
    --lightcolor: #ffba74fa;
    --darkcolor: #fff;
    --accentcolor: rgb(45, 112, 212);
    --black: #000;
    --grey: #3E3E3E;
    --white: #ffff;
    --very-light-orange:#eba2074a;
    --light-orange:#eba207d1;
    --orange: #f17d07;
    --font_color: rgb(24, 24, 24);
    /*ロゴ用フォント*/
    --font_exo_bold_italic_600: 'Exo', sans-serif;
    --logo_font_h1: 38px;
    --logo_font_h2: 28px;
    /*ベーシックフォント*/
    --f1: 67px;
    --f2: 50px;
    --f3: 37px;
    --f4: 28px;
    --f5: 21px;
    --f6: 14px;
    /* arabic font */
    --font_arabic: 'Mada', sans-serif;
}
h3,h4, h5{
    font-weight: normal;
}
span.bold{
    font-weight: bold;
}
span.small-font{
    font-size: 0.8rem;
}
/*空白・flexブロック*/
.blank1{
    width: 100%;
    height: 70px;
}
.blank2{
    width: 100%;
    height: 50px;
}
.blank3{
    width: 100%;
    height: 20px;
}
.f_container_space_between{
    display: flex;
    justify-content: space-between;

}
.flex_bottomed{
    display: flex;
    justify-content:space-around;
    align-items: end;
    text-align: center;
}
.flex-start{
    display: flex-start;
    flex-direction: row;
} 
.padding{
    padding: 1rem 4rem 1rem 4rem ;
}
.center{
    text-align: center;
}
/*横幅*/
.wrapper{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 17%;
}
/*スワイパー画像スライダー*/
.swiper-container {
    width: 100%;
    height: 350px;
}
.swiper-container img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next{
    color: var(--grey);
}
.swiper-pagination-bullet,.swiper-pagination-bullet-active{
    background-color: var(--grey);
}
.box_line{
    background-color: var(--orange);
    width: 100%;
    height: 2.3rem;
}
#img1,#img2,#img3,#img4{
    max-width: 1450px;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#img1{
    background-image: url('img/neon.png');
}
#img2{
    
    background-image: url('img/top_img_car.png');
}
#img4{
    background-image: url('img/beach.png');
}
#img3{
    background-image: url('img/oil.png');
}
.img_sunoco{
    width: 150px;
}
/* header */
.page_header{
    background-color: var(--grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 5%;
}  
.text_logo_a:hover{
    text-decoration: none;
}
.text_logo{
    color: var(--white);
    margin-bottom: 20px;
    margin-top: 5px;
    font-family: var(--font_exo_bold_italic_600);
    font-size: var(--logo_font_h1);
}
.text_logo::after{
    content:"";
    width:400px;
    height:8px;
    display:block;
    background:var(--orange);
    transform:skewX(30deg);
}

/*ナビゲーションメニュー（レスポンシブ）*/
.drawer_menu a {
	color: inherit;
	text-decoration: none;
}
.drawer_menu a:visited {
	color: inherit;
}
/* PC用ナビゲーション */
.drawer_menu .drawer_nav_wrapper {
	transform: translate(0);
	width: 100%;
	height: 50px;
	/* PC用メニュー高さ */
	position: relative;
	top: auto;
	right: auto;
	z-index: 100;
	background-color: var(--grey);
	/* PC用メニュー背景色 */
}

.drawer_menu .drawer_nav {
	max-width: 1000px;
	/* コンテンツ幅に合わせる */
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	list-style-type: none;
}

.drawer_menu .drawer_nav li {
	font-size: 1.2rem;
	margin: 0 15px;
	padding: 0;
	width: 100%;
	height: 50px;
	/* PC用メニュー高さ */
	line-height: 50px;
	/* PC用メニュー高さ */
	background-color: var(--grey);
	/* PC用メニューボタン背景色 */
	text-align: center;
	list-style-type: none;
}

.drawer_menu .drawer_nav li:hover {
	background-color: var(--grey);
	/* PC用メニューボタンマウスオーバー背景色 */
}

.drawer_menu .drawer_nav li a {
	color: #fff;
	/* PC用メニューボタン文字色 */
}
/* PC非表示 */
@media screen and (min-width:841px) {
	.pc-hidden {
		display: none;
		text-align: center;
	}
}
@media screen and (min-width: 841px) {
	/* ドロップダウンメニュー2階層目 */
	.drawer_menu .drawer_nav li ul.second-level {
		visibility: hidden;
		list-style-type: none;
		position: absolute;
		z-index: -1;
		top: 0;
		margin: 0;
        right: 0;
		padding-left: 0;
	}
	.drawer_menu .drawer_nav li:hover ul.second-level {
		visibility: visible;
		z-index: 1;
		top: 50px;
		/* PC用メニューの高さに合わせる */
		transition: all .3s;
	}
	.drawer_menu .drawer_nav li:hover ul.second-level li {
		width: 200px;
		/* ドロップダウンメニューボタン横幅 */
		height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
	}
	.drawer_menu .drawer_nav li:hover ul.second-level li a {
		display: block;
		background-color: var(--grey);
		/* ドロップダウンメニューの文字の背景色 */
		color: #fff;
		/* ドロップダウンメニューの文字色 */
		font-size: 100%;
		text-decoration: none;
		line-height: 50px;
		/* Pドロップダウンメニューボタン高さ */
		text-align: center;
        font-size: 1.1rem;
	}
    
	.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
		background-color: #999;
		/* ドロップダウンメニューマウスホバー背景色 */
	}
	.touch-btn {
		color: #fff;
		margin-left: 5px;
	}
}

/*+++ Default Button Color +++*/
.drawer_menu .drawer_button {
	color: #fff;
	/* ハンバーガーメニュー文字色 */
	display: none;
}
.drawer_menu .drawer_button .drawer_bar {
	background-color: #fff;
	/* ハンバーガーメニュー三本線の色 */
}

/* 1000px以下 */
@media screen and (max-width: 840px) {
	.drawer_menu .drawer_bg {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		background-color: rgba(51, 51, 51, 0.5);
		display: none;
		top: 0;
		left: 0;
	}
	.drawer_menu .drawer_button {
		display: block;
		background-color: #555;
		color: #fff;
		border: none;
		padding: 5px;
		width: 50px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		top: 10px;
		right: 10px;
		z-index: 1001;
		text-align: center;
		outline: none;
	}
	.drawer_menu .drawer_button.active .drawer_bar {
		width: 40px;
	}
	.drawer_menu .drawer_button.active .drawer_bar1 {
		transform: rotate(30deg);
	}

	.drawer_menu .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}

	.drawer_menu .drawer_button.active .drawer_bar3 {
		transform: rotate(-30deg);
	}

	.drawer_menu .drawer_button.active .drawer_menu_text {
		display: none;
	}

	.drawer_menu .drawer_button.active .drawer_close {
		display: block;
	}

	.drawer_menu .drawer_bar {
		display: block;
		height: 2px;
		margin: 8px 2px;
		transition: all 0.2s;
		transform-origin: 0 0;
	}

	.drawer_menu .drawer_text {
		text-align: center;
		font-size: 10px;
	}

	.drawer_menu .drawer_close {
		letter-spacing: 0.08em;
		display: none;
	}

	.drawer_menu .drawer_menu_text {
		display: block;
	}

	.drawer_menu .drawer_nav_wrapper {
		width: 250px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(250px);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		background-color: var(--grey);
        opacity: 0.8;
		/* ドロワーメニュー内背景色 */
		overflow-x: hidden;
		overflow-y: auto;
	}

	.drawer_menu .drawer_nav {
		display: block;
		position: relative;
		margin-top: 40px;
	}

	.drawer_menu .drawer_nav li {
		
		height: auto;
		line-height: 50px;
		/*  ドロワーメニューリスト項目高さ */
		position: relative;
		border-bottom: 1px solid #eee;
	}

	.drawer_menu .drawer_nav li a {
		background-color: var(--grey);
        opacity: 0.9;
		/* ドロワーメニューリスト背景色 */
		color: #fff;
		/* ドロワーメニューリスト文字色 */
		display: block;
		text-align: left;
		padding-left: 20px;
	}

	/* スマートフォン2階層目 */
	.drawer_menu .drawer_nav li:hover ul.second-level {
		display: block;
	}
    .drawer_menu .drawer_nav li:hover {
        background-color: #999;
        /* PC用メニューボタンマウスオーバー背景色 */
    }
	.drawer_menu .drawer_nav li ul.second-level {
		display: none;
		position: relative;
		padding: 0;
		z-index: 1001;
	}

	.drawer_menu .drawer_nav li ul.second-level li a {
		padding-left: 40px;
        background-color: var(--grey);
	}

	.drawer_menu .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.drawer_menu.left .drawer_button {
		right: auto;
		left: 32px;
	}

	.drawer_menu.left .drawer_nav_wrapper {
		transform: translate(-250px);
		right: auto;
		left: 0;
	}

	.drawer_menu.left .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.pc-hidden {
		text-align: center;
	}

	.touch-btn {
		color: #555;
		position: absolute;
		top: .25rem;
		right: 2%;
		display: block;
		z-index: 10;
		width: 50px;
		height: 50px;
		text-align: center;
		vertical-align: middle;
	}
}

/*メインコンテンツ*/
section.main{
    padding: 15px 0px;
}
/*フッター*/
footer{
    background: var(--grey);
    text-align: center;
    padding: 26px 0;
    color: var(--white);
    font-size: 0.7rem;
}
.f_img{
    width: calc(47%);   
    margin-top: 20px; 
}
#img_autoway{
    margin-right: 20px;
    width: 200px;
}
footer a{
    color: var(--white);
}
footer ul{
    list-style: none;
    text-align: left;
}
footer .text_logo{
    font-size: var(--f6);
    margin-bottom: 5px;
}
footer .text_logo::after{
    width:150px;
    height:6px;
}
.padding{
    padding: 1rem 1rem 1rem 1rem ;
}
/*見出し*/
.fukidashi{
    width: fit-content;
    position: relative;
    padding: 0.6em;
    background: #3160a3c5;
}
.fukidashi:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 30px;
    border: 15px solid transparent;
    border-top: 15px solid #3160a3c5;
    width: 0;
    height: 0;
  }
  
  /*見出し　グラデーションライン*/
  .gradation_line {
    position: relative;
    padding: 0.25em 0;
  }
  .gradation_line::after {
    content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
  background: linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
  }
  /*ラインナップメニュー*/
  ul.list_menu {
    margin-top: 40px;
    border: solid 2px var(--orange);
    padding: 2em 2em 2em 3rem;
    position: relative;
  }
  
  ul.list_menu li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none!important;/*ポチ消す*/
  }
  ul.list_menu li::before {
    font-family: "Font Awesome 5 Free";
    content: '\f613';
    font-weight: 900;
    position: absolute;
    left : 1em; /*左端からのアイコンまで*/
    color: var(--orange); /*アイコン色*/
  }
  ul.list_menu li:after {
    /*タイトルタブ*/
    background: var(--orange);
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: -2px;
    bottom: 100%;
    padding: 1px 7px;
    content: "ラインナップ";/*タブの文字*/
    letter-spacing: 0.05em;/*字間*/
  }
/*丸*/
.circle {	
    position: relative;
    display: inline-block;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--lightcolor);
}
.circle-chil {   
position: absolute;
display: inline-block;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width :230px;
text-align:center;
}
.mob_circle{
    display: none;
}
/*ボタン*/
.btn-flat-border {
display: inline-block;
padding: 0.3em 1em;
text-decoration: none;
color: var(--orange);
border: solid 2px var(--orange);
border-radius: 3px;
transition: .4s;
margin-top: 0.6rem;
}

.btn-flat-border:hover {
background: var(--orange);
color: white;
}
/*飾りbox*/
.box-fee {
    padding: 1em 1em;
    margin: 2em 0;
    background: var(--light-orange);
    border-bottom: solid 6px var(--orange);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
}
.box-fee p {
    margin: 0; 
    padding: 0;
}
.box29 {
    margin: 2em 0;
    background: var(--white);
    border: solid var(--orange);
    width: 400px;
}
.box29 .box-title {
    font-size: 1.2em;
    background: var(--orange);
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box29 p {
    padding: 15px 20px;
    margin: 0;
}
/*table*/
table.tire_fee{
    border-collapse: collapse;
    margin: 20px 0;
}
table.tire_fee th{
    font-weight: normal;
    background-color: var(--very-light-orange);
}
table.tire_fee td, .tire_fee th{
    border: solid 1px;
    padding: 1em 1em 1em 1em;

}
table.mobile{
    display: none;
}
table.tire_fee.other td,.tire_fee.other th{
    padding: 1em 0.5em 1em 0.5em;
}
table.fee_example .tire_size{
    background-color: none;
    
}
/*工賃例テーブル*/
table.fee_example{
    border-collapse: collapse;
    margin: 20px;
    width: 430px;
}
table.fee_example th{
    padding: 0.4em 0.4em 0.4em 0.4em;
    border: solid 1px var(--grey);
    background-color: var(--very-light-orange);
}
table.fee_example td{
    padding: 1em 0.8em 1em 0.8em;
    border: solid 1px var(--grey);
}
/*　780px以上　中型スクリーン*/
@media (max-width:780px){
    /*共通部分*/
    .blank1{
        width: 100%;
        height: 30px;
    }
    .blank2{
        width: 100%;
        height: 20px;
    }
    .blank3{
        width: 100%;
        height: 10px;
    }
    /*横幅*/
    .wrapper{
        max-width: 780px;
        margin: 0 auto;
        padding: 0 10%;
    }
    /* header */
    .text_logo{
        font-size: var(--logo_font_h2);
    }
    
    .text_logo::after{
        width:300px;
        height:7px;
    }
    /*画像スライダー*/
    .wrapper{
        max-width: 780px;
    }
    .swiper-container {
        height: 270px;
    }
    .swiper-container img{
        max-width: 100%;
        height: 270px;
        object-fit: cover;
    }
    #img1,#img2,#img3,#img4{
        height: 270px;
    }
    .box_line{
        background-color: var(--orange);
        width: 100%;
        height: 10px;
    }
    /*top円*/
    #page_index .circle {	
        width: 190px;
        height: 190px;
    }
    #page_index .circle-chil {
        width :190px;
    }
    #page_index .img_sunoco,.img_autoway{
        width: 100px;
    }
    /*料金例テーブル*/
    #fee_example_div .f_container_space_between{
        display: block;
    }
    #fee_example_div table.fee_example{
        width: 500px;
    }
}
/*　480px以上　最小スクリーン*/
@media (max-width:480px){
    /*共通部分*/
    html{
        font-size: 90%;
        line-height: 1;
    }
    /*横幅*/
    .wrapper{
        max-width: 480px;
        margin: 0 auto;
        padding: 0 2%;
    }
    /* header */
    .page_header{
        text-align: center;
    }
    .text_logo{
        display: none;
    }
    .logo_cube{
        width: 38px;
        height: 38px;
        background: url("img/logo_cube.png");
        background-size: cover;
    }
    /*共通部分*/
    .blank1{
        width: 100%;
        height: 30px;
    }
    .blank2{
        width: 100%;
        height: 20px;
    }
    .blank3{
        width: 100%;
        height: 10px;
    }
    /*top円*/
    #page_index .img_autoway, #page_index .img_sunoco{
        width: 200px;
    }
    #page_index .circle{
        display: none;
    }
    /*画像スライダー*/
    .wrapper{
        max-width: 480px;
    }
    .swiper-container {
        width: 100%;
        height: 250px;
    }
    .swiper-container img{
    max-width: 100%;
    height: 250px;        
    object-fit: cover;
    }
    .box_line{
        background-color: var(--orange);
        width: 100%;
        height: 10px;
    }
    #img1,#img2,#img3,#img4{
        max-width: 500px;
        height: 230px;
    }
    #img1{
        background-image: url('img/mob_neon.png');
    }
    #img2{
        background-image: url('img/mob_orange.png');
    }
    #img3{
        background-image: url('img/mob_tire_grey.png');
    }
    #img4{
        background-image: url('img/mob_oil.png');
    }
    /*テーブル*/
    table.tire_fee{
        display:none;
    }
    table.mobile{
        display: table;
        width: 100%;
        border-collapse: collapse;
        border-spacing: 0;
        font-size: 14px;
    }
    table.tire_fee_mobile th{
        width: 22%;
        background: rgb(175, 173, 173);
        border: 1px solid var(--grey);
        box-sizing: border-box;
        padding: 15px;
        vertical-align: middle;
        font-weight: bold;
        text-align: center;
    }
    table.tire_fee_mobile td {
        background: #fff;
        border: 1px solid var(--grey);
        box-sizing: border-box;
        padding: 15px;
        vertical-align: top;
        text-align: left;
    }
    /*料金例テーブル*/
    #fee_example_div .f_container_space_between{
        display: block;
    }
    #fee_example_div table.fee_example{
        width: 330px;
    }
    /*電話番号発信*/
    .a_tel {
        pointer-events:visible;
        cursor: default;
        text-decoration:underline;
    }
    
}