@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: courgette;
    src: url(../fs/Courgette/Courgette-Regular.ttf);
}

@font-face {
    font-family: noto;
    src: url(../fs/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

h1 {
    font-size: 3vw;
}

h2 {
    font-size: 5vw;
    color: #202020;
    font-family: courgette;
}

h3 {
    font-size: 5vw;
    font-family: courgette;
    color: #202020;
}

h4 {
    font-size: 5vw;
    font-family: courgette;
    color: #202020;
}

p {
    font-size: 3.5vw;
    line-height: 1.6;
    font-family: noto;
    color: #202020;
}

a {
    
    text-decoration: none;
    font-family: noto;
    color: #202020;
}

ul {
    list-style-type: none;
}

li {
    font-family: courgette;
    font-size: 2vw;
}

html {
    scroll-behavior: smooth;
}
/* ヘッダーここから */
header:nth-of-type(1) {
    display: none;
}

header:nth-of-type(2) {
    width: 100%;
}

.header-title {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

header:nth-of-type(2) .header-title-img {
    width: 15%;
    margin-left: 23%;
    padding-top: 1.4vw;
    padding-bottom: 1.4vw;
}

header:nth-of-type(2) .header-title-img img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid rgb(174, 138, 138);
    vertical-align: bottom;
}

header:nth-of-type(2) .header-title-box {
    width: 50%;
}

header:nth-of-type(2) .header-title-box h1 {
    padding-top: 5vw;
}

header:nth-of-type(2) .header-title-box h1 a {
    font-size: 5vw;
    font-family: courgette;
}

header nav ul {
    display: block;
}

header nav ul li {
    background-color: rgb(219, 193, 115);
}

header nav ul li a {
    display: block;
    font-size: 3vw;
    line-height: 1.5;
}

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

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

header:nth-of-type(2) nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}

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

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


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


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

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

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	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);
}

header nav div h1 a:nth-of-type(1) {
    display: none;
}
/* ヘッダーここまで */

/* galleryここから */
section {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 7vw;
    background-color: rgb(220, 220, 220);
}

.gallery-h2 {
    width: 28%;
    margin-left: 25%;
    padding-top: 4vw;
    padding-bottom: 1.5vw;
}

.gallery-h2 h2 {
    width: fit-content;
    padding-bottom: .3vw;
    border-bottom: 4px solid rgb(219, 193, 115);
}

.gallery-img {
    position: relative;
    width: 85%;
    margin-top: 3vw;
    margin-right: auto;
    border: 3px solid rgb(174, 138, 138);
    border-top-right-radius: 95px;
}

.gallery-img img {
    width: 100%;
    vertical-align: bottom;
    border-top-right-radius: 92px;

}
/* ポジションここから */
.next-box {
    position: absolute;
    left: 30vw;
    bottom: 3vw;
    width: 18%;
    border-radius: 50px;
    border: 3px solid rgb(219, 193, 115);
    background-color: white;
}

.next-box a {
    display: block;
    text-align: center;
    font-size: 4vw;
    font-family: courgette;
}

.profile-box {
    position: absolute;
    bottom: 3vw;
    right: -7.5vw;
    width: 40%;
    padding-top: 1vw;
    padding-bottom: 1.5vw;
    background-color: white;
}

.profile-box h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: .5vw;
    text-align: center;
    border-bottom: 4px solid rgb(220, 220, 220);
}

.profile-box p {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.profile-box p span {
    font-size: 2.5vw;
}
/* ポジションここまで */
/* galleryここまで */

/* new arrivalsここから */
.h3-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color:rgb(219, 193, 115);
}

.h3-box h3 {
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
}
/* new arrivalsここまで */

/* blog+movieここから */
.blogmovie-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6vw;
}
/* blogここから */
.blogmovie-box .blog-box {
    width: 100%;
}

.blogmovie-box .blog-box .blog-h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.blogmovie-box .blog-box .blog-h2 h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    padding-bottom: .3vw;
    border-bottom: 4px solid rgb(219, 193, 115);
}

