@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'HinaMincho-Regular';
    src: url(../fonts/Hina_Mincho/HinaMincho-Regular.ttf);
}

img {
    width: 100%;
}

ul {
    list-style-type: none;
}

a {
    display: block;
    color: #333;
    text-decoration: none;
}

header {
    position: fixed;
    width: 15%;
    height: 40vw;
    padding-left: 2vw;
    border-right: 0.1vw solid #333;
    z-index: 10;
}

header h1 {
    margin: 3vw 0;
    width: 10vw;
    filter:drop-shadow(0.2vw 0.2vw 0.1vw #8f8f8f);
}

header nav ul {
    margin: 5vw auto;
}

header nav ul li {
    margin: 3vw auto;
}

header nav ul li a {
    font-size: 1.2vw;
    font-weight: 200;
    font-family: 'Malgun Gothic';
}

header nav ul li a:hover {
    text-decoration: underline;
}

.NavMenu,.Toggle {
    display: none;
}

main .mv {
    width: 97%;
    margin-left: auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

main .mv img {
    margin-top: -5vw;
    margin-bottom: 5vw;
}

main .mv p {
    position: absolute;
    top: 10vw;
    left: 15vw;
    color: #333;
    letter-spacing: 0.5vw;
    font-size: 2vw;
    font-weight: 200;
    writing-mode: vertical-lr;
    font-family: 'HinaMincho-Regular';
}

.section_bg {
    margin: 10vw 0;
    width: 97%;
    background-color: #BCE5C8;
}

.section_bg:nth-of-type(even) {
    margin-left: auto;
    background-color: rgb(243, 243, 243);
}

section {
    margin-left: 18vw;
}

section h2 {
    position: relative;
    top: -1.8vw;
    color: #333;
    font-size: 2vw;
    font-weight: 200;
    font-family: 'Malgun Gothic';
}

section h2 + p {
    margin: 2vw 0 0 2vw;
    color: #333;
    font-size: 1.5vw;
    font-family: 'HinaMincho-Regular';

}

.concept_flexBox {
    display: flex;
    height: 30vw;
}

.concept_content {
    margin-top: 3vw;
    width: 48%;
}

.concept_content p {
    margin: 2vw 0 0 2vw;
    line-height: 2vw;
    color: #333;
    font-size: 1.1vw;
    font-family: 'Malgun Gothic';
}


.concept_imgBox {
    width: 30%;
}

.concept_content + .concept_imgBox {
    margin: -10vw 0 0 15vw;
}

.concept_flexBox + .concept_imgBox {
    width: 25%;
    position: absolute;
    margin: -15vw 0 0 45vw;
}

.section_bg:nth-of-type(2) {
    display: flex;
    margin-top: 20vw;
}

.product_flexBox {
    margin: 2vw 0 4vw 2vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 90%;
}

.product_flexBox a {
    width: 28.5%;
    text-align: center;
}

.section_bg:nth-of-type(3) {
    height: 25vw;
}

.shop_section {
    height: 100%;
    display: flex;
}

.shop_section ul {
    width: 70%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3vw 5vw;
    list-style-type: disc;
}

.shop_section ul li {
    line-height: 2vw;
    color: #333;
    font-size: 1.2vw;
    font-family: 'Malgun Gothic';
}

.section_bg:nth-of-type(4) {
    height: auto;
}

.topics_section {
}

/* スライドショー全体の幅 */
.slider {
    width: 100%;
}

/* スライド同士の間隔 */
.slick-slide {
    margin: 0px 20px;
}

/* スライドの中の画像の幅 */
.slick-slide img {
    width: 100%;
}

.slide_image {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 18vw;
    height: 10vw;
}

/* スライドの透明度 */
.slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
}
.slick-active {
    opacity: .5;
}
.slick-current {
    opacity: 1;
}

footer {
    height: 10vw;
    margin-top: 10vw;
    background-color: #BCE5C8;
}

footer .footer_flexBox {
    margin: 3vw 3vw 0 18vw;
    display: flex;
    justify-content: space-between;
}

footer .footer_flexBox .sns_flexBox {
    display: flex;
    gap: 2vw;
}

footer .footer_flexBox .sns_flexBox i {
    margin-top: 1vw;
    color: #333;
    font-weight: 200;
    font-size: 2vw;
}

footer nav ul {
    width: fit-content;
    margin-top: 1vw;
    display: flex;
    gap: 5vw;
    color: #333;
    font-weight: 200;
    font-size: 1.5vw;
    font-family: 'Malgun Gothic';
}

footer nav ul li a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 4vw;
    text-align: center;
    color: #333;
    font-size: 1.2vw;
    font-family: 'Malgun Gothic';
}