:root {
    --tablet-width: 768px;
}

body {
    padding: 0;
    margin: 0;
    background-color: #f5f5f4;
    font-family: "ten-mincho", serif;
    overflow-x: hidden;
}

header {
    height: 70%;
    background-image: url("img/header.webp");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    header {
        height: 100vh;
    }
}

header img {
    width: max(30vw, 40vh);
    object-fit: contain;
    border-radius: 999999vw;
}

.header-1 {
    height: 30vh;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.header-1 div {
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .header-1 {
        text-align: left;
    }
}

.sentence-1 {
    text-align: center;
    padding: 0 10% 10% 10%;
    font-size: 0.8rem;
    line-height: 1.5lh;
}

@media (max-width: 768px) {
    .sentence-1 {
        text-align: left;
    }
}

.points {
    background-color: #F6F2EA;
}

.label-contents {
    display: flex;
    height: 10vh;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 5vh white;
    border-style: solid none;
    border-image: url("img/label.webp");
    border-image-slice: 314;
    border-image-width: 5vh;
    border-image-repeat: repeat;
}
.label-contents div {
    font-size: 1.6rem;
    font-weight: 600;
    margin-right: 3rem;
}
.label-contents img {
    height: 100%;
    object-fit: contain;
    transform: scale(2);
}

@media (max-width: 768px) {
    .label-contents {
        display: flex;
        height: 12vh;
        justify-content: center;
        align-items: center;
        background-color: white;
        border: 4vh white;
        border-style: solid none;
        border-image: url("img/label.webp");
        border-image-slice: 314;
        border-image-width: 4vh;
        border-image-repeat: repeat;
    }
    .label-contents div {
        font-size: 1.1rem;
        margin: 0 2rem;
    }
    .label-contents img {
        height: 100%;
        object-fit: contain;
        transform: scale(1.4) translate(-5vw, 1vh);
    }
}

.points-items-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
}

.points-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 0px;
    padding: 2rem;
    width: 80%;
}
@media (max-width: 768px) {
    .points-items-container {
        padding: 30px 0;
        width: auto;
    }
    .points-item {
        padding: 5%;
        width: 90%;
    }
}
.points-item-3 {
    grid-template-rows: 1fr 3fr;
}
.points-item-bottom-line{
    border-bottom: solid 1px #C6AA74;
}
.point-circle {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background-color: #C6AA74;
    border-radius: 200vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'monospace';
    color: white;
    grid-area: 1 / 1 / 3 / 2;
}
.point-label {
    font-size: 0.9rem;
}
.point-number {
    font-size: 1.5rem;
}

.point-header {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    grid-area: 1 / 2 / 2 / 3;
}
.point-detail {
    grid-area: 2 / 2 / 3 / 3;
}

@media (max-width: 768px) {
    .point-circle {
        width: 80px;
        height: 80px;
        grid-area: 1 / 1 / 2 / 2;
    }
    .point-header {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-area: 1 / 2 / 2 / 3;
    }
    .point-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-area: 2 / 1 / 3 / 3;
    }
}

.point-box-container {
    background-color: white;
    width: 40%;
    border-radius: 30px;
    display: flex;
    padding: 2rem;
    margin: 2rem;
}
@media (max-width: 768px) {
    .point-box-container {
        background-color: white;
        width: 80%;
        border-radius: 30px;
        display: flex;
        padding: 2rem;
    }
}

.point-box-container img {
    width: 30%;
    object-fit: contain;
}
.point-box-container-text {
    margin: 1rem;
    font-size: 0.7rem;
}

.point-box-container-header {
    font-size: 1rem;
    font-weight: 600;
}


@media (max-width: 768px) {
    .points-items-container {
        width: 100vw;
    };
}

.status-container-overwrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-container {
    margin: 100px auto;
    border: solid white 50px;
    border-image-source: url("img/frame.webp");
    border-image-slice: 500 fill;
    border-image-width: 50px;
    font-size: 0.8rem;
}

.status-header {
    text-align: center;
    font-size: 2rem;
    background-color: #f5f1e9;
    padding: 1rem;
}
.status-detail {
    padding: 1rem;
    text-align: center;
}
.status-items-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 3rem 0;
}
@media (max-width: 768px) {
    .status-container {
        margin: 40px 15px;
        border: solid white 50px;
        border-image-source: url("img/frame.webp");
        border-image-slice: 500 fill;
        border-image-width: 50px;
    }
    .status-header {
        padding: 1rem 0;
        font-size: 1rem;
    }
    .status-items-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
}
.status-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.status-item img {
    width: 100px;
    object-fit: contain;
}
.status-item div {
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.4rem;
    background-color: #f5f1e9;
}
.status-sup {
    display: flex;
    justify-content: center;
    align-items: center;
}
.status-sup div {
    margin: 1rem 1.5rem;
}

@media (max-width: 768px) {
    .status-sup {
        flex-direction: column;
    }
    .status-sup div {
        margin: 0.3rem 1.5rem;
    }
}

.about {
    background-color: #F6F2EA;
    padding: 6rem;
}
.about-header {
    font-weight: 300;
    font-size: 2rem;
    text-align: center;
}
.about-header-jp {
    text-align: center;
}
.about-table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-table {
    min-width: 50vw;
    margin: 3rem;
    padding: 3rem;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(8, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.about-table-header {
    color: #C6AA74;
    text-align: center;
    text-align-last: justify;
    width: 100px;
    margin: 2rem auto;
}
.about-table-content {
    margin: 2rem;
}
@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    .about-table {
        margin: 3rem 1rem;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr 4fr); 
    }
    .about-table-header {
        text-align: left;
        text-align-last: left;
        margin: 0;
    }
    .about-table-content {
        margin: 1rem;
    }
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-images img {
    width: 16vw;
    margin: 2rem;
}
.about-details div {
    text-align: center;
    margin: 1rem 0;
}
@media (max-width: 768px) {
    .about-images {
        flex-direction: column;
    }
    .about-images img {
        width: 80vw;
        margin: 1rem 2rem;
    }
    .about-details div {
        padding: 0.3rem 2rem ;
        text-align: left;
    }
}


footer {
    background-color: black;
    color: white;
    text-align: center;
}
