@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

:root {
    --main-color: #353535;
    --alert-color: #ec5b4b;
    --line-color: #00b900;
}

body {
    box-sizing: border-box;
    font-size: 17px;
    line-height: 1.6em;
    font-family: "Helvetica", "Noto Sans JP", sans-serif;
    background: #eef1ea;
    color: var(--main-color);
}

@media screen and (max-width: 768px) {
    body {
        font-size: 32px;
    }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--main-color);
    cursor: pointer;
}

a:hover {
    opacity: 0.7;
}

[type="button"],
[type="reset"],
[type="submit"] {
    border-style: none;
    cursor: pointer;
}

[type="button"]:disabled {
    cursor: not-allowed;
}

/* Replace focus style removed in the border reset above */
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    cursor: pointer;
}

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

.flex-child {
    justify-content: space-between;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*====================
    Header
====================*/
.site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2em 4.5em;
}

@media screen and (max-width: 1024px) {
    .site-header {
        padding: 2em 2.5em;
    }
}

@media screen and (max-width: 768px) {
    .site-header {
        padding: 3vw;
        justify-content: flex-end;
    }
}

.logo-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: inherit;
}

@media screen and (max-width: 768px) {
    .logo-wrap {
        width: 100%;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

.header-logo {
    margin-left: 0.5rem;
    font-size: 1.5em;
}

@media screen and (max-width: 768px) {
    .header-logo {
        display: flex;
        order: 1;
        margin: 0 5% 2%;
    }
}

.header-logo img {
    max-width: 400px;
    width: calc(400 / 1280 * 100vw);
}

@media screen and (max-width: 768px) {}

.nav-wrap {
    /* padding-top: 1.5em; */
}

@media screen and (max-width: 768px) {
    .nav-wrap {
        display: none;
    }
}

.nav-wrap li {
    margin-right: clamp(21px, 1.875vw, 24px);
    font-size: clamp(15px, 1.5vw, 19px);
    font-weight: bold;
}

.line-add {
    max-width: 133px;
    width: calc(133 / 1280 * 100vw);
}

.openbtn {
    position: relative;
    cursor: pointer;
    width: calc(90 / 1280 * 100vw);
    height: 55px;
    border-radius: 5px;
    z-index: 1000;
    transition: all 0.6s 0s ease;
}

@media screen and (max-width: 768px) {
    .openbtn {
        display: flex;
        width: 12vw;
        order: 0;
    }
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1.5px;
    border-radius: 2px;
    background: #323232;
    width: 45%;
}

@media screen and (max-width: 430px) {
    .openbtn span {
        left: 8px;
        width: 60%;
    }
}

.openbtn span:nth-of-type(1) {
    top: calc(50% - 12px);
}

.openbtn span:nth-of-type(2) {
    top: 50%;
}

.openbtn span:nth-of-type(3) {
    top: calc(50% + 12px);
}

@media screen and (max-width: 768px) {
    .openbtn span:nth-of-type(1) {
        top: 16px;
    }

    .openbtn span:nth-of-type(2) {
        top: 26px;
    }

    .openbtn span:nth-of-type(3) {
        top: 37px;
    }
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
    top: 28px;
    left: 15px;
    transform: translateY(18px) rotate(-45deg);
    width: 45%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
    top: 52px;
    left: 15px;
    transform: translateY(-6px) rotate(40deg);
    width: 45%;
}

@media screen and (max-width: 768px) {
    .openbtn.active span:nth-of-type(1) {
        top: 10px;
        transform: translateY(18px) rotate(-40deg);
    }

    .openbtn.active span:nth-of-type(3) {
        top: 39px;
        transform: translateY(-11px) rotate(40deg);
    }
}

@media screen and (max-width: 430px) {
    .openbtn.active span:nth-of-type(1) {
        left: 8px;
        width: 70%;
    }

    .openbtn.active span:nth-of-type(3) {
        left: 8px;
        width: 70%;
    }
}

.site-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #e1e5dd;
    transition: all 0.6s;
}

.site-nav.active {
    top: 0;
}

.site-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-nav li {
    display: block;
    width: 100%;
    margin: 1em 0;
    text-align: center;
    font-size: larger;
}

@media screen and (max-width: 768px) {
    .site-nav li {
        margin: 0;
        font-size: 4.3vw;
        line-height: 2.3;
    }
}

/*====================
    Footer
====================*/

.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.353em clamp(34px, 4.43vw, 80px);
    background: #e1e5dd;
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 8vw 6vw 6vw;
    }
}

.footer-contents-wrap {
    width: 90.333vw;
    max-width: 1100px;
    flex-wrap: nowrap;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .footer-contents-wrap {
        flex-wrap: wrap;
        /* width: 76.333vw; */
        max-width: 630px;
    }
}

.footer-line-menu {
    display: flex;
    justify-content: end;
    width: 61vw;
    padding: 1.18em clamp(4.2%, 3vw, 80px) 1.18em 0;
    color: var(--line-color);
    vertical-align: baseline;
}

@media screen and (max-width: 768px) {
    .footer-line-menu {
        flex-wrap: wrap;
        margin-right: 0;
        margin-bottom: 11.8vw;
        padding: 2.5vw;
        width: 100%;
    }
}

.footer-line-menu-l {
    width: auto;
}

@media screen and (max-width: 768px) {
    .footer-line-menu-l {
        width: 100%;
    }
}

.footer-copy {
    display: inline-block;
    margin-bottom: 2em;
    font-size: clamp(21px, 2.21vw, 28px);
    font-weight: bold;
    line-height: 1.8em;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
    .footer-copy {
        margin-bottom: 7.3vw;
        font-size: 7.3vw;
        line-height: 1.54;
    }
}

.footer-copy .text1 {
    display: block;
}

@media screen and (max-width: 768px) {
    .footer-copy .text2 {
        display: block;
    }

    .footer-copy .text3 {
        display: block;
    }
}

.want-list {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .want-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-bottom: 8vw;
    }
}

.want-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    color: var(--line-color);
}

@media screen and (max-width: 768px) {
    .want-list li {
        width: 45%;
    }
}

.want-list li .text-wrap {
    margin-left: 1rem;
}

.want-list li .text-wrap p {
    padding-bottom: 0.5rem;
    font-size: clamp(18px, 1.55vw, 20px);
    font-weight: bold;
    letter-spacing: 0.01rem;
}

@media screen and (max-width: 768px) {
    .want-list li {
        justify-content: center;
        flex-direction: column;
    }

    .want-list li img {
        width: 20.834vw;
        max-width: 160px;
    }

    .want-list li .text-wrap {
        margin-top: 1rem;
        margin-left: 0;
    }

    .want-list li .text-wrap p {
        padding-bottom: 0;
        font-size: 5.2vw;
        line-height: 1.4;
    }
}

.want-list .list-house {
    margin-bottom: 2em;
}

.want-list img {
    max-width: 80px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .want-list .list-house {
        margin-bottom: 0;
    }
}

.footer-line-menu-r {
    display: flex;
    flex-direction: column-reverse;
    width: 41%;
    text-align: end;
}

.footer-line-menu .footer-line-menu-r a {
    color: var(--line-color);
    border-bottom: 2px solid color: var(--line-color);
    padding-bottom: 2px;
}

@media screen and (max-width: 768px) {
    .footer-line-menu-r {
        flex-direction: column;
        width: 100%;
    }

    .footer-line-menu .footer-line-menu-r a {
        font-size: 5vw;
        line-height: 1.57;
    }
}

.footer-line-menu .footer-line-menu-r .footer-line-add {
    display: block;
    border-bottom: none;
}

.footer-line-menu .footer-line-menu-r .footer-line-add img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    text-align: right;        
}

.footer-line-menu-r div:last-child {
    margin-bottom: 52%;
}

@media screen and (max-width: 768px) {
    .footer-line-menu-r div:last-child {
        margin-bottom: 0;
    }
}

