/** メインビジュアル **/
.visual .imgBox{
    width: 100%;
}
.visual .imgBox img{
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
}
.visual .letterBox{
    text-align: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 20px;
    margin-bottom: 40px;
}
.visual .letterBox::before{
    content: "";
    width: 60px;
    height: 60px;
    background-color: #e3e1cf;
    border-radius: 50%;
    position: absolute;
    right: calc(50% - 30px);
    top: -30px;
    z-index: -1;
}
.visual .letterBox::after{
    content: "";
    width: 40px;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: calc(50% - 20px);
    bottom: 0;
}
.visual .letterBox h1{
    font-size: 32px;
    padding-left: 20px;
    position: relative;
    margin-right: 10px;
}
.visual .letterBox .sub {
    font-size: 16px;
    color: #999891;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
@media screen and (max-width: 500px) {
    .visual .letterBox h1{
        font-size: 26px;
    }
    .visual .letterBox .sub {
        font-size: 14px;
    }
}



/** 電話番号 **/
.contents01{
    font-family: "Noto Sans JP", sans-serif;
}
.contents01 .telBox{
    border: 1px solid #000;
    border-radius: 4px;
    padding: 18px;
    text-align: center;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
}
.contents01 .telBox.mailBox{
    margin-bottom: 60px;
}
.contents01 .telBox .ltr{
    font-size: 16px;
    font-weight: 500;
}
.contents01 .telBox .telLetter span{
    font-size: 28px;
    font-weight: 700;
    text-decoration: underline;
}
.contents01 .telBox .telLetter a{
    color: #000;
    display: inline-block;
    position: relative;
    left: -12px;
}
.contents01 .telBox.mailBox a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    background-color: #90c31f;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 0 6px 0 #6b9814;
    left: 0;
    margin: 10px 0;
}
.contents01 .telBox.mailBox a:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #6b9814;
  opacity: 1;
}
.contents01 .telBox .icon_tel{
width: 26px;
    position: relative;
    top: -5px;
    right: -4px;
}
.contents01 .telBox .time{
    font-size: 14px;
    color: #62605c;
    font-weight: 400;
    margin-top: 4px;
}

/** 会社概要 **/
.contents02 {
    font-family: "Noto Sans JP", sans-serif;
}
.contents02 h2{
    text-align: center;
    position: relative;
    padding-top: 10px;
    margin-bottom: 20px;
}
.contents02 h2::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: #90c31f;
    border-radius: 50%;
    position: absolute;
    right: calc(50% - 4px);
    top: 0;
}
.contents02 h2 span{
    display: block;
}
.contents02 h2 .name{
    font-size: 28px;
    position: relative;
}
.contents02 h2 .sub{
    font-size: 13px;
    color: #999891;
    letter-spacing: 2px;
    font-family: "Zen Old Mincho", serif;
}

.contents02 .tableBox{
    margin-bottom: 20px;
}
.contents02 dl{
    display: flex;
    gap: 4px;
}
.contents02 dt{
    width: 120px;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contents02 dd{
    flex: 1;
    border-bottom: 1px solid #cccccc;
    padding: 20px;
    box-sizing: border-box;
    align-items: center;
    display: flex;
}
.contents02 dd li{
    padding-left: 20px;
    position: relative;
}
.contents02 dd li::before{
    content: "";
    width: 4px;
    height: 4px;
    background-color: #90c31f;
    position: absolute;
    left: 0;
    top: calc(50% - 2px);
}

.contents02 .mapBox{
    margin-bottom: 80px;
}
.contents02 .mapBox iframe{
    aspect-ratio: 16 / 9;
    width: 100%;
}

