@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: 4vw;
    font-family: yusei;
    color: #202020;
}

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

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

p {
    font-size: 1.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(2) {
    display: none;
}

header {
    display: flex;
    width: 100%;
    background-color: rgb(240, 211, 168);
    z-index: 10;
}

header h1 {
    width: 40%;
    margin-right: 15%;
    padding: 1vw;
}

header h1 div {
    width: 80%;
}

header h1 div img {
    width: 100%;
    vertical-align: bottom;
}

header nav {
    width: 45%;
    padding: 1vw;
}

header nav ul {
    display: flex;
}

header nav ul li {
    width: fit-content;
    margin-top: 5.5vw;
    margin-right: 8%;
    font-size: 2vw;
}

header nav ul li a {
    display: block;
    line-height: 1.5;
}

header nav ul li a:hover {
    line-height: 1.5;
    border-bottom: 2px solid black;
    transition: .2s;
}
/* ヘッダーここまで */

/* セクションここから */
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: 1.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: 40%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vw;
}

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

footer ul li a {
    font-size: 2vw;
    line-height: 1.5;
}

footer ul li a:hover {
    line-height: 1.5;
    border-bottom: 2px solid black;
    transition: .2s;
}

/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 20%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
    background-color: aliceblue;
}

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

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

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

.footer-box1 a:nth-of-type(4) {
    margin-left: 5%;
    margin-right: 52%;
    font-size: 3vw;
    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へ戻るボタンここまで */