@charset "UTF-8";
@font-face {
    font-family: "Noto Serif JP";
    src: url("https://yurironkumachan.com/fonts/TanukiMagic.ttf")format("truetype");
}

/* すべてのページに共通して適用-------------------------------- */
* {
  box-sizing: border-box;
}
html {   
    scroll-behavior: smooth;
}
body {
  font-size: 100%;
  font-family:  "Shippori Mincho", 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 
  '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', 
  serif;
  color: black;
  margin: 0 auto 0 0;
}


/* header------------------------------------ */
.top-header {
    justify-content: center;
    width: 100%;
    height: 60px;
    position: fixed;
    align-items: center;
    background-color: transparent;
}
.top-header-home {
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    top: 10px;
    left: 5px;
   
}
.kuma-face-logo {
    height: 50px;
    width: auto;
}
.logo-home {
    font-size: 16px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 
    'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', 
    sans-serif;
    font-weight: bold;
}


/*ハンバーガーメニュー---------------------------------*/
.hamburger {
  display: block;
}

/*checkboxを非表示に*/
.gnav-hidden {
    display: none;
}
/*labelと画像で作る三本線ボタン*/
#gnav-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 92;
    background-color: transparent;
}
#gnav-btn span,
#gnav-btn span::before,
#gnav-btn span::after {
    content:  '';
    display: block;
    height: 3px;
    width: 25px;    
    background-color: black;
    position: absolute;
    transition: transform .2s;
}
#gnav-btn span::before {
    bottom: 8px;
}
#gnav-btn span::after {
    top: 8px;
}
/*メニュー表示時すなわち、チェックがついたときの指定*/
#gnav-input:checked ~ #gnav-btn span {
    /*メニューオープン時は真ん中の線を透明にする*/
    background-color: rgba(255, 255, 255, 0);
}
#gnav-input:checked ~ #gnav-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: transform .2s;
}
#gnav-input:checked ~ #gnav-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: transform .2s;
}
/*メニュー表示時の薄い幕部分*/
#gnav-black {
    display: none;
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
#gnav-input:checked ~ #gnav-black {
    display: block;
    background-color: black;
    opacity: 0.55;
}
#gnav-input:checked ~ #gnav-content {
    transform: translateX(0%);
}
 /*メニューの中身*/
 #gnav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 91;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: white;
    transition: 0.3s ease-in-out;
    /* メニューを右端に追いやる。左から出すなら－105％とかにする */
    transform: translateX(130%);
}
.gnav-content iframe {
    width: 100%;
    height: 100%;
}
/*ハンバーガーメニューここまで*/


/* main
-------------------------------- */
.main-container {
    padding-top: 60px;
}

.logo-container {
    width: 100%;
    text-align: center;
    /* ロゴ画像がヘッダーより下に来すぎてしまうので3%上に上げる。
    大画面では上がはみ出るので、その設定は下にmin-width 2000pxの場合は0と、別に指定 */
    margin: -4% 0 2% 0;
}
.logo-container img {
    width: clamp(135px, 45%, 730px);
}





.hero-container {
   width: 100%;
   text-align: center;

}
.hero-container img {
   max-width: 100%; 
}
.hero-img-w1100 {
    width: clamp(660px, 70%, 1100px);
}

.single-column-article {
    margin: 0 10vw 50px 10vw;
}
.single-column-article-wrapper{
    margin: 50px 3vw 0 3vw;
}
.posted-date-container {
    text-align: center;
}
.posted-date {
    margin: 60px 0 20px 0;
    font-size: clamp(15px, calc(0.63rem + 1.1vw), 22.5px);
}
h1 {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(20px, calc(1rem + 5vw), 88px);
    font-weight: bold;
    letter-spacing: -1.5px;
    margin: 10px 0 5% 0;
    text-align: center;
}

.main-text {
    font-size: clamp(16px, calc(0.8rem + 0.8vw), 24.5px);
    
}
.from-yurikuma-container {
    margin: 50px 0;
    
}
.from-yurikuma {
    font-size: clamp(16px, calc(0.7rem + 1.3vw), 25px);
    text-align: right;
    letter-spacing: -1.5px;
    padding: 2rem 0 2rem 0;
    
}
.quotes {
    font-size: clamp(16px, calc(0.45rem + 2.5vw), 25px);
}
.english-quote-larger {
    font-size: 140%;
    font-style: italic;
    display: inline-block;
    margin-bottom: 20px;
}
.english-quote-source-larger {
    font-size: 120%;
    display: block;
    text-align: right;
    margin-right: 10%;
}
.translated-quate {
    display: inline-block;
    font-style: italic;
    margin-bottom: 10px;
}
.translated-quate-source {
    display: block;
    text-align: right;
    margin-right: 10%;
}

/* ページ下部の、「カテゴリ」----------------------------- */
.categorized-to-container {
    padding-top: 50px;
    border-top: solid 5px #f3f3f3;
    margin: 0 10vw 0 10vw;
}
.categorized-to-title-container {
    margin-bottom: 2px;
}
.categorized-to-title {
    font-size: 16px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 
    'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', 
    sans-serif;
    font-weight: bold;
    color: #fff;
    background-color: #8f0030;
    display: inline-block;
    position: relative;
    z-index: -1;
    height: 2em;
    line-height: 2.2em;
    padding: 0 1em 0 1.3em;
    margin: 0 -0.35em 5px 0;
}
.categorized-to-title span {
    font-size: 13px;
}
.categorized-to-title::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    right: -1em;
    border-top: 1em solid #8f0030;
    border-bottom: 1em solid #8f0030;
    border-right: 1em solid transparent;
    border-left: 1em solid transparent;
}
.categorized-to {
    font-size: 16px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 
    'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', 
    sans-serif;
    float: left;
    margin-bottom: 50px;
}

