/* 全体
---------------------------------------------------------- */
@charset "UTF-8";
/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --font-base: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", "Yu Gothic", sans-serif;
  --font-m-plus-rounded: "YakuHanRP", "M PLUS Rounded 1c", sans-serif;
  --font-fredoka: "Fredoka", sans-serif;
  --normal: 400;
  --regular: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --extra-bold: 800;
  --black-bold: 900
}
/* デバイス制御_切り替え */
@media screen and (max-width:767px) {
  .onlyPC {
    display: none;
  }
  .onlySP {
    display: block;
  }
}
/* html
---------------------------------------------------------- */
/* ページ */
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  scroll-behavior: smooth;
}
/* イメージ */
img {
  vertical-align: top;
  line-height: 1.0em;
}
/* リンク画像_透明度 */
a:hover img {
  opacity: 0.5;
}
/*グレーアウト*/
.img_grayout {
  filter: grayscale(100%);
}
/*インデント*/
p.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}
/* ベーシック
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  .treds {
    width: 960px;
    height: auto;
    animation: fadeIn;
    animation-duration: 1s;
  }
  .treds_wrapper {
    width: 100%;
    padding: 0 0 3em;
    background-color: #fff;
  }
  .treds_contents {
    width: 960px;
    margin: 0 auto 3em;
    padding: 0 0 1.5em;
    background-color: #fff;
  }
  .treds_white_wrapper {
    width: 100%;
    padding: 0 0 3em;
    background-image: linear-gradient(135deg, transparent 18.75%, #EAEAEA 0 31.25%, transparent 0), repeating-linear-gradient(45deg, #EAEAEA -6.25% 6.25%, #ded3d3 0 18.75%);
    background-size: 15px 15px;
    background-color: #999;
  }
  .treds_white_contents {
    width: 960px;
    margin: 0 auto 3em;
    padding: 0 0 1.5em;
    background-color: #EAEAEA;
  }
  .contents_base_box {
    width: 837px;
    margin: 0 auto;
  }
  .treds_copyright {
    font-size: 0.8rem;
    line-height: 1.7;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #222;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  .treds {
    width: 100%;
    height: auto;
  }
  .treds_wrapper {
    width: 100%;
    padding: 0 0 2em;
    background-color: #fff;
  }
  .treds_contents {
    width: 98%;
    margin: 0 auto 2em;
    padding: 0 0 1.5em;
    background-color: #fff;
  }
  .contents_base_box {
    width: 100%;
    margin: 0 auto;
  }
  .treds_copyright {
    font-size: 0.6em;
    line-height: 1.7;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    text-align: center;
    color: #222;
  }
}
/* トップページ
---------------------------------------------------------- */
@media screen and (min-width:768px) { /* PC ===== */
  /*メイン_イメージ*/
  .top_main_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 5em;
    max-width: 1880px;
    background-color: #fddc00;
    box-shadow: 0px 20px 30px 0px rgba(255, 255, 255, 0.25);
  }
  /*メイン_キャッチコピー*/
  .top_catch_box {
    width: 100%;
    height: auto;
    margin: 0 0 5em;
  }
  /*メイン_黄色帯*/
  .top_yellow_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 5em;
    max-width: 1880px;
    background-color: #FFEC23;
  }
  .top_yellow_box_contents {
    width: 960px;
    margin: 0 auto;
    padding: 0.7em 0;
    font-size: 2.7rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #000;
  }
}
@media screen and (max-width:768px) { /* SP  ====== */
  /*メイン_イメージ*/
  .top_main_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 2em;
    max-width: 768px;
    background-color: #fddc00;
    box-shadow: 0px 10px 20px 0px rgba(255, 255, 255, 0.25);
  }
  /*メイン_キャッチコピー*/
  .top_catch_box {
    width: 80%;
    height: auto;
    margin: 0 auto 2em;
  }
  /*メイン_黄色帯*/
  .top_yellow_box {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 2em;
    max-width: 768px;
    background-color: #FFEC23;
  }
  .top_yellow_box_contents {
    width: 80%;
    margin: 0 auto;
    padding: 0.4em 0;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #000;
  }
}