@charset "UTF-8";

.p_top_center1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.p_top_center2 {
    width: 100%;
    margin: 0 auto;
    text-align: justify;
}
@media (max-width: 600px) {
    .p_top_center1 {
        text-align: justify;
    }
}

.btn_box {
    margin-top: 40px;
    text-align: center;
}
@media (max-width: 600px) {
    .btn_box {
        margin-top: 30px;
    }
}


.blog-entry-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90%;
    margin: 100px auto 0;
}

.blog-entry-list .item {
    display: block;
}

.blog-entry-list .item a {
    display: block;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--color-text);
    text-decoration: none;
}

.blog-entry-list .item a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-entry-list .item a .image {
    width: 100px;
    height: 100px;
    font-size: 8px;
}

.blog-entry-list .item a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-entry-list .item a .doc {
    flex: 1;
    position: relative;
}

.blog-entry-list .item a .doc:before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

.blog-entry-list .item:last-child a .doc:before {
    display: none;
}

.blog-entry-list .item a .doc .date {
    display: inline-block;
    font-size: 0.8rem;
    margin-right: 10px;
}
.blog-entry-list .item a .doc .date .new {
    display: inline-block;
    color: #e74c3c;
    margin-left: 10px;
}

.blog-entry-list .item a .doc .category {
    display: inline-block;
    font-size: 0.8rem;
    margin-right: 10px;
    padding: 3px 6px;
    border-radius: 3px;
    border: 1px solid var(--color-border);
}

.blog-entry-list .item a .doc .ttl {
    font-weight: bold;
    display: inline-block;
}

.blog-entry-list .item a .doc .kiji {
    margin-top: 6px;
}

@media (max-width: 768px) {
    .blog-entry-list {
        margin: 60px auto 0;
    }
}

@media (max-width: 700px) {
    .blog-entry-list {
        width: 100%;
        margin: 30px auto 0;
    }

    .blog-entry-list .item a {
        display: block;
    }

    .blog-entry-list .item a .image {
        width: 60px;
        height: 65px;
        float: left;
        margin: 0 10px 0px 0;
    }

    .blog-entry-list .item a .doc {
        line-height: 1.5;
    }

    .blog-entry-list .item a .doc .date {
        display: inline-block;
    }

    .blog-entry-list .item a .doc .ttl {
        display: block;
    }

    .blog-entry-list .item a .doc .kiji {
        margin-top: 3px;
    }
}
.event-news-area .blog-entry-list {
    width: 100%;
    margin-top: 25px;
}
.blog-entry-list .item a .doc .date {
    font-size: 12px;
}
.blog-entry-list .item a .doc .ttl {
    font-size: 14px;
}
.blog-entry-list .item a .doc .kiji {
    font-size: 14px;
}


.blog-pagenation {
    width: 90%;
    margin: 100px auto 0;
    display: flex;
    justify-content: center;
    gap: 5px;
    list-style: none;
    padding: 0;
}

.blog-pagenation li {
    display: inline-block;
}

.blog-pagenation li a,
.blog-pagenation li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--color-bg-dark);
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.blog-pagenation li a:hover {
    background-color: var(--color-bg-light);
}

