@import url('variables.css');

/* =====================
    additional-links
========================= */
.contact_flink,
.additional-links{
    background-color: #ffffff;
}
.additional-links_inner {
    padding: 3em 0 4em;
    width: 80vw;
    max-width: 1000px;
    margin: auto;
}
.additional-links_box .wp-block-cover{
    aspect-ratio: 16 / 9;
    min-height: auto;
}
:where(.wp-block-columns.is-layout-flex) {
    gap: 1.2em;
}

/* =====================
    contact-links
========================= */

.contact_flink_inner{
    padding: 3em 0 0;
    width: 80vw;
    max-width: 1000px;
    margin: auto;
}

.contact-card :where(.wp-block-columns.is-layout-flex) {
	margin-bottom: -15px;
}

@media screen and (max-width: 1024px){
    .contact-card .wp-block-image{
        width: calc(125px + (200 - 125) * ((100vw - 320px) / (1400 - 320)));
        margin-top: calc(-35px + (-35 - -35) * ((100vw - 320px) / (1400 - 320)));
        margin-bottom: 0;
        margin-left: 0;
        float: right;
    }
}
/* =====================
    footer
========================= */
.footer{
    background-color: var(--gray-dark-color);
    mix-blend-mode: multiply;
    color: #ffffff;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
}
.footer-inner {
    width: 80vw;
    padding-top: calc(40px + (80 - 40) * ((100vw - 320px) / (1400 - 320)));
    padding-bottom: calc(15px + (30 - 15) * ((100vw - 320px) / (1400 - 320)));
    margin: auto;
}
.footer_columns{
    justify-content: space-between;
}
.footer_left .wp-block-image{
    text-align: center;
    margin-bottom: 15px;
}
.footer .footer_logo_title{
    font-size: calc(18px + (29 - 18) * ((100vw - 375px) / (1600 - 375)));
    line-height: 1.5;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}
.footer_right p {
    position: relative;
    padding-left: 30px;
}
.footer_right p::before{
    content: '';
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
}
.footer_right .footer_right_hc::before{
    background-image: url(../img/common/icon_hc.png) ;
}
.footer_right .footer_right_kc::before{
    background-image: url(../img/common/icon_kc.png) ;
}
.footer_right .footer_right_eb::before{
    background-image: url(../img/common/icon_eb.png) ;
}
.footer_right .footer_right_ub::before{
    background-image: url(../img/common/icon_ub.png) ;
}

.footer_snsbox ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(30px + (60 - 30) * ((100vw - 320px) / (1400 - 320)));
    margin-bottom: 2em;
}

.footer_snsbox .sns-icon {
    margin-left: 5px;
}

.sns-icon a {
    display: inline-block;
    width: 30px;
    height: 30px;
    transition: .3s;
}

.footer-copybox {
    padding-top: calc(15px + (30 - 15) * ((100vw - 320px) / (1400 - 320)));
    border-top: 1px solid;
    text-align: center;
}

.footer__menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}
.footer__menu-list .menu-item a{
    font-size: calc(10px + (13 - 10) * ((100vw - 320px) / (1400 - 320)));
	padding: 0 1.5vw;
	border-right: 1px solid #ffffff;
}
.footer__menu-list .menu-item:last-child a{
	border-right: none;
}

.copyright{
    font-size: calc(10px + (13 - 10) * ((100vw - 375px) / (1600 - 375)));
}

@media screen and (max-width: 782px){
    .is-layout-flex .footer_left{
        margin-bottom: 1em;
    }
    .footer__menu-list{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer__menu-list .menu-item:first-child a{
		margin-left: 0;
	}
}


/* additional-links */
.blob-outer-container {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    inset: 0;
    margin: auto;
    filter: blur(100px);
    transition: transform 0.1s ease;
}

.blob-inner-container {
    border-radius: 99999px;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50vw;
    height: 50vh;
    min-width: 1000px;
    overflow: hidden;
    background-color: #fff;
    transform: scale(0.8);
}

.blob {
    position: absolute;
    width: 100vw;
    height: 100vh;
    inset: 0;
    margin: auto;
    background: conic-gradient(from 0deg, #08f, #f60, #bbffa1, #4c00ff, #ab2666, #09f);
    animation: spinBlob 8s linear infinite;
}

@keyframes spinBlob {
    0% {
        transform: rotate(0deg) scale(2);
    }
    100% {
        transform: rotate(1turn) scale(2);
    }
}