@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

* {
    word-break: break-all;
}

body {
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
    outline: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

a:hover img {
    opacity: 0.7;
}

label {
    cursor: pointer;
}

/* MaterialDesignIcons.com */
@font-face {
    font-family: "Material Design Icons";
    src: url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.eot?v=3.6.95");
    src: url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.eot?#iefix&v=3.6.95") format("embedded-opentype"), url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.woff2?v=3.6.95") format("woff2"), url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.woff?v=3.6.95") format("woff"), url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.ttf?v=3.6.95") format("truetype"), url("https://www.2000gt.info/sheater/wp-content/themes/original/assets/fonts/materialdesignicons-webfont.svg?v=3.6.95#materialdesigniconsregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
body {
    font-family: 'Noto Sans JP', sans-serif;/* noto-sans-cjk-jp */
    font-weight: 500;
    font-style: normal;
    color: #333333;
    font-size: 14px;
    line-height: 1.6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #333333;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover img {
    position: relative;
    z-index: 50;
}

/*サイト幅*/
.site_width {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .site_width {
        width: 100%;
    }
}

.page_site_width {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 500px) {
    .page_site_width {
        width: 100%;
    }
}

/*サイト幅無し*/
.site_width_none {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
}

/*ヘッダーcss*/
.header_wrap {
    display: block;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
}

header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_inner .header_logo {
    width: 135px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header_inner .header_main_menu {
    padding-left: 2em;
}

.header_inner .header_main_menu .header_main_menu_high {
    padding-top: 0.5em;
}

.header_inner .header_main_menu .header_main_menu_high h1 {
    font-size: 12px;
    font-weight: 400;
}

.header_inner .header_main_menu .header_main_menu_low {
    padding-top: 0.5em;
}

.header_inner .header_main_menu .header_main_menu_low .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.header_inner .header_main_menu .header_main_menu_low .nav li {
    list-style: none;
}

.header_inner .header_main_menu .header_main_menu_low .nav_li_drop {
    padding: 0 1em 0 1em;
    font-size: 16px;
    line-height: 2.8;
}

.header_inner .header_main_menu .header_main_menu_low .nav_li_drop:first-child {
    padding: 0 1em 0 0em;
}

.header_inner .header_main_menu .header_main_menu_low .nav_li {
    padding: 0 1em 0 1em;
}

.header_inner .header_main_menu .header_main_menu_low .nav_li:last-child {
    padding: 0 0em 0 1em;
}

.header_inner .header_main_menu .header_main_menu_low .nav li a {
    display: block;
    width: 100%;
    text-align: left;
    color: #333333;
    font-size: 16px;
    line-height: 2.8;
    background: #ffffff;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header_inner .header_main_menu .header_main_menu_low .drop_inner li a {
    padding: 0 0.5em 0 0.5em;
}

.header_inner .header_main_menu .header_main_menu_low .nav_a_drop:hover {
    background-color: #ffffff;
    color: #c7c7c7;
    cursor: pointer;
}

.header_inner .header_main_menu .header_main_menu_low .nav_a:hover {
    background-color: #ffffff;
    color: #c7c7c7;
}

.header_inner .header_main_menu .header_main_menu_low .nav_a_drop::before {
    position: relative;
    bottom: -3px;
    left: 0;
    display: inline-block;
    content: "\F35D";
    font-family: Material Design Icons;
    margin: 0 auto;
    font-size: 25px;
    line-height: 1.8;
}

.header_inner .header_main_menu .header_main_menu_low .nav_a::before {
    position: relative;
    bottom: -3px;
    left: 0;
    display: inline-block;
    content: "\F35F";
    font-family: Material Design Icons;
    margin: 0 auto;
    font-size: 25px;
    line-height: 1.8;
}

.header_inner .header_main_menu .header_main_menu_low .nav li ul {
    display: none;
    position: absolute;
    z-index: 999;
}

.header_inner .header_main_menu .header_main_menu_low .nav > li li:hover > a {
    background: #c7c7c7;
}

.header_inner .header_main_menu .header_main_menu_low .nav li ul li a {
    border-top: 1px solid #eee;
}

.header_inner .header_main_menu .header_main_menu_low .content {
    width: 750px;
    height: 200px;
    background: #eee;
    margin: 0 auto;
    padding: 10px;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header_contact_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.header_contact_menu .header_mail {
    width: 251px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header_contact_menu .header_tel {
    width: 251px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/*メディアクエリ*/
@media (max-width: 1500px) {
    .header_contact_menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header_contact_menu .header_mail {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .header_contact_menu .header_tel {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    .top_main_img_box {
        padding-top: 79px;
    }
}

@media (max-width: 1340px) {
    .header_contact_menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header_contact_menu .header_mail {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .header_contact_menu .header_tel {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
}

@media (max-width: 1130px) {
    .header_main_menu {
        display: none !important;
    }
    .header_contact_menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .header_contact_menu .header_mail {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .header_contact_menu .header_tel {
        width: 180px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }
}

@media (max-width: 500px) {
    .header_main_menu {
        display: none !important;
    }
    .header_tel {
        display: none;
    }
}

@media (max-width: 340px) {
    .header_mail {
        display: none;
    }
}

/*----スマホメニューここから----*/
#nav-drawer {
    display: none;
}

@media (max-width: 1130px) {
    header {
        width: 100% !important;
    }
    header .header_inner .header_logo {
        width: 110px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    header .header_inner .header_main_menu .header_main_menu_low .nav li a {
        font-size: 14px;
    }
    .header_inner {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #nav-drawer {
        display: block;
        position: relative;
        padding: 1em;
    }
    .nav-unshown {
        display: none;
    }
    #nav-open {
        display: inline-block;
        width: 30px;
        height: 22px;
        vertical-align: middle;
    }
    #nav-open span, #nav-open span:before, #nav-open span:after {
        position: absolute;
        height: 3px;
        /*線の太さ*/
        width: 25px;
        /*長さ*/
        border-radius: 3px;
        background: #555;
        display: block;
        content: '';
        cursor: pointer;
    }
    #nav-open span:before {
        bottom: -8px;
    }
    #nav-open span:after {
        bottom: -16px;
    }
    #nav-close {
        display: none;
        /*はじめは隠しておく*/
        position: fixed;
        z-index: 99;
        top: 0;
        /*全体に広がるように*/
        right: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    /*中身*/
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 600px;
        z-index: 9999;
        /*最前面に*/
        width: 90%;
        /*右側に隙間を作る（閉じるカバーを表示）*/
        max-width: 330px;
        /*最大幅（調整してください）*/
        height: 100%;
        background: #fff;
        /*背景色*/
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        /*滑らかに表示*/
        -webkit-transform: translateX(300%);
        transform: translateX(300%);
        /*右に隠しておく*/
    }
    #nav-content ul {
        padding: 1em 4.2em 0 1em;
    }
    #nav-content ul li {
        border-top: solid 1px #bfbfbf;
    }
    #nav-content ul li:last-child {
        border-bottom: solid 1px #bfbfbf;
    }
    #nav-content ul li a {
        text-decoration: none;
        color: #515151;
        display: block;
        padding: 1em 0;
    }
    #nav-content ul li a i {
        padding-right: 0.5em;
    }
    /*チェックが入ったらもろもろ表示*/
    #nav-input:checked ~ #nav-close {
        display: block;
        /*カバーを表示*/
        opacity: .5;
    }
    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(195%);
        /*中身を表示（右へスライド）*/
        -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
        box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    }
}

