@charset "utf-8";
/*テキストの自動拡大無効化*/
body{
    -webkit-text-size-adjust:none;
    text-size-adjust:none;
}

/*ページ全体*/
body{
    margin: 0;
    font-family: sans-serif;
}

/*ヘッダー*/
header{
    padding: 25px 15px;
    color: coral;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

a{
    color: coral;
    text-decoration: none;
}

a:hover{
    opacity: 0.5;
    background-color: antiquewhite;
}

.sidephoto a:hover{
    background-color: #ffffff;
}

nav ul{
    list-style-type: none;
    padding: 0;
    font-size: 12px;
    display: flex;
    justify-content: center;
}

nav a{
    color: brown;
}

nav li:not(:last-child){
    margin-right: 20px;
}

/*コンテンツ*/
.contents{
    background-color:antiquewhite;
    padding: 40px 15px;
}

article{
    background-color: #ffffff;
    padding: 20px;
}

h1{
    font-size: 30px;
}

time{
    margin-bottom: 15px;
    display: block;
}

img{
    width: 100%;
    height: auto;
}

span{
    font-size: 10px;
}

figure{
    margin: 0;
}

p{
    line-height: 2;
}

video{width: 100%;
height: auto;}

/*サイドメニュー*/
aside{
    background-color: #ffffff;
    padding: 20px;
    margin-top: 40px;
}

h2{
    font-weight: normal;
    text-align: center;
}

.sidephoto img{
    border-radius: 5%;
}

.sidephoto ul{
    list-style-type: none;
    padding: 0;
}

.sidephoto a{
    color: black;
    display: flex;
    align-items: center;
}

.sidephoto figure{
    width: 200px;
    flex: none;
}

.sidephoto img{
    vertical-align: bottom;
    margin-bottom: 10px;
}

.sidephoto h3{
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
}

/*フッター*/
footer{
    background-color:coral;
    padding: 25px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* ===== PC版ここから ===== */
/*PC版コンテナ*/
@media(min-width:600px){

.container{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

header .container{
    display: flex;
    justify-content: space-between;
}

/*PC版記事*/
article{
    padding-left: 60px;
    padding-right: 60px;
}

h1{
    font-size: 40px;
}

p{
    font-size: 18px;
}
}
/* ===== PC版ここまで ===== */

/* ===== PC版大ここから ===== */
/*PC大設定*/
@media(min-width:900px){
.container{
    max-width: 1300px;
    justify-content: space-between;
}

.contents .container{
    display: flex;
}

article{
    width: 60%;
    box-sizing: border-box;
}

.sub{
    width: 35%;
}
.sidevideo{
    margin-top: 0;
}
}
/* ===== PC版大ここまで ===== */
