@charset "UTF-8";

/* ↓Googleフォント読み込み */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap&subset=japanese');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.1/css/all.min.css');


/* モバイル */
@media screen and (max-width: 1200px){
body{
	display: flex; /* フレックスボックスに有効に */
	flex-flow: column; /* 要素を縦に並べる */
	min-height: 100vh; /* 最小でも画面の高さ分のbodyの高さを担保する */
}

h2{
	font-size: 1.5em;
}

.title{
	height: 40vh;
	width: 100vw;
}


.menu {
	width: 100vw;
	border-radius: 0 0 10px 10px
}

.menu nav ul{
	display: flex;
	flex-wrap: wrap;
}

.menu nav li{
	margin: 7px auto;
	width: 50%;
	min-width: 0;
	font-size: 1.1em;

}


.menu nav a{
	display: block; 
	border-bottom: 2px solid transparent; 
}


.box {
	width: 100%;
}

.--2column {
    grid-template-columns: 1fr;
}

.left {
	margin-bottom: 30px;
}

.gallery {
	list-style: none;
	text-align: left;
	margin: 0em 0em;
}

.gallery li{
	display: inline-block;
}


.cover {
	object-fit: cover;
	width: 80px;
	height: 80px;
	background-color: #ccc;
	border: 1px solid #ccc;
  	border-radius: 10px;
}

.sample_img1{
	margin-bottom: 30px;
}

.sample_img2{
	margin-bottom: 30px;
}
}

@media screen and (max-width: 360px){
.box {
	padding: 1em;
}

.gallery li{
	width: 80px;
	height: 80px;
}

.cover {
	width: 80px;
	height: 80px;
}
}