.footer-line-menu-r .text-wrap {
    text-align: justify;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.8rem;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    .footer-line-menu-r .text-wrap {
        margin-bottom: 5.28vw;
        font-size: 4.16vw;
        line-height: 1.68;
    }
}

.footer-line-menu-r a {
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: bold;
}

.footer-site-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23vw;
    padding: 1.18em 0 1.18em clamp(4.2%, 3vw, 80px);
    text-align: center;
    border-left: 1.3px solid #4a4b4a;
}

.footer-logo img {
    max-width: 250px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .footer-site-menu {
        width: 100%;
        padding: 7.82vw 2.5vw 0;
        border-left: none;
        border-top: 2px solid #959892;
    }

    .footer-logo img {
        width: 65vw;
        max-width: 500px;
        height: auto;
    }
}

.menu-list {
    margin-top: 2rem;
}

.menu-list li {
    margin: 0.5rem 0;
    font-size: clamp(15px, 2vw, 17px);
}

@media screen and (max-width: 768px) {
    .menu-list {
        margin-top: 9.766vw;
    }

    .menu-list li {
        margin: 0;
        font-size: 4.16vw;
        line-height: 2;
    }
}

.copy-right {
    margin-top: 2.3em;
    font-size: 10px;
    line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
    .copy-right {
        margin-top: 9.766vw;
        font-size: 2.9vw;
        line-height: 1.7;
    }
}

.copy-right address {
    font-style: normal;
}

/*====================
    Top Page
====================*/

.sec-key-visual {
    width: 100%;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 100px;
}

@media screen and (max-width: 768px) {
    .sec-key-visual {
        margin: 0px auto 5.5vw;
        padding: 0 2rem;
        width: 81.333vw;
    }
}

.key-visual-pc {
    display: block;
}

.key-visual-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .key-visual-pc {
        display: none;
    }

    .key-visual-sp {
        display: flex;
        justify-content: center;
    }
}

.key-visual-pc .img-key-visual {
    display: block;
    margin: 50px auto 10px;
    width: 70%;
}

.key-visual-sp .img-key-visual {
    margin: 0px auto 4vw;
    padding: 0 13.79vw;
    width: 100%;
}

.key-visual-sp .img-area-wrap {
    display: flex;
    align-items: flex-end;
    margin-left: 2rem;
}

@media screen and (max-width: 768px) {
    .key-visual-sp .img-area-wrap {
        display: flex;
        align-items: baseline;
        margin-left: 8.8vw;
    }
}

@media screen and (max-width: 430px) {
    .key-visual-sp .img-area-wrap {
        margin-left: 4.8vw;
    }
}

@media screen and (max-width: 375px) {
    .key-visual-sp .img-area-wrap {
        margin-left: 0;
    }
}

.img-area-wrap .img-key-visual-area-name {
    display: block;
}

@media screen and (max-width: 768px) {
    .img-area-wrap .img-key-visual-area-name {
        width: 108.26vw;
        height: auto;
    }
}

.sec-key-visual .text-wrap {
    margin: auto;
    max-width: 560px;
    width: 100%;
    text-align: end;
}

@media screen and (max-width: 768px) {
    .sec-key-visual .text-wrap {
        margin-top: 0;
        margin-left: 2.1vw;
        margin-bottom: 0;
        width: 30%;
    }
}

.sec-key-visual .text-wrap p {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .sec-key-visual .text-wrap p {
        justify-content: start;
    }
}

.information img {
    width: 100%;
    height: auto;
    max-width: 22px;
}

.sec-key-visual .text-wrap p:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .information img {
        width: 3.4vw;
    }
}

.information-text {
    display: block;
    padding-left: 10px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .information-text {
        display: none;
    }
}

.sec-key-visual .scroll-img-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 90px auto 40px;
}

@media screen and (max-width: 768px) {
    .sec-key-visual .scroll-img-wrap {
        margin: 10.5vw auto 5.5vw;
    }
}

.scroll-wrap {
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background-color: #ffffff;
    width: 80px;
    height: 80px;
    text-align: center;
    margin-bottom: 10px;
    padding: 24px 0;

    animation: scroll-dot-fire 1.3s infinite linear;
}

@keyframes scroll-dot-fire {
    1% {
        transform: scale(1.05);
    }

    25% {
        transform: scale(1.03);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1.05);
    }
}

.scroll-wrap .scroll {
    display: block;
    margin: auto;
    font-size: 0.85em;
    font-weight: bold;
    line-height: 2.1;
}

@media screen and (max-width: 768px) {
    .scroll-wrap {
        border: unset;
        background-color: unset;
        width: auto;
        height: auto;
        margin-bottom: 1vw;
        padding: 3.15vw 0;

        animation: none;
    }

    .scroll-wrap .scroll {
        font-size: 2.7vw;
        line-height: 1.45;
    }
}

.dot {
    display: block;
    margin: auto;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background-color: #ffffff;
    width: 6px;
    height: 6px;
    text-align: center;

    animation: dot-fire 1.3s infinite linear;
}

@media screen and (max-width: 768px) {
    .dot {
        width: 1.18vw;
        height: 1.18vw;
    }
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 10px;

    animation-delay: -1s;
}

@media screen and (max-width: 768px) {
    .dot:nth-child(2) {
        margin-top: 1.954vw;
        margin-bottom: 1.954vw;
    }
}

.dot:nth-child(3) {
    animation-delay: -2s;
}

@keyframes dot-fire {
    1% {
        transform: scale(1.5);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1.5);
    }
}

.sec-house-and-job {
    width: 90.333vw;
    margin: 80px auto;
    max-width: 1100px;
    padding: 0 1%;
}

@media screen and (max-width: 768px) {
    .sec-house-and-job {
        margin: 7.89vw auto 12vw;
        padding: 0;
        max-width: 630px;
    }
}

.copy {
    font-size: 2em;
}

@media screen and (max-width: 1100px) {
    .copy {
        font-size: 1.5em;
        font-weight: bold;
    }
}

@media screen and (max-width: 375px) {
    .copy {
        font-size: 1.4em;
    }
}

@media screen and (max-width: 768px) {
    .copy .break-wrap-text {
        display: block;
    }
}

.sec-house-and-job .copy {
    margin: 2em 0;
    text-align: center;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.68;
}

@media screen and (max-width: 768px) {
    .sec-house-and-job .copy {
        margin: 1.3em auto;
        padding: 2.7vw 0 2.7vw 5.8vw;
        width: 100%;

        font-size: 5.5vw;
        line-height: 1.9;
        letter-spacing: 0.14rem;
        text-align: left;
    }
}

.highlight {
    background: linear-gradient(transparent 10%,
            #00feff 10% 90%,
            transparent 90%);
}

.sec-house-and-job .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.contents {
    width: 31%;
    transform: scale(1);
    transition: 0.3s ease-in-out;
    margin: 0 3.4% 3em 0;
}

.contents:nth-child(3n) {
    margin-left: 0;
    margin-right: 0;
}

.contents:hover {
    transform: scale(1.01);
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .sec-house-and-job .contents-wrap {
        justify-content: space-around;
    }

    .contents {
        width: 100%;
        margin-right: 0;
        margin-bottom: 8.58vw;
    }
}

.no-recommend-contents {
    margin: 1.3em auto; 
    font-size: 4vw; 
    line-height: 1.6; 
    text-align: center;
}

.no-recommend-contents a {
    display: block;
    padding-top: 1em;
    font-size:3.4vw;
}

.contents-eyeCatch {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 10px;
}

.contents-eyeCatch img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    width: 100%;
}

.full::before {
    content: "成約済";
    display: inline-block;
    position: absolute;
    top: calc(100vw / 17);
    left: -1vw;
    padding: 0.5em 0.1em;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    background-color: #ffffff;
    font-size: clamp(13px, 1.3vw, 14px);
    font-weight: bold;
    letter-spacing: 0.3em;
    writing-mode: vertical-rl;
    z-index: 999;
}

