@charset "utf-8";
/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */
@media print, screen and (min-width: 768px) {

/*トップ
---------------------------------------------*/
#contact { position: relative; padding: 150px 0 0; }

#contact h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 30px;
}

#contact .before { padding-bottom: 60px; margin-bottom: 60px; border-bottom: 1px solid #086DB0; }
#contact .before .box {
background: #EBF7FB;
border-radius: 10px;
padding: 30px 80px;
text-align: center;
}
#contact .before .box h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; }
#contact .before .box .img { display: flex; justify-content: space-between; }
#contact .before .box .img img { height: 310px; width: auto; margin: 0; box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25); }
#contact .before .box p { font-weight: 700; margin-top: 15px; }
#contact .before .box p a { color: #086DB0; border-bottom: 1px solid; }


#contact .mail { padding-bottom: 60px; margin-bottom: 60px; border-bottom: 1px solid #086DB0; }

#contact .mail h4 { text-align: center; font-weight: 700; margin-bottom: 20px; }
#contact .mail h4 span { color: #086DB0; }

#contact .mail ul { width: 90%; margin: 0 auto 40px; }
#contact .mail ul li { list-style-type: disc; margin: 0 0 5px 15px; }
#contact .mail ul li:last-child { margin-bottom: 5px; }
#contact .mail ul li span { color: #D1060A; }
#contact .mail ul li a { color: #086DB0; border-bottom: 1px solid; }

#contact .mail ul li ul { width: 100%; margin-bottom: 0; }
#contact .mail ul li ul li {  margin-left: 30px; }

#contact .mail .btn { width: 80%; margin: 0 auto 60px; }
#contact .mail .btn a {
position: relative;
display: block;
background: #086DB0;
font-weight: 700;
color: #FFF;
padding: 10px 30px;
border-radius: 25rem;
transition: all 0.3s;
}
#contact .mail .btn a:hover { opacity: 0.8; transition: all 0.3s; }
#contact .mail .btn a::before {
content: '';
position: absolute;
top: 40%; right: 25px;
width: 0.7em;
height: 0.7em;
border: 0.15em solid #fff;
border-left: 0;
border-bottom: 0;
box-sizing: border-box;
transform: rotate(45deg);
}

#contact .mail .navi {
padding: 30px;
box-shadow: 4px 4px 15px rgba(36, 81, 110, 0.15);
border-radius: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
#contact .mail .navi .flex { display: flex; align-items: center; }
#contact .mail .navi h5 {
font-size: 1.5rem;
font-weight: 700;
padding: 5px 10px;
margin-right: 20px;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
}
#contact .mail .navi a { font-weight: 700; color: #0093CF; }
#contact .mail .navi a span {
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
width: 20px;
height: 20px;
margin: 0 0 4px 10px;
background: #0093CF;
border-radius: 50%;
box-sizing: content-box;
}
#contact .mail .navi a span::before {
content: '';
width: 0.4em;
height: 0.4em;
border: 0.1em solid #fff;
border-left: 0;
border-bottom: 0;
box-sizing: border-box;
transform: translateX(-20%) rotate(45deg);
}


#contact .tel { padding-bottom: 60px; margin-bottom: 60px; border-bottom: 1px solid #086DB0; }
#contact .tel h3 { margin-bottom: 20px; }
#contact .tel p { font-size: 1.2rem; margin-bottom: 20px; text-align: center; }
#contact .tel ul {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

#contact .tel ul li {
width: 49%;
margin-bottom: 10px;
display: flex;
}

#contact .tel ul li a {
position: relative;
display: flex;
align-items: center;
width: 100%;
height: 60px;
background: #EBF7FB;
padding: 10px 15px;
border-radius: 10px;
box-sizing: border-box;
line-height: 1.3;
}

#contact .tel ul li a::before {
content: '';
position: absolute;
right: 20px;
top: 50%;
width: 8px;
height: 8px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(45deg);
}


