@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
figure,
nav,
footer,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    /* line-height: 2.5; */
    font-size: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
}

img {
    width: 100%;
    vertical-align: bottom;
    border: none;
}

a {
    cursor: pointer;
    line-height: 1;
    text-decoration: none;
    transition: 0.3s;
}

main {
    padding-top: 78px;
}

/*nav---------------------------------------*/
#header {
    display: flex;
    justify-content: space-between;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.1);
    z-index: 9000;
    border-bottom: 1px solid #fff;
    width: 100%;
    align-items: center;
}

.header_area {
    margin: 0 auto;
    width: calc(100% - 40px);
    padding: 10px 20px;
    background: #fff;
}

.logo{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
}

.logo img{
    width: 60px;
}

.header_logo {
    flex-shrink: 0;
}

.global_navi_area {
    display: flex;
    text-align: right;
    letter-spacing: -0.4em;
    transition: all 200ms ease-out 0s;
}

#header nav{
    flex-shrink: 0;
}

ul.global_navi_area li {
    position: relative;
    /* border-right: 1px solid #D3D3D3; */
}

ul.global_navi_area li::after{
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #D3D3D3;
}

ul.global_navi_area li:last-child::after {
    content: none;
}

ul.global_navi_area li a {
    position: relative;
    display: inline-block;
    font-size: clamp(0.625rem, -0.536rem + 1.895vi, 0.85rem);
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin: 0 30px 0 10px;
    padding: 10px 10px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

ul.global_navi_area li a::after {
    position: absolute;
    top: 50%;
    right: -10px;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #303F9F;
    border-right: 2px solid #303F9F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.3s;
}

ul.global_navi_area li a:hover::after {
    border-top: 2px solid #F57C00;
    border-right: 2px solid #F57C00;
}

ul.global_navi_area li a:hover {
    color: #F57C00;

}

ul.global_navi_area li.now a {
    color: #F57C00;
}

.site-header {
    background: #fffffff2;
    display: flex;
    z-index: 10000;
    position: absolute;
    margin-top: -120px;
}

.site-header.fixed {
    position: fixed;
    top: 0;
    margin-top: -0px;
}

.site-header {
    position: fixed;
    top: 0;
    margin-top: -0px;

}

/*共通パーツ---------------------------------------*/
.inner {
    width: 1100px;
    max-width: 90%;
    margin: 0px auto;
}

.h2_center {
    text-align: center;
    font-size: 40px;
    color: #F57C00;
    font-weight: bold;
    margin-bottom: 40px;
}

.h2_center span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    text-align: center;
    color: #303F9F;
    font-weight: bold;
}

.h2_center span::before,
.h2_center span::after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: #303F9F;
}

.h2_center span::before {
    margin-right: 10px;
}

.h2_center span::after {
    margin-left: 10px;
}

.h2_center.white {
    color: #fff;
}

.h2_center.white span {
    color: #fff;
}

.h2_center.white span::before,
.h2_center.white span::after {
    background-color: #fff;
}


.h2_left {
    font-size: 40px;
    color: #F57C00;
    font-weight: bold;
    margin-bottom: 40px;
}

.h2_left span {
    display: flex;
    align-items: center;
    font-size: 18px;
    text-align: center;
    color: #303F9F;
    font-weight: bold;
}

.h2_left span::after {
    content: '';
    width: 80px;
    height: 2px;
    background-color: #303F9F;
    margin-left: 10px;
}

/*フェードイン---------------------------------------*/
.fadeIn{
    opacity: 0;
    transform: translate(0, 30px);
    transition: 1s;
}

.fadeIn_on{
    transform: translate(0, 0);
    opacity: 1;
}

/*btn---------------------------------------*/
.more_orange {
    width: fit-content;
    min-width: 320px;
    text-align: center;
    margin: 0px auto;
    padding: 18px 30px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    font-size: 110%;
    line-height: 1;
    letter-spacing: 5px;
    background: #F57C00;
    display: block;
    position: relative;
}

