@charset "utf-8";

body {
	margin: 0;
	font-family: sans-serif;
	color:#252525;
	font-size:16px;
	background-color: #fff;
	line-height: 1.8;
}

.container {
	margin: 0 auto;
	max-width: 1000px;
}


/* 背景CSS */
.box1 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background-color: skyblue;
}

.box2 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background: rgb(74,130,231);
background: linear-gradient(207deg, rgba(74,130,231,1) 0%, rgba(235,250,50,1) 52%, rgba(231,29,101,1) 100%);
}

.box3 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background-image:url("fox.png");
}

.box4 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background-image:url("fox.png");
	background-repeat: repeat-x;
}

.box5 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background-image:url("fox.png");
	background-repeat: repeat-y;
}

.box6 {
    padding: 20px;
    border: solid 3px #808080;
    height:300px;
	margin-bottom: 60px;
	background-image:url("fox.png");
	background-repeat: repeat-y;
	background-position:right;
}

.box7 {
    padding: 20px;
    border: solid 3px #808080;
    height:500px;
	margin-bottom: 60px;
	background-image:url("sea.jpg");
	background-position: center;
    background-size:contain;
}

.box8 {
    padding: 20px;
    border: solid 3px #808080;
    height:500px;
	margin-bottom: 60px;
	background-image:url("sea.jpg");
	background-position: center;
    background-size: cover;
	min-height: 100vh;
}

.box9 {
    padding: 20px;
    border: solid 3px #808080;
    height:500px;
	margin-bottom: 60px;
	background-image:url("sea.jpg");
	background-repeat:no-repeat; 
	background-size:auto;
}


/* 
各パートにパディング、背景、テキスト色などを指定する
<div class="container">の子要素に指定する
*/

header {
	padding: 10px 10px 5px 10px;
	background: #6a5acd;
}

footer {
	padding: 20px 16px 10px 16px;
	background: #565656;
	color: #fff;
}


main {
	padding: 20px 10px 20px 10px;
}

/* ビューポート */
@media only screen and (min-width: 768px) {
	.container {
		padding: 0 20px;
	}
	main {
		padding: 20px 30px;
	}

}	

/* post */
.post {
	padding:10px;
}


/* そのたCSS */

header h1{
	font-size: 24px;
	color: #fff;
}

.moji1{
	font-size: 20px;
	color:#0066cc;
}

.moji2{
	color:#0066cc;
}

.copyright {
	margin: 0;
	text-align: center;
}

.point {
	color:crimson;
}

.center-t {
	text-align: center;
}

.kakomi1{
	background-color: crimson;
	color: white;
	padding: 0 10px;
}

.kakomi2{
	background-color:#3366cc;
	color: white;
	padding: 0 10px;
}

h3 {
	padding: 3px 20px;
	background-color: #4d5aaf;
	margin-top:40px;
	margin-bottom: 25px;
	color: white;
}


h4 {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #4d5aaf;/*文字色*/
  border-left: solid 7px #4d5aaf;/*左線*/
}

h4.aka {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #4d5aaf;/*文字色*/
  border-left: solid 7px red;/*左線*/
}

.ao{
	color:#3366cc;
	font-size:18px;
}

.futo {
	font-weight: bold;
}

.pink-box {
 padding: 20px;
 background: #ffe4e1;
}



/* 画像レスポンシブ */
img{
	max-width:100%;
	height:auto;
}


/* スマホＰＣ切り替え
----------------------------------*/

@media screen and (min-width: 768px) {
.sp {display:none;} /*PCで閲覧したら非表示にするスマホ用コンテンツ*/
}
 
@media screen and (max-width: 768px) {
.pc {display:none;} /*スマホで閲覧したら非表示にするPC用コンテンツ*/
}