#contact .group h3 { margin-bottom: 50px; }
#contact .group dl { margin-bottom: 5px; }
#contact .group dl:last-child { margin-bottom: 0; }
#contact .group dl dt {
position: relative;
font-size: 2rem;
padding: 20px 30px;
background: #EBF7FB;
box-sizing: border-box;
border-radius: 10px;
}
#contact .group dl dt::before {
content: '';
position: absolute;
right: 30px;
top: 50%;
width: 12px;
height: 12px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(135deg);
}
#contact .group dl dt.open::before { transform: rotate(-45deg); }
#contact .group dl dd { display: none; position: relative; padding: 0 30px; }

#contact .group dl dd table { width: 100%; }
#contact .group dl dd table tr { border-bottom: 1px solid #086DB0; }
#contact .group dl dd table tr:last-child { padding: 0; margin: 0; border-bottom: none; }
#contact .group dl dd table td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
}
#contact .group dl dd table td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#contact .group dl dd table td:last-child { border-right: none; }
#contact .group dl dd table td:last-child::after { content: none; }
#contact .group dl dd table td a { color: #086DB0; border-bottom: 1px solid; }
#contact .group dl dd table td img { width: 16px; margin-left: 5px; }


/*メールによるご意見・お問い合わせ
---------------------------------------------*/
#form { position: relative; padding: 150px 0 0; display: inline-block; }

#form p { text-align: center; }
#form p span { display: block; color: #D1060A; font-weight: 700; }

#form form { margin-top: 50px; }
#form .com_table { width:100%; margin: 0 auto 30px; }
#form .com_table th {
position: relative;
width: 25%;
font-size: 1.7rem;
text-align: left;
vertical-align: top;
padding-bottom: 20px;
}
#form .com_table th::before {
content: '●';
color: #086DB0;
}
#form .com_table td { padding-bottom: 20px; }
#form .com_table td p { text-align: left; }
#form .com_table td p span { font-size: 1.2rem; color: #000; }

#form input[type="text"],
#form input[type="date"],
#form textarea {
padding: 8px;
border: 1px solid #086DB0;
width: 100%;
box-sizing: border-box;
}
#form input[type="checkbox"] { accent-color: #086DB0; margin-right: 3px; }
#form .confirm-checkbox-group .confirm-checkbox {
display: inline-block;
width: 16px;
height: 16px;
margin-right: 6px;
vertical-align: -2px;
border: 1px solid #086DB0;
border-radius: 3px;
background: #fff;
box-sizing: border-box;
}
#form .confirm-checkbox-group .confirm-checkbox-row.is-unchecked {
color: #7f8a96;
}
#form .confirm-checkbox-group .confirm-checkbox-row.is-unchecked .confirm-checkbox {
border-color: #aeb8c2;
background: #eef2f5;
}
#form .confirm-checkbox-group .confirm-checkbox.is-checked {
position: relative;
background: #086DB0;
}
#form .confirm-checkbox-group .confirm-checkbox.is-checked::after {
content: "";
position: absolute;
left: 4px;
top: 1px;
width: 4px;
height: 8px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}

#form .btn_flex { display: flex; justify-content: center; }

#form button[type="submit"],
#form input[type="submit"] {
width: 200px;
margin: 0 10px;
background:  #086DB0;
border:  #086DB0 1px solid;
border-radius: 10px;
color: #FFF;
font-weight: 700;
padding: 15px 50px;
cursor: pointer;
transition: 0.5s;
}

#form button[type="submit"]:hover,
#form input[type="submit"]:hover { opacity: .75; }

#form .submit:hover {
background: #fff;
border: #086DB0 1px solid;
color: #086DB0;
}

#form .btn_back {
width: 200px;
margin: 0 10px;
background:  #fff;
border:  #086DB0 1px solid;
border-radius: 10px;
color: #086DB0;
font-weight: 700;
padding: 15px 50px;
cursor: pointer;
transition: 0.5s;
}
#form .btn_back:hover { opacity: .75; }


#form h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 30px;
}

#form .btn_top a{
width: 200px;
margin: 30px auto 0;
background:  #086DB0;
border:  #086DB0 1px solid;
border-radius: 25rem;
color: #FFF;
font-weight: 700;
padding: 5px 10px;
cursor: pointer;
transition: 0.5s;
display: inline-block;
box-sizing: border-box;
}
#form .btn_top a:hover { opacity: .75; }