@media screen and (min-width: 1281px) {
    .full::before {
        top: calc(100vw / 25);
    }
}

@media screen and (max-width: 768px) {
    .full::before {
        top: 20vw;
        left: -3%;
        padding: 1.5vw 0.3vw;
        font-size: 3.8vw;
        line-height: 1.6;
    }

    .full-st .full::before {
        font-size: 2.5vw;
    }
}

.content-detail {
    padding: 0.5rem 0;
}

@media screen and (max-width: 768px) {
    .content-detail {
        padding: 0.8vw 2.9vw;
    }
}

.category-icon-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.genre .genre-icon {
    border-right: 1px solid var(--main-color);
    padding-right: 10px;
    padding: 10px clamp(6px, 1vw, 15px) 10px 0;
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 2;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .genre .genre-icon {
        border-right: 2px solid var(--main-color);
        padding: 1.4vw 2.4vw 1.4vw 0;
        font-size: 3.4vw;
    }
}

.genre-icon.house::before {
    content: " ";
    display: inline-block;
    width: clamp(28px, 2.813vw, 36px);
    height: clamp(28px, 2.813vw, 36px);
    background-image: url(../img/icons/house-icon@3x.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: clamp(7px, 1vw, 13px);
    transform: translateY(30%);
}

.genre-icon.people::before {
    content: " ";
    display: inline-block;
    width: clamp(28px, 2.813vw, 36px);
    height: clamp(28px, 2.813vw, 36px);
    background-image: url(../img/icons/person-icon@3x.svg);
    background-size: contain;
    margin-right: clamp(6px, 1vw, 13px);
    transform: translateY(30%);
}

.genre-icon.read::before {
    content: " ";
    display: inline-block;
    width: clamp(28px, 2.813vw, 36px);
    height: clamp(28px, 2.813vw, 36px);
    background-image: url(../img/icons/article-icon@3x.svg);
    background-size: contain;
    margin-right: clamp(6px, 1vw, 13px);
    transform: translateY(30%);
}

.genre-icon.information::before {
    content: " ";
    display: inline-block;
    width: clamp(28px, 2.813vw, 36px);
    height: clamp(28px, 2.813vw, 36px);
    background-image: url(../img/icons/knowledge-icon-BW@2x.png);
    background-size: contain;
    margin-right: clamp(6px, 1vw, 13px);
    transform: translateY(30%);
}

@media screen and (max-width: 768px) {
    .genre-icon.house::before {
        width: 8.464vw;
        height: 8.464vw;
    }

    .genre-icon.people::before {
        width: 8.464vw;
        height: 8.464vw;
    }

    .genre-icon.read::before {
        width: 8.464vw;
        height: 8.464vw;
    }

    .genre-icon.information::before {
        width: 8.464vw;
        height: 8.464vw;
    }
}

.contents-area {
    padding-left: 1.2vw;
    font-size: clamp(13px, 1.1vw, 14px);
    font-weight: bold;
    line-height: 1.95;
}

@media screen and (max-width: 768px) {
    .contents-area {
        padding-left: 2.35vw;
        font-size: 3.4vw;
        line-height: 1.9;
    }
}

.contents-area::before {
    content: " ";
    display: inline-block;
    width: 0.74em;
    height: 0.956em;
    background: url(../img/icons/map-pin-icon@3x.svg) no-repeat;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1.1vw;
    transform: translateY(10%);
}

@media screen and (min-width: 1280px) {
    .contents-area::before {
        margin-right: 0.4em;
    }
}

@media screen and (max-width: 768px) {
    .contents-area::before {
        width: 2.344vw;
        height: 2.995vw;
        margin-right: 2.1vw;
    }
}

.contents .project-name {
    margin-top: 0.8rem;
}

.project-name {
    font-size: clamp(13px, 1.1vw, 14px);
    line-height: 1.95;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .contents .project-name {
        margin-top: 3.5vw;
    }

    .project-name {
        font-size: 3.4vw;
        line-height: 1.9;
    }
}

.contents-wrap .contents .contents-title {
    margin-top: 0.3rem;
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.68;
    font-weight: bold;
    text-align: justify;
}

@media screen and (max-width: 768px) {
    .contents-wrap .contents .contents-title {
        margin-top: 1.2vw;
        font-size: 5vw;
        line-height: 1.57;
    }
}

.premium::after {
    content: " ";
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    background-image: url(../img/premium.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0.4em;
    transform: translateY(3%);
}
@media screen and (max-width: 768px) {
    .premium::after {
        transform: translateY(-1%);
    }
}

.contents .score {
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .contents .score {
        margin-top: 1.2vw;
    }
}

.love {
    padding: 0.7vw 1.3vw 0.7vw 0;
    color: #ec5b4b;
}

.contents .score.love {
    padding: 0;
}

.score.love {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .score.love {
        font-size: 3.1vw;
        line-height: 1.3;
    }

    .love {
        padding: 1vw 2vw 1vw 0;
    }
}

.fa-solid.fa-heart {
    padding-top: 2px;
    padding-right: 8px;
}

.fa-heart::before {
    color: #ec5b4b;
}

.contents-hashtag-wrap {
    margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
    .contents-hashtag-wrap {
        padding: 0 2.9vw;
    }
}

.contents-hashtag-wrap li {
    display: inline-block;
    line-height: 1;
}

@media screen and (max-width: 430px) {
    .contents-hashtag-wrap li {
        display: inline-block;
        line-height: 0.4;
    }
}

.contents-hashtag-wrap li a {
    margin-right: 0.5em;
    font-size: clamp(12px, 0.75em, 14px);
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .contents-hashtag-wrap li a {
        font-size: 3.1vw;
        line-height: 1.6;
    }
}

.btn-more {
    display: block;
    width: 100%;
    background-color: var(--main-color);
    color: #e1e5dd;
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .btn-more {
        padding: 4.8vw;
        font-size: 3.9vw;
        line-height: 0.95;
        font-weight: bold;
    }
}

.sec-news {
    width: 90.333vw;
    margin: 80px auto;
    max-width: 1100px;
    padding: 0 1%;
}

@media screen and (max-width: 768px) {
    .sec-news {
        margin: 7.89vw auto 16vw;
        padding: 0;
        max-width: 630px;
    }
}

.sec-news .contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5vw 0;
}

@media screen and (max-width: 768px) {
    .sec-news .contents-wrap {
        padding: 6vw;
        justify-content: flex-start;
    }
}

.col-left h2 {
    margin-bottom: clamp(25px, 2.5vw, 40px);
    font-size: clamp(22px, 2.15vw, 28px);
    line-height: 1.8;
}

@media screen and (max-width: 768px) {
    .col-left h2 {
        margin-bottom: 1rem;
        font-size: 7.3vw;
        line-height: 1.43;
    }
}

.link-news-list {
    padding-bottom: 3px;
    border-bottom: 2px solid var(--main-color);
    border-radius: 1px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .link-news-list {
        font-size: 0.8rem;
    }
}

.link-news-list::before {
    content: " ";
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../img/icons/news_list_icon.svg) no-repeat;
    background-size: contain;
    margin-right: 0.7rem;
    transform: translateY(10%);
}

@media screen and (max-width: 768px) {
    .link-news-list::before {
        width: 3.907vw;
        height: 2.995vw;
    }
}

.link-news-list.pc {
    display: block;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.68;
}

.sp-link-news-wrap {
    display: none;
}

.link-news-list.sp {
    font-size: 4.45vw;
    line-height: 1.65;
}

@media screen and (max-width: 768px) {
    .link-news-list.pc {
        display: none;
    }

    .sp-link-news-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: end;
        width: 100%;
        margin-top: 7vw;
    }
}

.col-right {
    width: 58%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 0.8rem;
}

.col-right time {
    display: inline-block;
    /* margin-bottom: 10px; */
    font-size: clamp(13px, 1.1vw, 14px);
}

