﻿@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
tr,
td,
form,
fieldset,
input,
textarea,
button,
figure,
blockquote {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

html,
body {
  width: 100%;
  height: 100%;
}

a img {
  border: none;
}


/* common */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #0D3339;
  line-height: 1.6;
  letter-spacing: 0.06em;
  background-color: #F7F7F7;
}

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

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

.section-inner {
  padding-left: 20px;
  padding-right: 20px;
}
