@charset "UTF-8";
@import url(all.css);
/*rootの変数宣言*/
:root {
  /*==============================
      カラー    
  ==============================*/
  --color-font: #333333;
  --color-white: #ffffff;
  --color-blue: #1252a4;
  /*==============================
      フォントファミリー
  ==============================*/
  /*タイトル*/
  --font-family-heading: "Yuji Syuku", serif;
  /*本文*/
  --font-family-body: "Noto Sans JP", sans-serif;
  /*==============================
      フォントサイズ
  ==============================*/
  /*基準のフォントサイズ*/
  --font-size-body: 1.2rem;
  /*==============================
      行間
  ==============================*/
  /*基準の行間*/
  --line-height-base: 2;
  /*==============================
      文字間
  ==============================*/
  /*基準の文字間*/
  --letter-spacing-base: 0;
}

/*========================
    default
========================*/
html {
  font-size: 2.67vw;
}

.sp-none {
  display: none !important;
}

.wrapper {
  min-width: 320px;
}

.container {
  overflow-x: hidden;
}

.inline-block {
  display: inline-block;
}