#form .mark {
width: 60px;
position: absolute;
bottom: 20px;
right: -80px;
}

#form .error-info{
font-size: 1.2rem;
font-weight: 700;
color: #D1060A;
}

/*忘れ物に関するお問い合わせ
---------------------------------------------*/
#lost { position: relative; padding: 150px 0 0; }

#lost p { margin-bottom: 30px; }

#lost .navi {
padding: 30px;
box-shadow: 4px 4px 15px rgba(36, 81, 110, 0.15);
border-radius: 20px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 80px;
}
#lost .navi h4 { width: 32%; font-weight: 700; text-align: center; color: #086DB0; }

#lost .navi ul { margin-left: 20px; padding-left: 20px; border-left: 1px solid #086DB0; }
#lost .navi ul li { list-style-type: disc; margin: 0 0 5px 15px; }
#lost .navi ul li::marker { color: #086DB0; }
#lost .navi ul li a { color: #086DB0; border-bottom: 1px solid; }


#lost h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 40px;
}

#lost table { width: 100%; margin-bottom: 80px; table-layout: fixed; }
#lost table:last-of-type { margin-bottom: 0; }
#lost table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#lost table td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
width: 30%;
line-height: 1.4;
}
#lost table td:nth-child(2) { width: 40%; }
#lost table td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#lost table td:last-child::after { content: none; }
#lost table td span { font-size: 1.2rem; display: block; }



/*高速バス・空港リムジンバスに関するお問い合わせ
---------------------------------------------*/
#hw { position: relative; padding: 150px 0 0; }

#hw h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 40px;
}

#hw table { width: 100%; margin-bottom: 80px; table-layout: fixed; }
#hw table:last-of-type { margin-bottom: 0; }
#hw table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#hw table td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
width: 27%;
line-height: 1.4;
}
#hw table td:nth-child(2) { width: 40%; }
#hw table td:nth-child(3) { width: 33%; }
#hw table td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#hw table td:last-child::after { content: none; }
#hw table td span { font-size: 1.2rem; }



/*採用に関するお問合わせ
---------------------------------------------*/
#adopt { position: relative; padding: 150px 0 0; }

#adopt table { width: 100%; table-layout: fixed; }
#adopt table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#adopt table td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
width: 28%;
line-height: 1.4;
}
#adopt table td:nth-child(2) { width: 44%; }
#adopt table td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#adopt table td:last-child::after { content: none; }



/*安全運転講習について
---------------------------------------------*/
#course { position: relative; padding: 150px 0 0; }

#course .ttl p.left { text-align: left; }
#course .ttl p.read strong { font-size: 2rem; text-align: center; display: block; }

#course h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 30px;
}

#course p.priplcy { text-align: center; font-size: 1.2rem; }
#course p.priplcy a { color: #086DB0; border-bottom: 1px solid; }
#course p.note { font-size: 1.2rem; }

#course ol li { list-style: decimal; margin: 0 0 0 20px; }
#course ol li a { color: #086DB0; border-bottom: 1px solid; }

#course .table { border-collapse: collapse; width: 100%; margin-bottom: 20px; }
#course .table th { background: #086DB0; color: #fff; border: 1px solid #B3B3B3; padding: 10px; }
#course .table td {
border: 1px solid #B3B3B3;
padding: 10px;
text-align: right;
vertical-align: middle;
line-height: 1.5;
}
#course .table td:first-of-type { text-align: left; }

#course .table2 { width: 100%; table-layout: fixed; }
#course .table2 tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#course .table2 td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
width: 28%;
line-height: 1.4;
}
#course .table2 td a { border-bottom: 1px solid; }
#course .table2 td:nth-child(2) { width: 44%; }
#course .table2 td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#course .table2 td:last-child::after { content: none; }

#course .btn_download { border: 2px solid #086DB0; border-radius: 1rem; margin-top: 20px; }
#course .btn_download a {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 15px;
box-sizing: border-box;
color: #086DB0;
transition: .5s;
}
#course .btn_download a:hover { opacity: 0.7; }
#course .btn_download a .txt {
width: calc(100% - 100px);
font-weight: bold;
line-height: 1;
font-size: 15px;
}
#course .btn_download a .txt img { width: 16px; margin-left: 15px; }
#course .btn_download a .data_icon {
width: 70px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
#course .btn_download a .data_icon .data { text-align: right; font-weight: bold; }
#course .btn_download a .data_icon .icon { width: 18px; transition: .5s; }


