/*
基本はスマホサイズでスタイルを指定している。
c
@media screen and (min-width:480px)
幅480px以上　幅の大きいスマホ・タブレット・PCサイズ

@media screen and (min-width:768px)
幅768px以上　タブレット・PCサイズ

@media screen and (max-width:479px)
幅479px以下　スマホサイズ

@media screen and (max-width:767px)
幅767px以下　幅の大きいスマホサイズ

@media screen and (min-width:1280px)
幅1280px以上　幅の大きいPCサイズ

@media screen\0
IE8~11ブラウザ
*/
/* ------------------------------
General Styles
------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500&display=swap');

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, Arial, Helvetica, sans-serif;
  color: #222222;
  font-size: 62.5%;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  background: #fff;
  -ms-overflow-style: scrollbar;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}

img {
  max-width: 100%;
  height: auto;
}

/* ------------------------------
Transition elsements
------------------------------ */
a,
.btn {
  -webkit-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -moz-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  -o-transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
  transition: all 0.3s cubic-bezier(0.300, 0.100, 0.580, 1.000);
}

/* ------------------------------
メディアクエリ
------------------------------ */
/* -基準　スマホサイズ- */
.sp {
  display: block;
}

.tab {
  display: none;
}

.pc {
  display: none;
}

/* -幅768px以上　タブレット・PCサイズ- */
@media screen and (min-width:768px) {
  .sp {
    display: none;
  }

  .tab {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* -幅1280px以上　幅の大きいPCサイズ- */
@media screen and (min-width:1280px) {
  .sp {
    display: none;
  }

  .tab {
    display: none;
  }

  .pc {
    display: block;
  }
}

/* ------------------------------
Typography
------------------------------ */
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

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

p,a,li{
    font-size: 1.4rem;
    line-height: 1.75;
    color: #222222;
}