.blog-pagenation li.current span {
    background-color: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

@media (max-width: 700px) {
    .blog-pagenation {
        gap: 3px;
        margin: 40px auto 0;
    }

    .blog-pagenation li a,
    .blog-pagenation li span {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== ブログ詳細ページ レイアウト ===== */
.blog-layout {
    width: 100%;
    margin: 0 auto;
    max-width: 560px;
    position: relative;
}

.blog-main-content {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    box-sizing: border-box;
    padding: 30px 20px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.blog-title .midasi {
    text-align: center;
    font-size: 44px;
    margin-bottom: 80px;
    padding: 0 10px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 400;
}



.blog-date {
    text-align: center;
    color: #888;
    margin-bottom: 20px;
    text-align: right;
    position: absolute;
    top: -40px;
    right: 0;
}
.blog-date span {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid var(--color-primary);
    font-size: 0.7rem;
    text-align: center;
    color: var(--color-primary);
}
@media (max-width: 700px) {
    .blog-date {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

.blog-body {
    font-size: 0.88rem;
    line-height: 2;
    margin-bottom: 32px;
}

.blog-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px 80px;
    margin-top: 80px;
}

.blog-gallery-item {
    width: calc(50% - 40px);
    aspect-ratio: 230/150;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-gallery-item p {
    margin-top: 5px;
    font-size: 13px;
}

.blog-sidebars {
    top: 60px;
    display: flex;
    justify-content: center;
    gap: 32px;
    width: 100%;
    margin-top: 40px;
}

.blog-sidebar-left,
.blog-sidebar-right {
    position: absolute;
    top: 80px;
    width: 250px;
    background: #f7fafd;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
    padding: 20px 18px;
    box-sizing: border-box;
    min-height: 200px;
}

.blog-sidebar-left {
    left: -300px;
}

.blog-sidebar-right {
    right: -300px;
}

.blog-sidebar-item {
    margin-bottom: 18px;
}

.blog-sidebar-item-none p {
    font-size: 29px;
    color: #478CD8;
    text-align: center;
    margin-top: 30px;
}

.blog-sidebar-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #537596;
}

.blog-sidebar-item-body {
    font-size: 0.7rem;
    color: #9d9d9d;
    line-height: 1.7;
}

.blog-sidebar-item-button {
    display: block;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: none;
    color: #fff;
    position: absolute;
    top: -80px;
}
.blog-sidebar-item-button.bottom {
    top: auto;
    bottom: -60px;
}
.blog-sidebar-item-button:before {
    content: "";
    position: absolute;
    line-height: 1;
    width: 22px;
    height: 22px;
    top: 50%;
    left: 50%;
    border: 0.25em solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-75%) translateY(-50%) rotate(45deg);
}
.blog-sidebar-item-button:hover:before {
    border-color: var(--color-primary);
}
.blog-sidebar-left .blog-sidebar-item-button {
    right: 0px;
}
.blog-sidebar-right .blog-sidebar-item-button {
    left: 0px;
}
.btn_left .blog-sidebar-item-button,
.btn_right .blog-sidebar-item-button {
    top: auto;
    bottom: 20px;
    display: none;
}
.btn_left .blog-sidebar-item-button {
    left: 10px;
}
.btn_right .blog-sidebar-item-button {
    right: 10px;
}
.blog-sidebar-left .blog-sidebar-item-button:before,
.btn_left .blog-sidebar-item-button:before {
    transform: translateX(-25%) translateY(-50%) rotate(225deg);
}
.blog-sidebar-item-button:hover {
    background: #d0d8e0;
}

@media (max-width: 1024px) {
    .blog-title .midasi {
        font-size: 36px;
    }
    .blog-layout {
        max-width: 460px;
    }
    .blog-gallery {
        gap: 30px 40px;
        margin-top: 40px;
    }
    .blog-gallery-item {
        width: calc(50% - 20px);
    }

}

@media (max-width: 700px) {
    .blog-title .midasi {
        font-size: 22px;
    }
    .btn_left .blog-sidebar-item-button,
    .btn_right .blog-sidebar-item-button {
        display: block;
    }

    .blog-layout {
        max-width: 95%;
    }

    .blog-main-content {
        padding: 60px 10px 80px;
    }

    .blog-gallery {
        gap: 20px 20px;
        margin-top: 30px;
    }
    .blog-gallery-item {
        width: calc(50% - 10px);
    }

    .blog-sidebars {
        display: none;
    }

    .blog-sidebar-item-button {
        width: 40px;
        height: 40px;
    }

    .blog-sidebar-item-button:before {
        width: 10px;
        height: 10px;
    }

    .blog-sidebar-left .blog-sidebar-item-button {
        right: -100px;
    }

    .blog-sidebar-right .blog-sidebar-item-button {
        left: -100px;
    }
}

.blog-bottom-list {
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
    width: 90%;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}

.blog-bottom-list .midasi {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.blog-entry-list2 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
    margin: 20px auto 0;
    list-style: none;
}

.blog-entry-list2 .item {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.blog-entry-list2 .item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    height: 100%;
    width: 100%;
}

.blog-entry-list2 .item .image {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-entry-list2 .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-entry-list2 .item .doc {
    padding: 10px 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-entry-list2 .item .date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 6px;
}

.blog-entry-list2 .item .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: justify;
    line-height: 1.4;
}

.blog-entry-list2 .item .kiji {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 0;
    line-height: 1.4;
    word-break: break-all;
}

.blog-entry-list2 .item .new-label {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.blog-entry-list2 .item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

@media (max-width: 1200px) {
    .blog-entry-list2 {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .blog-entry-list2 {
        gap: 20px 15px;
    }
}

@media (max-width: 600px) {
    .blog-entry-list2 {
        gap: 20px 10px;
    }
}

.works-entry-list-wrap {
    width: 90vw;
    margin: 80px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.works-entry-list-wrap .works-entry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 90%;
    margin: 0 auto;
}

.works-entry-list-wrap .works-entry-list .item {
    width: calc(25% - 12px);
    max-width: 400px;
    list-style: none;
}

.works-entry-list-wrap .works-entry-list .item a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
}

.works-entry-list-wrap .works-entry-list .item a .image {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.works-entry-list-wrap .works-entry-list .item a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-entry-list-wrap .works-entry-list .item a .image .date {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
}
.works-entry-list-wrap .works-entry-list .item a .image .date span {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    padding: 4px 16px 6px;
    background-color: var(--color-bg-dark);
    border-radius: 5px;
    display: inline-block;
}

.works-entry-list-wrap .works-entry-list .item a .doc {
    padding: 10px 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.works-entry-list-wrap .works-entry-list .item a .doc .ttl {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: justify;
    line-height: 1.3;
}

.works-entry-list-wrap .works-entry-list .item a .doc .kiji {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 0;
    line-height: 1.4;
}
@media (max-width: 1000px) {
    .works-entry-list-wrap .works-entry-list {
        width: 100%;
    }
    .works-entry-list-wrap .works-entry-list .item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 700px) {
    .works-entry-list-wrap {
        margin-top: 50px;
    }
}


.works-title {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
    text-align: justify;
}
.works-title .midasi {
    font-size: 49px;
    margin-bottom: 50px;
    padding: 0 10px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 400;
}
@media (max-width: 700px) {
    .works-title .midasi {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0;
    }
}
.works-title .tiiki {
    display: inline-block;
    font-size: 16px;
    margin-right: 20px;
}
.works-title .category {
    display: inline-block;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 3px;
    border: 1px solid #B5C8DC;
}

.works-layout {
    margin-top: 80px;
}
@media (max-width: 600px) {
    .works-layout {
        margin-top: 60px;
    }
}

.works-layout .works-img-caption {
    font-size: 18px;
    margin-top: 10px;
    text-align: justify;
    line-height: 1.4;
}

.works-layout .works-layout-inner1 {
    position: relative;
}
.works-layout .works-layout-inner1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 85%;
    background: #F2F2F2;
    z-index: -1;
}

.works-layout .works-layout-inner1 .works-text {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto 0;
    font-size: 23px;
    font-weight: bold;
    text-align: justify;
    padding-top: 40px;
}
.works-layout .works-img {
    margin: 100px auto 0;
}
.works-layout .works-img img {
    width: 100%;
    height: auto;
}

.works-layout .works-img-wrapper {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}

.works-layout .works-layout-inner1 .idx-main {
    width: 90%;
    margin-top: 40px;
    padding-left: calc((90% - var(--w-max-s)) / 2);
}
.works-layout .works-layout-inner1 .idx1 {
    width: 90%;
    max-width: var(--w-max-s);
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.works-layout .works-layout-inner1 .idx1 img {
    width: 50%;
}

.works-layout .works-layout-inner2 {
    position: relative;
}
.works-layout .works-layout-inner2::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: calc(100% - (100% - var(--w-max-s)) / 2);
    height: 60%;
    background: #F6EDDF;
    z-index: -1;
}
.works-layout .works-layout-inner2::after {
    content: "";
    display: block;
    position: absolute;
    width: 131px;
    aspect-ratio: 262/376;
    background: url(../images/works/works_illust_1.png) no-repeat center center / contain;
    top: 20%;
    left: calc(110% - (100% - var(--w-max-s)) / 2);
    z-index: 0;
}

.works-layout .works-layout-inner2 .idx2 {
    width: 76%;
    margin-left: 24%;
}
.works-layout .works-layout-inner2 .idx3 {
    width: 80%;
    max-width: 1500px;
}

.works-layout .works-layout-inner3 {
    position: relative;
}
.works-layout .works-layout-inner3::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 0;
    width: 50%;
    height: 60%;
    background: var(--color-bg-light);
    z-index: -1;
}
.works-layout .works-layout-inner3::after {
    content: "";
    display: block;
    position: absolute;
    width: 165px;
    aspect-ratio: 330/310;
    background: url(../images/works/works_illust_2.png) no-repeat center center / contain;
    top: 80%;
    right: calc(104% - (100% - var(--w-max-s)) / 2);
    transform: translateY(-50%);
    z-index: 0;
}

.works-layout .works-layout-inner3 .idx4 {
    width: 90%;
    max-width: var(--w-max-s);
}
.works-layout .works-layout-inner3 .idx5 {
    width: 90%;
    max-width: var(--w-max-s);
}

.works-layout .works-layout-inner4 {
    position: relative;
}
.works-layout .works-layout-inner4::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 50%;
    height: 60%;
    background: var(--color-bg-light);
    z-index: -1;
}
.works-layout .works-layout-inner4::after {
    content: "";
    display: block;
    position: absolute;
    width: 119px;
    aspect-ratio: 238/480;
    background: url(../images/works/works_illust_3.png) no-repeat center center / contain;
    top: 22%;
    right: calc((100% - var(--w-max-s)) / 2);
    z-index: 0;
}
.works-layout .works-layout-inner4 .bg-icon {
    content: "";
    display: block;
    position: absolute;
    width: 108px;
    aspect-ratio: 216/216;
    background: url(../images/works/works_illust_4.png) no-repeat center center / contain;
    bottom: 0;
    left: calc((100% - var(--w-max-s)) / 2);
    z-index: 0;
}

.works-layout .works-layout-inner4 .idx6 {
    width: 70%;
    margin-left: 0;
}
.works-layout .works-layout-inner4 .idx7 {
    width: 70%;
    margin-left: 30%;
}
.works-layout .works-layout-inner5 {
    position: relative;
    margin-top: 100px;
    padding-top: 10px;
}
.works-layout .works-layout-inner5::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 85%;
    background: #FBFFF2;
    z-index: -1;
}
.works-layout .works-layout-inner5::after {
    content: "";
    display: block;
    position: absolute;
    width: 116px;
    aspect-ratio: 116/120;
    background: url(../images/works/works_illust_5.png) no-repeat center center / contain;
    top: 22%;
    right: calc(108% - (100% - var(--w-max-s)) / 2);
    z-index: 0;
}
.works-layout .works-layout-inner5 .bg-icon {
    content: "";
    display: block;
    position: absolute;
    width: 154px;
    aspect-ratio: 154/169;
    background: url(../images/works/works_illust_6.png) no-repeat center center / contain;
    bottom: 16%;
    left: calc((100% - var(--w-max-s)) / 2);
    z-index: 0;
}
.works-layout .works-layout-inner5 .idx9 {
    width: 70%;
}
.works-layout .works-layout-inner5 .idx10 {
    width: 70%;
    margin-left: 30%;
}

@media (max-width: 1200px) {
    .works-layout .works-layout-inner2 .idx2 {
        width: 60%;
        margin-left: 40%;
    }
    .works-layout .works-layout-inner4 .idx7 {
        width: 60%;
        margin-left: 40%;
    }
}
@media (max-width: 960px) {
    .works-layout .works-layout-inner2::after {
        width: 64px;
        left: 10px;
    }
    .works-layout .works-layout-inner3::after {
        width: 56px;
        top: 50%;
        left: 4px;
    }
    .works-layout .works-layout-inner4::after {
        width: 56px;
        top: 10%;
        right: 10px;
    }
    .works-layout .works-layout-inner4 .bg-icon {
        width: 60px;
        bottom: 5%;
        left: 10px;
    }
    .works-layout .works-layout-inner5::after {
        width: 60px;
        top: -20px;
        left: 5%;
    }
    .works-layout .works-layout-inner5 .bg-icon {
        width: 100px;
        bottom: 10%;
    }
}
@media (max-width: 700px) {
    .works-layout .works-img {
        margin-top: 60px;
    }
    .works-layout .works-img-caption {
        font-size: 14px;
    }
    .works-layout .works-layout-inner1 .works-text {
        font-size: 16px;
    }
    .works-layout .works-layout-inner1 .idx1 {
        flex-direction: column;
        gap: 10px;
        width: 70%;
    }
    .works-layout .works-layout-inner1 .idx1 img {
        width: 100%;
    }
    .works-layout .works-layout-inner2 .idx3 {
        width: 90%;
    }
    .works-layout .works-layout-inner3 .idx4,
    .works-layout .works-layout-inner3 .idx5 {
        width: 80%;
    } 
}

.other-works {
    width: 90%;
    max-width: var(--w-max-m);
    margin: 100px auto 0;
}
.other-works h2 {
    font-size: 1.6rem;
    line-height: 1.4;
    font-family: Noto Serif JP;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 700px) {
    .other-works {
        margin-top: 60px;
    }
    .other-works h2 {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
}

.page-intro {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-intro p {
    font-size: 1.0rem;
    line-height: 1.4;
    text-align: justify;
    margin-bottom: 0;
}

.tour-entry-list-wrap h2 {
    text-align: center;
    margin-top: 100px;
    font-size: 1.8rem;
    line-height: 1.4;
    font-family: Noto Serif JP;
    font-weight: 600;
}
.tour-entry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    width: 100%;
    margin: 60px auto 0;
}

.tour-entry-list .item {
    width: calc(50% - 35px);
    list-style: none;
}
.tour-entry-list .item a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
}
.tour-entry-list .item a .image {
    width: 100%;
    aspect-ratio: 440/290;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tour-entry-list .item a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-entry-list .item a .doc {
    padding: 30px 0 10px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tour-entry-list .item a .doc .hd {
    font-size: 0.8rem;
}
.tour-entry-list .item a .doc .hd span {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--color-bg-dark);
    color: #fff;
    font-size: 0.8rem;
    margin-right: 10px;
}
.tour-entry-list .item a .doc .hd span.c-land-sale {
    background-color: #741111;
}
.tour-entry-list .item a .doc .ttl {
    font-size: 1.0rem;
    font-weight: bold;
    margin: 20px 0;
    text-align: justify;
    line-height: 1.4;
}
.tour-entry-list .item a .doc .ttl .new {
    display: inline-block;
    font-weight: normal;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-left: 10px;
}
.tour-entry-list .item a .doc table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--color-border);
}
.tour-entry-list .item a .doc table tr {
    border-bottom: 1px solid var(--color-border);
}
.tour-entry-list .item a .doc table th {
    width: 26%;
    text-align: justify;
    font-weight: normal;
    font-size: 0.8rem;
    padding: 10px 0;
    white-space: nowrap;
    vertical-align: top;
}
.tour-entry-list .item a .doc table th img {
    width: 22px;
    display: inline-block;
    margin-right: 10px;
}
.tour-entry-list .item a .doc table td {
    padding: 10px 0 10px 10px;
    font-size: 0.7rem;
}
.tour-entry-list .item a .doc table td ul {
    list-style: disc;
    padding-left: 1.3em;
}
.tour-entry-list .item a .doc table td p {
    padding-left: 1.3em;
}
@media (max-width: 1200px) {
    .tour-entry-list {
        gap: 30px;
    }
    .tour-entry-list .item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 700px) {
    .tour-entry-list-wrap h2 {
        font-size: 1.6rem;
    }
    .tour-entry-list {
        margin-top: 30px;
        gap: 80px;
    }
    .tour-entry-list .item {
        width: 100%;
        position: relative;
    }
    .tour-entry-list .item::after {
        content: "●　●　●　●　●";
        display: inline-block;
        position: absolute;
        top: -57px;
        left: 50%;
        transform: translateX(-50%);
        color: #d2d2d2;
        font-size: 1.2rem;
        text-align: center;
        z-index: 1;
    }
    .tour-entry-list .item:first-child::after {
        display: none;
    }
    .tour-entry-list .item a .doc {
        padding: 15px 0 10px;
    }
    .tour-entry-list .item a .doc .ttl {
        margin: 10px 0;
    }
    .tour-entry-list .item a .doc table th {
        font-size: 0.9rem;
    }
    .tour-entry-list .item a .doc table td {
        font-size: 0.8rem;
    }
}
.tour-entry-list.end .item {
    position: relative;
    padding: 20px;
}
.tour-entry-list.end .item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #717171;
    opacity: 0.65;
    top: 0;
    left: 0;
    z-index: 1;
}
.tour-entry-list.end .item .image {
    position: relative;
    width: 100%;
    aspect-ratio: 440 / 290;
}
.tour-entry-list.end .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-entry-list.end .item .image .end-txt {
    font-size: 1.0rem;
    color: #fff;
    font-family: Noto Serif JP;
    font-weight: 600;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
}
.tour-entry-list.end .item .doc {
    padding-top: 20px;
}
.tour-entry-list.end .item .doc .logo {
    width: 50%;
    display: block;
    margin: 20px auto 0;
}





.tour-mv-box {
    position: relative;
    background-color: #FFEAC5;
}
.tour-mv-box .tour-mv-image {
    width: 100%;
    aspect-ratio: 1920/900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tour-mv-box .tour-mv-image img {
    width: auto;
    height: 100%;
}
.tour-mv-box .tour-mv-inner {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 30%;
    min-width: 480px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 30px;
    box-sizing: border-box;
}
.tour-mv-box .tour-mv-inner .hd {
    font-size: 0.8rem;
}
.tour-mv-box .tour-mv-inner .hd span {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--color-bg-dark);
    color: #fff;
    font-size: 1.0rem;
    margin-right: 10px;
}
.tour-mv-box .tour-mv-inner .ttl {
    font-size: 1.4rem;
    margin: 20px 0;
    text-align: justify;
    line-height: 1.4;
    font-family: Noto Serif JP;
    font-weight: 600;
}
.tour-mv-box .tour-mv-inner table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--color-border);
}
.tour-mv-box .tour-mv-inner table tr {
    border-bottom: 1px solid var(--color-border);
}
.tour-mv-box .tour-mv-inner table th {
    width: 25%;
    text-align: justify;
    font-weight: normal;
    font-size: 1.0rem;
    padding: 10px 0px;
    white-space: nowrap;
}
.tour-mv-box .tour-mv-inner table th img {
    width: 28px;
    display: inline-block;
    margin-right: 10px;
}
.tour-mv-box .tour-mv-inner table td {
    padding: 10px 0 10px 10px;
    font-size: 0.85rem;
}
.tour-mv-box .tour-mv-inner table td a {
    color: var(--color-text);
}
@media (max-width: 1200px) {
    .tour-mv-box .tour-mv-inner {
        width: 90%;
        min-width: auto;
        max-width: 600px;
        position: relative;
        top: -60px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
    .tour-mv-box .tour-mv-inner table th img {
        width: 26px;
    }
}
@media (max-width: 600px) {
    .tour-mv-box .tour-mv-inner {
        top: -30px;
        padding: 16px;
    }
    .tour-mv-box .tour-mv-inner table th {
        width: 26%;
        padding: 8px 0;
        font-size: 0.9rem;
    }
    .tour-mv-box .tour-mv-inner table th img {
        width: 22px;
    }
    .tour-mv-box .tour-mv-inner table td {
        padding: 8px 0 8px 8px;
    }
}

.tour-layout {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}
.tour-layout .btn-box {
    text-align: center;
    margin-top: 60px;
}

.tour-layout-box {
    margin-top: 100px;
}
.tour-layout-box.mtbig {
    margin-top: 150px;
}

.tour-layout-box h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: Noto Serif JP;
}
.tour-layout-box dl {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 90%;
    margin: 0 auto;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
}
.tour-layout-box dl div {
    display: flex;
    gap: 70px;
    border-bottom: 1px solid var(--color-border);
}
.tour-layout-box dl div:last-child {
    border-bottom: none;
}
.tour-layout-box dl div dt {
    font-size: 1.4rem;
    position: relative;
    padding: 14px 0;
}
.tour-layout-box dl div dt::before {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    aspect-ratio: 45/45;
    background: url(../images/tour/point_icon.png) no-repeat center center / contain;
    top: 16px;
    right: -50px;
}
.tour-layout-box dl div dd {
    font-size: 1.0rem;
    padding: 20px 0;
}
.form-box {
    width: 90%;
    margin: 0 auto; 
}
.form-box form {
    width: 100%;
}
.form-box form table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}
.form-box form table tr {
    border-bottom: 1px solid var(--color-border);
}
.form-box form table tr.form-tr-top {
    border-bottom: none;
}
.form-box form table tr.form-tr-top th {
    padding-bottom: 10px;
}
.form-box form table th {
    width: 30%;
    padding: 23px 20px 20px 10px;
    font-size: 0.95rem;
    color: #333;
    text-align: justify;
    vertical-align: top;
}
.form-box form table th span {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    margin-right: 10px;
}
.form-box form table th p {
    padding-left: 3em;
}
.form-box form table .required th span {
    background-color: #3452B4;
}
.form-box form table .optional th span {
    background-color: #AA8040;
}
.form-box form table td {
    padding: 20px 0;
    vertical-align: top;
    color: #333;
}
.form-box form table td .form-date-box {
    margin-bottom: 10px;
}
.form-box form table td .form-date-box:last-child {
    margin-bottom: 0;
}
.form-box form table td span {
    display: inline-block;
    margin-right: 10px;
}
.form-box form table td ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px 20px;
}
.form-box form table td ul.referral-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.form-box form table td .form-address {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.form-box form table td .form-address span {
    width: 100px;
}
.form-box form table td .form-address:last-child {
    margin-bottom: 0;
}
.form-box form .form-box-btn {
    margin-top: 50px;
    text-align: center;
}
.form-box form .form-box-btn p {
    font-size: 0.9rem;
    margin-bottom: 50px;
}
.form-box form .p-email-confirm {
    font-size: 0.9rem;
    color: #333;
    margin: 10px 0 0;
}
.form-box form .p-email-confirm input {
    width: 280px;
    border: none;
    box-shadow: none;
    font-size: 1.2rem;
    color: #3452B4;
    margin-left: 10px;
}
.form-box form .p-email-confirm {
    display: none;
}
.form-box form .form-text {
    font-size: 0.8rem;
    color: #333;
    margin-top: 10px;
}
.form-box .form-error-message {
    color: #f00;
    font-size: 1.0rem;
    margin-top: 5px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid #f00;
    margin-top: 40px;
}
.form-box .form-error-message p {
    font-size: 1.1rem;
    font-weight: bold;
}
.form-box .form-error-message ul {
    padding-left: 20px;
}
.form-box .siryou_box {
    display: none;
}
.form-box .referral-name-box {
    display: none;
}
.form-box .referral-name-box p {
    margin: 10px 0 15px;
}
@media (max-width: 1200px) {
    .tour-layout-box {
        margin-top: 60px;
    }
    .tour-layout-box.mtbig {
        margin-top: 80px;
    }
    .tour-layout-box h2 {
        margin-bottom: 20px;
    }
}
@media (max-width: 1024px) {
    .tour-layout .btn-box {
        margin-top: 40px;
    }
    .form-box {
        width: 100%;
    }
    .tour-layout-box dl div {
        gap: 50px;
    }
    .tour-layout-box dl div dt::before {
        width: 35px;
        right: -40px;
    }
}
@media (max-width: 768px) {
    .form-box form table {
        display: block;
    }
    .form-box form table tbody {
        display: block;
    }
    .form-box form table tr {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .form-box form table th {
        width: 100%;
        padding: 20px 0 5px;
    }
    .form-box form table td {
        width: 100%;
        padding: 5px 0 20px;
    }
}
@media (max-width: 700px) {
    .tour-layout .btn-box {
        margin-top: 30px;
    }
    .tour-layout-box {
        margin-top: 30px;
    }
    .tour-layout-box.mtbig {
        margin-top: 50px;
    }
    
    .tour-layout-box h2 {
        margin-bottom: 15px;
    }
    .tour-layout-box dl {
        width: 100%;
    }
    .tour-layout-box dl div {
        gap: 45px;
    }
    .tour-layout-box dl div dt::before {
        width: 30px;
        right: -35px;
    }
    .tour-layout-box dl div dd {
        padding: 18px 0;
    }
    .form-box form select {
        font-size: 12px;
    }
    .form-box form table td .form-address span {
        width: 80px;
    }
}

.property-mv-box .btn-box {
    text-align: center;
    margin-top: 60px;
}
.property-mv-box .btn-box p {
    margin-bottom: 20px;
}
@media (max-width: 700px) {
    .property-mv-box .btn-box {
        margin-top: 30px;
    }
    .property-mv-box .btn-box p {
        margin-bottom: 10px;
    }
}

.property-layout h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
    line-height: 1.4;
    font-family: Noto Serif JP;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 150px;
}
.property-layout h2 span {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--color-bg-dark);
    color: #fff;
    font-size: 0.8rem;
}
.property-layout h2 span.c-land-sale {
    background-color: #741111;
}
.property-layout .property-layout-inner {
    display: flex;
    gap: 30px;
}
.property-layout .property-layout-inner-l {
    width: 65%;
}
.property-layout .property-layout-inner-r {
    width: 35%;
}
.property-layout .property-layout-inner-l table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--color-border);
}
.property-layout .property-layout-inner-l table tr {
    border-bottom: 1px solid var(--color-border);
}
.property-layout .property-layout-inner-l table tr th {
    width: 25%;
    text-align: justify;
    font-weight: normal;
    font-size: 1.0rem;
    padding: 10px 0px;
    white-space: nowrap;
    vertical-align: top;
}
.property-layout .property-layout-inner-l table tr th img {
    width: 28px;
    display: inline-block;
    margin-right: 10px;
}
.property-layout .property-layout-inner-l table tr td {
    padding: 10px 0 10px 10px;
    font-size: 0.85rem;
}
.property-layout .property-layout-inner-l table tr td.point_box p {
    padding-left: 1.3em;
}
.property-layout .property-layout-inner-r {
    text-align: justify;
    font-size: 14px;
}
.property-layout .property-layout-inner ul {
    padding-left: 1.3em;
}
@media (max-width: 1200px) {
    .property-layout h2 {
        margin-top: 100px;
        margin-bottom: 30px;
    }
}
@media (max-width: 700px) {
    .property-layout .property-layout-inner {
        flex-direction: column;
    }
    .property-layout .property-layout-inner-l {
        width: 100%;
    }
    .property-layout .property-layout-inner-r {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .property-layout h2 {
        margin-top: 60px;
        margin-bottom: 20px;
    }
}


.property-box.photo-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.property-box.photo-box a {
    display: block;
    width: calc(33.33% - 20px);
    text-decoration: none;
}
.property-box.photo-box a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.property-box.photo-box a p {
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-text);
}
@media (max-width: 700px) {
    .property-box.photo-box {
        gap: 10px;
    }
    .property-box.photo-box a {
        width: calc(50% - 5px);
    }
}
.qa-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.qa-list .qa-item {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.qa-list .qa-item dt {
    font-weight: bold;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}
.qa-list .qa-item dt:hover {
    background-color: #f5f5f5;
}
.qa-list .qa-item dt::before {
    content: "Q.";
    display: block;
    position: absolute;
    font-size: 1.6rem;
    font-weight: bold;
    color: #478CD8;
    top: 20px;
    left: 3%;
}
.qa-list .qa-item dt button {
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: url(../images/temp/plus.png) no-repeat center center / contain;
    border: none;
    cursor: pointer;
}
.qa-list .qa-item.open dt button {
    background: url(../images/temp/minus.png) no-repeat center center / contain;
}
.qa-list .qa-item dt p {
    font-size: 1.15rem;
    padding: 30px 10%;
}
.qa-list .qa-item dd {
    margin: 0 auto;
    border-top: 1px solid var(--color-border);
    position: relative;
    display: none;
    background-color: #fff;
}
.qa-list .qa-item dd::before {
    content: "A.";
    display: block;
    position: absolute;
    font-size: 1.6rem;
    font-weight: bold;
    color: #d85f47;
    top: 10px;
    left: 3.5%;
}
.qa-list .qa-item dd div {
    font-size: 1.0rem;
    padding: 20px 10% 30px;
    min-height: 5em;
}
@media (max-width: 700px) {
    .qa-list {
        gap: 5px;
    }
    .qa-list .qa-item dt p {
        padding: 20px 15%;
        font-size: 1.05rem;
    }
    .qa-list .qa-item dd div {
        padding: 10px 15% 20px;
    }
    .qa-list .qa-item dt::before {
        font-size: 1.4rem;
        top: 15px;
    }
    .qa-list .qa-item dd::before {
        font-size: 1.4rem;
        top: 5px;
    }
    .qa-list .qa-item dt button {
        width: 20px;
        height: 20px;
    }
}

.voice-entry-list-wrap {
    width: 90vw;
    margin-left: calc(50% - 45vw);
    position: relative;
    margin-top: 150px;
}
@media (max-width: 768px) {
    .voice-entry-list-wrap {
        margin-top: 80px;
    }
}
.voice-entry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 30px;
    list-style: none;
}
.voice-entry-list .item {
    width: calc(25% - 22.5px);
    max-width: 400px;
    min-width: 360px;
}
.voice-entry-list .item:nth-child(4n - 3) {
    transform: rotate(-3deg);
}
.voice-entry-list .item:nth-child(4n - 2) {
    transform: rotate(1deg);
    margin-top: 40px;
}
.voice-entry-list .item:nth-child(4n - 1) {
    transform: rotate(-1deg);
    margin-top: 20px;
}
.voice-entry-list .item:nth-child(4n) {
    transform: rotate(3deg);
}

