@charset "UTF-8";

.port-detail .wrap {
    max-width: 92%;
}

.port-detail .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: clamp(9rem, 9.5vw, 11.25rem);
    margin-bottom: clamp(3rem, 15vw, 10rem);
    flex-wrap: wrap;
}

.port-detail .title h2 {
    font-size: clamp(2rem, 4vw + 1.25rem, 5.5rem);
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-right: 8vw;
}

.port-detail .title h2 a {
    display: block;
    /*text-indent: -9999px;
    background: url('../img/contents/port_link_ic.png') no-repeat;*/
    height: clamp(1.25rem, 1vw + 1.05rem, 2.5rem);
    width: clamp(50%, 300px, 70%);
    background-size: contain;
    position: absolute;
    left: calc(100% - 5vw);
    top: -11%;
}


.port-detail .title .year {
    font-size: clamp(1.5rem, 2vw + 1rem, 4rem);
    font-weight: 700;
    font-family: 'pretendard';
}

.port-detail .summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 1rem 4rem;
}

.port-detail .summary p {
    font-size: clamp(1.1rem, 1.55vw, 1.875rem);
    font-weight: 600;
    font-family: 'pretendard';
}

.port-detail .summary span {
    font-weight: 600;
    font-family: 'pretendard';
    font-size: 20px;
}

.port-detail .image {
    border: 2px solid #111;
    border-radius: 20px;
    overflow: hidden;
    margin: clamp(1.25rem, 1vw + 1.25rem, 2.75rem) 0;
}

.port-detail .small-img {
    display: flex;
    justify-content: space-between;
    gap: 1%;
    flex-wrap: wrap;
}

.port-detail .small-img::after {
    content: '';
    flex-basis: 24%;
    flex-grow: 999;
}

.port-detail .small-img .image {
    flex: 1 1 24%;
}

.port-detail .image img {
    display: block;
    width: 100%;
    height: 100%;
}

.port-detail .explain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20%;
    margin: clamp(3.75rem, 9vw, 11.25rem) 0;
}

.port-detail .explain .left-area {
    flex: 1.5;
}

.port-detail .explain .left-area p {
    font-size: clamp(1.1rem, 1.55vw, 1.875rem);
    font-weight: 600;
    font-family: 'pretendard';
}

.port-detail .explain .left-area li {
    font-size: clamp(1.1rem, 1.55vw, 1.875rem);
    font-weight: 600;
    font-family: 'pretendard';
    position: relative;
    display: flex;
    gap: 16px;
}

.port-detail .explain .left-area li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: #111;
    border-radius: 50%;
    margin-top: 2.3%;
}

.port-detail .explain .left-area .btn-link {
    margin-top: clamp(2rem, 1vw + 2rem, 3rem);
}

.port-detail .explain table {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    border-top: 1px solid #888;
}

.port-detail .explain table td {
    padding: 24px 16px;
    color: #111;
    border-bottom: 1px solid #888;
}

.port-detail .explain table td:nth-child(2) {
    font-family: 'pretendard';
}

.port-detail .btn-area {
    display: flex;
    justify-content: center;
    margin: clamp(2.5rem, 2vw + 2rem, 5rem) 0;
}

@media (max-width: 1440px) {
    .port-detail .explain {
        gap: 15%;
    }

    .port-detail .explain .left-area li {
        gap: 12px;
    }

    .port-detail .explain .left-area li::before {
        width: 6px;
        height: 6px;
    }

    .port-detail .explain table {
        font-size: 18px;
    }

    .port-detail .explain table td {
        padding: 18px 14px;
    }
}

