@charset "utf-8";

/* **************
ABOUT-common PC
************** */
.spBr {
    display: none;
}

@media screen and (max-width: 768px){
    .spBr {
        display: block;
    }
}/* TOP-common sp */


/* **************
ABOUT-MV PC
************** */
.about__mainVisual {
    display: flex;
    height: 600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-image: url(../images/mainVisual__sliderItem--3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    overflow: hidden;
    position: relative;
}
.mvTitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    color: var(--base_white, #FFF);
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-size: 4.4rem;
    font-weight: 700;
    letter-spacing:  0.1em;
    position: relative;
}
.mvTitle::after {
    position: absolute;
    content: "";
    top: 61%;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
}
.mvTitle span {
    font-family: "Hiragino Kaku Gothic StdN";
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}
.mvTxt {
    padding: 5px 20px;
    text-align: center;
    color: #fff;
    text-shadow: -1.5px 1px 3px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px){
    .about__mainVisual {
        height:  280px;
        gap: 30px;
        position: relative;
    }
    .mvTitle {
        font-size: 2.4rem;
    }
    .mvTitle span {
        font-size: 1.6rem;
    }
    .mvTxt {
        font-size: 1.4rem;
    }
}/* ABOUT-mv sp */


/* **************
ABOUT-message PC
************** */
.messageTitle {
    color: var(--font_black, #27210C);
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
}
.messageWrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
    padding-top: 30px;
}
.messageWrap img {
    max-width: 300px;
    width: 20.8vw;
}
.topMessageTxt {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing:  0.05em;
}
.topMessageTxt p:last-child {
    margin-left: auto;
    letter-spacing:  0.1em;
}

@media screen and (max-width: 768px){
    .messageTitle {
        font-size:  1.6rem;
    }
    .messageWrap {
        flex-direction: column;
        gap: 15px;
        padding-top: 30px;
        align-items: center;
    }
    .messageWrap img {
        max-width: 300px;
        width: 100%;
    }
    .topMessageTxt {
        display: flex;
        flex-direction: column;
        gap: 15px;
        font-family: "Shippori Mincho";
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing:  0.05em;
    }
    .topMessageTxt p:last-child {
        margin-left: auto;
        letter-spacing:  0.1em;
    }
}/* TOP-message sp */


/* **************
ABOUT-overview PC
************** */
.overviewList {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.overviewItem {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid var(--font_black, #27210C);
    padding: 60px 0 30px;
    line-height: 2;
}
.overviewList div:last-child {
    border-bottom: none;
}
.item__title {
    width: 15rem;
    min-width: 10rem;
    font-weight: 700;
}
.item__body {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px){
    .overviewList {
        width: 100%;
        font-size: 1.2rem;
    }
    .overviewItem {
        flex-direction: column;
        gap: 15px;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 0 15px;
    }
    .itesm__body {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    iframe {
        width: 100%;
        height: auto;
    }
}/* TOP-common sp */


