@charset "UTF-8";

/*
Theme Name:Sumatora_TIGRISinc..
共通CSS（常に効く）
*/

  html {
    font-size: 14px;
    /*ベースを10pxにしています*/
    color:var(--color_t);
    /* ベースカラーの黒100を緩和 */
  }

  body {
    width: 100%;
    height:auto;
    margin: 0 auto;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Noto Sans JP", sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  /*Front page Pタグサイズ変更*/

  .page_front p {
    text-align: justify;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
  }

  a {
    text-decoration: none;
    color: var(--color_a);
    word-wrap:break-word;
  }

  /* カラー相対値リスト */
  :root {
    --color_m: #7f8285;
    --color_sm: #f8f8f8;
    --color_sp: #e9efff;
    --color_bg: #97979708;
    --color_act: #5b8960;
    --color_t: #505050;
    --color_bt: #979797;
    --color_a: #000000;
  }

  .hidden_fuct{
    display:none;
  }

  /* ページトップパーツ */
  #page_top{
    width: 90px;
    height: 90px;
    position: fixed;
    right: 35px;
    bottom: 100px;
    z-index: 9;
    opacity: 1;
  }

  #page_top a{
    position: relative;
    display: block;
    width: 90px;
    height: 90px;
    text-decoration: none;
    background:#fff;
    border-radius: 10px;
  }

  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 25px;
    color: var(--color_ssm);
    position: absolute;
    width: 25px;
    height: 25px;
    top: -40px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  #page_top a::after{
    content: 'PAGE TOP';
    font-size: 13px;
    color: #fff;
    position: absolute;
    top: 52px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    color: var(--color_ssm);
  }

   /*PCメニュー非表示  ハンバーガーCSS実装コード*/

  .menu-btn {
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    height: 47px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 35px;
    border-radius: 1px;
    background-color: var(--color_m);
    position: absolute;
  }

  .menu-btn span:before {
    bottom: 11px;
  }

  .menu-btn span:after {
    top: 11px;
  }

 
  #menu-btn-check {
    display: none;
  }

  .menu-content {
    width: 85%;
    height: 100%;
    position: fixed;
    top: 57px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #7f8285ab;
    opacity: 0.96;
    transition: all 1.5s;
    /*アニメーション設定*/
    margin-left: 15%;
  }

  #menu-btn-check:checked~.menu-content {
    left: 0%;
    /*メニューを画面内へ*/
  }

  /*ハンバーガー実装END*/

  /* 開閉メニューの中身 */
  .menu-content li{
    list-style:none;
  }

@media (min-width: 768px) {
  html {
    font-size: 15px; /* 中間 */
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 16px; /* PC */
  }

 .menu-content {
    width: 30%;
    height: 100%;
    position: fixed;
    top: 57px;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #7f8285ab;
    opacity: 0.96;
    transition: all 1s;
    /*アニメーション設定*/
    margin-left: 70%;
  }

  p{
    letter-spacing:0.095rem;
  }

}