<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
    display: flex;
    flex-wrap: wrap;
}
.flexA {
    justify-content: space-around;
}
.flexB {
    justify-content: space-between;
}
.flexC {
    justify-content: center;
}
/*------------------------------------------------------------
	comLinkUl
------------------------------------------------------------*/
.comLinkUl {
    display: flex;
}
.comLinkUl li {
    z-index: 100;
}
.comLinkUl li a {
    padding: 2px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 257px;
    height: 58px;
    color: #EA3800;
    font-weight: 700;
    box-sizing: border-box;
    border: 2px solid #EA3800;
    border-radius: 48px;
    letter-spacing: 0.02em;
    background-color: #fff;
    font-feature-settings: 'pkna'on;
}
.comLinkUl li a .icon {
    margin: 7px 0 0 0;
}
.comLinkUl li:last-child {
    margin-left: 18px;
}
.comLinkUl li:last-child a {
    color: #fff;
    width: 157px;
    background: #EA3800;
}
.comLinkUl li a:hover {
    opacity: 0.7;
}
@media all and (max-width: 990px) {
    .comLinkUl {
        display: block;
    }
    .comLinkUl li {
        margin-bottom: 7px;
    }
    .comLinkUl li:last-child {
        margin: 0;
    }
    .comLinkUl li a {
        width: auto;
        padding: 5px 39px;
        font-size: 1.6rem;
        justify-content: space-between;
    }
    .comLinkUl li:last-child a {
        width: auto;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 15px;
    color: #EA3800;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
}
.headLine01 span {
    display: block;
    font-size: 4rem;
    letter-spacing: -0.01em;
    font-family: 'Inter', sans-serif;
}
@media all and (max-width: 990px) {
    .headLine01 span {
        margin-top: -4px;
        font-size: 5.4rem;
    }
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    max-width: 1040px;
}
@media (max-width: 1200px) and (min-width: 991px) {
    .content {
        padding: 0 20px;
    }
}
@media all and (max-width: 990px) {
    .content {
        padding: 0 20px;
        max-width: inherit;
    }
}
/*------------------------------------------------------------
	zoomIn
------------------------------------------------------------*/
.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
</pre></body></html>