@charset "UTF-8";

/*グーグルフォントの読み込み
---------------------------------------------------------------------------*/

@font-face { 
  font-family: "Local Noto Sans JP";
  src: url(../webfonts/NotoSansJP-VariableFont_wght.ttf)  format('truetype') tech(variations);
  font-weight: 100 900;
}

/*全体の設定
---------------------------------------------------------------------------*/
html, body {
  height: 100%;
}
body {
  font-family:"Local Noto Sans JP","Noto Sans JP",sans-serif; /*フォント種類（ゴシック）*/
  -webkit-text-size-adjust: none;
  font-size: 16px;
  font-weight: 450;
  background: #fff; /*背景色*/
  color: #2E2E2E; /*文字色*/
  line-height: 1.5; /*行間*/
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-feature-settings: "palt" 1;
}
/* 垂直方向のマージンを統一 */
h1 {
  font-size: clamp(1.8rem, 5.5vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}
h2 {
  font-size: clamp(1.5rem, 4.8vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
}
h3 {
  font-size: clamp(1.3rem, 4.4vw, 2.3rem);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
h4 {
  font-size: clamp(1.2rem, 3.8vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}
h5 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}
h6 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
  letter-spacing: normal;
}

p {
  font-size: clamp(0.9rem, 2.4vw, 1.2rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.small {
  font-size: 0.8em;
}

*, *::before, *::after {
  box-sizing: border-box;
}
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

.inner {
  max-width: 1030px;
  padding: 0 10px;
  margin: 0 auto;
}
.vis-sp, .vis-tb {
  display: none;
}

b{
  font-weight: bold;
}
.red{
  color: red;
}
@media screen and (max-width:1030px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .vis-tb {
    display: block;
  }
  .hide-tb {
    display: none;
  }
}
@media screen and (max-width:640px) {
  body {
    font-size: 12px;
    }
  
}

@media screen and (max-width:450px){
  .vis-sp {
    display: block;
  }
  .hide-sp {
    display: none;
  }
}
