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

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

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

h1 {
    font-size: 4vw;
    color: rgb(105, 87, 49);
}

h2 {
    font-size: 7vw;
    letter-spacing: .1em;
    font-family: courgette;
    color: rgb(105, 87, 49);
}

h3 {
    font-size: 7vw;
    letter-spacing: .1em;
    font-family: courgette;
    color: rgb(105, 87, 49);
}

h4 {
    font-size: 5vw;
    font-family: courgette;
    color: rgb(105, 87, 49);
}

p {
    font-size: 3.5vw;
    line-height: 1.6;
    font-family: noto;
    letter-spacing: .1em;
    color: #2d0e00;
}

a {
    
    text-decoration: none;
    font-family: courgette;
    color: rgb(105, 87, 49);
}

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%;
    background-color: rgb(237, 219, 232);
}

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

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

header:nth-of-type(2) .header-title-img img {
    width: 100%;
    vertical-align: bottom;
}

header:nth-of-type(2) .header-title-box {
    width: 34%;
    margin-left: 2%;
    margin-right: auto;
}

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

header:nth-of-type(2) .header-title-box h1 a {
    font-size: 7vw;
    letter-spacing: .18em;
    border-bottom: 2px solid white ;
    font-family: courgette;
}

header:nth-of-type(2) .header-title-box p {
    padding-top: .6vw;
    text-align: center;
    font-size: 2.8vw;
}

header nav ul {
    display: block;
}

header nav ul li {
    background-color: white;
    opacity: .5;
}

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

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

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 rgb(105, 87, 49);
	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;
}
/* ヘッダーここまで */

/* メッセージここから */
.messe-box {
    position: relative;
    width: 100%;
    height: 105vw;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
}

.messe-leftimg {
    position: absolute;
    top: 60vw;
    left: 9vw;
    width: 35%;
}

.messe-leftimg img {
    width: 100%;
    vertical-align: bottom;
    opacity: 1;
    z-index: .4;
}

.messe-child {
    position: absolute;
    top: 20vw;
    left: 19vw;
    z-index: 1;
}

.messe-child p {
    text-align: center;
}

.messe-rightimg {
    position: absolute;
    top: 12vw;
    right: 9vw;
    width: 35%;
}

.messe-rightimg img {
    width: 100%;
    vertical-align: bottom;
    opacity: .6;
}
/* メッセージここまで */

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

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

.gallery-h2 h2 {
    text-align: center;
    padding-bottom: .3vw;
    border-bottom: 4px solid white;
}

.gallery-p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2vw;
    padding-bottom: 3vw;
}

.gallery-p p {
    text-align: center;
}

.gallery-img {
    position: relative;
    width: 85%;
    margin-top: 3vw;
    margin-right: auto;
    border-top: 3px solid rgb(174, 138, 138);
    border-right: 3px solid rgb(174, 138, 138);
    border-bottom: 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 {
    width: 18%;
    margin-top: 8vw;
    margin-left: auto;
    margin-right: 60%;
    border-radius: 50px;
    border: 2px solid rgb(220, 220, 220);
    box-shadow: 1px 1px 1px;
    background-color: white;
}

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

.next-box1-2 {
    position: absolute;
    top: 71vw;
    right: 0;
    width: 15%;
    border-radius: 50px;
    border: 2px solid  white;
    background-color: rgb(220, 220, 220);
    box-shadow: 1px 1px 1px;
    z-index: 1000;
}

.next-box1-2 a {
    display: block;
    text-align: center;
    line-height: 1.5;
    font-size: 3.5vw;
    font-family: courgette;
}

.profile-box {
    position: absolute;
    top: 15vw;
    right: -9vw;
    width: 40%;
    padding-top: 1vw;
    padding-bottom: 10vw;
    border-top-left-radius: 170px;
    border-top-right-radius: 170px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: white;
    opacity: .9;
}

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

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

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

/* new arrivalsここから */
.h3-box {
    width: 100%;
    padding-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.h3-box h3 {
    padding-top: 2vw;
    padding-bottom: 4vw;
    text-align: center;
}

.h3-box p {
    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: 5vw;
    padding-bottom: .3vw;
    border-bottom: 4px solid #692100;
}

.blogmovie-box .blog-box .blog-h2 p {
    text-align: center;
    font-size: 3.5vw;
}

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

.blogmovie-box .blog-box .blog1 .blog1-img {
    width: 45%;
    margin-left: 5%;
    margin-right: 5%;
}

.blogmovie-box .blog-box .blog1 .blog1-img img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 15px;
    border: 3px solid rgb(174, 138, 138);
}

.blogmovie-box .blog-box .blog1 .blog1-p {
    width: 45%;
}

.blogmovie-box .blog-box .blog1 .blog1-p p {
    font-size: 3.3vw;
}

.blog-bottom {
    width: fit-content;
    margin-bottom: 1vw;
    border-bottom: 2px solid #692100;
}
/* blogここまで */
/* movieここから */
.blogmovie-box .movie-box {
    width: 100%;
    margin-top: 8vw;
}

.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 #692100;
}

.blogmovie-box .movie-box .movie-h2 p {
    text-align: center;
}

.blogmovie-box .movie-box .movie-img {
    width: 84%;
    margin-top: 8vw;
    margin-left: auto;
    margin-right: auto;
}

.blogmovie-box .movie-box .movie-img img {
    width: 100%;
    vertical-align: bottom;
    border: 3px solid rgb(174, 138, 138);
    border-radius: 10px;
}

.movie-box p {
    text-align: center;
    margin-top: .5vw;
}
/* 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: 2px solid white;
    background-color: rgb(220, 220, 220);
    box-shadow: 1px 1px 2px;
}

.next-box2 a {
    display: block;
    line-height: 1.5;
    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(237, 237, 237);
}

.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: 4px solid white;
}

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

.insta-img-box .insta-img img {
    width: 100%;
    vertical-align: bottom;
    border-top-left-radius: 45px;
    border: 2px solid rgb(174, 138, 138);
}

.insta-p {
    width: fit-content;
    margin-top: .5vw;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 3px solid #692100;
}

.insta-p p {
    text-align: center;
}

/* instaここまで */

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

.next-box3 {
    width: 18%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    border: 2px solid rgb(220, 220, 220);
    background-color: white;
    box-shadow: 1px 1px 1px;
}

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

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

footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(237, 219, 232);
}

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

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

footer .footer-imgbox img {
    width: 100%;
    vertical-align: bottom;
}

footer .footer-h4 {
    width: 57%;
}

.footer-h4 h4 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 4px solid white;
    font-size: 7vw;
    color: rgb(105, 87, 49);
    letter-spacing: .1em;
}

.footer-h4 p {
    line-height: 1.8;
    text-align: center;
    color: rgb(105, 87, 49);
    font-size: 3vw;
}
/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.8vw;
}

.social-box01 {
    width: 20%;
    margin-right: 20%;
}

.social-box01 img {
    width: 100%;
    vertical-align: bottom;
}

.social-box02 {
    width: 20%;
    padding-top: .7vw;
    margin-right: 20%;
}

.social-box02 img {
    width: 85%;
    vertical-align: bottom;
}

.social-box03 {
    width: 20%;
}

.social-box03 img {
    width: 100%;
    vertical-align: bottom;
}

/* ソーシャルアイコンここまで */
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 white;
    background-color: rgb(199, 199, 199);
    box-shadow: 2px 2px 3px;
}

.footer-box1 .pagejump a {
    line-height: 1.9;
    font-size: 7vw;
    color: rgb(105, 87, 49);
}
/* TOPへ戻るボタンここまで */
/* フッターここまで */