@charset "utf-8";

html{
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
    letter-spacing: .08rem;
    font-size: 62.5%;
    color: #212529;
}

*::selection{
	-webkit-tap-highlight-color:rgba(0,0,0,0.2);
	background-color: #1a1a1a;
	color: #FFF;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    margin: 0;
	padding: 0;
}

body {
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
    -webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
    font-family: 'Noto Sans JP', YuGothic, "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
	background-color: #F5F5F5!important;
}

p {
    line-height: 3rem;
}

input, button, textarea, select {
	-webkit-appearance: none;
	appearance: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
    text-decoration: none;
    color: #212529;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.text-center { 
    text-align: center;
}

.btn,
a.btn,
button.btn {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}


.content{
    max-width: 1300px;
    width:100%;
    margin: 0 auto;
    padding: 8rem 2rem;
}
@media screen and (max-width: 767px){
    .content{
        padding: 6rem 2rem;
    }
    p {
        line-height: 2.2rem;
    }
}


/* パソコンはpc-onlyだけ表示 */
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/* スマホはsp-onlyだけ表示 */
@media screen and (max-width: 767px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    } 
}

/*========= TEXT ==========*/

.font-size-XS {
    font-size: clamp(.8rem, calc(0.9rem + 0.625vw), 1.4rem);
}
.font-size-S {
    font-size: clamp(1.1rem, calc(0.9rem + 0.625vw), 1.6rem);
}
.font-size-M {
    font-size: clamp(1.4rem, calc(1.5rem + 0.625vw), 1.7rem);
}
.font-size-L {
    font-size: clamp(1.9rem, calc(2.2rem + 0.625vw), 2.4rem);
}
.font-size-XL {
    font-size: clamp(2.4rem, calc(2.2rem + 0.625vw), 2.8rem);
    line-height: 2.5rem;
}


/*========= TITLE ==========*/

.font-weight {
    font-weight: bold;
}

.title-main {
    background: linear-gradient(80deg, #b5aa00 0%, #899f31 40%, #068b1d 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Train One", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    font-size: calc(2.4rem + ((1vw - 0.48rem) * 0.5556));
    min-height: 0vw;
    margin-bottom: 5rem;
    line-height: 1.3;
    text-align: center;
}



.soldout {
    background-color: #bb333d;
    text-align: center;
    font-size: medium;
    padding: .3rem;
    margin-right: .3rem;
}

.c-soldout {
    color: #bb333d;
}


@media screen and (min-width: 1200px) {
  .title-main {
      font-size: 5rem;
      margin-bottom: 5rem;
  }
  .title-sub {
      font-size: 1.8rem;
  }
}


/* デバイス幅が480px以下 */
@media screen and (max-width: 756px) {
    .title-main {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    }
    .sp-small {
    font-size: 2.5rem;
    }
    .title-sub {
    font-size: 1.3rem;
    }
}