.more_orange::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.more_orange:hover {
    background: #303F9F;
}

.more_orange.white {
    border: 2px solid #F57C00;
    color: #F57C00;
    background: #fff;
}

.more_orange.white::after {
    border-top: 2px solid #F57C00;
    border-right: 2px solid #F57C00;
}

.more_orange.white:hover {
    border: 2px solid #fff;
    color: #fff;
    background: #F57C00;
}

.more_orange.white:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/*top---------------------------------------*/
.top_lead {
    position: relative;
    padding: 80px 0px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
}

.top_lead::before {
    content: '';
    display: block;
    width: 500px;
    height: 37px;
    background-image: url(../images/top_town_left.png);
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.top_lead::after {
    content: '';
    display: block;
    width: 500px;
    height: 37px;
    background-image: url(../images/top_town_right.png);
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

/*top_service---------------------------------------*/
.top_service {
    position: relative;
    background: #FFFEEE;
    padding: 80px 0;
}

.top_service::before {
    content: '';
    display: block;
    width: 750px;
    height: 220px;
    background-image: url(../images/top_service_left.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.top_service::after {
    content: '';
    display: block;
    width: 750px;
    height: 220px;
    background-image: url(../images/top_service_right.png);
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

ul.top_service_list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    width: 1000px;
    max-width: 100%;
    margin: 0px auto 40px;
}

ul.top_service_list li {
    width: calc(100% / 2 - 40px);
    text-align: center;
    border-radius: 10px;
    background: #fff;
}

ul.top_service_list li a {
    display: block;
    padding: 25px;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
}

ul.top_service_list li h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto 10px;
    padding-bottom: 5px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    color: #303F9F;
    transition: 0.3s;
}

ul.top_service_list li svg {
    width: 24px;
    height: auto;
    margin-left: 0.5rem;
    fill: #303F9F;
}

ul.top_service_list li a:hover {
    box-shadow: 0 0 15px -5px #ffcf62;
}

ul.top_service_list li a:hover h3 {
    color: #F57C00;
}

ul.top_service_list li a:hover svg {
    fill: #F57C00;
    transition: 0.3s;
}

.top_service_list_img {
    border-radius: 7px;
    overflow: hidden;
}

ul.top_service_list li div.text {
    margin: 0px auto;
    padding: 20px 0px 10px;
}


ul.top_service_list li div.text p {
    font-size: 14px;
    line-height: 2;
}

/*top-info---------------------------------------*/
section.top-info {
    margin: 0px auto;
    padding: 80px 0px;
}

section.top-info .inner {
    position: relative;
}

section.top-info .inner::before {
    content: '';
    display: block;
    width: 47px;
    height: 49px;
    background-image: url(../images/top_square_left.png);
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

section.top-info .inner::after {
    content: '';
    display: block;
    width: 47px;
    height: 49px;
    background-image: url(../images/top_square_right.png);
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

section.top-info .info_box {
    width: calc(960px - 240px);
    margin: 0px auto;
    padding: 0px 60px 40px;
    background: #FFF;
    z-index: 100;
    border-radius: 10px;
    position: relative;
}

section.top-info div.info_list {
    margin-bottom: 40px;
}

section.top-info dl {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-bottom: 3px solid #d3d3d3;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    position: relative;
}

section.top-info dl::before {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #303f9f;
    bottom: -3px;
    left: 0;
    width: 18%;
}


section.top-info a dl::after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-top: 2px solid #303F9F;
    border-right: 2px solid #303F9F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

section.top-info a:hover dl::after {
    border-top: 2px solid #F57C00;
    border-right: 2px solid #F57C00;
    transition: 0.3s;
}

section.top-info a:hover dl dd {
    color: #F57C00;
}

section.top-info dl dt {
    width: 120px;
    font-size: 100%;
    line-height: 1;
    text-decoration: none;
    color: #656969;
}

section.top-info dl dd {
    width: calc(100% - 120px);
    font-size: 90%;
    line-height: 1.8;
    color: #303f9f;
    transition: 0.3s;
}

section.top-info a.more:hover {
    background: #F57C00;
}

/*top_shoplist------------------------------------------------*/
.top_shoplist {
    padding: 0 0 150px;
}

.top_shoplist_area {
    position: relative;
}

.top_shoplist_text {
    padding: 40px;
    background: #F2F2F2;
    width: 63%;
    border-radius: 10px;
}

.top_shoplist_text .text {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 40px;
}

.top_shoplist .more_orange {
    margin: inherit;
}

.top_shoplist_img {
    position: absolute;
    right: 0;
    top: 40px;
}

/*top_company------------------------------------------------*/
section.top_company {
    width: 100%;
    padding: 80px 0px;
    background: url(../images/page_tit.png) no-repeat;
    background-size: cover;
    position: relative;
}

section.top_company div.txt {
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 2;
    color: #fff;

}

.form_area {
    margin-top: 40px;
}

/*top_recruit------------------------------------------------*/
.top_recruit {
    padding: 80px 0;
}

.top_recruit_area .text_area {
    position: absolute;
    top: 0;
    left: -150px;
}

.top_recruit_area .text {
    color: #fff;
    background: #F57C00;
    display: inline;
    padding: 5px;
    line-height: 3;
    background: #F57C00;
}

.top_recruit_area .img {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.top_recruit_area .img img {
    border-radius: 10px;
    box-shadow: 15px 15px 0px -5px #F57C00;
    margin-bottom: 40px;
}

.top_recruit_area .img::before {
    content: '';
    display: block;
    width: 50px;
    height: 49px;
    background-image: url(../images/top_recruit_decoration.png);
    background-size: contain;
    position: absolute;
    top: -35px;
    right: -40px;
    background-repeat: no-repeat;
    background-size: contain;
}

.recruit_more{
    margin-bottom: 80px;
}

/*-footer-----------------------------------------------*/
#footer {
    padding-top: 40px;
    background: #F2F2F2;
    overflow: hidden;
}

.footer-inner {
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-inner-left {
    box-sizing: border-box;
    width: 45%;
}

.footer-logo {
    margin: 0 0 10px;
    text-align: left;
    color: #333;
    font-size: 180%;
    line-height: 1;
}

.footer-logo img {
    width: 240px;
}

.footer-logo a:hover {
    opacity: 0.6;
}

.footer-logo span {
    display: block;
    margin-top: 10px;
    font-size: 100%;
}

.footer-address {
    text-align: left;
    font-size: 80%;
    line-height: 170%;
}

.footer-inner-right {
    width: 50%;
    text-align: right;
    display: flex;
    align-items: top;
    flex-wrap: wrap;
    justify-content: space-between;
}

ul.footer-nav {
    width: calc(100% / 2);
    text-align: left;
}

.footer-nav li {
    line-height: 1;
    padding: 10px 0px;
}

.footer-nav li a {
    font-size: 90%;
    text-decoration: none;

}

.footer-nav li a:hover {
    color: #303F9F;
    text-decoration: underline;
}

.copyright {
    clear: both;
    padding: 15px 0px;
    font-size: 80%;
    text-align: center;
    color: #FFF;
    background: #727272;
}

/*contents-----------------------------------------------------------------------------*/
.page_tit {
    margin-bottom: 0px;
}

.page_tit div.txt {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.page_tit div.txt.recruit {
    color: #000;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
}

.page_tit div.txt.recruit span {
    color: #000;
}

.page_tit img {
    object-fit: cover;
    width: 100%;
}

.page_tit_orange {
    text-align: center;
    font-size: 30px;
    color: #F57C00;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page_bold_text_center {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 2;
}

.page_bold_text_center p{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
}

.page_bold_text_center p + p{
    margin-top: 1rem;
}

/*-page_tit-----------------------------------------------*/
h2.h2tit {
    margin: 0px auto;
    text-align: center;
    position: relative;
    height: 270px;
}

.page_tit_blue {
    position: relative;
    text-align: center;
    font-size: 32px;
    color: #303F9F;
    font-weight: bold;
    margin-bottom: 40px;
}

.page_tit_blue::after {
    position: absolute;
    bottom: -10px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    background: #F57C00;
}

/*service---------------------------------------*/

.service {
    padding: 80px 0;
}

ul.service_list {
    display: flex;
    gap: 40px 30px;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0px auto;
    margin-bottom: 60px;
    justify-content: center;
}

ul.service_list li {
    width: calc(100% / 3 - 30px);
    text-align: l;
}

ul.service_list li h3 a {
    width: 100%;
    display: block;
    padding: 15px 10px;
    background: #f2f1f4;
    font-size: 110%;
    line-height: 1;
    position: relative;
    text-decoration: none;
    color: #324c5a;
    font-weight: bold;

}

ul.service_list li h3 a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #2e2e2e;
    border-right: 2px solid #2e2e2e;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

ul.service_list li h3 a:hover {
    background: #da0816;
    color: #fff;
}

ul.service_list li h3 a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.service .inner .main_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.service .inner .main_block.car {
    align-items: flex-start;
}

.service .inner .main_block.car a img {
    width: 60%;
}

.service .inner .main_block .photo {
    width: 48%;
    box-shadow: 15px 15px 0px -5px #F57C00;
    border-radius: 10px;
    overflow: hidden;
}

.service .inner .main_block .text {
    width: 48%;
    padding: 20px 0;
}

.service .inner .main_block p {
    margin-bottom: 20px;
    font-size: 94%;
    line-height: 1.8;
    color: #324c5a;
    font-weight: bold;

}

.service .inner .main_block .more_orange.white {
    margin: inherit;
}

.service .inner .main_block .text p span {
    font-size: 85%;
    font-family: inherit;
}

.service .inner .main_block.maintenance .text {
    font-size: 150%;
    line-height: 2;
}

.service .inner .contents_block {
    width: calc(100% - 20px);
    margin-bottom: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 0px 0px;
    border-bottom: 1px solid #eee;
    justify-content: space-between;
}

.service .inner .contents_block .text {
    width: calc(68% - 0px);
}

.service .inner .contents_block.driveon .text {
    width: calc(53% - 0px);
}

.service .inner .contents_block.driveon .photo {
    width: calc(45% - 0px);
}

.service .inner .contents_block h5 {
    margin-bottom: 5px;
    font-size: 157%;
    line-height: 1;
    color: #da0816;
}

.service .inner .contents_block p {
    margin-bottom: 15px;
    font-size: 82%;
    line-height: 1.8;
    color: #31373c;
    font-weight: bold;

}

.service .inner .contents_block .photo {
    width: 30%;
}

/*card*/
.service .inner .main_block.card {
    display: flex;
    align-items: flex-start;
}

.service .inner .main_block.card div {
    width: 48%;
    text-align: center;
}

.service .inner .main_block.card div img {
    width: 50%;
    margin-bottom: 15px;
}

.service .inner .main_block.card div img.bnr {
    width: 80%;
}

.service .inner .main_block.card p {
    text-align: left;
}

/*Drive Onのご利用方法 -------------------------*/
.driveon_step {
    background: #DF0816;
    text-align: center;
    margin-bottom: 20px;
    margin-bottom: 60px;
    padding: 0 10px;

}

.driveon_step h3 {
    color: #FFFF00;
    font-size: 200%;
    font-weight: bold;
    font-family: inherit;
}

.driveon_step ul {
    display: flex;
    justify-content: space-around;
}

.driveon_step li {
    background: #fff;
    width: calc((100% - 8%) / 3);
    margin: 20px 0;
    padding: 30px 5px 20px;
    border-radius: 10px;
    position: relative;
}

.driveon_step p {

    line-height: 1.5;
    font-size: 90%;
}

.driveon_step p span {
    color: #DF0816;
    font-weight: bold;
    line-height: 1.8;
    font-size: 110%;
    font-family: inherit;
}

.driveon_step p.step {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background: #FFFF00;
    display: inline-block;
    padding: 10px 20px;
    color: #DF0816;
    font-weight: bold;
    line-height: 1;
    font-size: 150%;
}

.driveon_step p span+p {
    text-align: left;
}

.driveon_step img {
    height: 100px;
    width: auto;
    padding: 20px 0px;
}

section.driveon .driveon_box .left {
    text-align: left;
    line-height: 1.8;
    font-size: 110%;
}

.keeper_link {
    width: calc(100% - 20px);
    margin: 0px auto;
    padding: 10px;
    /* display: flex; */
    background: #0b318e;
    align-items: flex-start;
}

.keeper_link .left {
    width: 100%;
    margin: 0px auto;
    padding-bottom: 10px;
    text-align: center;
}

.keeper_link .left img {
    width: 90%;
}

.keeper_link .right {
    width: 100%;
    margin: 0px auto;
    background: #fff;
}

.keeper_link .right ul {
    width: calc(100% - 20px);
    margin-bottom: 0px;
    padding: 10px 0px 10px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px 10px;

}

.keeper_link .right ul li {
    width: auto;
    font-size: 110%;
    line-height: 1;
    font-family: inherit;
}

.keeper_link .right ul li a {
    font-size: 90%;
    line-height: 1;
    color: #003caf;
    text-decoration: underline;
    font-family: inherit;
}

.keeper_link .right ul li a:hover {
    color: #DF0816;
}

.keeper_link .right ul li:first-child {
    width: calc(90px);
}

/* ダウンロード */
.driveon_downlord {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.service h6 {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DF0816;
    font-size: 120%;
    line-height: 1;
    text-align: left;

}

.driveon_downlord div {
    width: calc(100% / 2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.driveon_downlord div+div {
    border-left: 1px solid #B3B3B3;
}

.driveon_downlord div img:first-child {
    width: 75%;
}

.driveon_downlord div img:nth-child(2) {
    width: 35%;
}

/*btn---------------------------------------*/
.service a.more {
    width: 340px;
    text-align: center;
    margin: 0px;
    padding: 15px 0px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-size: 100%;
    line-height: 1;
    letter-spacing: 0;
    background: #43687f;
    display: block;
    position: relative;

}

.service a.more.shaken {
    padding: 5px 0px;

}

.service a.more.shaken img {
    vertical-align: middle;
    height: 35px;
    margin-right: 10px;
    width: auto;
}

a.more::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.service a.more:hover {
    background: #da1115;
}

.service a.more.point {
    background: #ff7b00;
}

.service a.more.point:hover {
    background: #da1115;
}

/*shop---------------------------------------------------------*/
.shop {
    padding: 80px 0;
}

/*shop-block-----------------------------*/
.shop-block {
    width: 100%;
    margin: 80px auto 40px;
    display: flex;
    /*横並び*/
    align-items: top;
    /*天地センター*/
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop-block .shop_img {
    width: 55%;
    border: 1px solid #FFF;
}

.shop-block .txt {
    width: 41%;
}

.shop-block .txt ul {}

.shop-block .txt ul li {
    text-align: center;
    font-size: 120%;
    line-height: 180%;
}

.shop-block .txt ul li.reserve {
    font-size: 140%;
    padding: 15px 0px;
    color: #EB692E;
}

.shop-block .txt ul li.reserve span {
    font-size: 160%;
    padding-left: 5px;
    color: #EB692E;
}

.shop-block .txt img {
    width: 100%;
    margin-bottom: 10px;
}

.shop-block .map iframe {
    width: 100%;
    height: 445px;
    background: #eee;
}

.shop-block table.shop_map {
    margin: 0px 0px 10px 0px;
    width: 100%;
    text-align: center;
    border: 1px solid #4B575C;
    border-collapse: collapse;
    border-spacing: 0px;
}

.shop-block table.shop_map th,
.shop-block table.shop_map td {
    padding: 10px 8px 10px 8px;
    line-height: 18px;
    vertical-align: middle;
    border: 1px solid #BBB;
    text-align: left;
    font-size: 120%;
    font-weight: normal;
}

.shop-block table.shop_map th {
    width: 130px;
    background: #F3F4F4;
    color: #333;
}

.shop-block table.shop_map tr {
    background: #fff;
}

.shop-block table.shop_map td span.red {
    font-size: 150%;
    color: #FF0004;
}

.shop-block table.shop_map td.reserve {
    font-size: 140%;
    color: #EE0003;
    text-decoration: underline;
}

h3.shop-list {
    margin-bottom: 20px;
    padding: 20px 0px;
    font-size: 210%;
    line-height: 1;
    border-top: 1px solid #cc0000;
    border-bottom: 1px solid #cc0000;
    color: #cc0000;
    text-align: center;
    background: #FFF;
}

.shop-block .btn {
    margin: 0px auto;
    padding: 20px 0px;
    text-align: center;
}

/*shop-list-----------------------------------------------------*/
.shop-list .inner {
    width: 1100px;
    margin: 0 auto;
}

table.shop_list {
    width: 100%;
    border-collapse: collapse;
}

table.shop_list>thead>tr>th {
    padding: 10px 8px;
    text-align: center;
    font-weight: bold;
}

table.shop_list th.service {
    width: 150px;
}

table.shop_list>thead>tr:nth-of-type(1)>th {
    font-size: 140%;
    color: #fff;
    background-color: #17358E;
}

table.shop_list>thead>tr:nth-of-type(2)>th {
    font-size: 100%;
    color: #17358E;
    background-color: #D8DDEC;
    text-align: left;
}

table.shop_list>tbody>tr>th,
table.shop_list>tbody>tr>td {
    padding: 20px 8px 5px;
    line-height: 1.5;
    text-align: left;
    border-bottom: 2px solid #d3d3d3;
}

table.shop_list>tbody>tr>th {
    font-weight: bold;
    border-bottom: solid 2px #303f9f;
}

table.shop_list .tel>a {
    font-size: 140%;
    color: #003987;
}

table.shop_list td>a:hover {
    color: #FFA100;
}

ul.shop_list {
    margin-bottom: 10px;
}

ul.shop_list li {
    font-size: 130%;
}

/*company--------------------------------------------------------*/
.company {
    padding: 80px 0px;
}

.company_text {
    position: relative;
    margin: 80px 0;
}

.company_text::before {
    content: '';
    display: block;
    width: 47px;
    height: 49px;
    background-image: url(../images/top_square_left.png);
    position: absolute;
    top: -50px;
    left:-50px;
    background-repeat: no-repeat;
    background-size: contain;
}

.company_text::after {
    content: '';
    display: block;
    width: 47px;
    height: 49px;
    background-image: url(../images/top_square_right.png);
    position: absolute;
    bottom: -50px;
    right: -50px;
    background-repeat: no-repeat;
    background-size: contain;
}

.company_text_p {
    line-height: 2;
    font-size: 18px;
}

.company_text_p + .company_text_p{
    margin-top: 1.5rem;
}

section.company h2.h2tit {
    text-align: center;
}

section.company dl {
    border-top: 1px solid #ddd;
    display: flex;
    align-items: top;
    flex-wrap: wrap;
    justify-content: space-between;
}

section.company dl dt {
    width: 170px;
    padding: 15px 20px;
    font-size: 95%;
    line-height: 1.5;
    text-align: right;
    color: #26272d;
    background: #fffbbf;
}

section.company dl dd {
    width: calc(100% - 170px - 0px);
    padding: 15px 20px;
    font-size: 95%;
    line-height: 1.5;
    text-align: left;
    background: #FFFEEE;
}

section.company .big {
    font-size: 140%;
}

/*--contact---------------------------------------------------------------------------------*/
.contact {
    padding: 80px 0;
}

/*--policy---------------------------------------------------------------------------------*/
.policy {
    padding: 80px 0;
}

.policy .inner .name {
    text-align: right;
}

.policy .inner p {
    margin-bottom: 30px;
    font-size: 90%;
    line-height: 1.6;
    text-align: left;
}

.policy .inner h3 {
    margin-bottom: 20px;
    padding: 80px 0px 10px;
    border-bottom: 1px solid #DDDDDD;
    font-size: 160%;
    line-height: 1;
    color: #004bb1;
}

.policy .inner ul li {
    text-align: right;
    font-size: 90%;
    line-height: 1.6;
}

/*info-page----------------------------------------------*/
.info-page {
    padding: 80px 0;
    width: 100%;
}

.info-page_flex {
    display: flex;
    justify-content: space-between;
}

.info-page .inner div.txt {
    width: 730px;
    padding: 0px 20px 20px 20px;
    color: #333;
    font-size: 120%;
    line-height: 2;
    background: #FFF;
}

.info-page .inner div.txt div .date {
    margin-bottom: 5px;
    font-size: 90%;
    line-height: 1;
}

.info-page .inner div.txt h3 {
    width: 100%;
    margin-bottom: 30px;
    padding: 5px;
    background: #F57C00;
    color: #fff;
    font-size: 90%;
    line-height: 1.2;
}

.info-page .inner div.txt dl {
    position: relative;
    padding: 15px 0px;
    margin: 0px auto;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 3px solid #d3d3d3;
}

.info-page .inner div.txt dl::before {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #303f9f;
    bottom: -3px;
    left: 0;
    width: 18%;
}

.info-page .inner div.txt a {
    position: relative;
    display: block;
    width: 100%;
    color: #303f9f;
    padding-right: 20px;
    line-height: 1.3;
}


.info-page .inner div.txt a::after {
    position: absolute;
    top: 50%;
    right: 10px;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    margin-top: -4px;
    border-top: 2px solid #303F9F;
    border-right: 2px solid #303F9F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.info-page .inner div.txt dl dt {
    width: 100%;
    font-size: 80%;
    line-height: 1;
    margin-bottom: 5px;
}

.info-page .inner div.txt dl h3 {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
    background: #F57C00;
    color: #fff;
    font-size: 90%;
    line-height: 1.2;
}

.info-page .inner div.txt dl dd {
    width: 100%;
    font-size: 85%;
    line-height: 1;
}

.info-page .inner div.txt a dl dd {
    color: #303f9f;
}

.info-page .inner div.txt a:hover dl dd,
.info-page .inner div.txt a:hover {
    color: #F57C00;
}

.info-page .inner div.txt a:hover::after {
    border-top: 2px solid #F57C00;
    border-right: 2px solid #F57C00;
}

.info-page .inner .category {
    width: 240px;
}

.info-page .inner .category h3 {
    padding: 10px 10px;
    background: #303F9F;
    color: #FFF;
    font-size: 130%;
    line-height: 1;
    border-radius: 10px 10px 0px 0px;
}

.info-page .inner .category ul {
    padding: 10px;
    background: #f9f9f9;
}

.info-page .inner .category ul li a {
    width: auto;
    display: block;
    padding: 15px 10px;
    font-size: 100%;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.info-page .inner .category ul li a:hover {
    color: #F57C00;
}

.info-page .inner .category ul li.now a {
    color: #F57C00;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 90%;
}

#page-top a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 20px 20px;
    text-align: center;
    display: block;
    border-radius: 5px;
    background: #b7b7b7bd;
}

#page-top a:hover {
    text-decoration: none;
    background: rgb(193, 193, 193);
}