@charset "UTF-8";
.pc-image {
  display: block;
}

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

.sp-image {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-image {
    display: block;
  }
}

.pc-break {
  display: block;
}

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

.sp-break {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-break {
    display: block;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #231815;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

.blank-content {
  position: relative;
  height: 300px;
}

.blank-content-gray {
  background: #f2f2f2;
}

.blank-content-white {
  background: #fff;
}

.blank-content-title {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}

.two-column-8 {
  width: 78%;
}

@media screen and (max-width: 768px) {
  .two-column-8 {
    width: 100%;
  }
}

.two-column-7 {
  width: 68%;
}

@media screen and (max-width: 768px) {
  .two-column-7 {
    width: 100%;
  }
}

.two-column-6 {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .two-column-6 {
    width: 100%;
  }
}

.two-column-5 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .two-column-5 {
    width: 100%;
  }
}

.two-column-4 {
  width: 38%;
}

@media screen and (max-width: 768px) {
  .two-column-4 {
    width: 100%;
  }
}

.two-column-3 {
  width: 28%;
}

@media screen and (max-width: 768px) {
  .two-column-3 {
    width: 100%;
  }
}

.two-column-2 {
  width: 18%;
}

@media screen and (max-width: 768px) {
  .two-column-2 {
    width: 100%;
  }
}

header {
  background: #231815;
  position: relative;
}

.header-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 20px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .header-inner {
    padding: 15px;
  }
}

.header-link {
  display: block;
  max-width: 365px;
}

@media screen and (min-width: 769px) {
  .header-link {
    transition: opacity .4s ease;
  }
  .header-link:hover {
    opacity: .5;
  }
}

.back-to-top {
  display: block;
  width: 100%;
  height: 50px;
  position: relative;
  background: #e7291d;
}

@media screen and (min-width: 769px) {
  .back-to-top {
    transition: opacity .4s ease;
  }
  .back-to-top:hover {
    opacity: .5;
  }
}

.back-to-top::before {
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin: auto;
  top: 20px;
  right: 0;
  left: 0;
}

footer {
  background: #fff;
}

.footer-inner {
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 30px 50px 90px;
  }
}

.footer-link {
  display: block;
  max-width: 324px;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .footer-link {
    transition: opacity .4s ease;
  }
  .footer-link:hover {
    opacity: .5;
  }
}

.wrapper {
  background: #f2f2f2;
}

.feature-group {
  position: relative;
  margin: 0 auto;
  max-width: 980px;
  background: #fff;
  border-bottom: 2px solid #e7291d;
  z-index: 1;
}

.feature-group-inner {
  position: relative;
  z-index: 2;
}

.feature-group-title {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 40px 80px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .main {
    padding: 40px 20px 60px;
  }
}

.introduction-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .introduction-text {
    font-size: 1.4rem;
  }
}

.introduction-text .small {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .introduction-text .small {
    font-size: 1.2rem;
  }
}

.introduction-text .red {
  color: #e7291d;
}

.introduction-text .bold {
  font-weight: bold;
}

.tojitsu {
  position: relative;
  margin: 45px 0 0 0;
  padding: 12px 15px 12px 140px;
  border-radius: 50px 0 0 50px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #fff;
  background: #eb613d;
}

@media screen and (max-width: 768px) {
  .tojitsu {
    margin: 30px 0 0 0;
    font-size: 1.4rem;
    padding: 15px 10px 15px 110px;
    border-radius: 4px;
  }
}

.tojitsu::before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 150px;
  background: url(../images/badge.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .tojitsu::before {
    width: 120px;
    height: 120px;
    left: -16px;
  }
}

.hikikae-kaijo {
  margin: 50px 0 0 0;
  padding: 0 0 0 24px;
  display: inline-block;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .hikikae-kaijo {
    display: block;
    margin: 40px 0 0 0;
    font-size: 1.8rem;
  }
}

.hikikae-kaijo::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: #231815;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .hikikae-kaijo::before {
    width: 18px;
    height: 18px;
    top: 4px;
  }
}

.hikikae-jikan {
  margin: 0 0 0 4px;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  color: #e7291d;
}

@media screen and (max-width: 768px) {
  .hikikae-jikan {
    display: block;
    margin: 10px 0 0 0;
    font-size: 1.4rem;
  }
}

.hikikae-note-list {
  margin: 15px 0 0 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .hikikae-note-list {
    margin: 20px 0 0 0;
  }
}

.hikikae-note-list li {
  margin: 4px 0 0 0;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .hikikae-note-list li {
    display: block;
    margin: 8px 0 0 0;
    padding: 0 0 0 1em;
    text-indent: -1em;
  }
}

.taishogai {
  margin: 40px 0 0 0;
  padding: 0 20px 20px;
  border: 2px solid #eb613d;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .taishogai {
    padding: 0 15px 20px;
  }
}

.taishogai dt {
  width: 120px;
  margin: -20px auto 0;
  padding: 10px 0;
  background: #fff;
  font-size: 1.8rem;
  line-height: 1;
  color: #eb613d;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .taishogai dt {
    width: 110px;
    margin: -18px auto 0;
    font-size: 1.6rem;
  }
}

.taishogai dd {
  padding: 8px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

.taishogai dd span {
  font-weight: bold;
}

.yuko-kikan {
  margin: 50px 0 0 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .yuko-kikan {
    margin: 40px 0 0 0;
    font-size: 1.8rem;
    text-align: left;
  }
}

.card-group {
  margin: 50px 0 0 0;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .card-group {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

.card {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .card {
    margin: 40px 0 0 0;
    width: 100%;
  }
}

.card figcaption {
  text-align: center;
  margin: 0 0 12px 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .card figcaption {
    font-size: 1.4rem;
  }
}

.card-group-note {
  margin: 30px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .card-group-note {
    margin: 40px 0 0 0;
    font-size: 1.2rem;
  }
}