/*----------- index -----------*/
#course .index .flex_wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 60px;
}
#course .index ul.flex_wrap li { width: 49%; display: flex; }
#course .index ul li a {
position: relative;
display: flex;
align-items: center;
width: 100%;
background: #EBF7FB;
padding: 20px;
border-radius: 10px;
box-sizing: border-box;
line-height: 1.3;
font-size: 2rem;
}
#course .index ul li a::before {
content: '';
position: absolute;
right: 20px;
top: 50%;
width: 8px;
height: 8px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(45deg);
}

#course .index .box { width: 49%; }

#course .index p {
background: #EBF7FB;
padding: 20px;
border-radius: 10px;
box-sizing: border-box;
line-height: 1.3;
}


/*----------- event -----------*/
#course .event a { color: #086DB0; border-bottom: 1px solid; }
#course .event p.label {
background: #086DB0;
padding: 10px;
border-radius: 10px;
box-sizing: border-box;
font-weight: 700;
text-align: center;
color: #fff;
}

#course .event dl {
display: grid;
grid-template-columns: 170px 1fr;
border: 1px solid #D5D5D5;
margin: 30px 0 20px;
}
#course .event dl dt,
#course .event dl dd { font-size: 1.3rem; padding: 15px; border-bottom: 1px solid #D5D5D5; }
#course .event dl dt:last-of-type,
#course .event dl dd:last-of-type { border-bottom: none; }
#course .event dl dt { text-align: center; background: #D6EFF7; }

#course .event .please {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
border: 1px solid #086DB0;
margin-top: 30px;
}
#course .event .please h4 {
width: 100px;
padding: 0 20px 0 10px;
text-align: center;
color: #086DB0;
font-weight: 700;
}
#course .event .please p { padding-left: 30px; border-left: 1px solid #086DB0; }


/*----------- diagnosis -----------*/
#course .diagnosis .box {
padding-bottom: 60px;
margin-bottom: 60px;
border-bottom: 1px solid #086DB0;
}
#course .diagnosis .box:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

#course .diagnosis h4 { font-size: 2rem; text-align: center; }


/*----------- nintei -----------*/
#course .nintei .box {
padding-bottom: 60px;
margin-bottom: 60px;
border-bottom: 1px solid #086DB0;
}
#course .nintei .box:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

#course .nintei .table td { text-align: left; }
#course .nintei .table td ul li { list-style: disc; margin: 0 0 0 15px; }

#course .nintei p.priplcy { margin-top: 30px; }



/*その他のお問い合わせ
---------------------------------------------*/
#customercenter { position: relative; padding: 150px 0 0; }

#customercenter table { width: 100%; table-layout: fixed; }
#customercenter table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#customercenter table td {
position: relative;
vertical-align: middle;
padding: 20px 15px;
width: 28%;
line-height: 1.4;
}
#customercenter table td:nth-child(3) { width: 43%; }
#customercenter table td::after {
content: '';
height: 80%;
width: 1px;
background: #086DB0;
position: absolute;
top: 10%;
right: 0;
}
#customercenter table td:last-child::after { content: none; }


}




/* モバイルレイアウト : 480 px およびそれ以下. */
/*sp*/
@media only screen and (max-width: 767px) {

/*トップ
---------------------------------------------*/
#contact { position: relative; padding: 80px 0 0; }

#contact h3 {
font-size: 2.2rem;
text-align: center;
color: #086DB0;
margin: 0 0 20px;
}

#contact .before { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid #086DB0; }
#contact .before .box { background: #EBF7FB; border-radius: 10px; padding: 30px 20px; }
#contact .before .box h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
#contact .before .box .img { text-align: center; }
#contact .before .box .img img { box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25); }
#contact .before .box .img img:first-child { width: 40%; margin-bottom: 20px; }
#contact .before .box p { font-weight: 700; margin-top: 20px;}
#contact .before .box p a { color: #086DB0; border-bottom: 1px solid; }