.col-right .news-title {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.76;
}

.col-right .news-title:hover {
    opacity: 0.7;
}

@media screen and (max-width: 768px) {
    .col-right {
        margin-top: 4vw;
        width: 100%;
    }

    .col-right time {
        /* margin-bottom: 2vw; */
        font-size: 3.1vw;
        line-height: 1.6;
    }

    .col-right .news-title {
        font-size: 4.2vw;
        line-height: 1.68;
    }
}

.sec-pick-up {
    width: 90.333vw;
    margin: 80px auto;
    max-width: 1100px;
    padding: 0 1%;
}

.ul-pick-up-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

@media screen and (max-width: 768px) {
    .ul-pick-up-list li {
        margin-bottom: 8.58vw;
    }

    .ul-pick-up-list li:last-of-type {
        margin-bottom: 0;
    }
}

.ul-pick-up-list li {
    max-width: 300px; 
}

.pick-up-img {
    width: 100%;
}

/*====================
    House Detail
====================*/

.pankuz {
    display: flex;
    width: 81.333vw;
    max-width: 800px;
    margin: 3.5em auto;
    font-size: 0.8rem;
    line-height: 1.67;
}

@media screen and (max-width: 768px) {
    .pankuz {
        display: none;
    }
}

.pankuz-li {
    padding-right: 1rem;
}

.pankuz-li .arrow {
    padding-left: 1rem;
}

.pankuz-li a {
    cursor: pointer;
}

.article-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 40px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .article-wrap {
        margin-top: 2.7vw;
        margin-bottom: 7.9vw;
    }
}

.propsWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 16px;
}

.article-header {
    width: 81.333vw;
    max-width: 800px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .article-header {
        width: 79.333vw;
    }
}

.article-header-title {
    margin-top: 0.7rem;
    font-size: clamp(26px, 2.7vw, 30px);
    text-align: left;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .article-header-title {
        margin-top: 0;
        font-size: 4.9vw;
        text-align: justify;
    }
}

.headline-contents-wrap {
    width: 81.333vw;
    max-width: 800px;
    margin: auto;
    padding-bottom: 1em;

    display: grid;
    grid-template-rows: 1.5fr 1fr;
    grid-template-columns: auto auto 1fr 1fr 1fr;
}

.headline-contents-wrap .category-icon-wrap.genre-wrap {
    margin-top: 1rem;
    padding: 0;

    grid-row: 1 / 2;
    grid-column: 1 / 3;
}

.headline-contents-wrap .full::before {
    padding: 0.1em 0.5em;
    position: relative;
    top: 0;
    left: 1vw;
    writing-mode: initial;
}

@media screen and (max-width: 768px) {
    .headline-contents-wrap .full::before {
        padding: 0.3vw 1.5vw;
    }

    .headline-contents-wrap .contents-area {
        padding-left: 2.7vw;
    }
}

.headline-contents-wrap .project-name {
    margin-top: clamp(10px, 1.3vw, 17px);
    margin-left: 1.8em;
    padding-top: 1.17em;
    padding-left: 0.5em;
    grid-row: 1 / 2;
    grid-column: 3 / 7;
}

.headline-contents-wrap .project-name.full-st {
    padding-top: 0.88em;
}

.headline-contents-wrap .project-name .highlight {
    vertical-align: middle;
}

.headline-contents-wrap .category-icon-wrap.score-wrap {
    margin-top: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;

    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.headline-contents-wrap .contents-hashtag-wrap {
    margin-top: 0;
    margin-left: 0.5em;

    grid-row: 2 / 3;
    grid-column: 2 / 6;
}

.headline-contents-wrap .icon-wrap.update-time-wrap {
    grid-row: 2 / 3;
    grid-column: 6 / 7;
}

.update-time-wrap time {
    font-size: 1vw;
}

@media screen and (min-width: 1281px) {
    .update-time-wrap time {
        font-size: 0.75em;
    }
}

@media screen and (max-width: 768px) {
    .headline-contents-wrap {
        width: 79.333vw;
        padding-bottom: 0.5em;
        order: 1;
        display: grid;
        grid-template-rows: 0.5fr 0.7fr 1fr 0.1fr;
        grid-template-columns: 3fr 0.7fr;
    }

    .headline-contents-wrap .category-icon-wrap.genre-wrap {
        margin-top: 0;
        padding: 0;

        font-size: 3.7vw;
        line-height: 1.9;

        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    .headline-contents-wrap .category-icon-wrap.score-wrap {
        margin-top: 4vw;
        padding: 0;
        justify-content: flex-end;

        grid-row: 1 / 2;
        grid-column: 2 / 3;
    }

    .category-icon-wrap.score-wrap .score .love {
        padding-right: 0;
    }

    .headline-contents-wrap .project-name {
        margin-top: 0.5rem;
        margin-left: 0;
        padding-left: 0;
        grid-row: 2 / 3;
        grid-column: 1 / 3;
    }

    .headline-contents-wrap .project-name .highlight {
        vertical-align: middle;
    }

    .headline-contents-wrap .contents-hashtag-wrap {
        margin-left: 0;
        padding: 0;

        grid-row: 3 / 4;
        grid-column: 1 / 3;
    }

    .headline-contents-wrap .icon-wrap.update-time-wrap {
        margin-top: 2vw;
        padding: 0;
        justify-content: end;

        grid-row: 4 / 5;
        grid-column: 1 / 3;
    }

    .update-time-wrap time {
        font-size: 3.1vw;
        line-height: 1.6;
    }
}

.article-eye-catch {
    margin: 2rem auto 1rem;
}

@media screen and (max-width: 768px) {
    .article-eye-catch {
        margin: 1.5rem auto 1rem;
        padding: 0 2rem;
    }
}

.article-eye-catch img {
    width: 100%;
    max-width: 800px;
    max-height: 538px;
    border-radius: 10px;
}

/* ============== swiper ============== */
.container {
    margin-top: 1rem;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .container {
        margin-bottom: 10vw;
    }
}

/* レイアウトのためのスタイル */
.swiper.slider {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .swiper.slider {
        margin-bottom: 2%;
    }
}

/* スライド全体 */
.slider .swiper-slide {
    transition: transform 0.6s;
    width: 100%;
    height: 30vw;
    max-height: 538px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .slider .swiper-slide {
        height: 350px;
    }
}

@media screen and (max-width: 430px) {
    .slider .swiper-slide {
        height: 250px;
    }
}

.slider .swiper-slide img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    align-self: center;
    border-radius: 10px;
}

.slider .swiper-slide.swiper-slide-visible:not(.swiper-slide-active) img {
    opacity: 0.5;
}

/* サムネイル */
.slider-thumbnail {
    width: 81.333vw;
    max-width: 694px;
    margin-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .slider-thumbnail {
        display: none;
    }
}

.slider-thumbnail .swiper-slide {
    opacity: 0.5;
    transition: opacity 0.5s;
    width: calc(100% / 3);
    margin: 0 0.4%;
    max-width: 110px;
    height: 162px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.slider-thumbnail .swiper-slide img {
    position: static;
    transform: none;
    border-radius: 5px;
}

.pagination {
    display: block;
    border-bottom: 4px solid #00feff;
    padding-bottom: 8px;
    border-radius: 10%;
}

.slider-thumbnail .swiper-slide:not(.swiper-slide-thumb-active) .pagination {
    opacity: 0;
}

/* ページネーション */
.swiper-pagination-container {
    display: none;
}

@media screen and (max-width: 768px) {
    .swiper-pagination-container {
        display: block;
        position: relative;
        bottom: -1vw;
    }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -7vw;
    transform: translateX(-54%);
    left: 11vw;
    width: 80%;
}

@media screen and (max-width: 430px) {

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: -9vw;
        left: 0;
        width: 100%;
    }
}

/* ページネーションの余白 */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px 10px;
}

@media screen and (max-width: 430px) {

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 0.5vw 1vw;
    }
}

