@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: yusei;
    src: url(../fs/Yusei_Magic/YuseiMagic-Regular.ttf);
}

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

body {
    cursor: url(../images/cursor.png),auto;
    background-color: rgb(240, 211, 168);
}

h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 6vw;
    font-family: yusei;
    color: #202020;
}

h3 {
    font-family: noto;
    color: #202020;
}

h4 {
    font-family: noto;
    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: noto;
}

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

header:nth-of-type(2) {
    width: 100%;
    background-color: rgb(240, 211, 168);
    z-index: 10;
}

header:nth-of-type(2) h1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.4vw;
}

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

header nav ul {
    display: block;
}

header nav ul li {
    background-color: bisque;
}

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;
}
/* ヘッダーここまで */

/* セクションここから */
section {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    padding-top: 1vw;
    background-color: aliceblue;
}

section h2 {
    background: linear-gradient(transparent 60%, pink 20%);
    text-align: center;
}

section figcaption {
    font-size: 3.5vw;
}

.gallery-box1 {
    display: flex;
    width: 100%;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.gallery-box1 .gallery-box1-1 {
    width: 42%;
    margin-left: 5%;
    margin-right: 6%;
}

.gallery-box1 .gallery-box1-1 img {
    width: 100%;
    vertical-align: bottom;
}

.gallery-box1 .gallery-box1-1 video {
    width: 100%;
}

.gallery-box1 .gallery-box1-2 {
    width: 42%;
    margin-right: 5%;
}

.gallery-box1 .gallery-box1-2 img {
    width: 100%;
    vertical-align: bottom;
}

.gallery-box1 .gallery-box1-2 video {
    width: 100%;
}
/* セクションここまで */

/* フッターここから */
footer {
    width: 100%;
    background-color: pink;
}

footer ul {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vw;
}

footer ul li {
    margin-left: 4%;
}

footer ul li a {
    font-size: 4vw;
    line-height: 1.5;
}
/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 40%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
    background-color: aliceblue;
}

.footer-box1 a:nth-of-type(1) {
    margin-left: 17%;
    font-size: 5.9vw;
    color: black;
}

.footer-box1 a:nth-of-type(2) {
    margin-left: 5%;
    font-size: 5.2vw;
    line-height: 1.7;
    color: green;
}

.footer-box1 a:nth-of-type(3) {
    margin-left: 5%;  
    font-size: 5.3vw;
    line-height: 1.6;
    color: blue;
}

.footer-box1 a:nth-of-type(4) {
    margin-left: 5%;
    margin-right: 52%;
    font-size: 5.5vw;
    line-height: 1.6;
    color: red;
}
/* ソーシャルアイコンここまで */
footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* フッターここまで */

/* TOPへ戻るボタンここから */
.pagejump {
    width: 7%;
    position: fixed;
    bottom: 2vw;
    right: 1vw;
    transition: 1s;
}

.pagejump:hover {
    width: 10%;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    transition: 1s;
}

.pagejump img {
    width: 100%;
    vertical-align: bottom;
}
/* TOPへ戻るボタンここまで */