#contact .mail { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid #086DB0; }

#contact .mail h4 { text-align: center; font-weight: 700; margin-bottom: 20px; }
#contact .mail h4 span { color: #086DB0;}

#contact .mail ul { margin: 0 auto 20px; }
#contact .mail ul li { list-style-type: disc; margin: 0 0 5px 15px; }
#contact .mail ul li:last-child { margin-bottom: 5px; }
#contact .mail ul li span { color: #D1060A; }
#contact .mail ul li a { color: #086DB0; border-bottom: 1px solid; }

#contact .mail ul li ul { width: 100%; margin-bottom: 0; }
#contact .mail ul li ul li {  margin-left: 30px; }

#contact .mail .btn { width: 90%; margin: 0 auto 30px; }
#contact .mail .btn a {
position: relative;
display: block;
background: #086DB0;
font-weight: 700;
color: #FFF;
padding: 15px 40px 15px 30px;
border-radius: 25rem;
transition: all 0.3s;
}
#contact .mail .btn a:hover { opacity: 0.8; transition: all 0.3s; }
#contact .mail .btn a::before {
content: '';
position: absolute;
top: 45%; right: 25px;
width: 0.7em;
height: 0.7em;
border: 0.15em solid #fff;
border-left: 0;
border-bottom: 0;
box-sizing: border-box;
transform: rotate(45deg);
}

#contact .mail .navi {
padding: 30px 20px;
box-shadow: 4px 4px 15px rgba(36, 81, 110, 0.15);
border-radius: 20px;
}
#contact .mail .navi .flex {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
}
#contact .mail .navi h5 {
font-size: 1.3rem;
font-weight: 700;
width: 130px;
text-align: center;
padding: 5px;
margin-right: 10px;
border-top: 1px solid #000;
border-bottom: 1px solid #000;
box-sizing: border-box;
}
#contact .mail .navi .img {
width: calc(100% - 140px);
}
#contact .mail .navi a {
display: block;
font-size: 1.2rem;
font-weight: 700;
color: #0093CF;
text-align: center;
margin-top: 15px;
}
#contact .mail .navi a span {
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
width: 15px;
height: 15px;
margin: 0 0 3px 5px;
background: #0093CF;
border-radius: 50%;
box-sizing: content-box;
}
#contact .mail .navi a span::before {
content: '';
width: 0.4em;
height: 0.4em;
border: 0.1em solid #fff;
border-left: 0;
border-bottom: 0;
box-sizing: border-box;
transform: translateX(-20%) rotate(45deg);
}


#contact .tel { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid #086DB0; }
#contact .tel p { font-size: 1.2rem; margin-bottom: 20px; }
#contact .tel ul {  }
#contact .tel ul li { margin-bottom: 10px; display: flex; }
#contact .tel ul li a {
position: relative;
display: flex;
align-items: center;
width: 100%;
background: #EBF7FB;
padding: 15px 30px 15px 20px;
border-radius: 10px;
box-sizing: border-box;
line-height: 1.3;
}

#contact .tel ul li a::before {
content: '';
position: absolute;
right: 20px;
top: 50%;
width: 8px;
height: 8px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(45deg);
}


#contact .group dl { margin-bottom: 5px; }
#contact .group dl:last-child { margin-bottom: 0; }
#contact .group dl dt {
position: relative;
font-size: 1.8rem;
padding: 20px 15px;
background: #EBF7FB;
box-sizing: border-box;
border-radius: 10px;
}
#contact .group dl dt::before {
content: '';
position: absolute;
right: 30px;
top: 50%;
width: 12px;
height: 12px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(135deg);
}
#contact .group dl dt.open::before { transform: rotate(-45deg); }
#contact .group dl dd { display: none; position: relative; padding: 10px; }