/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
    background-color: #9a9595;
    height: 0.6vw;
    width: 5.3vw;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background-color: #02fcfc;
}

/* ============== swiper ============== */

.m-st {
    width: 100%;
    padding: 0 16px;
}

@media screen and (min-width: 896px) {
    .m-st {
        max-width: 800px;
        margin: 0 auto;
    }
}

.article-body {
    width: 81.333vw;
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem 0;
}

@media screen and (max-width: 768px) {
    .article-body {
        order: 2;
        width: 79.333vw;
        margin: auto;
        padding: 0;
    }
}

.article-content-inner {
    display: flex;
    flex-direction: column;
}

.article-content-suggest {
    background-color: #fff;
    padding: 5em;
    border-radius: 10px;
}
.article-content-suggest-text-wrap {
    margin: auto;
}
.article-content-suggest-text {
    text-align: center;
    line-height: 1.8;
}
.article-content-suggest-link {
    display: block;
    width: 80%;
    margin-top: 2em;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
    text-align: center;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
}

.article-content-suggest-link.application {
    border: var(--main-color) solid 1px;
    background-color: var(--main-color);
}
.article-content-suggest-link.line-linkage {
    display: none;
    background-color: var(--line-color);
}
.article-content-suggest-annotation {
    display: none;
}

@media screen and (max-width: 768px) {
    .article-content-suggest {
        padding:2.5rem;
    }
    .article-content-suggest-text {
        text-align: left;
        font-size: 4.2vw;
    }
    .article-content-suggest-link {
        font-size: 4.2vw;
        width: 100%;
    }
    .article-content-suggest-annotation {
        font-size: 3.1vw;
        line-height: 2.2;
    }
    .article-content-suggest-link {
        margin-top: 1.5em;
    }

    .article-content-suggest-link.line-linkage {
        display: block;
    }
    .article-content-suggest-annotation {
        display: block;
        margin-top: 0.25rem;
        text-align: center;
    }
}

.article-content-texts {
    margin: 2vw 0;
    padding-bottom: 2vw;
    text-align: justify;
    line-height: 2.2;
}

@media screen and (max-width: 768px) {
    .article-content-texts {
        font-size: 4.2vw;
        line-height: 1.58;
    }
}

.article-content-texts h2,
.article-content-texts h3,
.article-content-texts h4,
.article-content-texts h5,
.article-content-texts h6 {
    margin-bottom: 1em;
}

.article-content-texts h2 {
    font-size: 24px;
}

.article-content-texts p {
    margin-bottom: 2em;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {

    .article-content-texts h2,
    .article-content-texts h3,
    .article-content-texts h4,
    .article-content-texts h5,
    .article-content-texts h6 {
        margin-bottom: 4.7vw;
    }

    .article-content-texts h2 {
        font-size: 4.4vw;
        line-height: 1.67;
    }

    .article-content-texts h3 {
        font-size: 4.3vw;
        line-height: 1.68;
    }

    .article-content-texts h4,
    .article-content-texts h5,
    .article-content-texts h6 {
        margin-top: 2.5vw;
        line-height: 1.68;
    }

    .article-content-texts p {
        line-height: 1.68;
    }
}

.article-content-texts a {
    text-decoration: underline;
    font-weight: bold;
}

.article-content-texts p img {
    margin: 3em auto;
}

.article-content-texts figure {
    margin: 0 auto 3em;
}

.condition-data-container {
    width: 100%;
}

@media screen and (min-width: 769px) {
    .condition-data-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 1em 0em;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 768px) {
    .condition-data-container {
        font-size: 4.2vw;
        line-height: 1.68;
        margin-bottom: 40px;
    }
}

.dl-sbs-st {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 1.2em;
    border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 896px) {
    .dl-sbs-st {
        padding: 2em 200px 0;
        border-bottom: none;
    }
}

@media screen and (min-width: 896px) {
    .dl-sbs-st:first-child {
        padding: 90px 200px 0;
        border-bottom: none;
    }
}

@media screen and (min-width: 896px) {
    .dl-sbs-st:last-child {
        padding: 2em 200px 0;
        border-bottom: none;
    }
}

@media screen and (min-width: 896px) {
    .dl-sbs-st+.form-st {
        padding-top: 2em;
        box-shadow: none;
    }
}

.dt-sbs-st {
    font-weight: 600;
    padding-right: 1em;
}

.dl-condition-data {
    width: 100%;
    padding: 1em 0;
    border-bottom: 1px solid #4a4b4a;
}

@media screen and (min-width: 896px) {
    .dl-condition-data {
        width: 48%;
        padding: 1em 0;
    }

    .dl-condition-data:first-child,
    .dl-condition-data:last-child {
        padding: 1em 0;
        border-bottom: 1px solid #4a4b4a;
    }
}

.dl-condition-data:nth-last-child(2),
.dl-condition-data:last-child {
    width: 100%;
}

.job .dl-condition-data:nth-last-child(3) {
    width: 100%;
}

.pdf-link {
    margin-top: 1em;
    font-weight: bold;
    text-decoration: underline;
}

.propsSingle_contact {
    margin-top: 1em;
    text-align: center;
    width: 100% !important;
}

.sns-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: end;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .article-content-inner .sns-wrap {
        margin-top: 5.9vw;
        justify-content: center;
        order: 2;
    }
}

.sns-wrap a {
    margin-right: 1.3rem;
}

@media screen and (max-width: 768px) {
    .sns-wrap a {
        margin-right: 0.5em;
    }
}

.sns-facebook-icon::after {
    content: " ";
    display: inline-block;
    width: 2.125rem;
    height: 2.125rem;
    background-image: url(../img/icons/icon_fb.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
    transform: translateY(8%);
}

.sns-twitter-icon::after {
    content: " ";
    display: inline-block;
    width: 2.125rem;
    height: 2.125rem;
    background-image: url(../img/icons/icon_twitter.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5rem;
    transform: translateY(20%);
}

.article-content-inner .btn-wrap {
    display: flex;
}

@media screen and (max-width: 768px) {
    .article-content-inner .btn-wrap {
        margin-top: 8vw;
        order: 1;
    }
}

.btn-contact {
    display: block;
    margin: auto;
    width: 50%;
    background-color: var(--main-color);
    color: #e1e5dd;
    font-weight: bold;
    text-align: center;
    padding: 1.8rem;
    border-radius: 10px;
}

.btn-contact:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .btn-contact {
        width: 100vw;
        margin: 0 calc(61.6% - 50vw);
        padding: 6.351vw 1vw;
        font-size: 3.9vw;
        line-height: 0.95;
    }
}

.btn-contact.btn-to_line {
    width: 40%;
    background-color: var(--line-color);
    color: #fff;
    border: none;
}

@media screen and (max-width: 430px) {
    .btn-contact.btn-to_line {
        width: 100%;
    }
}

/*====================
    お知らせ
====================*/
.lower-section {
    margin: 80px 0;
}

@media screen and (max-width: 768px) {
    .lower-section {
        margin: 0 0 10.5vw;
    }
}

.inner {
    margin: 0 auto;
    width: 81.333vw;
    max-width: 800px;
}

.page-title {
    margin: 1.5rem auto;
    text-align: center;
    font-size: 34px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .page-title {
        margin: 1em auto;
        font-size: 6.5vw;
        line-height: 1.6;
    }
}

.news-list {
    margin-top: 2rem;
    padding: 0.5em 0;
}

@media screen and (max-width: 768px) {
    .news-list {
        margin: 2.42vw auto 1.42vw;
        padding: 0.3em 0;
        width: 90%;
    }
}

.news-list li {
    display: inline-flex;
    margin: 1rem 0;
    padding: 1rem 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .news-list li {
        margin: 2vw 0 3vw;
    }
}

.news-list .flex-wrap {
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .news-list .flex-wrap {
        flex-wrap: wrap;
    }
}

.news-list .date {
    width: auto;
    display: block;
    font-size: 0.9rem;
}

.news-list .title {
    margin-left: 3em;
    width: 80%;
    overflow: hidden;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .news-list .date {
        margin-bottom: 4vw;
        width: 100%;
        font-size: 3.1vw;
        line-height: 1.6;
    }

    .news-list .title {
        margin-left: 0;
        width: 100%;
        font-size: 4.16vw;
        line-height: 1.68;
        overflow: visible;
    }
}

.inner.news .btn-wrap {
    margin: 40px auto 0;
    max-width: 800px;
}

.inner.news .btn-wrap .btn-more {
    background-color: #eef1ea;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .inner.news .btn-wrap {
        margin: 0;
    }

    .inner.news .btn-wrap .btn-more {
        padding: 4.8vw;
        background-color: var(--main-color);
        color: #eef1ea;
        font-size: 3.9vw;
        line-height: 0.95;
    }
}