.voice-entry-list .item a {
    display: block;
    width: 100%;
    aspect-ratio: 393/479;
    background-image: url(../images/voice/polaroid_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    color: #1D1D1D;
    transition: transform 0.3s ease;
}
.voice-entry-list .item a:hover {
    transform: rotate(-4deg);
}
.voice-entry-list .item a::before {
    content: "";
    display: block;
    width: 60%;
    aspect-ratio: 430/188;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.voice-entry-list .item:nth-child(4n - 3) a::before {
    background-image: url(../images/voice/maskingtape_g.png);
}
.voice-entry-list .item:nth-child(4n - 2) a::before {
    background-image: url(../images/voice/maskingtape_b.png);
}
.voice-entry-list .item:nth-child(4n - 1) a::before {
    background-image: url(../images/voice/maskingtape_y.png);
}
.voice-entry-list .item:nth-child(4n) a::before {
    background-image: url(../images/voice/maskingtape_r.png);
}
.voice-entry-list .item a .image {
    position: absolute;
    top: 6%;
    left: 6%;
    width: 88%;
    aspect-ratio: 350/360;
    z-index: 0;
}
.voice-entry-list .item a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice-entry-list .item a .ttl {
    position: absolute;
    width: 88%;
    left: 6%;
    top: 82.6%;
    font-weight: bold;
    text-align: justify;
    line-height: 1.3;
}
.voice-entry-list .item a .info {
    position: absolute;
    width: 88%;
    left: 6%;
    bottom: 2%;
    text-align: right;
    line-height: 1.3;
}
@media (max-width: 1200px) {
    .voice-entry-list .item:nth-child(4n - 3) {
        transform: rotate(-2deg);
    }
    .voice-entry-list .item:nth-child(4n - 2) {
        margin-top: 10px;
    }
    .voice-entry-list .item:nth-child(4n - 1) {
        margin-top: 10px;
    }
    .voice-entry-list .item:nth-child(4n) {
        transform: rotate(2deg);
    }
}
@media (max-width: 1000px) {
    .voice-entry-list .item {
        min-width: 300px;
    }
    .voice-entry-list .item a .ttl {
        font-size: 0.9rem;
    }
    .voice-entry-list .item a .info {
        font-size: 0.9rem;
    }
}

.voice-mv-box {
    width: 100%;
    position: relative;
    background-color: #FFEAC5;
}
.voice-mv-box .voice-mv-image {
    width: 100%;
    aspect-ratio: 1920/850;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}
.voice-mv-box .voice-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice-mv-box .voice-mv-text {
    position: absolute;
    bottom: 10%;
    left: 6%;
    width: auto;
    height: auto;
}
.voice-mv-box .voice-mv-text .mv-text1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    padding: 3px 10px 6px;
    background-color: #fff;
}
.voice-mv-box .voice-mv-text .mv-text2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    padding: 3px 10px 6px;
    background-color: #fff;
    margin-top: 5px;
}
.voice-mv-box .voice-mv-text .mv-text-bottom {
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    padding: 5px 10px 6px;
    border-radius: 3px;
    background-color: #1E806F;
    color: #fff;
    margin-top: 10px;
}
.voice-mv-box .voice-mv-text .mv-text-bottom span {
    display: inline-block;
    margin: 0 10px;
}
@media (max-width: 1200px) {
    .voice-mv-box .voice-mv-text .mv-text1 {
        font-size: 2.0rem;
    }
    .voice-mv-box .voice-mv-text .mv-text2 {
        font-size: 2.0rem;
    }
}
@media (max-width: 1000px) {
    .voice-mv-box .voice-mv-text .mv-text1 {
        font-size: 1.8rem;
    }
    .voice-mv-box .voice-mv-text .mv-text2 {
        font-size: 1.8rem;
    }
    .voice-mv-box .voice-mv-text .mv-text-bottom {
        font-size: 0.9rem;
    }
}
@media (max-width: 700px) {
    .voice-mv-box .voice-mv-text {
        bottom: -49px;
        left: 3%;
    }
    .voice-mv-box .voice-mv-text .mv-text1 {
        font-size: 1.2rem;
        background-color: rgba(255, 255, 255, 0.7);
    }
    .voice-mv-box .voice-mv-text .mv-text2 {
        font-size: 1.2rem;
        background-color: rgba(255, 255, 255, 0.7);
    }
    .voice-mv-box .voice-mv-text .mv-text-bottom {
        font-size: 0.8rem;
        background-color: rgba(30, 128, 111, 1.0);
    }
}

.voice-entry {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}
.voice-entry .head_text {
    font-size: 1.3rem;
    font-weight: bold;
}
.voice-entry .img-box {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 120px;
}
.voice-entry .img-box .img-tegaki {
    width: calc(36% - 60px);
}
.voice-entry .img-box .img-tegaki .btn1 {
    display: block;
    min-width: auto;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}
.voice-entry .img-box .img-gaikan {
    width: calc(64% - 60px);
}
.voice-entry .img-box .img-gaikan p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.4;
}
.voice-entry .text-box {
    margin-top: 60px;
}
.voice-entry .text-box h2 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.voice-entry .in-img-box {
    margin-top: 60px;
    text-align: center;
}
@media (max-width: 1000px) {
    .voice-entry .img-box {
        gap: 30px 40px;
    }
    .voice-entry .img-box .img-tegaki {
        width: calc(36% - 20px);
    }
    .voice-entry .img-box .img-gaikan {
        width: calc(64% - 20px);
    }
}
@media (max-width: 700px) {
    .voice-entry .img-box {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .voice-entry .img-box .img-tegaki {
        width: 60%;
    }
    .voice-entry .img-box .img-gaikan {
        width: 100%;
    }
    .voice-entry .img-box .img-gaikan p {
        font-size: 13px;
    }
    .voice-entry .in-img-box {
        margin-top: 30px;
    }
    .voice-entry .text-box {
        margin-top: 30px;
    }
}

.voice-entry .voice-gallery {
    margin-top: 80px;
}
.voice-entry .voice-gallery .voice-gallery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}
.voice-entry .voice-gallery .voice-gallery-list .item {
    width: calc(33.3% - 20px);
    aspect-ratio: 1/1;
}
.voice-entry .voice-gallery .voice-gallery-list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 700px) {
    .voice-entry .voice-gallery {
        margin-top: 40px;
    }
    .voice-entry .voice-gallery .voice-gallery-list {
        gap: 10px;
    }
    .voice-entry .voice-gallery .voice-gallery-list .item {
        width: calc(50% - 5px);
    }
}