#contact .group dl dd table { width: 100%; }
#contact .group dl dd table tr { border-bottom: 1px solid #086DB0; }
#contact .group dl dd table tr:last-child { padding: 0; margin: 0; border-bottom: none; }
#contact .group dl dd table td {
position: relative;
vertical-align: middle;
display: block;
line-height: 1.3;
padding: 0 5px;
}
#contact .group dl dd table td:first-child { padding: 10px 5px 8px; }
#contact .group dl dd table td:last-child { padding: 8px 5px 10px; }
#contact .group dl dd table td a { color: #086DB0; border-bottom: 1px solid; }
#contact .group dl dd table td img { width: 16px; margin-left: 5px; }



/*メールによるご意見・お問い合わせ
---------------------------------------------*/
#form { position: relative; padding: 80px 0 0; }

#form p { text-align: center; }
#form p span { display: block; color: #D1060A; font-weight: 700; }

#form form { margin-top: 30px; }
#form .com_table { width: 100%; margin: 0 auto 20px; }
#form .com_table th {
position: relative;
display: block;
font-size: 1.6rem;
text-align: left;
vertical-align: top;
padding-bottom: 5px;
}
#form .com_table th::before {
content: '●';
color: #086DB0;
}
#form .com_table td { padding-bottom: 10px; display: block; }
#form .com_table td p { text-align: left; }
#form .com_table td p span { font-size: 1.2rem; color: #000; }

#form input[type="text"],
#form input[type="date"],
#form textarea {
padding: 5px;
border: 1px solid #086DB0;
width: 100%;
box-sizing: border-box;
}
#form input[type="checkbox"] { accent-color: #086DB0; margin-right: 3px; }
#form .confirm-checkbox-group .confirm-checkbox {
display: inline-block;
width: 16px;
height: 16px;
margin-right: 6px;
vertical-align: -2px;
border: 1px solid #086DB0;
border-radius: 3px;
background: #fff;
box-sizing: border-box;
}
#form .confirm-checkbox-group .confirm-checkbox-row.is-unchecked {
color: #7f8a96;
}
#form .confirm-checkbox-group .confirm-checkbox-row.is-unchecked .confirm-checkbox {
border-color: #aeb8c2;
background: #eef2f5;
}
#form .confirm-checkbox-group .confirm-checkbox.is-checked {
position: relative;
background: #086DB0;
}
#form .confirm-checkbox-group .confirm-checkbox.is-checked::after {
content: "";
position: absolute;
left: 4px;
top: 1px;
width: 4px;
height: 8px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
#form .recaptcha-mask {
position: fixed;
right: 0;
bottom: 0;
z-index: 20;
width: min(180px, 44vw);
height: auto;
max-width: 180px;
object-fit: contain;
pointer-events: none;
}

#form button[type="submit"],
#form input[type="submit"] {
width: 200px;
margin: 0 5px;
background:  #086DB0;
border:  #086DB0 1px solid;
border-radius: 10px;
color: #FFF;
font-weight: 700;
padding: 15px 10px;
cursor: pointer;
transition: 0.5s;
}

#form button[type="submit"]:hover,
#form input[type="submit"]:hover { opacity: .75; }

#form .submit:hover {
background: #fff;
border: #086DB0 1px solid;
color: #086DB0;
}

#form .btn_flex { display: flex; justify-content: center; }
#form .btn_flex button[type="submit"],
#form .btn_flex input[type="submit"] { width: 150px; }

#form .btn_back {
width: 150px;
margin: 0 5px;
background:  #fff;
border:  #086DB0 1px solid;
border-radius: 10px;
color: #086DB0;
font-weight: 700;
padding: 15px 10px;
cursor: pointer;
transition: 0.5s;
}
#form .btn_back:hover { opacity: .75; }


#form h3 {
font-size: 2.6rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 30px;
}

#form .btn_top a{
width: 200px;
margin: 30px auto 0;
background:  #086DB0;
border:  #086DB0 1px solid;
border-radius: 25rem;
color: #FFF;
font-weight: 700;
padding: 5px 10px;
cursor: pointer;
transition: 0.5s;
display: inline-block;
box-sizing: border-box;
}
#form .btn_top a:hover { opacity: .75; }

#form .mark {
width: 60px;
margin: 0 0 0 auto;
}

#form .error-info{
font-size: 1.2rem;
font-weight: 700;
color: #D1060A;
}

/*忘れ物に関するお問い合わせ
---------------------------------------------*/
#lost { position: relative; padding: 80px 0 0; }

