@charset "utf-8";

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　スライダー付属ボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*---スライド両サイドのarrow---*/
.slick-prev,.slick-next {
    border: none;
    background-color: transparent;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: transparent;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}

.slick-prev:before, .slick-next:before {
    width: 20px;
    height: 20px;
    border-top-width: 5px;
    border-right-width: 5px;
    border-color: #e60012;
}

/*---スライド下のドット---*/
.slick-dots {
    bottom: -40px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
汎用　＞　店舗ブログ　cmn_post_list
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cmn_post_list {
    margin: 0 -20px;
}

.cmn_post_list.slick-dotted.slick-slider{
    margin-bottom: 70px;
}

.cmn_post_list .li {
    background-color: #fff;
    margin: 0 20px;
    /*---フロートした要素の高さを揃える為の記述---*/
    padding-bottom: 500px;
    margin-bottom: -500px;
}

.cmn_post_list div.li:hover {
    opacity: 1;
}

.cmn_post_list .f_wrap {
    justify-content: space-between;
    padding: 30px 30px 30px 40px;
}

.cmn_post_list .area_a {
    width: 160px;
    height: 160px;
    position: relative;
}

.cmn_post_list .area_a .cat {
    width: 100%;
    background-color: rgba(186, 0, 0, .7);
    color: #fff;
    font-size: 14px;
    padding: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

.cmn_post_list .img_container {
    padding-top: 160px;
}

.cmn_post_list .area_b {
    width: calc(100% - 195px);
    font-size: 14px;
}

.cmn_post_list .area_b > *:not(:last-child) {
    margin-bottom: 10px;
}

.cmn_post_list .area_b .ttl {
    font-size: 16px;
}

.cmn_post_list .area_b .ttl a {
    color: inherit;
    text-decoration: none;
}

.cmn_post_list .area_b .post_tags span {
    background-color: #eeeeee;
    color: #606060;
    padding: 1px 20px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    margin: 0 5px 5px 0;
    display: inline-block;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部　＞　Google reCAPTCHAバッチ　邪魔なため非表示に
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.grecaptcha-badge {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ローディングアイコン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sk-cube-grid {
    width: 60px;
    height: 60px;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #333;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　サイトのテーマ色
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.sp[class*="voice"] ul.child_navi a[href*="voice"], body.sp dl.type01 [class*="current"] > a, body.sp dl.type01 dt, a.basic_btn02, .basic_list01 li:before, ol.basic_list02 > li:after, a.basic_color_font, [class*="current"] .basic_color_font_cur, [class*="current"] .basic_color_font_cur:hover, .basic_color_font_bf:before, .basic_color_font_af:after {
    color: #ff6c00;
}

body.sp dl.type01, body.sp dl.type01 > dt .arrow, h3[class*="h3a"], h2[class*="h2a"], .basic_box02, .basic_list02 > li, .basic_color_border, .basic_color_border_bg:before, .basic_color_border_af:after {
    border-color: #ff6c00;
}

body.sp dl.type01 dd > ul:before, a.basic_btn01, h3[class*="h3b"], ol.basic_list02 > li:before, .basic_color_bg, .basic_color_bg_bf:before, .basic_color_bg_af:after {
    background-color: #ff6c00;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　汎用見出し
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* [.h2a][.h2b]共通のスタイル */
h2[class*="h2"] {
    font-size: 32px;
    font-weight: bold;
    padding-top: 70px;
}

h2[class*="h2a"] {
    border-top: 2px solid #ff6c00;
    border-bottom: 2px solid #ff6c00;
    padding: 10px 0;
}

h2[class*="h2b"]:before {
    content: '';
    width: 60px;
    height: 51px;
    background: url(https://giryo.co.jp/wordpress/wp-content/themes/cyber-child-yasui/images/svg/racing.svg) no-repeat 50% / contain;
}

h3[class*="h3"] {
    font-weight: bold;
    background-color: #ff6c00;
}

/* [.h3a]のスタイル */
h3[class*="h3a"] {
    background: #fff3eb;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　テーブル01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.basic_table01 th, .basic_table01 td {
    border: 1px solid #c9c9c9;
}

.basic_table01 th {
    background-color: #f6f6f6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　汎用ボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.basic_box01 {
    background-color: #fff9e7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　汎用ボタン01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
a.basic_btn01 {
    border-radius: 10em;
    max-width: 800px;
    z-index: 1;
    padding: 17px 35px 17px 25px;
}

a.basic_btn01:hover {
    opacity: 1;
}

a.basic_btn01:before {
    content: '';
    position: absolute;
    z-index: -1;
    background: #e60012;
    height: 100%;
    left: -100%;
    top: 0%;
    transform: skew(50deg);
    transition-duration: .5s;
    transform-origin: top left;
    width: 0%;
}

a.basic_btn01:hover:before {
    width: 200%;
}

a.basic_btn01:after {
    right: 15px;
    content: '\e91b';
    font-size: 18px;
    margin-top: -9px;
    transition: .6s;
}

a.basic_btn01:hover:after {
    right: 8px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
大垣やすい　＞　固定ページ用プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page_promo {
    height: 370px;
}

.page_promo .inner {
    display: table;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 35px 35px;
    border-top: 12px solid #ff6c00;
    max-width: 700px;
    min-width: 390px;
}

body[class*="page"] .page_promo .sub_ttl {
    display: none;
}

.page_promo .sub_ttl {
    background-color: transparent;
    padding: 0;
}

.page_promo p.catchcopy {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　汎用ボタン01
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-shaken p.btn {
    text-align: center;
}

body.page-shaken a.basic_btn01 {
    padding: 25px 35px;
    font-size: 24px;
    font-weight: bold;
    min-width: 340px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　h2
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-shaken h2 {
    font-weight: bold;
    text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　エディタ－エリア内の画像の下余白をbody.page-shakenのみ0pxに変更
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-shaken .editor_area img {
    margin-bottom: 0px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　プロモ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-shaken .page_promo {
    height: calc(100vh - 230px);
    /*---画面幅を縮めた際に高さが小さくなりすぎないようmin-heightを指定---*/
    min-height: 495px;
    /*---max-height:タブレットを縦で見た際の高さ---*/
    max-height: 36.3vw;
    background: url(https://giryo.co.jp/wordpress/wp-content/themes/cyber-child-yasui/images/promo01.jpg?ver=20260401) no-repeat 50% / cover;
}

body.page-shaken .page_promo img {
    display: none;
}

body.page-shaken .page_promo .txt_box {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　fee
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#home_fee .h2_wrap {
    background-color: #ff6c00;
    padding: 25px 0;
}

div#home_fee h2 {
    font-size: 36px;
    color: #fff;
    /*---beforeの為の記述---*/
    display: table;
    margin: 0 auto;
    position: relative;
}

div#home_fee h2:before {
    content: '';
    display: block;
    width: 70px;
    height: 70px;
    background: url(https://giryo.co.jp/wordpress/wp-content/themes/cyber-child-yasui/images/svg/saifu_shiro.svg) no-repeat 50% / contain;
    position: absolute;
    top: calc(50% - 35px);
    left: -95px;
}

div#home_fee .ttl_wrap {
    font-weight: bold;
    justify-content: center;
    margin-bottom: 25px;
}

div#home_fee .ttl_wrap p.main_ttl {
    font-size: 60px;
    margin-right: 40px;
}

div#home_fee .ttl_wrap p.yen_wrap {
    font-size: 30px;
}

div#home_fee .ttl_wrap span.yen_a {
    margin-right: 15px;
}

div#home_fee .ttl_wrap span.big {
    font-size: 60px;
}

div#home_fee .ttl_wrap span.yen_b span.big {
    color: #e60012;
    /*---beforeの為の記述---*/
    position: relative;
    display: inline-block;
    padding-left: 65px;
    font-size: 80px;
    line-height: 1;
}

div#home_fee .ttl_wrap span.yen_b span.big:before {
    content: '\e925';
    font-family: "icomoon";
    display: inline-block;
    font-size: 70px;
    line-height: 1;
    position: absolute;
    left: 0px;
    top: calc(50% - 30px);
}

div#home_fee p.cost {
    margin-bottom: 30px;
}

div#home_fee ul.items {
    border: 3px solid #eeeaeb;
    padding: 20px 15px!important;
    justify-content: space-between;
    margin-bottom: 45px;
}

div#home_fee ul.items li {
    width: 25%;
    font-weight: bold;
}

div#home_fee ul.items li:not(:first-child) {
    padding-left: 10px;
}

div#home_fee ul.items li:not(:last-child) {
    border-right: 1px solid #eeeaeb;
    padding-right: 10px;
}

div#home_fee ul.items li .f_wrap {
    align-items: flex-start;
    justify-content: center;
}

