@charset "UTF-8";
/* CSS Document */


/* ALL
==========================================*/
* {
	margin: 0;
	padding: 0;
	line-height: 1.5;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 20px;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.wrap-main {
	max-width: 310px;
	margin: 0 auto;
}

.wrap-sub {
	max-width: 350px;
	margin: 0 auto;
}

@media screen and (min-width : 452px){
	.wrap-main {
		max-width: 455px;
	}
	
	.wrap-sub {
		max-width: 485px;
		padding: 0 20px
	}
}


.button a {
	display: block;
	width: 100%;
	height: 62px;
	border-radius: 100px;
	background-color: #314986;
	text-decoration: none;
	text-align: center;
	line-height: 62px;
	color: #fff;
	transition: all 0.3s ease;
	position: relative;
}

.button a:hover {
	background-color: #04115C;
}

.button a::after {/*ボタン右側の▲*/
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #FFF; /* 色とサイズ調整可 */
}

/* header
==========================================*/
header {
	position: fixed;
	z-index: 100;
	width: 100%;
	padding: 12px 0;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

h1 a {
	display: block;
	text-decoration: none;
	color: #000;
	font-size: 16px;
}


/* main
==========================================*/
section {
	padding: 40px 0;
}

section h2 {
	font-size: 24px;
	margin-bottom: 24px;
}

/* MV
==========================================*/
#MV {
	padding: 0;
	margin-bottom: 40px;
	height: 100vh;
	max-height: 700px;
	background: #555;
}

@media screen and (min-width : 452px ){
	#MV {
		max-width: 525px;
		margin: 0 auto;
	}
}

/* Works
==========================================*/
.work_container {
	margin-bottom: 24px;
}

.work_container a {
	text-decoration: none;
	color: #000;
}

.work_container img {
	width: 100%;
	margin-bottom: 8px;
}

.work_container h3 {
	font-size: 16px;
	font-weight: normal;
}

.work_container h4 {
	font-size: 14px;
	font-weight: normal;
	color: #B1B1B1;
}

/* Profile
==========================================*/
#profile h3 {
	text-align: center;
	margin: 16px 0;
}

#profile p {
	font-size: 14px;
}

/* Contact
==========================================*/
#contact h3 {
	text-align: center;
	margin: 16px 0;
}

#contact p {
	margin-bottom: 24px;
	font-size: 14px;
}

#contact ul {
	list-style: none;
	font-size: 14px;
	margin-bottom: 24px;
}

/* footer
==========================================*/
footer {
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #314986;
	color: #FFF;
}
