/* 最低限のスタイル */

/* ボディの基本スタイル */
body {
    background:#fff;
    color:#000;
    height:100vh;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* リンクの基本スタイル */
a {
    color:#000;
    text-decoration: none;
    transition: .3s;
}

/* リンクのホバー効果 */
a:hover {
    color: #000;
    text-decoration: none;
    opacity: .6;
}

header{
    padding:43px 40px;
}

header img{
    width: 280px;
    filter: brightness(0);
}

.main{
    padding:0 40px 40px;
    display: flex;
    gap: 0 20px;
    align-items: flex-end;
}
.left{
    width: 20%;
    padding-bottom:40px;
}
.left .left_logo{
    margin-bottom: 128px;
}
.left .left_logo img{
    display: block;
    width:70%;
    margin:0 auto;
}
.left .meta{
    letter-spacing: 0.08em;
    line-height: 1.7;
}
.left .meta h2{
    font-size:16px;
}
.left .meta p{
    font-size:14px;
}
.left .meta .address a{
    text-decoration: underline;
}
.center{
    height: 100%;
    width: 40%;
    border-radius: 8px;
    background:linear-gradient(0deg,#333333 100%, #817F7F 0%);
    position: relative;
}
.center::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    border-radius: 8px;
    pointer-events: none;
}
.right{
    height: 100%;
    width: 40%;
    border-radius: 8px;
    background:#3D8561;
    position: relative;
}
.right::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    border-radius: 8px;
    pointer-events: none;
}
.center a,
.right a{
    display: block;
    height: 100%;
    position: relative;
}
.center a::before,
.right a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border-radius: 8px;
    pointer-events: none;
    transition: background-color 0.3s ease;
    z-index: 1;
}
.logo_L{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 460px;
    width:70%;
    margin: 0 auto;
    transition: transform 0.3s ease;
    z-index: 2;
}
.logo_L img{
    display: block;
    width: 100%;
}
.bottom{
    width: 90%;
    position: absolute;
    bottom: 7%;
    left: 50%;
    transform: translateX(-50%);
    color:#fff;
    z-index: 2;
}
.bottom::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border: 1px solid white;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.bottom::after{
    content: '';
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12M15 12L9 18M15 12H1' stroke='white' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease, background-image 0.3s ease;
}
.bottom h3{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(24px, 2.2vw, 32px);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
.bottom p{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size:18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.6;
}
.center a:hover,
.right a:hover{
    opacity: 1;
}
.center a:hover::before,
.right a:hover::before{
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}
.center a:hover .bottom::after{
    transform: translateY(-50%) translateX(5px);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12M15 12L9 18M15 12H1' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transition: transform 0.3s ease, background-image 0.3s ease;
}

.right a:hover .bottom::after{
    transform: translateY(-50%) translateX(5px);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12M15 12L9 18M15 12H1' stroke='%233D8561' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transition: transform 0.3s ease, background-image 0.3s ease;
}

.center a:hover .bottom::before,
.right a:hover .bottom::before{
    background-color: white;
    transition: background-color 0.3s ease;
}

.center a:hover .bottom,
.right a:hover .bottom{
    color: #fff;
    opacity: 1;
    transition: color 0.3s ease;
}

.center a:hover .logo_L,
.right a:hover .logo_L{
    transform: translate(-50%, -50%) scale(0.95);
    transition: transform 0.3s ease;
}

/* PC/スマホ出し分けクラス */
.is_pc {
    display: block;
}
.is_sp {
    display: none;
}

@media (max-width: 1024px) {
    .is_pc {
        display: none;
    }
    .is_sp {
        display: block;
    }
}

/* メディアクエリ - 983px以下 */
@media (max-width: 1024px) {
    .main {
        flex-direction: column;
        gap:40px 0;
    }
    .left{
        width: 100%;
        padding: 0;
    }
    .left_logo{
        display: none;
    }
    .left .meta h2{
        font-size:24px;
    }
    .left .meta p{
        font-size:18px;
    }
    .center{
        width: 100%;
        overflow: hidden;
    }
    .right{
        width: 100%;
        overflow: hidden;
    }
    .logo_L{
        top: 50%;
        height: 90%;
        width: auto;
        overflow: hidden;
    }
    .logo_L img{
        height: 100%;
        width: auto;
        object-fit: contain;
    }
    .center a:hover .logo_L, .right a:hover .logo_L {
        transform: translate(-50%,-50%) scale(0.95);
        transition: transform 0.3s ease;
    }
}
@media (max-width: 767px) {
    header{
        padding:4% 6%;
    }
    header figure{
        width: 55%;
    }

    .main{
        padding:8% 4% 4% 4%;
        gap:12px 0;
    }
    .left{
        padding-bottom:40px;
    }
    .left .meta h2{
        font-size:16px;
    }
    .left .meta p{
        font-size:14px;
    }
    .bottom p{
        font-size:14px;
    }
    .bottom::before{
        width: 46px;
        height: 46px;
    }
    .bottom::after{
        width: 22px;
        height: 22px;
    }
    .logo_L{
        height: 90%;
        width: 100%;
    }
    .logo_L img{
        margin:auto;
        opacity: .64;
    }
}