div#home_fee ul.items li p.ttl {
    font-size: 18px;
    color: #fff;
    background-color: #e60012;
    padding: 5px;
    margin-right: 10px;
    min-width: 100px;
    text-align: center;
}

div#home_fee ul.items li p.type {
    font-size: 14px;
    line-height: 1.3;
}

div#home_fee ul.items li p.yen {
    font-size: 27px;
    text-align: center;
}

div#home_fee ul.items li p.yen span.big {
    font-size: 44px;
}

div#home_fee p.btn {
    margin-bottom: 50px;
}

div#home_fee .txt_wrap {
    justify-content: space-between;
}

div#home_fee .txt_wrap p.main_lead {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
    width: 50%;
}

div#home_fee .txt_wrap p.main_lead strong {
    background: linear-gradient(to right, #ffff00 50%, transparent 50%) 0% bottom / 200% 45% no-repeat;
}

div#home_fee .txt_wrap p.main_lead span.big {
    font-size: 76px;
    color: #e60012;
}

div#home_fee .txt_wrap p.main_txt {
    width: 575px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　reason
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#home_reason {
    background-color: #ffe9d9;
}

div#home_reason h2 {
    font-size: 32px;
    /*---beforeの為の記述---*/
    position: relative;
    display: table;
    margin: 0 auto 40px;
}

