@charset "utf-8";

/* reset ----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
img {
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
button {
  background: none;
  border: none;
}
/* Remove default margin & padding */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
button {
  margin: 0;
  padding: 0;
}

/* common ---------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  color: #333;
  background-color: #fff;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 32px;
}

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

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

.flex {
  display: flex;
}

.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: 90%;
  margin: 0 auto;
}

.pc_only {
  display: none;
}

.bg_blue{
  background: #eafafe;
}

/* text -----------------------------------------*/
/* font-family */
.bold {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.medium {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* font-size */
.s12 {
  font-size: 1.2rem;
}
.s13 {
  font-size: 1.3rem;
}
.s15 {
  font-size: 1.5rem;
}
.s16 {
  font-size: 1.6rem;
}
.s17 {
  font-size: 1.7rem;
}
.s18 {
  font-size: 1.8rem;
}
.heading {
  font-size: 2.3rem;
}

/* color */
.red {
  color: #e8611f;
}
.blue {
  color: #043454;
}
.skyblue {
  color: #2e9ddb;
}

.marker {
  background: linear-gradient(transparent 64%, #ffce00 0%);
}

/* layout */
.text_center {
  text-align: center;
}
.text_start {
  text-align: start;
}

/* line-height */
.lh25 {
  line-height: 2.5rem;
}
.lh29 {
  line-height: 2.9rem;
}

/* form -------------*/
.form {
  padding: 3.2rem 1.5rem;
  background: #fff;
}

input[type="text"] {
  text-align: center;
  width: 100%;
  height: 4rem;
}

form img {
  width: 30rem;
}

/* footer --------------------------------------- */
footer {
  background: #043454;
  color: #fff;
  padding: 2rem 0;
}

/* PC --------------------------------------------*/
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .container {
    width: 64rem;
  }
  .pc_img {
    max-width: 80%;
    margin: auto;
  }
  form img {
    width: 64rem;
  }
}