@charset "UTF-8";

/*
COLORS
================================================ */
:root {
    --light-blue: #4db1ec;
    --blue: #1665cc;
    --purple: #c59bcc;
    --pink: #ffb2c1;
    --orange: #ff9f67;
    --yellow: #ffd673;
    --light-green: #a2e29b;
    --green: #00a2af;
    --grey: #333;
    --white: #fff;
}

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
.wrapper {
    max-width: 1100px;

    margin: 0 auto;
    padding: 0 4%;
}

/* 大きな背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/*
HERO
================================================ */

@keyframes blink{
    0%{opacity: 0;}
    100%{opacity: 1;}    
}
.blinking{
 animation: blink 300ms ease-in-out infinite alternate;
}

/* 見出し */
.page-title {
    font-size: 4rem;
    font-family: 'Philosopher', serif;
    text-transform: uppercase;
    font-weight: normal;
    color:rgb(16, 156, 33);
    text-shadow:2px 2px 2px rgba(255,255,255,0.9);
}

/* iframe */
iframe {
    width: 100%;
}

/* HEADER
------------------------------- */
header video{
object-fit:cover;
object-position:center top;

width:200px;
height :133px;
}


.page-header {
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 60px;
    margin-top: 14px;
    justify-content: space-between;
}
.main-nav {
    display: flex;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}
.main-nav li {
    margin-left: 36px;
}
.main-nav a {
    color: #432;
    text-shadow:1px 1px 1px rgba(255, 255, 255, 0.8);
}
.main-nav a:hover {
    color: #0bd;
}

/* HOME
.home-contents {
    width :200px;
    hight: 133px;
}


------------------------------- */

/* tree */
/*  ------------------------------- */
#tree {
    background-image: url(../mt_images/mt_sub-bg.jpg);
    height: 270px;
    margin-bottom: 40px;
}

/*  Flexboxの指定と下のmargin 50px */
.tree-contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* 記事部分 */
article {
   /* wsj_diff で変更 74 → 100 */
   /* width: 74%;   */
   width: 100%;
}


/* 相対位置の配慮。.post-infoのクラスにCSSを指定 */
.post-info {
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}

/* 日付部分の背景等指定。.post-infoからの絶対位置調整 */
.post-date {
    background: #0bd;
    /* wsj_diff で変更 50 → 0 */
    border-radius: 0%;
    
    color: #fff;

    /* wsj_diff で変更 100 → 70 */
    width: 70px;
    
    /* wsj_diff で変更 100 → 80 */
    height: 80px;
    
    /* wsj_diff で変更 1.625 → 1.1 */
    font-size: 1.1rem;
    
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 10px;
}

/* 日付指定と日付の上に水平線。白い線５０％透明に */
.post-date span {
    font-size: 1rem;
    border-top: 1px rgba(255,255,255,.5) solid;
    padding-top: 6px;
    display: block;
    width: 60%;
    margin: 0 auto;
}

/* タイトルとカテゴリーを装飾　*/
.post-title {
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 2rem;
    font-weight: normal;
}
.post-title,
.post-cat {
    margin-left: 120px;
}

/* 画像と本文に余白を足す　*/
article img {
    margin-bottom: 20px;
}
article p {
    margin-bottom: 1rem;
}

/* サイドバー */

/* style.css */

/* MENU */

/* CONTACT */

/* フォーム */

/* フッター
------------------------------- */
footer {
    background: #432;
    text-align: center;
    padding: 14px 0;
}
footer p {
    color: #fff;
    font-size: 0.875rem;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) {
    .page-title {
        font-size: 2.5rem;
    }
    .page-header {
        flex-direction: column;
        align-items: center;
    }

    /* HEADER */
    .main-nav {
        font-size: 1rem;
        margin-top: 10px;
    }
    .main-nav li {
        margin: 0 20px;
    }

    /* HOME */

    /* tree */
    .tree-contents {
        flex-direction: column;
    }
    #tree .page-title {
        margin-top: 30px;
    }
    article,
    aside {
        width: 100%;
    }
    aside {
        margin-top: 60px;
    }

     .post-info {
        margin-bottom: 30px;
    }
    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }
    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }
    .post-title {
        font-size: 1.375rem;
    }
    .post-cat {
        font-size: 0.875rem;
        margin-top: 10px;
    }
    .post-title,
    .post-cat {
        margin-left: 80px;
    }


}
