@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;
    scroll-behavior: smooth;
}

*::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;
}

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: 15rem 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;
}

@media (max-width: 768px) {
    .font-size-L {
        font-size: 1.7rem;
    }
}

/*========= TITLE ==========*/

.font-weight {
    font-weight: bold;
}

.soldout {
    background-color: #bb333d;
    text-align: center;
    font-size: medium;
    padding: .3rem;
    margin-right: .3rem;
}

.c-soldout {
    color: #bb333d;
}
