/*
Theme Name: Drizzle Toffee Records
Theme URl: "http://drizzletoffeerecords.com/"
Author: rahiro
Description: hoge
tags: hoge
License: テーマのライセンス
License URl: テーマのライセンスURL
Version: バージョン
*/

/* global */
:root {
    --bgColor:#EDEDED;
    --clBlack:#2F2F2F;
    --clGray:#808080;

    font-family: 'Lato',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--clGray);
    
}

p{
    color: var(--clGray);
    font-size: medium;
}

.heading{
    text-decoration: none;
}

h2{
    color: var(--clBlack);
    font-size: 2rem;
    text-decoration: none;

}


h3{
    color: var(--clGray);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;

}


.mt80 {
    margin-top: 80px;
}

.mt40 {
    margin-top: 40px;
}

.mb20 {
    margin-bottom: 20px;
}

.taRight{
    text-align: right;
    padding-right: 8px;
}


/* header */
body {
    background-color: var(--bgColor);
    margin: 0;
}

.headerBlock {
    display: flex;
    width:100%;
    height:50px;
    background-color: var(--bgColor);
    position: fixed;
    top:0;
}

.logo {
    height:48px;
    width:auto;
    padding-left: 1rem;
}

.headerMenu {
    margin-left: auto; 
    margin-right: 16px;
    width:48px;
    height:48px;

}

button{
    margin:0;
    top:0;
    padding: 0;
    border: none;
}

.headerHumburger {
    width: 48px;
    height: 100%;
  }

.hamburger span {
    width:100%;
    height: 1px;
    background-color: var(--clBlack);
    position: relative;
    transition: ease .4s;
    display: block;
  }
  
  .hamburger span:nth-child(1) {
    top: 0;
  }
  
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  
  .hamburger span:nth-child(3) {
    top: 0;
  }

  .headerNav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
  }

 
  .headerNav.active {
    transform: translateX(0);
  }
  
  .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  
  }
  
  .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
  } 

  .nav-items {
    padding-top: 250px;
    padding-bottom: 200px;
  }
  
  .nav-items__item a {
    color: black;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }



/* footer */

footer {
    border-top: 2px solid var(--clGray);
    display:flex;
    align-items: flex-end;
    padding: 16px;
}


footer >ul{
    margin: 0;
    padding-inline-start:0;
}

.footerCategory{
    list-style: none;
    font-size: 2em;
    font-weight: bold;
    margin-top: 0.5em;
    text-transform: uppercase;

}

.footerCategory a{
    text-decoration: none;
    color:var(--clBlack);
}


.footerLogo{
    margin-left: auto;
    width:30%;
    max-width: 200px;
    height:auto;
    vertical-align: bottom;
}

/* main */
main {
    max-width: 1000px;
    margin:auto;
    margin-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
}

.mainImg {
    width: 100%;
    height:auto;

}

/* home */
h2.noneTextDecration{
    color: var(--clBlack);
    font-size: 4rem;
    letter-spacing: -0.1em;
    line-height: 0.83em;
    margin:0;

}

a.noneTextDecration{
    color: var(--clGray);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
}

.flex {
    display: flex;
    align-items: flex-start;
}

.flex .flex2col:nth-child(1) {
    margin-right: 16px;
}

.flex2col{
    display: block;
    width:50%;
    margin-bottom:40px;
    border-bottom:2px solid var(--clGray);
    padding-bottom: 24px;
}

/* listpage */
.articleCountain {
    display: flex;
    border-right: 2px solid var(--clGray);
    align-items: flex-end;
}

.articleCountainChild {
    width: 50%;
}

.thumbImg{
    width:50%;
    height:auto;
}

article{
    margin-top: 2em;
}

article h2 {
    margin-left: auto; 
    margin-right: 8px;
    margin-left:8px;
    text-align: right;
    color: var(--clGray);
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
}