.contact_block {
    padding: 1em 4.2em 0 1em;
}

.contact_block p {
    text-align: center;
}

.contact_block .tel_number {
    font-size: 20px;
    background-color: #226b34;
    border: solid 2px #226b34;
    border-radius: 20px;
}

.contact_block .tel_number a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.sm_logo {
    padding-bottom: 0.5em;
}

@media (max-width: 610px) {
    header {
        width: 100% !important;
    }
    header .header_inner .header_logo {
        width: 80px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }
    header .header_inner .header_main_menu .header_main_menu_low .nav li a {
        font-size: 14px;
    }
}

@media (max-width: 470px) {
    #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 385px;
        z-index: 9999;
        /*最前面に*/
        width: 90%;
        /*右側に隙間を作る（閉じるカバーを表示）*/
        max-width: 200px;
        /*最大幅（調整してください）*/
        height: 100%;
        background: #fff;
        /*背景色*/
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        /*滑らかに表示*/
        -webkit-transform: translateX(300%);
        transform: translateX(300%);
        /*右に隠しておく*/
    }
    #nav-content ul {
        padding: 1em 1.5em 0 1em;
    }
    #nav-content ul li {
        border-top: solid 1px #515151;
    }
    #nav-content ul li:last-child {
        border-bottom: solid 1px #515151;
    }
    #nav-content ul li a {
        text-decoration: none;
        color: #515151;
        display: block;
        padding: 1em 0;
    }
    #nav-content ul li a i {
        padding-right: 0.5em;
    }
    /*チェックが入ったらもろもろ表示*/
    #nav-input:checked ~ #nav-close {
        display: block;
        /*カバーを表示*/
        opacity: .5;
    }
    #nav-input:checked ~ #nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(195%);
        /*中身を表示（右へスライド）*/
        -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
        box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    }
    .contact_block {
        padding: 1em 1.5em 0 1em;
    }
    .contact_block p {
        text-align: center;
    }
    .contact_block .tel_number {
        font-size: 20px;
    }
}