div#home_reason h2 strong {
    font-size: 64px;
}

div#home_reason h2:before {
    content: '';
    display: table-cell;
    width: 75px;
    height: 100px;
    background: url(https://giryo.co.jp/wordpress/wp-content/themes/cyber-child-yasui/images/svg/hito.svg) no-repeat 50% / contain;
    position: absolute;
    top: calc(50% - 50px);
    left: -105px;
}

div#home_reason ol.items {
    justify-content: space-between;
    margin-bottom: 20px;
}

div#home_reason ol.items li {
    width: 580px;
    background-color: #fff;
    padding: 40px 30px;
    margin-bottom: 30px;
    position: relative;
}

div#home_reason ol.items li:hover {
    opacity: 1;
}

div#home_reason ol.items li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 115px 115px 0 0;
    border-color: #ff6c00 transparent transparent transparent;
}

div#home_reason ol.items li:after {
    content: '0' counters(ol_cnt, "");
    font-size: 40px;
    font-family: 'Roboto', my_gothic;
    font-style: italic;
    line-height: 1;
    position: absolute;
    top: 13px;
    left: 13px;
    color: #fff;
}

div#home_reason ol.items li p.img_container {
    padding-top: 220px;
    margin-bottom: 15px;
}

div#home_reason ol.items li span.license {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #fff;
    padding: 2px 20px;
    border: 1px solid #fff;
    line-height: 1.5;
    text-align: center;
}

div#home_reason ol.items li p.ttl {
    text-align: center;
    margin-bottom: 30px;
    /*---li:beforeに被らない為の記述---*/
    padding: 0 45px;
}

div#home_reason ol.items li p.ttl a {
    text-decoration: none;
    color: inherit;
    font-size: 30px;
    font-weight: bold;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　ブログ 2021-08-06 take
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#home_blog {
    background-color: #fffceb;
}

div#home_blog h2{
    font-size: 36px;
    margin-bottom: 40px;
}

div#home_blog p.no_hit{
    text-align: center;
    margin-bottom: 50px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　access
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#home_access .f_wrap {
    justify-content: flex-end;
    align-items: center;
}

div#home_access .area_a {
    width: 500px;
    text-align: center;
    margin-right: 100px;
}

div#home_access .area_a p.main_ttl {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
}

div#home_access .area_a p.addr {
    font-size: 24px;
}


div#home_access .area_a p.open {
    font-size: 18px;
    margin-bottom: 15px;
}

div#home_access .area_a a.basic_btn01 {
    font-size: 16px;
    padding: 18px 30px;
    min-width: 285px;
}

div#home_access .area_a a.basic_btn01:after {
    font-size: 12px;
    margin-top: -6px;
    right: 7px;
}

div#home_access .area_a a.basic_btn01:hover:after {
    right: 3px;
}

div#home_access p.map iframe {
    vertical-align: bottom;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　ページ送り(一覧／詳細共通部分)body.page-shakenのみ非表示に変更
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.page-shaken .paging_common {
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
車検ページ　＞　コンタクトエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#contact_area {
    background-color: #fff9db;
}

div#contact_area p.main_lead {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

div#contact_area .f_wrap {
    justify-content: space-between;
}

div#contact_area .f_wrap p {
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

div#contact_area .f_wrap p.info {
    border: 3px solid #d1d1d1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター　＞　インフォメーションエリア
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
div#footer_info {
    display: none;
}
