/*===============================
 
  ABOUT US
 
================================*/
.main_v_block {
    padding: 70px 0 0;
    position: relative;
}

.main_v {
    width: 100%;
}

.mainv_txt {
    position: absolute;
    top: calc(50% - 5vh);
    left: calc(10% - 4vw);
    color: #fff;
    font-size: clamp(18px, 0.1293rem + 3.7931vw, 42px);
    line-height: 2;
}

table {
    font-size: 16px;
    width: 100%;
    text-align: left;
    margin: 20px 0;
}

table tr th,
table tr td {
    padding: 10px;
}

table tr th {
    width: 100px;
}

table tr td a {
    color: #403f3f;
}

.block:first-of-type {
    margin-bottom: 40px;
}

/*===============================
 
  SERVICE
 
================================*/
.item {
    font-size: 14px;
    width: 30%;
    margin-right: 5%;
    text-align: center;
    background: #fff;
    color: #1d2753;
    border: 2px solid #1d2753;
    border-radius: 5px;
    padding: 20px;
}

.item:last-of-type {
    margin-right: 0;
}

.item p img {
    width: 80px;
    margin: 0 auto;
}

.item p {
    min-height: 110px;
}
.item:last-of-type p img {
    width: 110px;
}

.item .item_title {
    font-size: 20px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: bold;
    margin: 0 0 25px;
    color: #333;
}

.item .description {
    text-align: left;
    font-size: 16px;
    margin-top: 25px;
}

.item_img {
     display: flex;
    align-items: center;
}

/*===============================
 
  ACCESS
 
================================*/
.address {
    color: #333;
}
.google_map {
    width: 100%;
    height: 500px;
    margin: 20px 0;
}

/*===============================
 
  CONTACT
 
================================*/
.contact_box {
    margin-top: 40px;
    justify-content: center;
    gap:20px;
    
}

.contact_btn {
    min-width:  300px;
    max-width: 500px;
    width: 400px;
    text-align: center;
    font-weight: bold;
    color: #333;
    display: block;
    font-size: 22px;
    padding: 10px;
    border: 2px solid #1d2753;
    border-radius: 5px;
    line-height: 1.2;
    outline: none;
    background-color: #fff;
    position: relative;
    transition: color 0.5s ease;    
}

.contact_btn.contact_tel {
    background: url(../images/icon_tel.png) no-repeat left 30px center / 35px #fff;
}

.contact_btn.contact_web {
    background: url(../images/icon_web.png) no-repeat left 30px center / 35px #fff;
}

.contact_btn .time {
    font-size: 14px;
    font-weight: normal;
}

.contact_btn:hover {
    color: #fff;
    opacity: 1;
}

.contact_btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact_btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #1d2753;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.contact_btn.contact_tel::before {
    background: url(../images/icon_tel_on.png) no-repeat left 30px center / 35px #1d2753;
}

.contact_btn.contact_web::before {
    background: url(../images/icon_web_on.png) no-repeat left 30px center / 35px #1d2753;
}

.contact_btn .text {
  position: relative;
}

/*===============================
 
  FOOTER
 
================================*/
.footer {
    background: #1d2753;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
}
