@charset 'UTF-8';

@font-face {
  font-family: 'MinneSystem';
  src:  local('-apple-system'),
        local('BlinkMacSystemFont'),
        local('.SFNSDisplay-Regular'),
        local('Segoe UI');
}

@font-face {
  font-family: 'MinneSansSerif';
  font-weight: 400;
  src:  local('HelveticaNeue'),
        local('Helvetica Neue'),
        local('Helvetica'),
        local('Arial');
}
@font-face {
  font-family: 'MinneSansSerif';
  font-weight: 700;
  src:  local('HelveticaNeueBold'),
        local('HelveticaNeue-Bold'),
        local('Helvetica Neue Bold'),
        local('HelveticaBold'),
        local('Helvetica-Bold'),
        local('Helvetica Bold'),
        local('Arial Bold');
}

@font-face {
  font-family: 'MinneHiragino';
  font-weight: 400;
  src:  local('HiraginoSans-W4'),
        local('ヒラギノ角ゴ ProN W3'),
        local('Hiragino Kaku Gothic ProN');
}
@font-face {
  font-family: 'MinneHiragino';
  font-weight: 700;
  src:  local('HiraginoSans-W7'),
        local('ヒラギノ角ゴ ProN W6'),
        local('Hiragino Kaku Gothic ProN W6');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: 'MinneSystem', 'MinneSansSerif', 'MinneHiragino', 'メイリオ', Meiryo, Osaka, 'MS UI Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'palt' 1;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 62.5%;
}

body {
  padding: 1.6rem 0;
  font-size: 1.4rem;
  color: #000;
  background-color: #f4f3f2;
}

a {
  color: #fb8c00;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}

address {
  font-style: normal;
}

.wrapper {
  position: relative;
}

.brand > img {
  display: block;
  width: 212px;
  height: 30px;
}
@media (min-width: 768px) {
  .brand > img {
    margin: 0 auto;
  }
}

.content {
  max-width: 98rem;
  padding: 1.6rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .main {
    text-align: center;
  }
}

.title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: normal;
}
@media (min-width: 768px) {
  .title {
    font-size: 2.4rem;
  }

  .title > br {
    display: none;
  }
}

.description {
  margin: 1em 0;
}

.description > p {
  font-size: 1.4rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .description > p {
    font-size: 1.6rem;
  }

  .description > p > br {
    display: none;
  }
}

.eyecatch {
  max-width: 72rem;
  margin: 0 auto;
  background-color: #fff;
}

.eyecatch > a {
  display: block;
}

.eyecatch > a > img {
  display: block;
  width: 49rem;
  margin: 0 auto;
}

.action {
  max-width: 40rem;
  margin: 1.6rem auto 0;
}

.button {
  display: block;
  height: 4.8rem;
  line-height: 4.8rem;
  padding: 0 1em;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background-color: #fb8c00;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 0.4rem;
  appearance: none;
  cursor: pointer;
}

.button:focus,
.button:active:focus {
  outline: 1px dotted rgba(#fff, 0.5);
  outline-offset: -2px;
}

.footer {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .footer {
    text-align: center;
  }
}

.footer a {
  color: inherit;
}

.note {
  font-size: 1.4rem;
  line-height: 1.625;
}

.note > a {
  display: inline-block;
  margin: 0 0.25em;
  white-space: nowrap;
  border-bottom: 0.1rem solid #8e8e93;
}

.copyright {
  margin-top: 1em;
  font-size: 1.2rem;
}