@media (max-width: 1024px) {
    .port-detail .explain {
        flex-direction: column;
        gap: 4rem;
    }

    .port-detail .small-img {
        gap: 3%;
    }

    .port-detail .small-img::after {
        flex-basis: 48%;
    }

    .port-detail .small-img .image {
        flex: 1 1 48%;
    }

    .port-detail .explain .left-area {
        order: 2;
    }

    .port-detail .explain .left-area p {
        font-weight: 400;
    }

    .port-detail .explain .left-area li::before {
        margin-top: 3%;
    }

    .port-detail .explain .left-area .btn-link {
        float: right;
    }

    .port-detail .explain table {
        border-top-color: #ccc;
        order: 1;
    }

    .port-detail .explain table td {
        border-bottom-color: #ccc;
    }
}

@media (max-width: 768px) {
    .port-detail .summary span {
        font-size: 18px;
    }

    .port-detail .image {
        border-width: 1px;
        border-radius: 10px;
    }

    .port-detail .explain .left-area li {
        gap: 8px;
    }

    .port-detail .explain .left-area li::before {
        width: 4px;
        height: 4px;
    }

    .port-detail .explain table {
        font-size: 16px;
    }

    .port-detail .explain table td {
        padding: 14px 10px;
    }
}

@media (max-width: 425px) {
    .port-detail .title {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    /* .port-detail .summary p br{
        display: none;
    } */
    .port-detail .summary span {
        font-size: 16px;
    }

    .port-detail .small-img {
        gap: 0;
    }

    .port-detail .small-img::after {
        display: none;
    }

    .port-detail .small-img .image {
        flex: 1 1 100%;
    }
}

.insight-wrap {
    position: relative;
}

.insight-wrap::after {
    content: 'magazine';
    display: block;
    position: absolute;
    bottom: -7rem;
    right: 0;
    /* z-index: -1; */
    text-transform: uppercase;
    font-size: clamp(3.5rem, 2.357rem + 5.71vw, 7.5rem);
    font-weight: 400;
    line-height: 1;
    color: hsla(0, 0%, 0%, 0.05);
    white-space: nowrap;
}

.insight-wrap .wrap {
    max-width: 92%;
}

@media (min-width: 1441px) {
    .insight-wrap .wrap {
        max-width: 1440px;
    }
}

.insight-wrap .title {
    padding-top: 8rem;
}

.insight-wrap .title h2 {
    font-size: clamp(3rem, 2.143rem + 4.29vw, 6rem);
    font-weight: 700;
}

.insight-wrap .title p {
    font-size: clamp(1rem, 0.943rem + 0.29vw, 1.2rem);
}

.insight-wrap .title .category {
    margin-top: 1rem;
}

.insight-wrap .category {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.insight-wrap .category a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10vw;
    line-height: 1;
    padding: 0.5rem 0.8rem;
    border: 1px solid #444;
    font-weight: 600;
    font-size: 20px;
    font-family: 'pretendard';
    color: #333;
}

.insight-wrap .category .active a {
    color: #fff;
    background-color: #111;
    border-color: #111;
}

.insight-wrap .board-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 5%;
    font-family: 'pretendard';
    margin: clamp(2.75rem, 2vw + 3rem, 5.5rem) 0 clamp(1.25rem, 2vw, 4.375rem);
}

.insight-wrap .board-list::after {
    content: '';
    flex-basis: 30%;
    flex-grow: 999;
}

.insight-wrap .board-list li {
    flex-basis: 30%;
    min-width: 0;
}

.insight-wrap .board-list li a {
    display: block;
    container: magazine / inline-size;
}

.insight-wrap .board-list li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: #444;
    margin-top: 32px;
    transition: width 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.insight-wrap .board-list li a:hover:after {
    width: 100%;
}

.insight-wrap .board-list .thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.insight-wrap .board-list .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    transition: 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.insight-wrap .board-list li a:hover .thumbnail img {
    transform: scale(1.12);
}

.insight-wrap .board-list .tit {
    margin: 7.5cqw 0 3.5cqw;
    font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.insight-wrap .board-list p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6em;
    max-height: 4.8em;
    word-wrap: break-word;

    color: #444;
    font-size: 18px;
}

.insight-wrap .board-list .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    color: #888;
}

