@charset "utf-8";

/**
* ***************************************
* ページ全体に関わるCSSの設定
* ***************************************
*/
html *,
::before,
::after {
	box-sizing: border-box;
}
/* フォント */
html {
	font-size: 14px;
}
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}


body {

	/* 明朝体 */
	font-family: 'Noto Serif JP', serif;   /* 明朝体 200 400 700 */
	font-weight: 200;   /* 一番細い 200を指定 */

	/* ゴシック体 */
	/* font-family: 'Noto Sans JP', sans-serif;   ゴシック体 100 400 700 */
	/* font-weight: 100;   一番細い 100を指定 */

	line-height: 1.8rem;
	color: hsla(0,100%,0%,0.8);/* グレー */
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
}
p {
	margin: 0;
}
/* 全体のリンク */
a {
	color: hsla(220,100%,50%,0.8); /* 青 */
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
	opacity: 0.5;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

/**
* ***************************************
* ヘッダー
* ***************************************
*/
@media (min-width: 768px) {
	.header-container {
		margin: 0 auto;
		padding: 0 20px;
		max-width: 1040px;
	}
}
/* ヘッダーロゴとモバイルナビボタン */
.sitetitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 768px) {
	.sitetitle {
		display: block;
		padding: 30px 0 0 0;
	}
}
/* ヘッダーロゴ */
.header-logo {
	margin: 0;
	padding: 10px 0px 0px 15px;
	font-size: 2rem;
	line-height: 1;
}
@media (min-width: 768px) {
	.header-logo {
		padding: 0;
	}
}

/* 追加 ここから -------------------*/ 
@media (max-width: 768px) {/* spのみ */
	.header-container {
		height: 60px;
		z-index: 2;
	}
	.header-logo img {
		padding-top: 17.5px;/* 60px - 25px(ロゴの高さ)＝35px->/2=17.5px */
	}
	.header-container .navbtn.close {
		background-color: hsla(0,100%,0%,0.5);/*追加*/
		background-size: 60px 60px;/*追加 必須 ボタンの大きさ*/
		background-image: url(../images/nav-mobile-close.svg);
		/*background-position: top left;ボタンの位置-左*//*追加*/
		background-position: top right;/*ボタンの位置-右*//*追加*/
		width: 100vw;
		height: 100vh;
	}
	.header-nav {
		position: fixed;
		top: 60px;
		width: 100vw;
		z-index: 2;
	}
	.header-nav {
	}
}
/* 追加 ここまで -------------------*/

/* モバイル向けボタン */
.navbtn {
	z-index: 1;
	position: fixed;
	top: 0px;
	/*left: 0px;ボタンの位置-左*/
	right: 0px;/*ボタンの位置-右*/
	display: block;
	width: 60px;
	height: 60px;
	background-image: url(../images/nav-mobile-open.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.navbtn.close {
	background-image: url(../images/nav-mobile-close.svg);
}
@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}
/* ヘッダーナビゲーション */
.header-nav {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-nav.collapse {
	display: none;
}
.header-nav li a {
	display: block;
	padding: 20px 30px;
	border-top: 1px solid #d8d8d8;
	background: #efefef;
	color: hsla(0,100%,0%,0.5);/* グレー */
	text-decoration: none;
}
.header-nav li a:hover {
	background: #b8e5ea;
	text-decoration: none;
	opacity: 0.7;
}
@media (min-width: 768px) {
	/* PC向けレイアウト */
	.header-nav {
		display: flex !important;
		flex-direction: row;
		justify-content: flex-end;
	}
	.header-nav li a {
		padding: 6px 20px 2px 20px;
		border-top: none;
		border-bottom: 4px solid transparent;
		background: none;
	}
	.header-nav li a:hover {
		border-bottom: 4px solid #73cbd6;
		opacity: 0.5;
		background: none;
	}
}


/**
* ***************************************
* コンテンツ部分
* ***************************************
*/
.container {
	padding: 60px 4%;
}
@media (min-width: 768px) {
.container {
		max-width: 1040px;
		margin: 0 auto;
		padding: 60px 20px 120px 20px;
	}
}
/* レイアウト */
.wrapper {
	margin: 0 0 60px 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: minmax(100px, auto);
	column-gap: 10px;
	row-gap: 30px;
	padding: 0 0 30px 0;
	border-bottom: 1px solid hsla(0,100%,0%,0.3);
/* 写真 */
.pic-frame {
	text-align: right;
}
}
@media (min-width: 768px) {
	.wrapper {
		grid-template-columns: 1fr 1fr;
		column-gap: 20px;
	}
}

/* copy */
.copy {
	padding: 0px 0 0px 0;
	margin: 0px 0 0px 0;
	font-family: courier, "courier new", monospace;
	color: hsla(0,100%,0%,0.3);
	font-size: 0.8rem;
	text-align: center;
}
/* ボタンの上の余白 */
.btn {
	margin: 1rem 0 0 0;
}
/* ページトップボタン */
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #000;
    border: solid 2px #000;
    border-radius: 50%;
	box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}
/* ここまで */



