@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: absolute;
    width: 25%;
    height: 60vw;
    padding-left: 2vw;
    border-right: 0.1vw solid #333;
    z-index: 10;
}

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

header nav ul {
    margin: 5vw auto;
}

.pcMenu {
    display: none;
}

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;
}

/*ナビメニューのスタイルを指定*/
nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 10; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background: #ffffffaf;/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: none; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 90%;
    margin: 0 auto;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
	display: block; /*クリックできる領域を広げる*/
	color: #000;
	padding: 1em 0;
    font-weight: 200;
    font-family: 'Malgun Gothic';
}


/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}


/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 25px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 100;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 1px #000;
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
    box-shadow: 1px 1px 3px #333;
}

.Toggle span:nth-child(1) {
    border-bottom: solid 1px #BCE5C8;
	top: 9px;
}

.Toggle span:nth-child(2) {
    border-bottom: solid 1px #ffa046;
	top: 18px;
}

.Toggle span:nth-child(3) {
    border-bottom: solid 1px #ffa046;
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}


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

main .mv img {
    width: 150%;
    height: fit-content;
    margin-top: -5vw;
    margin-bottom: 5vw;
    margin-left: -20vw;
}

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

.section_bg {
    margin: 20vw 0;
    width: 97%;
    height: 80vw;
    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: -4vw;
    left: 4vw;
    color: #333;
    font-size: 5vw;
    font-weight: 200;
    font-family: 'Malgun Gothic';
}

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

}

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

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

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

.concept_imgBox {
    width: 50%;
}

.concept_content + .concept_imgBox {
}

.concept_flexBox + .concept_imgBox {
    width: 40%;
    margin: 20vw 0 0 55vw;
}

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

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

.product_content {
    margin: 0 auto;
    width: 70%;
    text-align: center;
}

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

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

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

.shop_section ul li {
    line-height: 2vw;
    color: #333;
    font-size: 4vw;
    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: 60vw;
    height: 60vw;
}

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

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

footer .footer_flexBox {
    margin: 3vw 3vw 0 3vw;
    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: 5vw;
}

footer nav ul {
    width: fit-content;
    margin-top: 1vw;
    display: flex;
    gap: 5vw;
    color: #333;
    font-weight: 200;
    font-size: 3vw;
    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: 3vw;
    font-family: 'Malgun Gothic';
}