.voice-entry .staff-box {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 40px;
}
.voice-entry .staff-box .staff-image {
    width: calc(25% - 20px);
    text-align: center;
}
.voice-entry .staff-box .staff-image img {
    width: 70%;
}
.voice-entry .staff-box .staff-image .staff-yakusyoku {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    padding: 5px 10px;    
    position: relative;
}
.voice-entry .staff-box .staff-image .staff-yakusyoku::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    transform: skewX(-30deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.voice-entry .staff-box .staff-image .staff-name {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 2px;
    text-align: center;
}
.voice-entry .staff-box .staff-info {
    width: calc(75% - 20px);
}
.voice-entry .staff-box .staff-info h2 {
    font-size: 1.5rem;
    font-weight: normal;
    padding: 5px 0 5px 60px;
    background-image: url(../images/voice/comment_icon.png);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: left center;
}
.voice-entry .staff-box .staff-info p {
    margin-top: 20px;
    text-align: justify;
}
@media (max-width: 700px) {
    .voice-entry .staff-box {
        margin-top: 60px;
        align-items: flex-start;
        gap: 15px;
    }
    .voice-entry .staff-box .staff-image {
        width: calc(25%);
        text-align: center;
    }
    .voice-entry .staff-box .staff-image img {
        width: 100%;
    }
    .voice-entry .staff-box .staff-info {
        width: calc(75% - 15px);
    }
    .voice-entry .staff-box .staff-info h2 {
        font-size: 1.4rem;
        padding-left: 40px;
        background-size: 35px;
        background-position: left top;
    }
    .voice-entry .staff-box .staff-info p {
        margin-top: 10px;
    }
}

.other-voice {
    margin-top: 150px;
    padding-bottom: 30px;
}
.other-voice h2 {
    font-size: 1.6rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.other-voice .voice-entry-list-wrap {
    margin-top: 60px;
}
@media (max-width: 700px) {
    .other-voice {
        margin-top: 60px;
    }
}

.completion-entry-list-wrap {
    margin-top: 100px;
}
.completion-entry-list-wrap .completion-entry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.completion-entry-list-wrap .completion-entry-list .item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}
.completion-entry-list-wrap .completion-entry-list .item::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-image: url(../images/temp/line_02.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: -50px;
    left: 0;
    z-index: -1;
}
.completion-entry-list-wrap .completion-entry-list .item:last-child::before {
    display: none;
}
.completion-entry-list-wrap .completion-entry-list .item .doc {
    width: calc(50% - 15px);
}
.completion-entry-list-wrap .completion-entry-list .item .doc .ttl {
    font-size: 1.15rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.completion-entry-list-wrap .completion-entry-list .item .doc .kiji {
    font-size: 16px;
}
.completion-entry-list-wrap .completion-entry-list .item .doc .kiji p {
    margin: 10px 0;
}
.completion-entry-list-wrap .completion-entry-list .item .image-gallery {
    width: calc(50% - 15px);
}
.completion-entry-list-wrap .completion-entry-list .item .image-gallery ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
.completion-entry-list-wrap .completion-entry-list .item .image-gallery ul li {
    width: calc(50% - 5px);
    aspect-ratio: 230/150;
}
.completion-entry-list-wrap .completion-entry-list .item .image-gallery ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 700px) {
    .completion-entry-list-wrap {
        margin-top: 60px;
    }
    .completion-entry-list-wrap .completion-entry-list {
        gap: 80px;
    }
    .completion-entry-list-wrap .completion-entry-list .item {
        flex-direction: column;
    }
    .completion-entry-list-wrap .completion-entry-list .item::before {
        bottom: -40px;
    }
    .completion-entry-list-wrap .completion-entry-list .item .doc {
        width: 100%;
    }
    .completion-entry-list-wrap .completion-entry-list .item .doc .kiji {
        font-size: 14px;
    }
    .completion-entry-list-wrap .completion-entry-list .item .image-gallery {
        width: 100%;
    }
}


#loading-more {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-top: 60px;
    animation: blink .4s infinite;
}
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

#no-more-data {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    margin-top: 60px;
    display: none;
}


.h-navi-list {
    padding-bottom: 80px;
}

.h-navi-list ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    list-style: none;
}

.h-navi-list li {
    margin: 0;
    padding: 0;
}

.h-navi-list a {
    display: inline-block;
    align-items: center;
    background: var(--color-bg-light);
    color: #223046;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 999px;
    padding: 10px 40px 10px 20px;
    text-decoration: none;
    box-shadow: none;
    transition: box-shadow 0.2s, background 0.2s;
    position: relative;
    border: none;
    white-space: nowrap;
}

.h-navi-list a:hover {
    box-shadow: 0 2px 8px rgba(34,48,70,0.10);
    background: #e6eef5;
}

.h-navi-list a::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: solid 2px var(--color-primary);
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
}
.h-navi-list a::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg width="18" height="18" xmlns="http://www.w3.org/2000/svg"><path d="M4 7l5 5 5-5" stroke="%23223046" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center/contain;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 1;
}
@media (max-width: 700px) {
    .h-navi-list {
        padding-bottom: 50px;
    }
}

#c-livesumai {
    background-color: #F6EDDF;
}
#c-toti {
    background-color: var(--color-bg-light);
}
#c-ie {
    background-color: #F6EDDF;
}
.faq-entry-list-wrap .faq-category-box {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
    padding: 40px 0 60px;
}
.faq-entry-list-wrap .faq-category-box h2 {
    font-size: 1.7rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-bottom: 30px;
}
@media (max-width: 700px) {
    .faq-entry-list-wrap .faq-category-box {
        padding: 30px 0 40px;
    }
    .faq-entry-list-wrap .faq-category-box h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

.form-layout .p_top0 {
    text-align: center;
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 80px;
}
.form-layout .p_top1 {
    text-align: center;
    font-weight: bold;
}
.form-layout .p_top2 {
    text-align: center;
    margin-top: 100px;
}
.form-layout .tel-box {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-layout .tel-box-title {
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    font-family: "noto serif JP", serif;
}
.form-layout .tel-box-title::before {
    content: "――";
    display: inline-block;
    position: absolute;
    left: -2.5em;
    top: 50%;
    transform: translateY(-50%);
}
.form-layout .tel-box-title::after {
    content: "――";
    display: inline-block;
    position: absolute;
    right: -2.5em;
    top: 50%;
    transform: translateY(-50%);
}
.form-layout .tel-box-tel {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 15px;
}
.form-layout .tel-box-tel a {
    color: var(--color-text);
    text-decoration: none;
}
.form-layout .tel-box-text {
    text-align: justify;
    margin-top: 30px;
}
.form-layout h2 {
    font-size: 1.6rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-top: 80px;
    margin-bottom: 10px;
}
.form-layout h2 span {
    display: inline-block;
    position: relative;
}
.form-layout h2 span::before {
    content: "――";
    display: inline-block;
    position: absolute;
    left: -2.5em;
    top: 50%;
    transform: translateY(-50%);
}
.form-layout h2 span::after {
    content: "――";
    display: inline-block;
    position: absolute;
    right: -2.5em;
    top: 50%;
    transform: translateY(-50%);
}
.form-layout .form-box {
    margin-top: 40px;
}
.form-layout .img-box-tape {
    margin: 100px auto 100px;
    position: relative;
}
.form-layout .img-box-tape::before {
    content: "";
    display: block;
    width: 30%;
    aspect-ratio: 490 / 188;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-image: url("/images/voice/maskingtape_y.png");
}
.form-layout .img-box-tape img {
    width: 100%;
    height: auto;
    transform: rotate(-3deg);
}
@media (max-width: 700px) {
    .form-layout .p_top0 {
        margin-bottom: 40px;
        font-size: 1.6rem;
    }
    .form-layout .p_top2 {
        margin-top: 40px;
        text-align: justify;
    }
    .form-layout .tel-box-text {
        margin-top: 20px;
    }
    .form-layout h2 {
        margin-top: 50px;
    }
    .form-layout .img-box-tape {
        margin: 70px auto 70px;
    }
}

.privacy-layout h2 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 80px;
}
.privacy-layout p {
    margin: 20px 0;
    text-align: justify;
}
.privacy-layout ul {
    margin: 30px 0;
    padding-left: 30px;
    list-style: disc;
}
.privacy-layout ul li {
    margin-top: 10px;
}
.privacy-layout .privacy-layout-bottom {
    margin-top: 80px;
    text-align: justify;
    font-size: 0.9rem;
}
@media (max-width: 700px) {
    .privacy-layout h2 {
        margin-top: 40px;
    }
    .privacy-layout p {
        margin: 15px 0;
    }
    .privacy-layout ul {
        margin: 20px 0;
    }
    .privacy-layout .privacy-layout-bottom {
        margin-top: 40px;
    }
}

.company-layout {
    margin-top: 100px;
    padding-bottom: 100px;
}
.company-layout .company-contents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
}
.company-layout .company-contents-list .company-contents-item {
    width: calc(50% - 15px);    
}
.company-layout .company-contents-list .company-contents-item a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--color-text);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}
.company-layout .company-contents-list .company-contents-item .yaji {
    width: 40px;
    background-color: var(--color-bg-dark);
    position: relative;
}
.company-layout .company-contents-list .company-contents-item .yaji::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-75%, -50%) rotate(45deg);
}
.company-layout .company-contents-list .company-contents-item .doc {
    width: 100%;
    background-color: var(--color-bg-light);
    padding: 15px;
}
.company-layout .company-contents-list .company-contents-item .doc h2 {
    font-size: 1.1rem;
    font-weight: bold;
}
.company-layout .company-contents-list .company-contents-item .doc p {
    text-align: justify;
    font-size: 14px;
    margin-top: 10px;
}
@media (max-width: 700px) {
    .company-layout {
        margin-top: 50px;
        padding-bottom: 60px;
    }
    .company-layout .company-contents-list {
        gap: 20px;
    }
    .company-layout .company-contents-list .company-contents-item {
        width: 100%;
    }
}


