@charset "UTF-8";


body {
    font-family: "EB Garamond", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "MS P明朝", "MS PMincho", serif;
    font-size: 14px;
    color: #000000;
    line-height: 1.785;
    overflow-x: hidden;
    text-align: justify;
    background-color: #E8DDD4;
}

img {
    width: 100%;
    max-width: 100%;
}

a:hover {
    transition: opacity 0.4s ease-in-out;
    opacity: 0.5;
}

#lp_wrap {
    display: flex;
    margin: 175px auto 0;
    justify-content: center;
    position: relative;
    left: -30px;
}
#lp_wrap main {
    width: 80%;
    max-width: 1000px;
}
@media (max-width: 979px) {
    #lp_wrap {
        left: 0;
        margin: 0;
        font-size: 12px;
        line-height: 2.09;
        display: block;
    }
    #lp_wrap main {
    width: 100%;
}
}
/* PC・SP出し分け */
#lp_wrap .visible_sp {
    display: none;
}
@media (max-width: 979px) {
    #lp_wrap .visible_sp {
        display: block;
    }
    #lp_wrap .visible_pc {
        display: none;
    }
}

/* スクロールで画像をふわっと表示 */
.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-fade.is-active {
  opacity: 1;
  transform: translateY(0);
}


/* logo */
#lp_wrap header {
    position: relative;
    width: 100px;
}
#lp_wrap header img {
    position: fixed;
    width: 30px;
    z-index: 2;
}
@media (max-width: 979px) {
    #lp_wrap header {
        width: 60px;
    }
    #lp_wrap header img {
        width: 5%;
        max-width: 30px;
        margin-left: 4%;
        margin-top: 4%;
    }
}

/* MV */

/* タイトルの遅延表示 */
.lp_mv {
  position: relative;
  margin-bottom: 60px;
}
.mv-image,
.mv-title {
  opacity: 0;
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}
.is-visible {
  opacity: 1;
}
@media (max-width: 979px) {
    .lp_mv {
        margin-bottom: 40px;
    }
}

/* ---------------------- */

#lp_wrap .lp_mv h1 {
    position: absolute;
    font-size: 40px;
    text-align: center;
    line-height: 1;
    top: 24%;
    left: 50%;
    -ms-transform: translate(-50%,-24%);
    -webkit-transform: translate(-50%,-24%);
    transform: translate(-50%,-24%);
    margin: 0;
    padding: 0;
    white-space: nowrap;
    z-index: 1;
}
#lp_wrap .lp_mv h1 span {
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
}
@media (max-width: 979px) {
    #lp_wrap .lp_mv h1 {
        font-size: 23px;
    }
    #lp_wrap .lp_mv h1 span {
        font-size: 16px;
        margin-bottom: 10px;
    }
}


/* lead */
#lp_wrap .lead {
    width: 74%;
    margin: 0 auto 100px;
}
@media (max-width: 979px) {
    #lp_wrap .lead {
        margin-bottom: 80px;
    }
}

/* Profile */
#lp_wrap .profile {
    margin: 0 50px 150px;
}
#lp_wrap .profile h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 50px 24px;
}
#lp_wrap .profile_contents {
    display: flex;
    margin-bottom: 80px;
}
#lp_wrap .profile_contents div {
    border-right: solid 1px #707070;
    padding: 4px 50px;
}
#lp_wrap .profile_contents div:nth-child(2) {
    border: none;
}
#lp_wrap .profile_name {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1;
}
#lp_wrap .profile img {
    width: 80%;
    display: block;
    margin: 0 auto;
}
@media (max-width: 979px) {
    #lp_wrap .profile {
        margin: 0 0 80px;
    }
    #lp_wrap .profile h2 {
        margin-right: 4%;
        margin-left: 16%;
        margin-bottom: 0;
        font-size: 16px;
    }
    #lp_wrap .profile_contents {
        flex-direction: column;
        margin-bottom: 20px;
    }
    #lp_wrap .profile_contents div {
        border-right: none;
        border-bottom: solid 1px #707070;
        padding: 20px 0 20px;
    }
    #lp_wrap .profile_name {
        font-size : 16px;
    }
    #lp_wrap .profile img {
        width: 96%;
    }
}

/* interview */
#lp_wrap .qa h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 80px;
}
#lp_wrap .qa_block {
    margin-bottom: 150px;
}
#lp_wrap .qa_block span {
    font-weight: 600;
}
#lp_wrap .qa_block:nth-child(2),
#lp_wrap .qa_block:nth-child(6) {
    display: flex;
    gap: 50px;
}
#lp_wrap .qa_block img.flex-left {
    width: 50%;
}
#lp_wrap .question {
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-left: 40px;
}
#lp_wrap .question::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #000000;
    position: absolute;
    top: 12px;
    left: 0;
}
#lp_wrap .answer {
    margin-bottom: 50px;
}
#lp_wrap .qa_img_flex {
    display: flex;
}
#lp_wrap .qa_img_flex img {
    width: 50%;
    margin-top: 50px;
}

@media (max-width: 979px) {
    #lp_wrap .qa h2 {
        font-size: 16px;
        text-align: left;
        margin-right: 4%;
        margin-left: 16%;
        margin-bottom: 40px;
    }
    #lp_wrap .qa_block {
        margin-bottom: 80px;
    }
    #lp_wrap .qa_block:nth-child(2),
    #lp_wrap .qa_block:nth-child(6) {
        display: block;
    }
    #lp_wrap .qa_block img.flex-left,
    #lp_wrap .qa_img_flex {
        width: 96vw;
        margin-left: calc(50% - 54vw);
        margin-right: calc(50% - 44vw);
        object-fit: cover;
        max-width: none;
    }
    #lp_wrap .qa_img_flex {
        flex-direction: column;
        gap: 20px;
    }
    #lp_wrap .qa_img_flex img {
        width: 80%;
        margin: 0;
    }
    #lp_wrap .qa_img_flex img:nth-child(1) {
        margin-top: 40px;
    }
    #lp_wrap .qa_img_flex img:nth-child(2) {
        align-self: flex-end;
    }
    #lp_wrap .question {
        font-size: 12px;
        margin-bottom: 20px;
    }
    #lp_wrap .answer {
        margin-bottom: 40px;
    }
}

/* 商品情報 */
#lp_wrap .item {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 82px;
}
#lp_wrap .item_img {
    display: flex;
    gap: 20px;
    width: 500px;
}
#lp_wrap .item_img figcaption {
    font-size: 12px;
    line-height: 1.8;
    margin-top: 12px;
}
#lp_wrap .item_img span {
    font-size: 10px;
}
#lp_wrap .item_text {
    width: 450px;
}
#lp_wrap .item_text .item_name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 28px;
}
@media (max-width: 979px) {
    #lp_wrap .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        margin-bottom: 44px;
    }
    #lp_wrap .item_img {
        flex-direction: column;
        width: 80%;
    }
    #lp_wrap .item_text {
        width: 100%;
    }
    #lp_wrap .item_text .item_name {
        font-size: 18px;
        line-height: 1.4;
    }
}


/* footer */
#lp_wrap footer {
    text-align: center;
    margin-bottom: 95px;
}
@media (max-width: 979px) {
    #lp_wrap footer {
        margin-bottom: 80px;
    }
}


/* SMP表示余白調整 */
@media (max-width: 979px) {
    #lp_wrap .sp_margin {
        margin-right: 4%;
        margin-left: 16%;
    }
}
