@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 {
    width: 100%;
}

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

header .header-title-img {
    width: 15%;
    margin-left: 23%;
    padding-top: 1.4vw;
    padding-bottom: 1.4vw;
}

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

header .header-title-box {
    width: 50%;
}

header .header-title-box h1 {
    padding-top: 5vw;
}

header .header-title-box h1 a {
    font-size: 4vw;
    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: 4vw;
    line-height: 1.5;
}

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

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

header 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: 5vw;
	top: 2.1vw;
	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;
}
/* ヘッダーここまで */

/* メインここから */
.sample-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.sample-box img {
    width: 100%;
    vertical-align: bottom;
}

.sample-box .movie-box {
    position: absolute;
    top: 273vw;
    left: 10.9vw;
    width: 150%;
    margin-left: auto;
    margin-right: auto;
}

.sample-box .movie-box video {
    width: 50%;
    border: 5px solid white;
    border-radius: 20px;
}

.sample-box .movie-box p:nth-of-type(1) {
    width: fit-content;
    margin-left: 23vw;
    margin-bottom: 3vw;
    font-size: 6vw;
    border-bottom: 5px solid #bee1de;
}


.sample-box .movie-box p:nth-of-type(2) {
    width: fit-content;
    margin-top: 3vw;
    margin-left: 19vw;
    font-size: 6vw;
    border-bottom: 5px solid #bee1de;
}

#profile {
    position: absolute;
    top: 100vw;
    width: 50%;
    background-color: aqua;
}

#movie {
    position: absolute;
    top: 200vw;
    width: 50%;
    background-color: aqua;
}

#gallery {
    position: absolute;
    top: 350vw;
    width: 50%;
    background-color: aqua;
}

#top {
    position: absolute;
    bottom: 2.8vw;
    right: 4vw;
    width: 14%;
    height: 12vw;
}
/* メインここまで */