.article-eye-catch.news img {
    border-radius: 0;
}

.news-updated {
    font-size: 13px;
}

@media screen and (max-width: 768px) {
    .article-eye-catch.news {
        padding: 0;
    }

    .article-eye-catch.news img {
        width: 100%;
    }

    .news-updated {
        font-size: 3.1vw;
        line-height: 1.6;
    }
}

/*====================
    Privacy Pricy
====================*/
.div-privacy h2 {
    font-weight: bolder;
    font-size: 1.3em;
    padding: 2em 1em 0.58em 0;
}

.div-privacy p {
    margin-bottom: 1em;
    line-height: 2em;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .div-privacy h2 {
        font-size: 4.37vw;
        line-height: 1.8;
    }

    .div-privacy p {
        font-size: 4.2vw;
        line-height: 1.8;
    }
}

/*====================
    About
====================*/
.lower-section .copy-wrap {
    margin: 4rem auto;
    width: 81.333vw;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .lower-section .copy-wrap {
        margin: 2rem auto 3rem;
    }
}

@media screen and (max-width: 768px) {
    .lower-section .copy-wrap {
        width: 79.333vw;
    }
}

.copy-wrap .copy {
    padding: 0.5rem 3rem 0.5rem 4rem;
    font-weight: bold;
    letter-spacing: 0.08rem;
}

@media screen and (max-width: 768px) {
    .copy-wrap .copy {
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        font-size: 5.5vw;
        line-height: 1.95;
        letter-spacing: 0.053em;
        text-align: left;
    }
}

.about-summary {
    display: block;
    margin: 3rem auto 0;
    width: 100%;
    max-width: 790px;
    text-align: justify;
    font-size: 22px;
    font-weight: bold;
    line-height: 36px;
}

@media screen and (max-width: 1100px) {
    .about-summary {
        margin-top: 50px;
        font-size: 1.15em;
        letter-spacing: 0.12em;
    }
}

@media screen and (max-width: 768px) {
    .about-summary {
        margin-top: 30px;
        font-size: 4.37vw;
        line-height: 1.68;
        letter-spacing: 0.091em;
        font-feature-settings: "palt";
    }
}

.about-site {
    margin: 50px auto 0;
    max-width: 800px;
    width: 81.333vw;
}

@media screen and (max-width: 768px) {
    .about-site {
        margin-top: 6.7vw;
    }
}

.introduce {
    display: flex;
    margin-bottom: 50px;
    padding: 1rem;
}