/*----スマホメニューここまで----*/


/** restyle 追加css *****************************************/
.footer_mail_box{
	margin-top: 114px !important;
}
/** layout_style *****************************************/
.bl_p16 p{
    font-size: 16px;
}
.ly_flex{
    display: flex;
    justify-content: center;
}
.ly_start{
    justify-content: start;
    align-items: start;
}
.ly_reverse{
    flex-direction: row-reverse;
}
.ly_between{
    justify-content: space-between;
}
.bl_flex_item{
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    margin-right: 24px;
}
.bl_flex_item:last-child{
    margin-right: 0;
}
.ly_reverse .bl_flex_item:first-child{
    margin-right: 0;
    margin-left: 24px;
}
.ly_reverse .bl_flex_item:last-child{
    margin-right: 24px;
}
.ly_between .bl_flex_item{
    width: auto;
    max-width: 100%;
}
.ly_between .bl_flex_item:last-child{
    margin-right: 0;
}
.ly_center{
    align-items: center;
}
.ly_center .bl_flex_item img{
    display: block;
    margin: 0 auto;
}
.bl_btn_flex{
	display: flex;
	margin-top: 24px;
}
.bl_btn_flex a{
	margin-bottom: 16px;
}
@media(min-width: 768px){
	.bl_btn_flex a{
	margin-right: 16px;
}
}
@media (max-width: 767px){
.ly_flex{
    flex-direction: column;
    align-items: center;
}
.bl_flex_item{
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.bl_btn_flex{
		flex-direction: column;
	}
}

.ly_banner_sec{
    margin-top: 40px;
}

.ly_page_sec{
    margin: 50px auto 0 auto;
    padding: 80px 0;
}
.ly_page_sec h2{
    font-size: 35px;
    text-align: center;
    padding-bottom: 0.5em;
    margin-bottom: 20px;
}
.bl_price{
    width: 100%;
    margin: 0 auto;
    padding-top: 2em;
}
.bl_price th{
    width: 50%;
    background-color: #d8d8d8;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    padding: 2em;
    font-size: .85em;
    color: #50535d;
}
.bl_price td{
    width: 50%;
    border: 2px solid #eee;
    padding: 2em;
}
@media (max-width: 767px){
    .ly_page_sec{
    margin: 30px auto 0 auto;
    padding: 20px 0;
}
.ly_page_sec h2{
    font-size: 24px;
    padding-bottom: 0.5em;
    margin-bottom: 20px;
}
}

/*** 鈑金ページ **************************/
.bl_repair_flow{
    margin-bottom: 40px;
}
.bl_repair_flow .bl_flex_item{
    width: auto;
    max-width: 100%;
}
.bl_repair_flow h5{
    text-align: center;
    color: #024a96;
    font-size: 18px;
    margin: 8px 0;
    font-weight: bold;
}
.bl_btn_sec{
	padding: 24px 0;
}
.el_btn{
	color: #fff;
	display: inline-block;
	padding: 12px 48px;
	background-color: #05549b;
	transition: 0.3s all;
	position: relative;
}
.el_btn:before{
	content: "";
	width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
	position: absolute;
	right: 12px;
	top: 16px;
}
.el_btn:hover{
	background-color: #02427b;
}
@media (max-width: 767px){
    .bl_repair_flow .ly_flex{
    flex-direction: row;
}
}
/*** 鈑金ページ **************************/
.bl_keyList{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.bl_keyList li{
    text-align: center;
    margin-right: 32px;
    margin-bottom: 24px;
}
.bl_keyList li img{
    margin-bottom: 8px;
}
.bl_keyList li: last-child{
    margin-right: 0;
}
.bl_keyList h5{
	background-color: #024a96;
	text-align: center;
	color: #fff;
	font-size: 16px;
	padding: 8px 16px;
	border-radius: 8px;
}
p.el_bankinMerit_title{
    color: #024a96;
    font-size: 24px;
    margin: 16px 0;
    font-weight: bold;
}

@media (max-width: 767px){
    .bl_keyList{
        flex-wrap: wrap;
        align-items: flex-start;
		justify-content: space-between;
    }
.bl_keyList li{
    margin-right: 0;
	width: 49%;
	text-align: center;
}
	.bl_keyList h5{
		color: #024a96;
	background-color: #fff;
	font-size: 13px;
	padding: 0;
	border-radius: 0;
}
p.el_bankinMerit_title{
    font-size: 20px;
}
}
/*** 保険ページ ***************************/
.ly_ir_flex{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}
.bl_irImg{
	text-align: center;
	width: 300px;
}
.bl_irImg img{
	max-height: 150px;
}
.bl_irImg p{
	margin-top: 16px;
	font-size: 23px;
    font-weight: bold;
}
@media (max-width: 767px){
	.ly_ir_flex{
		flex-direction: column;
	}
	.bl_irImg{
		width: 100%;
	}
	.bl_irImg img{
		max-width: 240px;
		max-height: auto;
	}
}

/*** component ***************************/
.el_desc{
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 24px;
}

/*** modi **************************/
.md_text_center{
    text-align: center;
	display: block;
}
.md_block_center{
    text-align: center;
}
.md_img_center{
	display: block;
    margin: 0 auto 16px;
}
.md_sec_mb{
	margin-bottom: 40px;
}
.el_red_text{
	color: #ff7b22;
	font-weight: bold;
}
.md_emText{
	font-size: 24px;
}

.md_textBlue{
	color: #024a96;
}
.spbr{
	display: inline-block;
}

/*** 新着情報 **************************/
.news_box{
	border:solid 1px #888;
	margin-top:80px;
	display:flex;
	align-items:center;
	padding:30px 20px;
	box-sizing:border-box;
}
.news_box h2{
	text-align:center;
	color:#0A579D;
}
@media(min-width:768px){
	.news_box h2{
		font-size:2.6em;
		width:25%;
	}
	.news-inner-box{
		width:75%;
		padding: 20px;
	}
}
@media(max-width:767px){
	.news_box h2{
		margin-bottom:20px;
		font-size:2.2em;
	}
	.news_box{
		flex-direction:column;
		width:90%;
		margin-left:auto;
		margin-right:auto;
	}
}
.news_box h3{
	padding-bottom:.1em;
	margin-bottom:.5em;
	border-bottom:solid 1px #aaa;
}

.news-inner-box h3{
	font-size:1.2em;
}
.news-inner-box h3 span{
	font-size:1.4em;
	display:inline-block;
}
.news-inner-box p{
	font-size:1.3em;
}

/*--      ご依頼からの流れの「お支払い方法」20250218      --*/

.payment_style .payment_icon-style .payment_img-style span{
	background-color:red;
	width: 300px;
	height: 300px;
	display: block;
}

.payment_title-style{
	display:flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.payment_icon-style{
	display:flex;
	flex-direction: column;
    align-items: center;
}

.payment_title-style .payment_icon-style .payment_title{
    font-size: 35px;
    padding-bottom: 0.5em;
    border-bottom: solid 3px #bfbfbf;
	margin-bottom: 0.5em;
	display: inline-block;
}

.payment_text_Note-style p{
	text-align: center;
}

.payment_Note-style{
	font-size: inherit;
	margin: 20px 0;
}

.rentalcar_Line{
	background-image: linear-gradient(to left top, transparent calc(50% - 1px), #D8D8D8 50%, #D8D8D8 calc(50% + 1px), transparent calc(50% + 1px));
}

/*--      ご依頼からの流れの「お支払い方法」20250218　終わり      --*/



