.blogmovie-box .blog-box .blog1 {
    display: flex;
    width: 95%;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.blogmovie-box .blog-box .blog1 .blog1-img {
    width: 45%;
    margin-left: 5%;
    margin-right: 5%;
    border: 3px solid rgb(174, 138, 138);

}

.blogmovie-box .blog-box .blog1 .blog1-img img {
    width: 100%;
    vertical-align: bottom;
}

.blogmovie-box .blog-box .blog1 .blog1-p {
    width: 45%;
}
/* blogここまで */
/* movieここから */
.blogmovie-box .movie-box {
    width: 100%;
    margin-top: 5vw;
}

.blogmovie-box .movie-box .movie-h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.blogmovie-box .movie-box .movie-h2 h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    padding-bottom: .3vw;
    border-bottom: 3px solid rgb(219, 193, 115);
}

.blogmovie-box .movie-box .movie-img {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid rgb(174, 138, 138);
}

.blogmovie-box .movie-box .movie-img img {
    width: 100%;
    vertical-align: bottom;
}
/* movieここまで */
/* blog+movieここまで */

/* nextbox2ここから */
.next-box2-bg {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.next-box2 {
    width: 18%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    border: 3px solid rgb(174, 138, 138);
    background-color: rgb(195, 194, 194);
}

.next-box2 a {
    display: block;
    text-align: center;
    font-size: 4vw;
    font-family: courgette;
}
/* nextbox2ここまで */

/* instaここから */
.insta-box {
    display: none;
}

.insta-box2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(209, 209, 209);
}

.insta-box2 .insta-h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 4vw;
}

.insta-box2 .insta-h2 h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    padding-bottom: .3vw;
    border-bottom: 3px solid rgb(219, 193, 115);
}

.insta-img-box {
    display: flex;
    width: 90%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.insta-img-box .insta-img {
    width: 44%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid rgb(174, 138, 138);
    border-top-left-radius: 50px;
}

.insta-img-box .insta-img img {
    width: 100%;
    vertical-align: bottom;
    border-top-left-radius: 45px;
}
/* instaここまで */

/* nextbox3ここから */
.next-box3-bg {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.next-box3 {
    width: 18%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    border: 3px solid rgb(174, 138, 138);
    background-color: white;
}

.next-box3 a {
    display: block;
    text-align: center;
    font-size: 4vw;
    font-family: courgette;
}
/* nextbox3ここまで */

/* フッターここから */
footer:nth-of-type(1) {
    display: none;
}

footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-box1 {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3vw;
}

footer .footer-box1 .footer-imgbox {
    width: 13%;
    height: 3.5%;
    margin-left: 6.5%;
    margin-right: 3%;
}

footer .footer-imgbox img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid rgb(174, 138, 138);
    vertical-align: bottom;
}

footer .footer-h4 {
    width: 57%;
    padding-top: 5vw;
}
/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.8vw;
}

.social-box a:nth-of-type(1) {
    width: 25%;
    margin-left: 10%;
    font-size: 7vw;
    color: black;
}

.social-box a:nth-of-type(2) {
    width: 25%;
    margin-left: 7%;  
    font-size: 7vw;
    line-height: 1.5;
    color: blue;
}

.social-box a:nth-of-type(3) {
    width: 25%;
    margin-left: 7%;
    margin-right: auto;
    font-size: 7vw;
    color: red;
}
/* ソーシャルアイコンここまで */
footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* TOPへ戻るボタンここから */
.footer-box1 .pagejump {
    width: 13%;
    margin-top: .2vw;
    margin-right: auto;
    text-align: center;
    line-height: 8vw;
    border-radius: 50%;
    border: 3px solid rgb(174, 138, 138);
    background-color: rgb(199, 199, 199);
}

.footer-box1 .pagejump a {
    line-height: 1.6;
    font-size: 7vw;
    color: white;
}
/* TOPへ戻るボタンここまで */
/* フッターここまで */