@media screen and (max-width: 768px) {
    .introduce {
        margin-bottom: 4vw;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
}

.introduce .icon-wrap {
    width: 24%;
}

@media screen and (max-width: 768px) {
    .introduce .icon-wrap {
        margin-bottom: 3.9vw;
        width: 100%;
    }
}

.introduce .icon-wrap img {
    display: block;
    margin: 0 auto;
    width: 100px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .introduce .icon-wrap img {
        width: 15.7vw;
    }
}

.introduce .text-wrap {
    width: 70%;
}

@media screen and (max-width: 768px) {
    .introduce .text-wrap {
        padding: 0 2vw;
        width: 100%;
    }
}

.introduce .text-wrap h2 {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.introduce .text-wrap p {
    font-size: 1.05rem;
    line-height: 30px;
    letter-spacing: 0.096rem;
    text-align: justify;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    .introduce .text-wrap h2 {
        margin-bottom: 3.3vw;
        font-size: 4.37vw;
        line-height: 1.68;
        text-align: center;
    }

    .introduce .text-wrap p {
        font-size: 4.16vw;
        line-height: 1.7;
        letter-spacing: 0.019em;
    }
}

.sec-line {
    margin: 80px auto;
    max-width: 800px;
    width: 81.333vw;
}

@media screen and (max-width: 768px) {
    .sec-line {
        margin: 7.9vw auto;
        width: 82.333vw;
    }
}

.container-line {
    display: grid;
    grid-template-rows: 1fr 1.5fr;
    grid-template-columns: 120px 1fr;
    grid-column-gap: 2rem;
    padding: 1.5em 2em;
    background-color: var(--line-color);
    border-radius: 25px;
    color: #fff;
}

.container-line .img-line {
    display: inline-block;
    margin: auto;
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}

.container-line .title {
    display: inline-block;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    padding-top: 0.8rem;
    font-size: 1.4em;
    letter-spacing: 0.05rem;
    font-weight: bold;
}

.container-line .text {
    display: inline-block;
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    margin-top: 0.4rem;
    text-align: justify;
    font-feature-settings: "palt";
    line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
    .container-line {
        grid-template-rows: 1fr 1.5fr;
        grid-template-columns: 1fr 3fr;
        grid-column-gap: 2vw;
        grid-row-gap: 1.8vw;
        padding: 5vw;
    }

    .container-line .img-line {
        width: 15.625vw;
        grid-row: 1 / 2;
        grid-column: 1 / 2;
        margin-left: 0.6vw;
    }

    .container-line .title {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        margin-left: 0;
        font-size: 4.37vw;
        line-height: 1.68;
        letter-spacing: 0.035em;
        font-feature-settings: "palt";
    }

    .container-line .title .break-wrap-text {
        display: inline-block;
    }

    .container-line .text {
        grid-row: 2 / 3;
        grid-column: 1 / 3;
        margin-top: 0;
        font-size: 4.16vw;
        line-height: 1.7;
        letter-spacing: 0.004em;
    }
}

.sec-sturt {
    max-width: 980px;
    margin: 0 auto;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-sturt__imgWrap {
    width: 35%;

}

.sec-sturt__imgWrap img {
    display: block;
    width: 100%;
}

.sec-sturt__txtWrap {
    width: 60%;
}

.sec-sturt__ttl {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.sec-sturt__txt {
    font-size: 1.05rem;
    line-height: 30px;
    letter-spacing: 0.096rem;
    text-align: justify;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    .sec-sturt {
        width: 81.333vw;
        padding: 0 2vw;
        flex-direction: column;
    }

    .sec-sturt__imgWrap {
        width: 70%;
        margin-bottom: 40px;
    }

    .sec-sturt__txtWrap {
        width: 100%;
    }

    .sec-sturt__ttl {
        font-size: 4.37vw;
        line-height: 1.68;
        text-align: center;
    }

    .sec-sturt__txt {
        font-size: 4.16vw;
        line-height: 1.7;
        letter-spacing: 0.019em;
    }
}

.sec-area-feature {
    margin: 80px auto 0;
    max-width: 800px;
    width: 81.333vw;
}

@media screen and (max-width: 768px) {
    .sec-area-feature {
        margin: 7.9vw auto 0;
        width: 79.333vw;
    }
}

.container-area-figure {
    display: grid;
    grid-template-rows: 0.3fr 0.3fr 0.5fr;
    grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 768px) {
    .container-area-figure {
        grid-template-rows: 0.2fr 0.5fr 0.3fr;
    }
}

.area-name {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

.area-name img {
    width: 64%;
}

@media screen and (max-width: 768px) {
    .area-name {
        grid-column: 1 / 3;
    }

    .area-name img {
        margin: auto;
        width: 37.761vw;
        height: auto;
    }
}

.feature-child {
    grid-row: 2 / 3;
    grid-column: 1 / 2;

    padding: 10% 0;
}

.population-and-vacant p {
    font-weight: bold;
    vertical-align: middle;
    line-height: 2.3em;
}

.population-and-vacant span {
    font-size: 0.8em;
    font-weight: 400;
}

.population-and-vacant span:first-child {
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .population-and-vacant {
        padding: 4.2vw 3.2vw 3.2vw;
    }

    .population-and-vacant p {
        padding-bottom: 3.2vw;
        font-size: 4.16vw;
        line-height: 1.7;
    }

    .population-and-vacant span {
        display: block;
        font-size: 3.4vw;
    }

    .population-and-vacant span:first-child {
        padding: 0;
        font-size: 4.16vw;
        line-height: 1.7;
        font-weight: bold;
    }
}

.feature-child.flex-wrap {
    grid-row: 3 / 4;
    grid-column: 1 / 2;

    padding: 0;
}

.job-rate-graph {
    width: 45%;
}

.job-rate-graph img {
    width: 100%;
}

.job-rate {
    width: 45%;
    margin-left: 1.5em;
}

.job-rate p {
    font-size: 0.8em;
    font-weight: bold;
}

.job-rate p:first-child {
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    .feature-child.flex-wrap {
        grid-column: 1 / 3;
        justify-content: space-between;
    }

    .job-rate-graph img {
        margin: auto;
        width: 31.25vw;
    }

    .job-rate {
        margin-left: 0;
        width: 51%;
    }

    .job-rate p {
        font-size: 4.16vw;
        line-height: 1.7;
        font-feature-settings: "palt";
    }

    .job-rate p:first-child {
        font-size: 4.37vw;
        line-height: 1.68;
    }
}

.map {
    display: grid;
    grid-row: 1 / 4;
    grid-column: 2 / 3;
}

.map img {
    margin: auto;
    display: block;
    width: 88%;
}

@media screen and (max-width: 768px) {
    .map {
        padding-top: 3.1vw;
        grid-row: 2 / 3;
    }

    .map img {
        width: 100%;
    }
}

.feature-list {
    margin-top: 5em;
}

.feature-list li {
    margin-bottom: 3em;
    font-size: 1em;
    text-align: justify;
}

.feature-list li h2 {
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.4rem;
}

.feature-list li p {
    font-size: 1.05rem;
    line-height: 30px;
    letter-spacing: 0.01rem;
}

@media screen and (max-width: 768px) {
    .feature-list {
        margin-top: 10.5vw;
    }

    .feature-list li {
        margin-bottom: 8.5vw;
    }

    .feature-list li h2 {
        margin-bottom: 0.6em;
        font-size: 4.37vw;
        line-height: 1.68;
        letter-spacing: 0.035em;
        text-align: center;
    }

    .feature-list li p {
        font-size: 4.16vw;
        line-height: 1.7;
        letter-spacing: 0.068em;
        font-feature-settings: "palt";
    }
}

.producer-profile {
    margin: 80px auto 0;
    max-width: 800px;
    width: 81.333vw;
}

@media screen and (max-width: 768px) {
    .producer-profile {
        width: 79.333vw;
    }
}

.producer-profile h3 img.pc {
    display: block;
    margin: auto;
    width: 70%;
}

.producer-profile h3 img.sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .producer-profile h3 img.pc {
        display: none;
    }

    .producer-profile h3 img.sp {
        display: block;
        margin: auto;
        width: 75.521vw;
    }
}

.producer-profile .flex-wrap {
    margin-top: 3em;
}

@media screen and (max-width: 768px) {
    .producer-profile .flex-wrap {
        margin-top: 9.5vw;
        flex-direction: column;
    }
}

.portrait {
    width: 30%;
}

.portrait img {
    display: block;
    margin: auto;
    width: 196px;
    height: auto;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .portrait {
        width: 100%;
    }

    .portrait img {
        width: 60%;
    }
}

.profile {
    padding-left: 1.5rem;
    width: 64%;
}

@media screen and (max-width: 768px) {
    .profile {
        padding-left: 0;
        width: 100%;
    }
}

.profile .name {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1.4rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .profile .name {
        margin: 2.3rem auto 1.3rem;
        font-size: 4.37vw;
        line-height: 1.68;
        text-align: center;
    }
}

.profile .profile-text {
    font-size: 0.85rem;
    line-height: 1.8em;
    letter-spacing: 0.03rem;
    text-align: justify;
    font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
    .profile .profile-text {
        font-size: 3.4vw;
        line-height: 1.68;
        letter-spacing: 0.004em;
    }
}

.sec-sns {
    margin: 80px auto 0;
    max-width: 800px;
    width: 81.333vw;
    padding: 5em 0;
    border-top: 1px solid #4a4b4a;
    border-bottom: 1px solid #4a4b4a;
}

@media screen and (max-width: 768px) {
    .sec-sns {
        padding: 10.5vw 0;
        flex-direction: column;
        width: 100%;
    }
}

.sec-sns .sns-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .sec-sns .sns-wrap {
        width: 100%;
        margin-bottom: 3.2vw;
    }
}

.follow-me.flex-wrap img {
    width: 98px;
    height: 73px;
}

.follow-me.flex-wrap p {
    padding-left: 20px;
    font-size: 1.25rem;
    font-weight: bold;
    color: #323232;
}

@media screen and (max-width: 768px) {
    .follow-me.flex-wrap {
        flex-direction: column;
        justify-content: center;
    }

    .follow-me.flex-wrap img {
        margin: auto;
        width: 23.959vw;
        height: auto;
    }

    .follow-me.flex-wrap p {
        margin-top: 5.3vw;
        padding: 0;
        font-size: 4.9vw;
        line-height: 1.6;
    }
}

.sns-account-wrap {
    margin-top: 1.5em;
    padding: 1em 1.5em;
    justify-content: space-evenly;
    width: 85%;
}

.sns-account-wrap img {
    width: 35px;
    height: 35px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .sns-account-wrap {
        margin-top: 6.3vw;
        padding: 0.5em 1.5em;
    }

    .sns-account-wrap img {
        width: 7.813vw;
        height: 7.813vw;
    }
}

.sns-account-wrap .facebook-icon:hover,
.sns-account-wrap .instagram-icon:hover,
.sns-account-wrap .pinterest-icon:hover {
    opacity: 0.7;
}

.facebook-frame {
    padding-left: 1rem;
    width: 50%;
}

.facebook-frame .bottomContent__facebookFrame {
    max-width: 340px;
    width: 100%;
    height: 240px;
    border: none;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .facebook-frame {
        margin: auto;
        padding-left: 0;
        width: 100%;
    }

    .facebook-frame .bottomContent__facebookFrame {
        position: relative;
        left: calc((100% - 340px) / 2);
    }
}

.sec-inquire {
    margin: 80px auto;
    padding: 0 1.5em;
    max-width: 800px;
    width: 81.333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.sec-inquire__imgWrap {
    width: 50%;
}

.sec-inquire__logo {
    max-width: 70%;
}

@media screen and (max-width: 768px) {
    .sec-inquire {
        padding: 0;
        max-width: 800px;
    }
}

.sec-inquire .img-wrap {
    width: 50%;
}

.sec-inquire .img-wrap img {
    margin: 0;
    width: 31.511vw;
    max-width: 242px;
    height: auto;
}

.sec-inquire .btn-wrap {
    width: 50%;
}

.sec-inquire .btn-wrap .btn-contact {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .sec-inquire .btn-wrap .btn-contact {
        margin: 0 auto;
        font-size: 3.9vw;
    }
}

/*====================
    キーワード一覧
====================*/
.message {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .message {
        font-size: 4.16vw;
        line-height: 1.6;
    }
}

.message a {
    text-decoration: underline;
}

.message-inner-redirect-link {
    display: inline-block;
    padding-top: 1em;
}

.search-tag-wrap {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .search-tag-wrap {
        margin-top: 8.42vw;
    }
}

.search-title {
    margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
    .search-title {
        margin-bottom: 0;
        font-size: 4.37vw;
        line-height: 1.68;
    }
}

.search-tag-list {
    margin-bottom: 5vw;
}

.search-tag-list li {
    margin-right: 0.5em;
}

.search-tag {
    letter-spacing: 0.1em;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .search-tag-list {
        margin-bottom: 8vw;
    }

    .search-tag-list li {
        line-height: 1.4;
    }

    .search-tag {
        font-size: 3.1vw;
        line-height: 1;
    }
}

@media screen and (max-width: 430px) {
    .search-tag-list li {
        line-height: 0.8;
    }

    .search-tag {
        line-height: 0.8;
    }
}

.inner.article-list {
    max-width: 1100px;
}

.search-result-list.contents-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 2rem;
    padding-top: 0.5em;
}

@media screen and (max-width: 768px) {
    .inner.article-list {
        max-width: 630px;
    }

    .search-result-list.contents-wrap {
        margin: 1.3em auto;
    }
}

.pagination-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .pagination-nav {
        font-size: 3.4vw;
        list-style: 1.68;
    }
}

.pagination-nav-li {
    width: 30%;
    text-align: center;
}

.pagination-nav-disabled {
    pointer-events: none;
    opacity: 0.2;
}

/*====================
    お問い合わせ
====================*/
.inquiry-form {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .inquiry-form {
        margin-top: 8.42vw;
        font-size: 4.16vw;
    }
}

.inquiry-items dt {
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .inquiry-items dt {
        margin-bottom: 1vw;
        font-size: 4.16vw;
        line-height: 1.68;
    }
}

.inquiry-items .annotation {
    font-size: 0.7em;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.policy {
    font-weight: bold;
}

.require {
    color: var(--alert-color);
}

.input-item-wrap {
    margin-bottom: 2rem;
}

.input-item {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--main-color);
    border-radius: 3px;
}

@media screen and (max-width: 768px) {
    .input-item-wrap {
        margin-bottom: 6.35vw;
    }

    .input-item-wrap:last-child {
        margin-bottom: 6vw;
    }

    .input-item {
        padding: 1.5vw;
    }
}

.input-text {
    width: 50%;
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .input-text {
        width: 100%;
        line-height: 1.3;
    }
}

.input-textarea {
    width: 100%;
    background-color: #ffffff;
}

.input-checkbox-label {
    display: block;
    line-height: 2;
}

.input-checkbox {
    margin-right: 0.5em;
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .input-item-num {
        width: 90%;
    }
}

.input-item-wrap.agreement {
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.p-st {
    text-align: center;
    margin: 2em 0 1.5em;
}

@media screen and (max-width: 768px) {
    .p-st {
        line-height: 1.6;
    }
}

.agree-with-our-policy {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .agree-with-our-policy {
        font-size: 3.5vw;
        line-height: 1.6;
    }
}

.agree-with-our-policy a {
    font-weight: bold;
}

.inquiry-form .btn-contact {
    margin-top: 3rem;
}

@media screen and (max-width: 768px) {
    .inquiry-form .btn-contact {
        width: 100%;
        margin-top: 8vw;
        padding: 4.8vw;
        font-size: 3.9vw;
        line-height: 0.95;
    }
}

.alert-message {
    color: var(--alert-color);
    margin-block-start: 0;
    margin-block-end: 0;
    margin-top: 0.3rem;

    font-size: 0.9rem;
    line-height: 1.8;
}

@media screen and (max-width: 430px) {
    .alert-message {
        margin-top: 0;
    }
}

.alert-message.textarea,
.agree-with-our-policy.alert-message {
    margin-top: 0;
}

/**
 Limited Publication Setting
*/
.limited-publication
{
    opacity: 0.2;
}

.disabled-click {
    pointer-events: none;
}

.limited-publication-text {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
    display: flex;
    justify-content: center;
}

.limited-publication-text.display-none {
    display: none;
}

.limited-publication-text p {
    display: inline-block;
    text-align: left;
    font-weight: bold;
    font-size: clamp(14px, 1.55vw, 20px);
    line-height: 1.6;
}

.limited-publication-text .lock::before {
    display: inline-block;
    position: relative;
    content: "";
    background-image: url("../img/premium.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(40 / 1280 * 100vw);
    height: calc(44 / 1280 * 100vw);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 1.4em;
}

@media screen and (max-width: 768px) {
    .limited-publication-text p {
        font-size: 5vw;
    }

    .limited-publication-text .lock::before {
        width: calc(80 / 768 * 100vw);
        height: calc(84 / 768 * 100vw);
    }
}

@media screen and (max-width:430px){
    .limited-publication-text p {
        font-size: 5.5vw;
    }
    .limited-publication-text .lock::before {
        width: 1.6em;
        height: 1.6em;
        margin-right: 0.3em;
    }
}

.article-content-restrict {
    margin: 2vw 0;
}

.article-content-restrict-text-wrap {
    display: flex;
    justify-content: center;
    margin: 2vw 0;
}

.article-content-restrict-text-wrap .lock::before {
    display: inline-block;
    position: relative;
    content: "";
    background-image: url("../img/premium.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: calc(80 / 1280 * 100vw);
    height: calc(84 / 1280 * 100vw);
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 3em;
}

.article-content-restrict-text {
    font-size: clamp(26px, 2.7vw, 30px);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .article-content-restrict-text-wrap {
        margin-top: 1em;
    }
    .article-content-restrict-text-wrap .lock::before {
        width: calc(80 / 768 * 100vw);
        height: calc(84 / 768 * 100vw);
        transform: translate(-50%, 0%);
        margin-right: 2em;
    }
    .article-content-restrict-text {
        font-size: 4vw;
    }
}

@media screen and (max-width: 430px) {
    .article-content-restrict-text-wrap .lock::before {
        width: 1em;
        height: 1em;
        margin-right: 0.3em;
        top: 0;
        left: 0;
        transform: initial;
    }
    .article-content-restrict-text {
        line-height: 2.8;
    }
}

.article-content-restrict-img-wrap {
    width: 80%;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .article-content-restrict-img-wrap {
        width: 100%;
        margin: 7.9vw auto;
    }
}

.img-add-line-friend {
    width: 100%;
}

/*=====================
 Skeleton Screen Loading for articles
=====================*/
@keyframes skeleton-animation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.contents-skeleton .contents-eyeCatch,
.contents-skeleton .category-icon-wrap,
.contents-skeleton .project-name,
.contents-skeleton .project-name .highlight,
.contents-skeleton .contents-title,
.contents-skeleton .contents-hashtag-wrap {
    position: relative;
    overflow: hidden;
}

.contents-skeleton .contents-eyeCatch::before,
.contents-skeleton .category-icon-wrap::before,
.contents-skeleton .project-name::before,
.contents-skeleton .contents-title::before,
.contents-skeleton .score::before,
.contents-skeleton .contents-hashtag-wrap::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    content: "";
    display: block;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0),
        rgba(255, 255, 255, 0.4),
        rgba(255,255,255,0)
    );
    animation: skeleton-animation 1.2s linear infinite;
}

.contents-skeleton .limited-publication {
    opacity:initial;
}

.contents-skeleton .limited-publication-text,
.contents-skeleton .full {
    display: none;
}

.contents-skeleton .contents-eyeCatch::after,
.contents-skeleton .category-icon-wrap::after,
.contents-skeleton .project-name::after,
.contents-skeleton .contents-title::after,
.contents-skeleton .score::after,
.contents-skeleton .contents-hashtag-wrap::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background: #eee;
    border-radius: 10px;
}

/*=====================
    Style Adjustments
=====================*/
#contact-line .container-line {
    border-radius: 10px;
}