#lost p { margin-bottom: 20px; }

#lost .navi {
padding: 20px;
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
margin-bottom: 40px;
}
#lost .navi h4 {
font-weight: 700;
text-align: center;
color: #086DB0;
border-bottom: 1px solid;
padding-bottom: 10px;
margin-bottom: 10px;
}

#lost .navi ul {  }
#lost .navi ul li { list-style-type: disc; margin: 0 0 0 15px; }
#lost .navi ul li::marker { color: #086DB0; }
#lost .navi ul li a { color: #086DB0; border-bottom: 1px solid; }


#lost h3 {
font-size: 2.2rem;
line-height: 1;
text-align: center;
color: #086DB0;
margin: 0 0 20px;
}

#lost table { width: 100%; margin-bottom: 40px; }
#lost table:last-of-type { margin-bottom: 0; }
#lost table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#lost table td { position: relative; display: block; line-height: 1.4; }
#lost table td:first-child { padding: 8px 0; border-bottom: 1px solid #086DB0; }
#lost table td:nth-child(2) { padding: 8px 0 5px; }
#lost table td:nth-child(3) { padding-bottom: 8px; }
#lost table td span { font-size: 1.2rem; display: block; }



/*高速バス・空港リムジンバスに関するお問い合わせ
---------------------------------------------*/
#hw { position: relative; padding: 80px 0 0; }

#hw h3 {
font-size: 2.2rem;
text-align: center;
color: #086DB0;
margin: 0 0 20px;
}

#hw table { width: 100%; margin-bottom: 40px; }
#hw table:last-of-type { margin-bottom: 0; }
#hw table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#hw table td { position: relative; display: block; line-height: 1.4; }
#hw table td:first-child { padding: 8px 0; border-bottom: 1px solid #086DB0; }
#hw table td:nth-child(2) { padding: 8px 0 5px; }
#hw table td:nth-child(3) { padding-bottom: 8px; }
#hw table td span { font-size: 1.2rem; display: block; }



/*採用に関するお問合わせ
---------------------------------------------*/
#adopt { position: relative; padding: 80px 0 0; }

#adopt table { width: 100%; }
#adopt table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#adopt table td { position: relative; display: block; line-height: 1.4; }
#adopt table td:first-child { padding: 8px 0; border-bottom: 1px solid #086DB0; }
#adopt table td:nth-child(2) { padding: 8px 0 5px; }
#adopt table td:nth-child(3) { padding-bottom: 8px; }



/*安全運転講習について
---------------------------------------------*/
#course { position: relative; padding: 80px 0 0; }

#course .ttl p.left { text-align: left; }
#course .ttl p.read strong { font-size: 1.8rem; display: block; }

#course h3 {
font-size: 2.2rem;
text-align: center;
color: #086DB0;
margin: 0 0 30px;
}

#course p.priplcy { font-size: 1.2rem; }
#course p.priplcy a { color: #086DB0; border-bottom: 1px solid; }
#course p.note { font-size: 1.2rem; }

#course ol li { list-style: decimal; margin: 0 0 0 20px; }
#course ol li a { color: #086DB0; border-bottom: 1px solid; }

#course .table-scroll { overflow-x: scroll; scrollbar-width: thin; margin-bottom: 10px; }
#course .table { border-collapse: collapse; width: 860px; }
#course .table th { background: #086DB0; color: #fff; border: 1px solid #B3B3B3; padding: 8px; font-size: 1.4rem; }
#course .table td {
border: 1px solid #B3B3B3;
padding: 8px;
font-size: 1.3rem;
text-align: right;
vertical-align: middle;
line-height: 1.5;
}
#course .table td:first-of-type { text-align: left; }

#course .table2 { width: 100%; }
#course .table2 tr { border-top: 1px solid #086DB0; }
#course .table2 td { position: relative; display: block; line-height: 1.4; }
#course .table2 td:first-child { padding: 8px 0; border-bottom: 1px solid #086DB0; }
#course .table2 td:nth-child(2) { padding: 8px 0 5px; }
#course .table2 td:nth-child(3) { padding-bottom: 8px; }