.categorized-to li {
    display: inline-block;
    color: blue;
    margin: 0 5px;
}
.categorized-to-categories-page {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}


/* .signposts -------------------------------*/
.sign-posts-container {
    margin: 0 10vw 0 10vw;
}
.signposts {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    font-size: calc(1rem + 0.2vw);
    color: blue;
    padding-top: 50px;
    border-top: solid 5px #f3f3f3;
    width: 100%;
    text-align: center;
}

.signposts time {
    font-size: 75%;   
}
.signpost-newer-container {
    width: 50%;
    margin-right: 4%;
}
.signpost-date-newer {
    text-align: right;
   margin-left: auto;
}
.signpost-arrow-newer {
    font-weight: bold;
}
.signpost-newer-title-container {
    display: flex;
    justify-content: flex-end;
}
.signpost-newer-title {
    text-align: left;
   margin-left: auto;
}
.signpost-newer span {
    font-weight: bold; 
}

.signpost-older-container {
    width: 50%;
    margin-right: 4%;
}
 .signpost-date-older {
     text-align: left;  
 }
 .signpost-arrow-older {
     font-weight: bold;
 }
 .signpost-older-title-container {
    display: flex;
    justify-content: flex-start;
 }
 .signpost-older-title {
    text-align: left;
    margin-right: auto;
 }
 .signpost-older span {
     font-weight: bold; 
     text-align: left;
 }

.signposts-archives-container {
    margin-bottom: 50px;
    text-align: right;
}
.signposts-archives {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 
    'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', 
    sans-serif;
    color: blue;
    font-size: 16px;
    font-weight: bold;
    padding: 2px 7px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    letter-spacing: 1.5px;
}

.page-top-btn-container {
    text-align: center;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 
    'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', 
    sans-serif;
    color: blue;
    font-size: 16px;
    font-weight: bold;
    
    text-decoration: underline;
    text-decoration-thickness: 1px;
    margin-bottom: 15px;
}
.page-top-pointy-icon {
    width: 16px;
}


/* footer-------------------------------------------- */
footer {
    background: black;
    text-align: center;
    padding: 26px 0;
}
 footer p {
    color: #fff;
    font-size: 0.875rem;
}





/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
モバイル用
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ハンバガのスマホ用。-------------------------------- */
@media (max-width:555px) {
    .top-header-home {

        margin: 0;
    }

    .top-header-home img {
       width: 40px;
       height: 37px;
     
    }
    .logo-home {
        font-size: clamp(12px, calc(0.45rem + 1vw), 22px);
    }

    #gnav-content {
        /* ×印を表示させておくために上に余白をつける */
        margin: 0;
        /* PC用は90％になっている */
        width: 100%;
    }
    /* ヘッダーのロゴが黒い幕につけたopacityのせいでぼやけないように */
       #gnav-input:checked ~ #gnav-black {
        display: block;
        background-color: white;
        margin-top: 60px;
    }
}

@media (max-width:442px) {
    .header-nav-sub-list-archive a {
        display: flex;
        flex-direction: column;
    }

    .header-nav-sub-list-item time {
        margin: 0 5px 0 0;
    }
    .header-nav-sub-list-item span {
        margin: 0 0 10px 0;
    }

    .header-nav-list-item-contact {
        
       display: flex;
        justify-content: center;
    }
}

@media (max-width: 430px) {
      .logo-title {
        display: flex;
        flex-direction: column;
        vertical-align: middle;
        font-size: calc(0.7rem + 0.5vw);
    }
/* .header-nav-sub-list-tagsで指定した左寄せを解除 */
    .header-nav-list-item-contact {
        display: flex;
        flex-direction: row;
  
        text-align: center;
    }
    .header-nav-sub-list-contact {
        display: flex;
        /* これが無いと封筒のアイコンが真ん中に来ない */
        flex-direction: column;
        flex-wrap: nowrap;
        text-align: center;
    }
    .envelope-icon {
        height: 50px;
    }
}
/* モバイル用ハンバガここまで */

/* ===============================
小さい画面の設定 
==================================*/
@media (max-width:319px) {
    .signposts {
        padding-top: 20px;
        margin: 0;
    }
    .signpost-newer-time,
    .signpost-newer-title span,
    .signpost-older-time,
    .signpost-older-title span {
        display: none;
    }
    .signposts-archives-container {
        margin-top: 20px;
    }
}

@media (max-width: 222px) {
    .top-header {
        justify-content: flex-start;
    }
    
}

/* ===============================
大きい画面の設定 
==================================*/
/* 左右の余白を大きめにする---------------------- */




@media (min-width:1025px) {
    .single-column-article,
    .categorized-to-container,
    .sign-posts-container {
        margin: 0 11vw;
        padding-top: 60px;
    }

     /*ハンバガメニューの中身を幅広にする*/
    #gnav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 91;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: white;
    transition: 0.3s ease-in-out;
    /* メニューを右端に追いやる。左から出すなら－105％とかにする */
    transform: translateX(130%);
    /*メニューを閉じる×を覗かせるためのマージン*/
    /* margin-right: 60px; */
  }
  .header-nav-list-item-archive {
    margin: 30px;
  }
}

   /*テキスト部分の余白の調整*/
 @media (min-width:1500px) {
        .single-column-article,
        .categorized-to-container,
        .sign-posts-container {
            margin: 0 13vw;
        }
}
@media (min-width:1600px) {
    .single-column-article,
    .categorized-to-container,
    .sign-posts-container {
        margin: 0 calc((100% - 1150px) / 2);
    }
}
/* ロゴ画像が2000px以上の画面から上がはみ出ないように */
@media (min-width:2000px) {
    .logo-container {
        margin: 0 0 4% 0;
    }
}