@charset "utf-8";

/* reset ----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: top;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

/* Remove default margin & padding */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* common ---------------------------------------*/
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  color: #353535;
  background-color: #fff;
}

.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
  z-index: 100;
}

.full {
  width: 100%;
}
img {
  width: 100%;
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

.container {
  width: 89%;
  margin: 0 auto;
}

.marT10 {
  display: block;
  margin-top: 10px;
}



/* text -----------------------------------------*/
/* font-family */
.sans {
  font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 6.3vw;
}

.underline {
  text-decoration: underline;
}

/* font-size */
.s37 {
  font-size: 3.7vw;
}
/* color */
.red {
  color: #F15C27;
}
.blue{
  color: rgb(28, 28, 213);
}


/* PC tablet --------------------------------------------*/
@media screen and (min-width: 600px) {
  body {
    width: 430px;
    box-shadow: 0 1px 20px rgb(112 103 100 / 30%);
  }
  .s35 {
    font-size: 18px;
    line-height: normal;
  }
  .sans {
    line-height: normal;
  }
  .marT10 {
    margin-top: 10px;
  }
}