.insight-wrap .board-list .bottom .view {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.insight-wrap .board-list .bottom .view::before,
.insight-wrap .board-detail .top-area .info .view::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('../img/contents/view_ic.png') no-repeat;
}

.insight-wrap .paging-wrap,
.insight-wrap .btn-area {
    margin-bottom: clamp(2.5rem, 4vw + 1rem, 5rem);
}


.insight-wrap .board-detail {
    border-top: 2px solid #444;
    margin: 40px 0 clamp(1.25rem, 2vw, 4.375rem);
    font-family: 'pretendard';
}

.insight-wrap .board-detail .top-area {
    padding: 32px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 40px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.insight-wrap .board-detail .top-area .tit {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.75rem);
    font-weight: 700;
    line-height: 1.4;
}

.insight-wrap .board-detail .top-area .info {
    color: #888;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-left: auto;
}

.insight-wrap .board-detail .top-area .info .view {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.insight-wrap .board-detail .content-area {
    border-bottom: 1px solid #ddd;
    padding: 40px 12px;
}

.insight-wrap .btn-area {
    display: flex;
    justify-content: center;
}

@media (max-width: 1440px) {
    .insight-wrap::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .insight-wrap .category a {
        font-size: 18px;
    }

    .insight-wrap .board-list {
        gap: 2rem 5%;
    }

    .insight-wrap .board-list p {
        font-size: 16px;
    }

    .insight-wrap .board-list .bottom {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .insight-wrap .category {
        gap: 0.3rem;
    }

    .insight-wrap .category a {
        font-size: 16px;
        padding: 0.3rem 0.5rem;
    }

    .insight-wrap .board-list {
        gap: 4rem 6%;
    }

    .insight-wrap .board-list::after {
        flex-basis: 47%;
    }

    .insight-wrap .board-list li {
        flex-basis: 47%;
    }

    .insight-wrap .board-list li a::after {
        display: none;
    }

    .insight-wrap .board-detail .top-area {
        padding: 24px 6px;
        gap: 10px 32px;
    }

    .insight-wrap .board-detail .top-area .info {
        font-size: 14px;
        gap: 12px;
    }

    .insight-wrap .board-detail .content-area {
        padding: 32px 6px;
    }
}

@media (max-width: 425px) {
    .insight-wrap .category a {
        font-weight: 500;
    }

    .insight-wrap .board-list {
        gap: 2.5rem 0;
    }

    .insight-wrap .board-list::after {
        flex-basis: 100%;
    }

    .insight-wrap .board-list li {
        flex-basis: 100%;
    }

    .insight-wrap .board-list .tit {
        margin: 6cqw 0 3cqw;
    }

    .insight-wrap .board-list p {
        font-size: 14px;
    }

    .insight-wrap .board-list .bottom {
        font-size: 12px;
    }

    .insight-wrap .board-list .bottom .view {
        gap: 0.2rem;
    }

    .insight-wrap .board-list .bottom .view::before,
    .insight-wrap .board-detail .top-area .info .view::before {
        width: 16px;
        height: 16px;
        background-size: 16px;
    }

    .insight-wrap .board-detail .top-area {
        padding: 18px 6px;
    }
}

.contact-wrap {
    position: relative;
}

.contact-wrap::after {
    content: 'contact us';
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    /* z-index: -1; */
    text-transform: uppercase;
    font-size: clamp(3.5rem, 2.357rem + 5.71vw, 7.5rem);
    font-weight: 400;
    line-height: 1;
    color: hsla(0, 0%, 0%, 0.05);
    white-space: nowrap;
}

.contact-wrap .wrap {
    max-width: 92%;
}

@media (min-width: 1441px) {
    .contact-wrap .wrap {
        max-width: 1440px;
    }
}

.contact-wrap .title {
    padding-top: 8rem;
}

.contact-wrap .title h2 {
    font-size: clamp(3rem, 2.143rem + 4.29vw, 6rem);
    font-weight: 700;
}

.contact-wrap .title p {
    font-size: clamp(1rem, 0.943rem + 0.29vw, 1.2rem);
}

.pp-agree {
    margin: 4rem 0 5rem;
}

.pp-content {
    border: 1px solid #555;
    padding: 2rem 2.5rem;
    color: #444;
    overflow-y: scroll;
}

.contact-wrap .pp-content {
    height: 300px;
}

.pp-content strong {
    font-weight: 700;
}

.pp-agree .checkbox {
    justify-content: center;
    margin-top: 1.5rem;
}

.input-area ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem 10%;
}

.input-area li {
    /* margin: 3rem 0; */

    flex: 1 1 45%;
}

.input-area.wide li {
    flex: 1 1 100%;
}

.input-area dl {
    display: flex;
    /* gap: 7.5rem; */
    gap: 1.5rem;
}

.input-area.wide dl {
    align-items: center;
}

.input-area dt {
    flex: 0 0 90px;
}

.input-area.wide dt {
    flex: 0 0 20%;
}

/* .input-area dt small{
    display: block;
    color: #888;
    font-weight: 300;
    font-size: clamp(0.75rem, 0.696rem + 0.27vw, 0.938rem);
} */
.input-area dt strong {
    display: block;
    font-size: clamp(1rem, 0.929rem + 0.36vw, 1.25rem);
    font-weight: 700;
    line-height: 3.5rem;
}

.input-area dd {
    flex: 1 1 0;
}

.input-area.wide input.w-auto {
    width: auto;
}

.contact-wrap .btn-area {
    display: flex;
    justify-content: center;
    padding-bottom: 8rem;
}

.address-input-wrap div {
    margin-bottom: 0.5rem;
}

.address-input-wrap .postcode {
    display: flex;
}

.address-input-wrap .postcode button {
    background-color: #ddd;
    font-weight: 500;
    padding: 0 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.address-input-wrap .address-search {
    display: none;
    border: 1px solid #111;
    width: 100%;
    height: 18rem;
    position: relative;
}

.address-input-wrap .address-search #btnFoldWrap {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: -1px;
    z-index: 1;
}

.filebox {
    display: flex;
}

.filebox label {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: #ddd;
    font-weight: 500;
    cursor: pointer;
    height: 3.5rem;
    white-space: nowrap;
}

.filebox input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.kindsel-area {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 4rem;
    margin: 4rem 0 5rem;
    padding: 2.5rem 2rem;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;

    justify-content: center;
}

.contact-wrap .deco {
    position: absolute;
    right: 0;
    top: 8rem;
    animation: rotateStar 8s linear infinite;
}

.contact-wrap .deco svg {
    width: 180px;
    height: 180px;
}

@media (max-width: 1024px) {
    .input-area dl {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-wrap .deco {
        display: none;
    }

    .input-area ul {
        gap: 2rem;
    }

    .input-area li {
        flex: 1 1 100%;
    }

    .contact-wrap .btn-area {
        padding-bottom: 7rem;
    }

    .kindsel-area {
        gap: 1.5rem 3rem;
        padding: 2rem 1.5rem;
        margin: 3rem 0 4rem;
    }

    .pp-agree {
        margin: 3rem 0 4rem;
    }
}

@media (max-width: 425px) {
    .contact-wrap::after {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .input-area dl {
        flex-direction: column;
        gap: 0.5rem;
    }

    .input-area dt {
        flex: 1 1 100%;
        padding-left: 1.5rem;
    }

    .input-area dt strong {
        line-height: 1;
    }

    .input-area dd {
        flex: 1 1 100%;
    }

    .kindsel-area {
        margin: 2rem 0 3rem;
        padding: 1.5rem 0.5rem;
        justify-content: flex-start;
        gap: 1.2rem 2.2rem;
    }

    .pp-agree {
        margin: 2rem 0 3rem;
    }

    .pp-content {
        padding: 1.5rem 2rem;
        font-size: 14px;
    }

    .contact-wrap .btn-area {
        padding-bottom: 6rem;
    }
}

.se-component-content {
    padding: 0 !important;
}