#course .btn_download { border: 2px solid #086DB0; border-radius: 1rem; margin-top: 20px; }
#course .btn_download a {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 15px;
box-sizing: border-box;
color: #086DB0;
transition: .5s;
}
#course .btn_download a:hover { opacity: 0.7; }
#course .btn_download a .txt {
width: calc(100% - 100px);
font-weight: bold;
line-height: 1;
}
#course .btn_download a .txt img { width: 16px; margin-left: 10px; }
#course .btn_download a .data_icon {
width: 60px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
#course .btn_download a .data_icon .data { text-align: right; font-weight: bold; font-size: 1.2rem; }
#course .btn_download a .data_icon .icon { width: 16px; transition: .5s; }


/*----------- index -----------*/
#course .index .flex_wrap { margin-bottom: 40px; }
#course .index ul.flex_wrap li { margin-bottom: 10px; }
#course .index ul.flex_wrap li:last-child { margin-bottom: 0; }
#course .index ul li a {
position: relative;
display: flex;
align-items: center;
width: 100%;
background: #EBF7FB;
padding: 20px 15px;
border-radius: 10px;
box-sizing: border-box;
line-height: 1.3;
font-size: 1.8rem;
}
#course .index ul li a::before {
content: '';
position: absolute;
right: 25px;
top: 50%;
width: 8px;
height: 8px;
border-top: 2px solid #086DB0;
border-right: 2px solid #086DB0;
transform: translateY(-50%) rotate(45deg);
}

#course .index .box { margin-bottom: 40px; }
#course .index .box:last-child { margin-bottom: 0; }

#course .index p {
background: #EBF7FB;
padding: 20px;
border-radius: 10px;
box-sizing: border-box;
}


/*----------- event -----------*/
#course .event a { color: #086DB0; border-bottom: 1px solid; }
#course .event p.label {
background: #086DB0;
padding:10px 15px;
border-radius: 10px;
box-sizing: border-box;
font-weight: 700;
text-align: center;
color: #fff;
}

#course .event dl {
border: 1px solid #D5D5D5;
margin: 30px 0 20px;
}
#course .event dl dt,
#course .event dl dd { font-size: 1.3rem; padding: 10px; border-bottom: 1px solid #D5D5D5;box-sizing: border-box; }
#course .event dl dt:last-of-type,
#course .event dl dd:last-of-type { border-bottom: none; }
#course .event dl dt { text-align: center; background: #D6EFF7; padding: 8px; }
#course .event dl dd.center { text-align: center; }

#course .event .please {
padding: 20px;
border: 1px solid #086DB0;
margin-top: 30px;
}
#course .event .please h4 {
padding: 0 0 10px;
margin-bottom: 10px;
text-align: center;
color: #086DB0;
font-weight: 700;
border-bottom: 1px solid #086DB0;
}
#course .event .please p {  }


/*----------- diagnosis -----------*/
#course .diagnosis .box {
padding-bottom:40px;
margin-bottom:40px;
border-bottom: 1px solid #086DB0;
}

#course .diagnosis .box.pb {
padding-bottom: 12px;
}

#course .diagnosis .box:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

#course .diagnosis h4 { font-size: 1.8rem; font-weight: 500; }


/*----------- nintei -----------*/
#course .nintei .box {
padding-bottom: 40px;
margin-bottom: 40px;
border-bottom: 1px solid #086DB0;
}
#course .nintei .box:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

#course .nintei .table td { text-align: left; }
#course .nintei .table td ul li { list-style: disc; margin: 0 0 0 15px; }

#course .nintei p.priplcy { margin-top: 30px; }



/*その他のお問い合わせ
---------------------------------------------*/
#customercenter { position: relative; padding: 80px 0 0; }

#customercenter table { width: 100%; }
#customercenter table tr { border-top: 1px solid #086DB0; border-bottom: 1px solid #086DB0; }
#customercenter table td { position: relative; display: block; line-height: 1.4; }
#customercenter table td:first-child { padding: 8px 0; border-bottom: 1px solid #086DB0; }
#customercenter table td:nth-child(2) { padding: 8px 0 5px; }
#customercenter table td:nth-child(3) { padding-bottom: 8px; }



}