.staff-layout {
    margin-top: 100px;
}
.staff-layout .staff-contents-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 30px;
    list-style: none;
}
.staff-layout .staff-contents-list .staff-contents-item {
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.staff-layout .staff-contents-list .staff-contents-item .image {
    width: 60%;
    max-width: 150px;
    object-fit: cover;
    margin: 0 auto;
}
.staff-layout .staff-contents-list .staff-contents-item .doc {
    text-align: center;
}
.staff-layout .staff-contents-list .staff-contents-item .doc p.staff-yakusyoku {
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    color: #fff;
    padding: 5px 15px;
    position: relative;
}
.staff-layout .staff-contents-list .staff-contents-item .doc p.staff-yakusyoku::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    transform: skewX(-30deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.staff-layout .staff-contents-list .staff-contents-item .doc p.staff-name {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 2px;
    text-align: center;
}
.staff-layout .staff-contents-list .staff-contents-item .doc p.staff-text {
    font-size: 14px;
    margin-top: 10px;
    text-align: justify;
}
@media (max-width: 1000px) {
    .staff-layout .staff-contents-list {
        gap: 40px 20px;
    }
    .staff-layout .staff-contents-list .staff-contents-item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 700px) {
    .staff-layout {
        margin-top: 50px;
    }
    .staff-layout .staff-contents-list {
        gap: 30px 20px;
    }
    .staff-layout .staff-contents-list .staff-contents-item .doc p.staff-yakusyoku {
        font-size: 10px;
    }
}

.overview-contents {
    padding-top: 80px;
    padding-bottom: 100px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.overview-contents::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    aspect-ratio: 1920 / 26;
    background-image: url(../images/temp/line_01.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
.overview-contents-inner {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}
.overview-contents h2 {
    font-size: 2.0rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    text-align: center;
}
.overview-contents table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px;
}
.overview-contents table tr {
    border-bottom: 1px solid var(--color-border);
}
.overview-contents table th {
    width: 100px;
    vertical-align: top;
    padding: 20px 20px;
    text-align: justify;
    width: 25%;
}
.overview-contents table td {
    vertical-align: top;
    padding: 20px 0;
    text-align: justify;
}
.overview-contents table td p {
    margin-bottom: 10px;
}
.overview-contents table td p:last-child {
    margin-bottom: 0;
}
.overview-contents table td ul {
    padding-left: 20px;
    list-style: disc;
}
.overview-contents table td ul li {
    margin-top: 10px;
}
.overview-contents table td ul li:first-child {
    margin-top: 0;
}
.overview-contents table td iframe {
    margin-top: 20px;
    max-width: 100%;
    aspect-ratio: 500/330;
    height: auto;
}
@media (max-width: 700px) {
    .overview-contents {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    .overview-contents h2 {
        font-size: 1.6rem;
    }
    .overview-contents table {
        margin-top: 30px;
    }
    .overview-contents table th {
        padding: 20px 0px;
    }
}

.philosophy-contents {
    margin-top: 80px;
    width: 100%;
}
.philosophy-contents .philosophy-contents-text {
    padding: 40px 30px;
    background-color: #F6EDDF;
    text-align: center;
}
.philosophy-contents .philosophy-contents-text h3 {
    font-size: 1.0rem;
    font-weight: bold;
}
.philosophy-contents .philosophy-contents-text h4 {
    font-size: 1.6rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-top: 20px;
}
.philosophy-contents .philosophy-contents-text p {
    margin-top: 20px;
}
.overview-image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    list-style: none;
}
.overview-image-list li {
    width: calc(25% - 1px);
    aspect-ratio: 238/158;
    height: auto;
}
.overview-image-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.office-image-list {
    margin-top: 80px;
}
@media (max-width: 700px) {
    .philosophy-contents {
        margin-top: 50px;
    }
    .philosophy-contents .philosophy-contents-text {
        padding: 30px 20px;
    }
    .office-image-list {
        margin-top: 50px;
    }
}

.concept-mv-box {
    position: relative;
}
.concept-mv-box .concept-mv-image {
    width: 100%;
    aspect-ratio: 1920/900;
    height: auto;
}
.concept-mv-box .concept-mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.concept-mv-box .concept-mv-text {
    position: absolute;
    bottom: 10%;
    left: 5%;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 30px;
    font-size: 1.5rem;
    font-family: "noto serif JP", serif;
}

.mv-bottom-navi {
    background-color: var(--color-bg-light);
}
.mv-bottom-navi.bottom {
    margin-top: 100px;
}
.mv-bottom-navi ul {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    list-style: none;
}
.mv-bottom-navi ul li {
    width: calc(25%);
}
.mv-bottom-navi ul li a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    padding: 10px 20px;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid var(--color-bg-light);
}
.mv-bottom-navi ul li a:hover,
.mv-bottom-navi ul li.current a {
    background-color: #fff;
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.mv-bottom-navi ul li a span {
    display: block;
    font-size: 14px;
}
@media (max-width: 700px) {
    .mv-bottom-navi.bottom {
        margin-top: 60px;
    }
    .concept-mv-box .concept-mv-text {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    .mv-bottom-navi ul li {
        width: 50%;
    }
    .mv-bottom-navi ul li a {
        padding: 5px 5px;
    }
}

.concept-box {
    margin: 160px auto 0;
    width: 90%;
    max-width: var(--w-max-s2);
}
.concept-box p.p01 {
    font-size: 2.2rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.concept-box p.p01 span {
    display: block;
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 10px;
}
.concept-box p.p02 {
    font-size: 1.6rem;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    text-align: center;
    margin-top: 80px;
}
@media (max-width: 700px) {
    .concept-box p.p01 {
        font-size: 1.8rem;
    }
    .concept-box p.p02 {
        font-size: 1.4rem;
        margin-top: 50px;
    }
}
.concept-box .midasi-sq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 100px;
    width: 100vw;
    margin-left: -50vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.concept-box .midasi-sq::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -1px;
    left: 0;
    z-index: 0;
}
.concept-box .midasi-sq::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 0;
}
.concept-box .midasi-sq .sp1 {
    font-size: 140px;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: #fff;
    padding-left: 30px;
}
.concept-box .midasi-sq .sp1::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background-color: var(--color-bg-dark);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.concept-box .midasi-sq .sp1::after {
    content: "";
    display: block;
    width: 110px;
    height: 100%;
    background-color: var(--color-bg-dark);
    transform: skewX(-25deg);
    position: absolute;
    top: 0;
    right: -55px;
    z-index: -1;
}
.concept-box .midasi-sq .sp2 {
    font-size: 1.6rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    position: relative;
}
@media (max-width: 1400px) {
    .concept-box .midasi-sq .sp1 {
        font-size: 120px;
    }
    .concept-box .midasi-sq .sp2 {
        font-size: 1.4rem;
    }
}
@media (max-width: 1200px) {
    .concept-box .midasi-sq .sp1 {
        font-size: 100px;
    }
    .concept-box .midasi-sq .sp2 {
        font-size: 1.2rem;
    }
}
@media (max-width: 700px) {
    .concept-box {
        margin-top: 80px;
    }
    .concept-box .midasi-sq .sp1 {
        font-size: 60px;
    }
    .concept-box .midasi-sq .sp2 {
        font-size: 1.1rem;
    }
}


.box-col2 {
    margin-top: 50px;
}
.box-col2::after {
    content: "";
    display: block;
    clear: both;
}
.box-col2 .box-col2-inner {
    width: 100%;
}
.box-col2 .box-col2-inner:first-child {
    float: left;
    width: calc(50% - 20px);
    margin: 0px 20px 10px 0;
}
.box-col2.type2 .box-col2-inner:first-child {
    text-align: center;
    width: calc(50% - 50px);
    margin: 0px 50px 10px 0;
}
.box-col2.type2 .box-col2-inner:first-child a {
    display: block;
    width: 100%;
}
.box-col2 .box-col2-inner p.p_caption {
    padding: 0 10% 20px;
    font-size: 0.7rem;
    font-weight: normal;
    margin-top: 15px;
    text-align: justify;
}
.box-col2 .box-col2-inner h4 {
    font-size: 1.3rem;
    font-family: "noto serif JP", serif;
    font-weight: 800;
    margin-bottom: 20px;
}
@media (max-width: 700px) {
    .box-col2 {
        flex-direction: column;
        margin-top: 30px;
    }
    .box-col2 .box-col2-inner:first-child {
        width: 40%;
        margin: 0px 10px 5px 0;
    }
    .box-col2.type2 .box-col2-inner:first-child {
        text-align: center;
        width: calc(50% - 15px);
        margin: 0px 15px 5px 0;
    }
    .box-col2.type2 .box-col2-inner:first-child a {
        width: 100%;
    }
    .box-col2 .box-col2-inner h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}


.concept-box .box-flex2 {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.concept-box .box-flex2 .box-flex2-inner {
    width: calc(50% - 10px);
}
.concept-box .box-flex2 .box-flex2-inner:first-child {
    background-color: var(--color-bg-dark);
    width: 300px;
    margin-left: calc((50% - 300px) / 2);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.concept-box .box-flex2 .box-flex2-inner p.p_blue {
    font-size: 1.6rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
@media (max-width: 700px) {
    .concept-box .box-flex2 {
        flex-direction: column;
        margin-top: 30px;
    }
    .concept-box .box-flex2 .box-flex2-inner {
        width: 100%;
    }
    .concept-box .box-flex2 .box-flex2-inner:first-child {
        width: 100%;
        max-width: none;
        margin-left: 0;
        aspect-ratio: auto;
        padding: 15px 0;
        height: auto;
    }
}


.concept-box h3 {
    font-size: 1.6rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 800;
    margin-top: 120px;
    margin-bottom: 50px;
}
@media (max-width: 700px) {
    .concept-box h3 {
        margin-top: 60px;
        margin-bottom: 20px;
    }
}

.concept-box .midasi-square1 {
    position: relative;
    margin-top: 100px;
}
.concept-box .midasi-square1::before {
    content: "";
    display: block;
    width: 1400px;
    height: 100%;
    background-color: var(--color-bg-dark);
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, #2E6CAF 100%);
    position: absolute;
    top: 0;
    right: 0;
    transform: skewX(-25deg);
    z-index: -1;
}
.concept-box .midasi-square1 p {
    font-size: 2.0rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    text-align: justify;
    color: #fff;
    padding: 20px 0px;
    width: 100%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}
@media (max-width: 1000px) {
    .concept-box .midasi-square1 p {
        font-size: 1.6rem;
    }
}
@media (max-width: 700px) {
    .concept-box .midasi-square1 {
        margin-top: 50px;
    }
    .concept-box .midasi-square1 p {
        font-size: 1.2rem;
    }
}


.concept-box p.p04 {
    font-size: 1.0rem;
    text-align: center;
    margin-top: 40px;
}

.concept-box .img-full {
    width: 100vw;
    max-width: 1040px;
    margin: 20px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.concept-box .img-full.type2 {
    margin-top: 100px;
}
@media (max-width: 700px) {
    .concept-box .img-full.type2 {
        margin-top: 50px;
    }
}

.concept-box .img-full-over {
    width: 1920px;
    max-width: none;
    margin: 20px auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .concept-box .img-full-over {
        width: 100vw;
    }
}


.concept-box .ul01 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin-top: 80px;
}
.concept-box .ul01 li {
    width: calc(33.333% - 16px);
}
@media (max-width: 768px) {
    .concept-box .ul01 {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    .concept-box .ul01 li {
        width: 100%;
        max-width: 400px;
    }
}

.concept-box .p09 {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 70px;
}
@media (max-width: 700px) {
    .concept-box .p09 {
        font-size: 1.1rem;
        margin-top: 40px;
    }
}


.concept-box-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    width: 92%;
    margin: 100px auto 0;
}
.concept-box-list li {
    width: calc(33.333% - 16px);
    background-color: var(--color-bg-light);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
}
.concept-box-list li p.p1 {
    font-size: 2.0rem;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.concept-box-list li p.p2 {
    font-size: 1.0rem;
    font-weight: bold;
    margin-top: 20px;
}
.concept-box-list li a.btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-primary);
    padding: 10px 0px;
    border-radius: 30px;
}
@media (max-width: 700px) {
    .concept-box-list {
        margin-top: 50px;
    }
    .concept-box-list li {
        width: 100%;
    }
}


.bg-image-box {
    padding: 40px 0;
    margin-top: 100px;
    background-image: url(../images/concept/concept_bgimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-image-box .p05 {
    font-size: 2.0rem;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    text-align: center;
}
.bg-image-box .p06 {
    font-size: 1.0rem;
    text-align: center;
    margin-top: 60px;
}
.bg-image-box .img1 {
    display: block;
    width: 90%;
    max-width: 1100px;
    height: auto;
    margin: 40px auto 0;
}
.bg-image-box-bottom {
    width: 90%;
    margin: 80px auto 0;
    max-width: var(--w-max-s);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.bg-image-box-bottom .image-box {
    width: 15.6%;
    aspect-ratio: 1/1;
}
.bg-image-box-bottom .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-image-box-bottom .text-box {
    width: calc(84.4% - 20px);
}
.bg-image-box-bottom .text-box p.p07 {
    font-size: 1.15rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    text-align: center;
}
.bg-image-box-bottom .text-box p.p08 {
    display: block;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
    font-family: "noto serif JP", serif;
}
.bg-image-box-bottom .text-box p.p08 span {
    display: inline-block;
}
.bg-image-box-bottom .text-box p.p08 .sp1 {
    font-size: 1.4rem;
}
.bg-image-box-bottom .text-box p.p08 .sp2 {
    font-size: 2.5rem;
}
.bg-image-box-bottom .text-box p.p08 .sp3 {
    font-size: 1.4rem;
}
.bg-image-box-bottom .text-box p.p08 .sp4 {
    font-size: 15px;
}
@media (max-width: 1000px) {
    .bg-image-box .p05 {
        font-size: 1.6rem;
    }
    .bg-image-box .p06 {
        margin-top: 10px;
        padding: 10px;
    }
    .bg-image-box .img1 {
        margin-top: 30px;
    }
    .bg-image-box-bottom {
        margin-top: 30px;
        gap: 10px;
    }
    .bg-image-box-bottom .text-box {
        width: calc(84.4% - 10px);
    }
    .bg-image-box-bottom .text-box p.p07 {
        font-size: 1.0rem;
    }
    .bg-image-box-bottom .text-box p.p08 .sp1 {
        font-size: 1.2rem;
    }
    .bg-image-box-bottom .text-box p.p08 .sp2 {
        font-size: 1.8rem;
    }
    .bg-image-box-bottom .text-box p.p08 .sp3 {
        font-size: 1.2rem;
    }
    .bg-image-box-bottom .text-box p.p08 .sp4 {
        font-size: 13px;
    }
}
@media (max-width: 700px) {
    .bg-image-box {
        padding: 30px 0;
        margin-top: 50px;
    }
    .bg-image-box .p05 {
        font-size: 1.4rem;
    }
    .bg-image-box .p06 {
        font-size: 0.9rem;
    }
    .bg-image-box-bottom {
        flex-direction: column;
    }
    .bg-image-box-bottom .image-box {
        width: 30%;
    }
    .bg-image-box-bottom .text-box {
        width: 100%;
    }
}

.inquiry-box {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 100px auto 0;
}
@media (max-width: 700px) {
    .inquiry-box {
        margin-top: 50px;
    }
}


.img-lightbox1 {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.img-lightbox1::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background-image: url(../images/temp/lightzoom.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 2;
    animation: poyopoyo 2s ease-out infinite;
}
@media (min-width: 769px) {
    .img-lightbox1::before {
        display: none;
    }
    .blog-gallery .img-lightbox1::before {
        display: block;
    }
    .img-lightbox1 {
        cursor: default;
    }
    .img-lightbox1:hover {
        opacity: 1;
    }
    .img-lightbox1:hover img {
        animation: none;
        -webkit-animation: none;
    }
    .blog-gallery .img-lightbox1:hover {
        opacity: 0.8;
    }
    .blog-gallery .img-lightbox1:hover img {
        animation: none;
        -webkit-animation: none;
    }
    .blog-gallery .img-lightbox1 {
        cursor: pointer;
    }
}
@media (max-width: 700px) {
    .img-lightbox1::before {
        width: 24px;
        height: 24px;
    }
}


@keyframes poyopoyo {
    0%, 40%, 60%, 80% {
        transform: scale(1.0);
    }
    50%, 70% {
        transform: scale(0.95);
    }
}

.flow-top {
    padding: 80px 0 100px;
    width: 90%;
    max-width: var(--w-max-m);
    margin: 0 auto;
}
.flow-top .flow-top-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    list-style: none;
    width: 100%;
    margin: 80px auto 0;
}
.flow-top .flow-top-list li {
    width: calc(25% - 30px);
}
.flow-top .flow-top-list li a {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-decoration: none;
    color: var(--color-text);
}
.flow-top .flow-top-list li p {
    font-size: 1.0rem;
    text-align: center;
    margin-top: 25px;
}
@media (max-width: 1000px) {
    .flow-top .flow-top-list {
        gap: 20px;
    }
    .flow-top .flow-top-list li {
        width: calc(25% - 15px);
    }
    .flow-top .flow-top-list li p {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}
@media (max-width: 800px) {
    .flow-top .flow-top-list li {
        width: calc(50% - 10px);
        max-width: 240px;
    }
}
@media (max-width: 700px) {
    .flow-top {
        padding: 50px 0 50px;
    }
    .flow-top .flow-top-list {
        margin-top: 40px;
    }
}

.flow-box {
    background-color: #F8F8F8;
}
.flow-box .flow-midasi {
    width: 100%;
    aspect-ratio: 1920/590;
    position: relative;
    overflow: hidden;
}
.flow-box .flow-midasi h2 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-family: "noto serif JP", serif;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
}
.flow-box .flow-midasi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 700px) {
    .flow-box .flow-midasi h2 {
        font-size: 1.6rem;
    }
}

.flow-box .flow-box-inner {
    width: 90%;
    max-width: var(--w-max-s2);
    margin: 0 auto;
    padding: 90px 0 90px;
}
.flow-box .flow-ol-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
    list-style: none;
    position: relative;
}
.flow-box .flow-ol-list li {
    padding: 40px 6%;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    position: relative;
}
.flow-box .flow-ol-list li .flow-ol-list-inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 20px;
}
.flow-box .flow-ol-list li .doc .p1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.0;
    position: absolute;
    top: -20px;
    left: -20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}
.flow-box .flow-ol-list li .p1 span {
    display: block;
    font-size: 1.0rem;
    line-height: 1.0;
    font-family: ta-koigokoro, sans-serif;
}
.flow-box .flow-ol-list li .doc {
    width: calc(60% - 20px);
}
.flow-box .flow-ol-list li .doc h3 {
    font-size: 1.15rem;
    font-weight: bold;
}
.flow-box .flow-ol-list li .doc p {
    font-size: 0.98rem;
}
.flow-box .flow-ol-list li .image {
    width: 40%;
}
@media (max-width: 700px) {
    .flow-box .flow-box-inner {
        padding: 60px 0 60px;
    }
    .flow-box .flow-ol-list {
        gap: 60px;
    }
    .flow-box .flow-ol-list li {
        gap: 20px;
        padding: 30px 5%;
    }
    .flow-box .flow-ol-list li .flow-ol-list-inner {
        display: block;
    }
    .flow-box .flow-ol-list li .doc {
        width: 100%;
    }
    .flow-box .flow-ol-list li .doc .p1 {
        width: 60px;
        height: 60px;
        top: -35px;
        left: -15px;
    }
    .flow-box .flow-ol-list li .image {
        width: 45%;
        float: right;
        margin-left: 10px;
    }
}

.flow-bottom {
    margin: 100px auto 0;
    width: 90%;
    max-width: var(--w-max-s2);
}
.flow-bottom h2 {
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.flow-bottom .flow-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
}
.flow-bottom .flow-bottom-inner .image {
    width: 30%;
}
.flow-bottom .flow-bottom-inner .doc {
    width: calc(70% - 15px);
}
.flow-bottom .flow-bottom-inner .doc p {
    font-size: 0.9rem;
}
@media (max-width: 700px) {
    .flow-bottom {
        margin-top: 50px;
    }
    .flow-bottom h2 {
        font-size: 1.6rem;
    }
    .flow-bottom .flow-bottom-inner {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        align-items: center;
    }
    .flow-bottom .flow-bottom-inner .image {
        width: 80%;
    }
    .flow-bottom .flow-bottom-inner .doc {
        width: 100%;
    }
}


.spec-top-box {
    width: 90%;
    max-width: var(--w-max-s2);
    margin: 0 auto;
    padding: 80px 0 20px;
}
.spec-top-box .h-navi-list {
    margin-top: 80px;
}
@media (max-width: 700px) {
    .spec-top-box {
        padding: 50px 0 10px;
    }
    .spec-top-box .h-navi-list {
        margin-top: 50px;
    }
}

.spec-box {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 100px;
    position: relative;
}
.spec-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    aspect-ratio: 1920 / 26;
    background-image: url(../images/temp/line_01.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
.spec-box .spec-box-inner {
    width: 90%;
    max-width: var(--w-max-s2);
    margin: 0 auto;
}
.spec-box h2 {
    font-size: 2.5rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.spec-box p.p01 {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 60px;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.spec-box p.p02 {
    margin-top: 30px;
    text-align: center;
}
.spec-box p.p03 {
    font-size: 0.8rem;
    margin-top: 30px;
    text-align: center;
}
.spec-box p.p04 {
    margin-top: 60px;
    text-align: justify;
}
@media (max-width: 700px) {
    .spec-box {
        padding: 50px 0 50px;
    }
    .spec-box h2 {
        font-size: 1.8rem;
    }
    .spec-box p.p01 {
        font-size: 1.1rem;
        margin-top: 30px;
    }
    .spec-box p.p02 {
        margin-top: 20px;
        text-align: justify;
    }
    .spec-box p.p03 {
        margin-top: 20px;
        text-align: justify;
    }
}

.spec-box .spec-table1 {
    width: 100%;
    margin-top: 60px;
    border-collapse: collapse;
}
.spec-box .spec-table1 th,
.spec-box .spec-table1 td {
    border: 1px solid var(--color-primary);
    padding: 10px;
    text-align: center;
}
.spec-box .spec-table1 th {
    font-weight: normal;
    text-align: justify;
    width: 20%;
}
.spec-box .spec-table1 .spec-head {
    text-align: center;
    width: 30%;
}
@media (max-width: 700px) {
    .spec-box .spec-table1 {
        margin-top: 30px;
    }
    .spec-box .spec-table1 th,
    .spec-box .spec-table1 td {
        padding: 10px 5px;
    }
}

.spec-box .img-full {
    width: 100%;
    max-width: 1040px;
    margin: 60px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 700px) {
    .spec-box .img-full {
        margin-top: 30px;
    }
}

.spec-box h3 {
    font-size: 1.3rem;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    margin-top: 60px;
    text-align: center;
}
.spec-box p.h3bottom {
    font-size: 1.0rem;
    text-align: center;
    font-weight: bold;
}
.spec-box .box-col2 {
    margin-top: 30px;
}
@media (max-width: 700px) {
    .spec-box h3 {
        margin-top: 40px;
    }
}

.spec-box .spec-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
    list-style: none;
}
.spec-box .spec-list li {
    width: calc(50% - 30px);
}
.spec-box .spec-list li h3 {
    font-size: 1.3rem;
    padding-left: 40px;
    background-image: url(../images/spec/spec_noimg1.png);
    background-size: 30px auto;
    background-position: left 6px;
    background-repeat: no-repeat;
    text-align: justify;
}
.spec-box .spec-list li:nth-child(2) h3 {
    background-image: url(../images/spec/spec_noimg2.png);
}
.spec-box .spec-list li:nth-child(3) h3 {
    background-image: url(../images/spec/spec_noimg3.png);
}
.spec-box .spec-list li:nth-child(4) h3 {
    background-image: url(../images/spec/spec_noimg4.png);
}
.spec-box .spec-list li:nth-child(5) h3 {
    background-image: url(../images/spec/spec_noimg5.png);
}
.spec-box .spec-list li:nth-child(6) h3 {
    background-image: url(../images/spec/spec_noimg6.png);
}

.spec-box .spec-list li p {
    text-align: justify;
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .spec-box .spec-list {
        gap: 40px;
    }
    .spec-box .spec-list li {
        width: calc(50% - 20px);
    }
    .spec-box .spec-list li h3 {
        padding-left: 30px;
        background-size: 25px auto;
        background-position: left 5px;
    }
}
@media (max-width: 700px) {
    .spec-box .spec-list {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    .spec-box .spec-list li {
        width: 100%;
    }
    .spec-box .spec-list li h3 {
        font-size: 1.1rem;
        padding-left: 25px;
        background-size: 20px auto;
        background-position: left 3px;
    }
    .spec-box .spec-list li p {
        margin-top: 10px;
    }
    
}


.warranty-top-box {
    width: 90%;
    max-width: var(--w-max-s2);
    margin: 0 auto;
    padding: 80px 0 20px;
}
.warranty-top-box .h-navi-list {
    margin-top: 80px;
}
@media (max-width: 700px) {
    .warranty-top-box {
        padding: 50px 0 10px;
    }
    .warranty-top-box .h-navi-list {
        margin-top: 50px;
    }
}


.warranty-box {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 100px;
    position: relative;
}
.warranty-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    aspect-ratio: 1920 / 26;
    background-image: url(../images/temp/line_01.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
.warranty-box .warranty-box-inner {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}
.warranty-box h2 {
    font-size: 2.5rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.warranty-box h3 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 60px;
}
.warranty-box h3::before {
    content: "〇";
    display: inline-block;
    margin-right: 10px;
}
.warranty-box p.p01 {
    text-align: justify;
    margin-top: 20px;
}
.warranty-box p.p02 {
    margin-top: 60px;
    font-size: 1.6rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    text-align: center;
}
.warranty-box p.p03 {
    margin-top: 10px;
    text-align: justify;
}
@media (max-width: 700px) {
    .warranty-box {
        padding: 50px 0 50px;
    }
    .warranty-box h2 {
        font-size: 1.8rem;
    }
    .warranty-box h3 {
        margin-top: 20px;
    }
    .warranty-box p.p02 {
        margin-top: 30px;
    }
}

.warranty-box .img-full {
    width: 100%;
    max-width: 1040px;
    margin: 60px auto 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
@media (max-width: 700px) {
    .warranty-box .img-full {
        margin-top: 30px;
    }
}

.warranty-box .warranty-list-box {
    margin-top: 20px;
    padding: 20px 30px;
    background-color: var(--color-bg-light);
    border-radius: 20px;
}
.warranty-box .warranty-list-box ul {
    padding-left: 30px;
}


.president-mv {
    width: 100%;
    aspect-ratio: 1920/957;
    position: relative;
}
.president-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.president-mv .president-mv-inner {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}
.president-mv .president-mv-inner .president-mv-text1 {
    font-size: 97px;
    line-height: 1.1;
    text-align: justify;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.president-mv .president-mv-inner .president-mv-text2 {
    font-size: 1.2rem;
    line-height: 1.1;
    text-align: justify;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-top: 20px;
}
.president-mv .president-mv-inner .president-mv-text2 span {
    font-size: 1.0rem;
    margin-right: 10px;
}
@media (max-width: 1600px) {
    .president-mv .president-mv-inner .president-mv-text1 {
        font-size: 60px;
    }
}
@media (max-width: 700px) {
    .president-mv .president-mv-inner {
        left: 5%;
    }
    .president-mv .president-mv-inner .president-mv-text1 {
        font-size: 32px;
    }
    .president-mv .president-mv-inner .president-mv-text2 {
        font-size: 1.2rem;
        margin-top: 10px;
    }
}

.president-header {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}
.president-header-inner1 {
    width: 45%;
}
.president-header-inner2 {
    width: calc(55% - 60px);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 0 20px 20px;
}
.president-header-inner2::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 30px);
    background-color: #ABABAB;
    position: absolute;
    top: 0;
    left: 0;
}
.president-header-inner2::after {
    content: "";
    display: block;
    width: calc(100% + 30px);
    height: 1px;
    background-color: #ABABAB;
    position: absolute;
    bottom: 0;
    left: -30px;
}
.president-header-inner1 p {
    font-size: 50px;
    text-align: justify;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.president-header-inner2 p {
    font-size: 0.95rem;
    text-align: justify;
    color: #ABABAB;
}
@media (max-width: 1000px) {
    .president-header-inner1 p {
        font-size: 40px;
    }
}
@media (max-width: 700px) {
    .president-header {
        flex-direction: column;
        gap: 20px;
    }
    .president-header-inner1 {
        width: 100%;
    }
    .president-header-inner2 {
        width: 100%;
    }
    .president-header-inner1 p {
        font-size: 32px;
    }
    .president-header-inner2 p {
        font-size: 0.8rem;
    }
}

.head_text {
    font-size: 2.0rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
@media (max-width: 700px) {
    .head_text {
        font-size: 1.6rem;
    }
}

.president-layout {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
    padding: 80px 0 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    gap:20px
}
.president-layout .president-l {
    width: 200px;
}
.president-layout .president-l .image {
    width: 80%;
    aspect-ratio: 137/198;
    overflow: hidden;
    margin: 0 auto;
}
.president-layout .president-l .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.president-layout .president-l .text {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}
.president-layout .president-l .text .company-name {
    font-size: 13px;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.president-layout .president-l .text .president-name {
    font-size: 1.0rem;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.president-layout .president-l .text .president-name span {
    font-size: 12px;
    margin-right: 10px;
}
.president-layout .president-layout-inner {
    width: calc(100% - 220px);
    font-family: "noto serif JP", serif;
    font-size: 16px;
}
.president-layout .president-layout-inner p {
    margin: 30px 0;
    text-align: justify;
}
.president-layout .president-layout-inner p:first-child {
    margin-top: 0;
}
.president-layout .president-layout-inner p:last-child {
    margin-bottom: 0;
}
.president-layout .president-layout-inner p.president-text-after1 {
    font-size: 1.05rem;
    text-align: right;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 0;
}
.president-layout .president-layout-inner p.president-text-after2 {
    font-size: 1.6rem;
    text-align: right;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    margin-top: 20px;
}
.president-layout .president-layout-inner p.president-text-after2 span {
    font-size: 1.0rem;
    margin-right: 10px;
}
@media (max-width: 700px) {
    .president-layout {
        padding: 50px 0 50px;
        display: block;
    }
    .president-layout .president-l {
        width: 180px;
        float: left;
        margin: 0 10px 5px 0;
    }
    .president-layout .president-layout-inner {
        width: 100%;
        margin-top: 0px;
        font-size: 14px;
    }
    .president-layout .president-l .text {
        margin-top: 10px;
    }
    .president-layout .president-l .text .company-name {
        font-size: 12px;
    }
    
    .president-layout .president-layout-inner p {
        margin: 20px 0;
    }
    .president-layout .president-layout-inner p.president-text-after1 {
        margin-top: 30px;
    }
    .president-layout .president-layout-inner p.president-text-after2 {
        margin-top: 10px;
    }
}



.home-mv-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}
.home-mv-area .home-mv-left {
    width: 350px;
    padding: 25px 20px;
}



.home-mv-area .home-mv-left .home-mv-left-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home-mv-area .home-mv-left .home-mv-left-inner .logo {
    width: 170px;
}
.home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text1 {
    font-size: 1.6rem;
    text-align: justify;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    margin: 80px 0 80px;
}
.home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text2 {
    font-size: 0.85rem;
    text-align: justify;
    font-family: "Noto Sans JP", sans-serif
    line-height: 1.6;
    width: 84%;
}
.home-mv-area .home-mv-left .home-mv-left-inner .btn1 {
    max-width: none;
    min-width:auto;
    margin-top: 40px;
    width: auto;
    font-size: 0.9rem;
}

.home-mv-area .home-mv-right {
    width: calc(100% - 350px);
    max-width: 1500px;
    margin: 25px 0;
    height: 960px;
    position: relative;
}
.home-mv-area .home-mv-right::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/temp/loading.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.9s;
}
.home-mv-area.img_loaded .home-mv-right::before {
    opacity: 0;
}
.home-mv-area .home-mv-right::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    right: -100vw;
    top: 0;
    background-color: var(--color-bg-dark);
    z-index: 9;
    display: none;
}
.home-mv-area .home-mv-right ul {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 2.0s;
}
.home-mv-area.animate_start .home-mv-right ul {
    opacity: 1;
}

.home-mv-area .home-mv-right ul li {
    border-radius: 25px;
    overflow: hidden;
    position: relative;   
}

.home-mv-area .home-mv-right ul li img {
    position: absolute;
    height: 104.5%;
    width: auto;
    max-width: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15);
}

.home-mv-area .home-mv-right ul li.haiti-left img {
    left: 0;
    right: auto;
    transform: translate(0, -50%) scale(1.15);
}
.home-mv-area .home-mv-right ul li.haiti-right img {
    right: 0;
    left: auto;
    transform: translate(0, -50%) scale(1.15);
}

@media (max-width: 1800px) {
    .home-mv-area .home-mv-right {
        height: 900px;
    }
    .home-mv-area .home-mv-right ul li {
        border-radius: 25px 0 0 25px;
    }
}
@media (max-width: 1400px) {
    .home-mv-area .home-mv-right {
        height: 800px;
    }
}
@media (max-width: 1000px) {
    .home-mv-area .home-mv-right {
        height: 700px;
    }
    .home-mv-area .home-mv-right ul li {
        border-radius: 20px 0 0 20px;
    }
}
@media (max-width: 700px) {
    .home-mv-area {
        flex-direction: column;
    }
    .home-mv-area .home-mv-left {
        width: 100%;
        padding: 20px 15px 20px;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner h1 {
        width: 45%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner h1 .logo {
        width: 90%;
        max-width: 200px;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text1 {
        width: 55%;
        margin: 0;
        padding-left: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text2 {
        width: 100%;
        margin-top: 20px;
        font-size: 14px;
        text-align: center;
    }
    .home-mv-area .home-mv-left .home-mv-left-inner .btn1 {
        display: none;
    }
    .home-mv-area .home-mv-right {
        width: calc(100% - 15px);
        margin-left: 15px;
        height: 400px;
        padding: 0px 0 20px 0px;
    }
    .home-mv-area .home-mv-right::before {
        width: 60px;
        height: 60px;
    }
    .home-mv-area .home-mv-right ul li {
        border-radius: 15px 0 0 15px;
    }
}
@media (max-width: 500px) {
    .home-mv-area .home-mv-right {
        height: 325px;
    }
}
@media (max-width: 384px) {
    .home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 374px) {
    .home-mv-area .home-mv-left .home-mv-left-inner .home-mv-text1 {
        font-size: 1.2rem;
    }
}

@keyframes zoomDown {
    0% {
        transform: translate(-50%, -50%) scale(1.15);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.0);
    }
}

@keyframes zoomDownLeft {
    0% {
        transform: translate(0, -50%) scale(1.15);
    }
    100% {
        transform: translate(0, -50%) scale(1.0);
    }
}

@keyframes zoomDownRight {
    0% {
        transform: translate(0, -50%) scale(1.15);
    }
    100% {
        transform: translate(0, -50%) scale(1.0);
    }
}
.home-mv-area.animate_start .home-mv-right .swiper-slide-active img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-duplicate-active img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-prev img {
    animation: zoomDown 7.5s linear 0s normal both;
}

.home-mv-area.animate_start .home-mv-right .swiper-slide-active.haiti-left img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-duplicate-active.haiti-left img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-prev.haiti-left img {
    animation: zoomDownLeft 7.5s linear 0s normal both;
}

.home-mv-area.animate_start .home-mv-right .swiper-slide-active.haiti-right img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-duplicate-active.haiti-right img,
.home-mv-area.animate_start .home-mv-right .swiper-slide-prev.haiti-right img {
    animation: zoomDownRight 7.5s linear 0s normal both;
}


.event-news-area {
    padding: 20px 0 40px;
}
.event-news-area .event-news-area-inner {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}
.event-news-area .event-news-area-inner-left {
    width: 36%;
    padding-right: 20px;
    border-right: 1px solid var(--color-border);
}
.event-news-area .event-news-area-inner-right {
    width: 64%;
}
@media (max-width: 700px) {
    .event-news-area .event-news-area-inner {
        flex-direction: column;
    }
    .event-news-area .event-news-area-inner-left {
        width: 100%;
        border-right: none;
        padding-right: 0;
    }
    .event-news-area .event-news-area-inner-right {
        width: 100%;
        border-left: none;
        padding-left: 0;
        margin-top: 30px;
    }
}

.evet-detail-box p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 15px;
}
.evet-detail-box p strong {
    font-size: 15px;
    font-weight: bold;
}
.evet-detail-box p:last-child {
    margin-bottom: 0;
}

.event-news-area .home-tour-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 20px;
}
.event-news-area .home-tour-list li .p1 {
    font-size: 15px;
    font-weight: bold;
    text-align: justify;
    margin-bottom: 10px;
}
.event-news-area .home-tour-list li .p2 {
    font-size: 14px;
    text-align: justify;
    padding-left: 10px;
}
.event-news-area .home-tour-list li .p3 {
    padding-left: 10px;
}
.event-news-area .home-tour-list li .p3 a {
    font-size: 14px;
    color: #0057EE;
    text-decoration: underline;
    text-align: justify;
}
@media (max-width: 700px) {
    .event-news-area .home-tour-list {
        padding-right: 0;
    }
}

.event-news-area .event-nav-list {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.event-news-area .event-nav-list li {
    width: auto;
}
.event-news-area .event-nav-list li a {
    display: inline-block;
    padding: 3px 10px;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    color: var(--color-text);
    position: relative;
}
.event-news-area .event-nav-list li a .new{
    font-size: 10px;
    color: #FF5757;
    font-weight: bold;
    margin-left: 6px;
}
.event-news-area .event-nav-list li a.current {
    border-bottom: 1px solid #AE3A3A;
}
.event-news-area .event-nav-list li a.current:before {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 12px solid #F8F8F8;
    z-index: 2;
}

.event-news-area .event-nav-list li a.current:after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 12px solid #AE3A3A;
    z-index: 1;
}

.event-news-area .box-completion {
    display: none;
}


.home-header-position {
    position: relative;
    min-height: 62px;
}

.home-mv-bottom {
    padding: 0 20px 30px;
}
.home-mv-bottom ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px 30px;
    list-style: none;
}
.home-mv-bottom ul li {
    height: 133px;
}
.home-mv-bottom ul li img {
    height: 100%;
    width: auto;
    object-fit: contain;
}
@media (max-width: 1200px) {
    .home-mv-bottom ul {
        gap: 20px;
    }
    .home-mv-bottom ul li {
        height: 120px;
    }
}
@media (max-width: 700px) {
    .home-mv-bottom {
        padding: 0 15px 20px;
    }
    .home-mv-bottom ul {
        gap: 10px;
        justify-content: center;
    }
    .home-mv-bottom ul li {
        height: 95px;
    }
}

.home-mv-bottom ul li .tour-bnr-home {
    height: 100%;
}
.home-mv-bottom ul li .tour-bnr-home a {
    display: flex;
    justify-content: space-between;
    height: 100%;
    border: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text);
}
.home-mv-bottom ul li .tour-bnr-home a .image {
    height: 100%;
    aspect-ratio: 193/133;
}
.home-mv-bottom ul li .tour-bnr-home a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-mv-bottom ul li .tour-bnr-home a .doc {
    background-color: #fff;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-mv-bottom ul li .tour-bnr-home a .doc .p1 {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}
.home-mv-bottom ul li .tour-bnr-home a .doc .p2 {
    font-size: 16px;
    text-align: center;
}
.home-mv-bottom ul li .tour-bnr-home a .doc .p3 {
    font-size: 12px;
    text-align: center;
}
.home-mv-bottom ul li .tour-bnr-home a .doc .p4 {
    font-size: 13px;
    text-align: center;
}



.home-layout .p_top1 {
    font-size: 1.6rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    width: 90%;
    max-width: var(--w-max-s);
    margin: 20px auto 0;
}
@media (max-width: 700px) {
    .home-layout .p_top1 {
        font-size: 1.6rem;
    }
}


.home-layout .box_2col_l {
    display: flex;
    justify-content: space-between;
    margin-top: 180px;
}
.home-layout .box_2col_l .box_2col_l-inner1 {
    width: 45%;
}
.home-layout .box_2col_l .box_2col_l-inner1 .swiper {
    border-radius: 0 25px 25px 0;
    overflow: hidden;
}
.home-layout .box_2col_l .box_2col_l-inner2 {
    width: 55%;
    padding: 0 10% 0 40px
}
.home-layout .box_2col_l .box_2col_l-inner2 .p1 {
    font-size: 2.2rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.home-layout .box_2col_l .box_2col_l-inner2 .p2 {
    font-size: 1.1rem;
    font-weight: normal;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}
.home-layout .box_2col_l .box_2col_l-inner2 dl {
    margin-top: 20px;
}
.home-layout .box_2col_l .box_2col_l-inner2 dl dt {
    font-size: 1.15rem;
    font-weight: bold;
    text-align: justify;
    margin-top: 40px;
}
.home-layout .box_2col_l .box_2col_l-inner2 dl dd {
    text-align: justify;
    margin-top: 20px;
}
@media (max-width: 700px) {
    .home-layout .box_2col_l {
        flex-direction: column;
        margin-top: 60px;
    }
    .home-layout .box_2col_l .box_2col_l-inner1 {
        width: 100%;
        padding-right: 20px;
    }
    .home-layout .box_2col_l .box_2col_l-inner2 {
        width: 90%;
        padding: 0;
        margin: 30px auto 0;
    }
    .home-layout .box_2col_l .box_2col_l-inner2 .p1 {
        font-size: 1.8rem;
    }
    .home-layout .box_2col_l .box_2col_l-inner2 .p2 {
        font-size: 1.0rem;
        margin-top: 5px;
    }
    .home-layout .box_2col_l .box_2col_l-inner2 dl dt {
        margin-top: 20px;
        font-size: 1.1rem;
    }
    .home-layout .box_2col_l .box_2col_l-inner2 dl dd {
        margin-top: 10px;
    }
}

.japanbrand-box {
    margin-top: 240px;
    background-image: url(../images/home/home_img2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.japanbrand-box .japanbrand-box-inner {
    padding: 200px 10% 200px 55%;
}
.japanbrand-box .japanbrand-box-inner .p1 {
    font-size: 2.3rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
    color: #fff;
}
.japanbrand-box .japanbrand-box-inner .p2 {
    font-size: 2.0rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    margin-top: 10px;
    color: #fff;
}
.japanbrand-box .japanbrand-box-inner .p3 {
    font-size: 1.0rem;
    text-align: justify;
    margin-top: 50px;
    color: #fff;
}
@media (max-width: 1600px) {
    .japanbrand-box {
        margin-top: 180px;
    }
    .japanbrand-box .japanbrand-box-inner {
        padding: 120px 10% 100px 55%;
    }
    .japanbrand-box .japanbrand-box-inner .p1 {
        font-size: 1.6rem;
    }
    .japanbrand-box .japanbrand-box-inner .p2 {
        font-size: 1.4rem;
    }
    .japanbrand-box .japanbrand-box-inner .p3 {
        margin-top: 30px;
    }
}
@media (max-width: 1200px) {
    .japanbrand-box .japanbrand-box-inner {
        padding: 80px 10% 80px 40%;
    }
    .japanbrand-box .japanbrand-box-inner .japanbrand-box-inner-inner {
        padding: 15px 15px;
    }
}
@media (max-width: 1000px) {
    .japanbrand-box {
        margin-top: 120px;
    }
    .japanbrand-box .japanbrand-box-inner {
        padding: 60px 10% 60px 30%;
    }
}
@media (max-width: 700px) {
    .japanbrand-box {
        margin-top: 100px;
        background-image: url(../images/home/home_img2sp.jpg);
        padding-bottom: 200px;
    }
    .japanbrand-box .japanbrand-box-inner {
        padding: 30px 5% 30px 5%;
    }
    
    .japanbrand-box .japanbrand-box-inner .p1 {
        font-size: 1.4rem;
    }
    .japanbrand-box .japanbrand-box-inner .p2 {
        font-size: 1.2rem;
    }
    .japanbrand-box .japanbrand-box-inner .p3 {
        margin-top: 20px;
    }
    .japanbrand-box .japanbrand-box-inner .p3 span {
        display: none;
    }
}


.home-section1 {
    padding: 100px 0 150px;
}
.home-section1 h2 {
    font-size: 2.2rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 600;
}
.home-section1 .p_top2 {
    font-size: 1.1rem;
    text-align: center;
    width: 90%;
    margin: 20px auto 0;
}
.home-section1 .p_center1 {
    font-size: 1.0rem;
    text-align: center;
    width: 90%;
    max-width: var(--w-max-s);
    margin: 80px auto 0;
}
.home-section1 .voice-entry-list-wrap {
    margin-top: 80px;
}
.home-section1 .btn_box {
    margin-top: 60px;
}
@media (max-width: 700px) {
    .home-section1 .p_top2 {
        margin-top: 10px;
    }
    .home-section1 .voice-entry-list-wrap {
        margin-top: 60px;
    }
}


.home-section1 .box_2col {
    display: flex;
    justify-content: space-around;
    width: 95%;
    max-width: var(--w-max-l);
    margin: 150px auto 0;
}
.home-section1 .box_2col-inner1 {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1px;
}
.home-section1 .box_2col-inner2 {
    width: 40%;
}
.home-section1 .box_2col-inner1 div {
    width: calc(50% - 0.5px);
}
.home-section1 .box_2col-inner1 img {
    width: 100%;
    height: auto;
}
.home-section1 .box_2col-inner1 div:nth-child(3) {
    width: 100%;
    margin-top: 20px;
}
.home-section1 .box_2col-inner2 .p1 {
    font-size: 1.9rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
}
.home-section1 .box_2col-inner2 .p2 {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 40px;
}
.home-section1 .box_2col-inner2 .p3 {
    text-align: justify;
    margin-top: 40px;
}
@media (max-width: 1600px) {
    .home-section1 .box_2col {
        margin-top: 100px;
    }
    .home-section1 .box_2col-inner1 {
        width: 45%;
    }
    .home-section1 .box_2col-inner2 {
        width: 45%;
    }
    .home-section1 .box_2col-inner2 .p1 {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .home-section1 {
        padding: 80px 0 100px;
    }
    .home-section1 .p_center1 {
        margin-top: 60px;
    }
}
@media (max-width: 700px) {
    .home-section1 {
        padding: 60px 0 80px;
    }
    .home-section1 .p_center1 {
        margin-top: 40px;
    }
    .home-section1 .box_2col {
        width: 100%;
        margin-top: 60px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .home-section1 .box_2col-inner1 {
        width: 90%;
    }
    .home-section1 .box_2col-inner2 {
        width: 90%;
    }
    .home-section1 .box_2col-inner2 .p2 {
        margin-top: 20px;
    }
    .home-section1 .box_2col-inner2 .p3 {
        margin-top: 20px;
    }
}


.home-section2 {
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
}
.home-section2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    aspect-ratio: 1920/26;
    background-image: url(../images/temp/line_01.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
.home-section2 .home-section2-inner {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0 auto;
}
.home-section2 h2 {
    font-size: 1.8rem;
    text-align: center;
    font-family: "noto serif JP", serif;
    font-weight: 700;
    width: 90vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -45vw;
    margin-right: -45vw;
}
.home-section2 h3 {
    font-size: 1.15rem;
    font-weight: bold;
    text-align: justify;
    margin-top: 60px;
}
.home-section2 .p_top2 {
    font-size: 1.1rem;
    text-align: center;
    width: 90%;
    margin: 20px auto 0;
}
.home-section2 .p_center1 {
    font-size: 1.0rem;
    text-align: center;    
    width: 90%;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}
.home-section2 .btn-box {
    margin-top: 60px;
    text-align: center;
}
@media (max-width: 700px) {
    .home-section2 {
        padding: 60px 0 80px;
    }
    .home-section2 .p_top2 {
        margin-top: 10px;
    }
    .home-section2 h3 {
        margin-top: 40px;
    }
    .home-section2 .p_center1 {
        margin-top: 40px;
    }
    .home-section2 .btn-box {
        margin-top: 40px;
    }
}


.home-section2 .works-entry-list-wrap {
    width: 90%;
    margin-top: 60px;
    left: auto;
    transform: none;
}
.home-section2 .img01 {
    margin-top: 50px;
}
.home-section2 .img01_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.home-section2 .img01_bottom p {
    font-size: 15px;
    text-align: justify;
}
.home-section2 .p01 {
    text-align: justify;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}
.home-section2 .p02 {
    text-align: justify;
    width: 90%;
    max-width: var(--w-max-s);
    margin: 60px auto 0;
}
.home-section2 .box_2col2 {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.home-section2 .box_2col2-inner1 {
    width: 30%;
}
.home-section2 .box_2col2-inner2 {
    width: calc(70% - 40px);
}
.home-section2 .qa-list {
    margin-top: 60px;
}
@media (max-width: 1200px) {
    .home-section2 .box_2col2 {
        gap: 20px;
        margin-top: 15px;
    }
    .home-section2 .box_2col2-inner2 {
        width: calc(70% - 20px);
    }
}
@media (max-width: 700px) {
    .home-section2 .works-entry-list-wrap {
        margin-top: 40px;
    }
    .home-section2 .img01 {
        width: 250px;
        margin: 30px auto 0;
        display: block;
    }
    .home-section2 .p01 {
        margin-top: 40px;
    }
    .home-section2 .p02 {
        margin-top: 40px;
    }
    .home-section2 .box_2col2 {
        margin-top: 10px;
        gap: 10px;
        flex-direction: column;
    }
    .home-section2 .box_2col2-inner1 {
        width: 100%;
    }
    .home-section2 .box_2col2-inner2 {
        width: 100%;
    }
    .home-section2 .qa-list {
        margin-top: 40px;
    }
}

.flow-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    width: 90%;
    max-width: var(--w-max-m);
    margin: 60px auto 0;
}
.flow-list .item {
    width: calc(25% - 37.5px);
}
.flow-list .item .image {
    width: 100%;
    aspect-ratio: 1/1;
}
.flow-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.flow-list .item .doc {
    margin-top: 20px;
}
.flow-list .item .doc .ttl {
    font-size: 1.15rem;
    font-weight: bold;
    padding: 10px 10px;
    text-align: center;
    background-color: var(--color-bg-light);
    line-height: 1.2;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-list .item .doc .p1 {
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-list .item .doc .p2 {
    font-size: 16px;
    text-align: justify;
    margin-top: 10px;
}
@media (max-width: 1200px) {
    .flow-list {
        gap: 20px;
    }
    .flow-list .item {
        width: calc(25% - 18.75px);
    }
}
@media (max-width: 900px) {
    .flow-list {
        max-width: 600px;
        gap: 20px;
    }
    .flow-list .item {
        width: calc(50% - 10px);
    }
}
@media (max-width: 700px) {
    .flow-list .item .doc .p1 {
        font-size: 1.08rem;
    }
    .flow-list .item .doc .p2 {
        font-size: 14px;
    }
}


.map-box {
    width: 100%;
    aspect-ratio: 958/536;
    position: relative;
    margin: 0 auto;
}
.map-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.douga-tag {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
}
.douga-tag iframe,
.douga-tag img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-box {
    width: 80%;
    max-width: 604px;
    aspect-ratio: 604/356;
    position: relative;
    margin: 60px auto 0;
}
.youtube-box iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 700px) {
    .youtube-box {
        width: 90%;
        margin-top: 30px;
    }
}


.column-entry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 90%;
    margin: 60px auto 0;
}

.column-entry-list .item {
    width: calc(33.3% - 20px);
    max-width: 400px;
    list-style: none;
}

.column-entry-list .item a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
}

.column-entry-list .item a .image {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.column-entry-list .item a .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-entry-list .item a .category {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
}

.column-entry-list .item a .doc {
    padding: 10px 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.column-entry-list .item a .doc .ttl {
    font-weight: bold;
    text-align: justify;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .column-entry-list .item {
        width: calc(50% - 15px);
    }
}
@media (max-width: 600px) {
    .column-entry-list .item {
        width: calc(100%);
    }
}

.column-title {
    width: 90%;
    max-width: var(--w-max-s);
    margin: 0px auto 0;
}
.column-title .midasi {
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
}
.column-title .category {
    font-size: 1.0rem;
    display: inline-block;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 10px;
}
@media (max-width: 700px) {
    .column-title .midasi {
        font-size: 1.6rem;
    }
}


.column-layout {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 60px auto 0;
    width: 90%;
    max-width: var(--w-max-s);
    overflow: visible; /* sticky要素が正常に動作するように */
}
.column-layout-inner_l {
    width: calc(100% - 330px);
}
.column-layout-inner_r {
    width: 290px;
    overflow: visible; /* sticky要素が正常に動作するように */
}
@media (max-width: 900px) {
    .column-layout {
        flex-direction: column;
    }
    .column-layout-inner_l {
        width: 100%;
        max-width: 630px;
        margin: 0 auto;
    }
    .column-layout-inner_r {
        display: none;
    }
}

.column-layout-inner_l .column-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.column-layout-inner_l .column-main .head_image {
    width: 100%;
    aspect-ratio: 630/420;
}
.column-layout-inner_l .column-main .head_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.column-main .text_point {
    padding: 20px 20px;
    border: 2px dashed #478CD8;
}
.column-main .text_point .midasi {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #478CD8;
}
.column-main .text_point ul {
    padding-left: 25px;
}

.column-main .kiji h2 {
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 0;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}
.column-main .kiji h2:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, var(--color-bg-light) 100%);
}
.column-main .kiji h3 {
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}
.column-main .kiji p,
.column-main .kiji ul,
.column-main .kiji ol,
.column-main .kiji div {
    margin: 20px 0;
}
.column-main .author_box {
    padding: 20px 20px;
    margin-top: 60px;
    background-color: var(--color-bg-light);
    position: relative;
}
.column-main .author_box .midashi {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    background-color: var(--color-bg-dark);
    color: #fff;
    padding: 0 10px;
    position: absolute;
    top: -36px;
    left: 0px;
}
.column-main .author_box .author_box_inner {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.column-main .author_box .author_box_inner .image {
    width: 70px;
}
.column-main .author_box .author_box_inner .image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.column-main .author_box .author_box_inner .doc {
    width: calc(100% - 90px);
}
.column-main .author_box .author_box_inner .doc .author_name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.column-main .author_box .author_box_inner .doc .author_text {
    font-size: 14px;
    text-align: justify;
}

.column-etc {
    margin-top: 80px;
}
.column-etc .column-etc-item {
    padding: 20px 20px;
}
.column-etc .midasi {
    font-size: 1.15rem;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid var(--color-bg-dark);
    background-color: #F3F3F3;
    padding: 10px 0;
}
.column-etc .midasi_category {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    padding: 5px 10px;
    background-color: var(--color-bg-dark);
    color: #fff;
}
.column-etc .column-etc-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.column-etc .column-etc-list .item {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}
.column-etc .column-etc-list .item a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
}
.column-etc .column-etc-list .item a .title {
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
    margin-bottom: 5px;
    padding-right: 30px;
    position: relative;
}
.column-etc .column-etc-list .item a .title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    border: 0.1em solid #478CD8;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translate(-25%, -50%) rotate(45deg);
}
.column-etc .column-etc-list .item a .kiji {
    font-size: 14px;
    text-align: justify;
}

.column-etc .bt_box {
    margin-top: 60px;
    text-align: center;
}

.mokuji {
    padding: 20px 20px;
    background-color: #F3F3F3;
}
.mokuji .title {
    font-size: 1.0rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.mokuji ol {
    list-style: none;
    padding: 0;
}
.mokuji ol li a {
    text-decoration: none;
    color: var(--color-text);
}
.mokuji ol li a:hover {
    text-decoration: underline;
}

.column-layout-inner_r .mokuji {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.linked-article a {
    display: flex;
    gap: 0px;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-primary);
}
.linked-article div {
    margin: 0 !important;
}
.linked-article .image {
    width: 120px;
    aspect-ratio: 1/1;
}
.linked-article .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.linked-article .doc {
    width: calc(100% - 120px);
    padding: 10px;
    line-height: 1.4;
}
.linked-article .doc p {
    margin: 0;
}
.linked-article .doc .title {
    font-size: 0.90rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.linked-article .doc .kiji {
    font-size: 0.8rem;
}
@media (max-width: 700px) {
    .linked-article .image  {
        width: 80px;
    }
    .linked-article .doc {
        width: calc(100% - 80px);
    }
}
