@charset "utf-8";
/* CSS Document */
.sm {
    display: none;
}

.lp_wrap {
    width: 100%;
    margin: 0 auto;
    color: #000;
}

.lp_wrap h1 {
    font-size: 28px;
    font-family: "Noto Serif JP", serif;
    font-weight: lighter;
    line-height: 160%;
    margin: 30px 0;
}
.lp_wrap h2 {
    font-size: 14px;
    cursor: default;
}
.lp_wrap p {
    line-height: 180%;
}
.lp_wrap b {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2.5em;
}
.lp_wrap b span {
    font-weight: normal;
} 
.lp_wrap i {
    font-style: normal;
}
hr {
    margin: 0 0 150px !important;
}
.title_gold {
    margin: 0 auto 20px !important;
}

p.price b {
    font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* BLUR ANIMATION */
.blur{
	animation-name: blurAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes blurAnime{
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger{
    opacity: 0;
}


/* NAV MENU */
.nav_menu {
    width: 100%;
    margin: 0 auto -10px;
    padding: 48px 0 0;
    font-size: 14px;
    background-color: #ffc72c;
}
.nav_menu_wrap {
    width: 670px;
    margin: 6px auto 0;
    text-align: center;
}
.nav_menu ul {
    height: 60px;
    display: flex;
    justify-content: space-between;
}
.nav_menu ul li {
    width: 24.7%;
    height: 100%;
    display: flex;
    transition: all 0.3s;
}
.nav_menu ul li:hover {
    background-color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}
.nav_menu ul li:hover a {
    text-decoration: none;
}
.nav_menu ul li a {
    width: 100%;
    padding: 14px 0 0;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.nav_menu ul li a p {
    height: 100%;
    margin: 0;
}
.nav_menu ul li.on {
    background-color: #fff;
}
.nav_menu ul li.on a {
    text-decoration: none;
}


/* BACKGROUND */
.main_bg {
    width: 100%;
    min-height: 950px;
    background: url(/sp/886/img/top_bk.jpg) no-repeat;
    /* background-size: 130%; */
    background-position: top -120px center;
    position: relative;
}
.main_bg_wrap {
    width: 100%;
    position: relative;
}
.main_bg_wrap .main_logo {
    width: 350px;
    padding: 244px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main_bg_wrap .main_tit {
    width: 660px;
    padding: 460px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* INTRO VIDEO */
.intro_video {
    width: 660px;
    margin: 0 auto;
    position: relative;
    top: -220px;
}
.intro_video iframe {
    width: 100%;
    height: 370px;
}

/* INTRO */
.intro {
    width: 100%;
    margin: -400px auto 0;
    padding: 240px 0 160px;
    background-color: #f1f1f1;
}
.intro_wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 0 170px;
}    
.intro p {
    margin: 0 0 60px;
}
.intro a {
    padding: 10px 50px 10px 30px;
    color: #fff;
    background-color: #000;
    border-radius: 40px;
    transition: all 0.2s;
    position: relative;
}
.intro a::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background-color: #fff;
    border-radius: 1px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.2s;
}
.intro a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1.6px solid #fff;
    border-right: 1.6px solid #fff;
    border-radius: 1px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    z-index: 1;
    transition: all 0.2s;
}
.intro a:hover {
    color: #000;
    background-color: #ffc72c;
    transition: all 0.2s;
}

.intro a:hover::before {
    background-color: #000;
    transition: all 0.2s;
}
.intro a:hover::after {
    border-top: 1.6px solid #000;
    border-right: 1.6px solid #000;
    transition: all 0.2s;
}


/* PRODUCT */
.product {
    width: 100%;
    margin: 0 auto;
    background-color: #fafafa;
}
.product_wrap {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}
.product_wrap ul {
    display: flex;
}
.product_wrap ul li {
    width: calc(100% /3);
    padding: 4% 5% 8%;
    position: relative;
}
.product_wrap ul li:nth-child(1)::before {
    content: '';
    width: 54px;
    height: 54px;
    background: url(/sp/886/img/new_tag.png) no-repeat;
    background-size: 100%;
    background-position: center center;
    position: absolute;
    top: 5%;
    right: 11%;
    transform: rotate(10deg);
    z-index: 2;
}
.product_wrap ul li:nth-child(2n) {
    background-color: #fff;
}
.product_wrap ul li a {
    color: #000;
    transition: all 0.3s;
}
.product_wrap ul li a h2 {
    font-family: 'Noto Sans JP';
    font-size: 18px;
    margin: 10px 0 30px;
}
/* .product_wrap ul li a img {
    mix-blend-mode: multiply;
} */
.product_wrap ul li p {
    text-align: justify;
}
.product_wrap ul li a:hover {
    filter: brightness(105%);
    transition: all 0.3s;
}
.product_wrap ul li a:hover h2 {
    text-decoration: underline;
    transition: all 0.3s;
}


.product_wrap .more_btn {
    width: 200px;
    position: absolute;
    bottom: 3%;
    right: 0;
    transition: all 0.3s;
}
.product_wrap .more_btn a p {
    color: #000;
    display: flex;
    transition: all 0.3s;
}
.product_wrap .more_btn a p span {
    width: 160px;
    height: 2px;
    margin: 16px 0 0 16px;
    background-color: #e8e8e6;
    overflow: hidden;
    position: relative;
}
.product_wrap .more_btn a p span::after {
    content: '';
    width: 25%;
    height: 4px;
    border-radius: 50%;
    background-color: #888888;
    position: absolute;
    left: 0;
    top: -1px;
    animation: scroll 1.5s linear infinite;
    transition: all 0.3s;
}
@keyframes scroll {
    from {
        width: 45%;
        left: -25%;
    }
    to {
        width: 20%;
        left: 125%;
    }
}

.product_wrap .more_btn a:hover p {
    color: #ffc72c;
    transition: all 0.3s;
}
.product_wrap .more_btn a:hover p span::after {
    background-color: #ffc72c;
    transition: all 0.3s;
}

/* ABOUT */
.about {
    width: 100%;
    height: 1200px;
    margin: 0 auto;
    background: url(/sp/886/img/top_about_back.webp) no-repeat;
    background-size: cover;
    background-position: top left;
    color: #fff;
    position: relative;
    z-index: 10;

}
.about_wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 360px 0 0;
    position: relative;
    z-index: 10;
}
.about_wrap_cont {
    width: 840px;
    margin: 0 auto;
}
.about p {
    margin: 30px 0;
}
.about p i {
    font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    line-height: normal;
    background-color: #6f6b5173;
}

.about_wrap::before {
    content: '';
    width: 296px;
    height: 582px;
    background-color: #7aa4ba;
    position: absolute;
    left: 14%;
    top: 68.5%;
    z-index: -1;
}
.about_wrap::after {
    content: '';
    width: 296px;
    height: 582px;
    background-color: #ffc72c;
    position: absolute;
    left: 27%;
    top: 105%;
    z-index: -1;
}


/* QUALITY */
.quality {
    width: 100%;
    margin: 0 auto 200px;

}
.quality_wrap {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.quality_wrap_cont {
    width: 1500px;
    margin: 0 auto;
    padding: 730px 0 0 768px;
}

.quality_wrap_cont::before {
    content: '';
    width: 1110px;
    height: 1800px;
    background: url(/sp/886/img/top_quality_img.webp) no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    top: -55%;
    left: 15.4%;
    z-index: -1;
}

/* BOTTOM MENU */
.btm_menu {
    width: 100%;
    margin: 0 auto;
    background-color: #fafafa;
}
.btm_menu_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 200px 0;
}
.btm_menu ul {
    display: flex;
    justify-content: space-between;
}
.btm_menu ul li {
    width: 30%;
    text-align: center;
}
.btm_menu ul li a {
    color: #000;
    transition: all 0.3s;
}
.btm_menu ul li a p {
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btm_menu ul li a b {
    font-family: "Urbanist", sans-serif;
    font-weight: normal;
}
.btm_menu ul li a img {
    margin: 30px 0 0;
}
.btm_menu ul li a:hover {
    filter: brightness(110%) drop-shadow(3px 3px 8px #d7d7d7);
    transition: all 0.3s;
}
.btm_menu ul li a:hover p {
    text-decoration: none;
}

/* FOOTER BANNER */
.footer_banner {
    width: 100%;
    background: url(/sp/886/img/top_footer_banner_back.webp) no-repeat;
    background-size: 100%;
    background-position: top center;
}
.footer_banner img {
    opacity: 0;
    height: 48.18vw;
    min-height: 730px;
}