@charset "UTF-8";
/* ブレイクポイント設定 */
/* 配置(フレックス) */
/* 擬似要素の共通基盤 */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: #000;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

li {
  list-style: none;
}

a {
  position: relative;
  text-decoration: none;
  color: #000;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* レイアウト */
.l-menu-lists {
  padding-left: 2rem;
}

/* コンポーネント */
.c-font-600 {
  font-weight: 500;
}

.c-font-bold {
  font-weight: bold;
}

.c-navi__ex {
  position: relative;
}
.c-navi__ex::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 0.3rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/ico_plus.svg) no-repeat 50% 50%/contain;
  margin: auto 0;
}

.c-navi__detail {
  position: relative;
}
.c-navi__detail::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 3rem;
  background: url(../images/icon_detailarrow.svg) no-repeat 50% 50%/contain;
  margin: auto 0;
}

.c-accordion__menu {
  display: none;
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
}

.c-menu__list {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 3rem;
}

.c-list__title {
  font-size: 2.5rem;
  border-top: 1px solid #DADADA;
  padding: 2.5rem 0;
}

.c-correct {
  padding: 2.5rem 0;
}

/* ヘッダー(タイトル) */
.header {
  height: 12rem;
  color: #fff;
  background: green;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* アコーディオンメニュー */
.accordion__contents {
  width: 96rem;
  font-size: 3rem;
  margin: 5rem auto;
}
@media screen and (max-width: 767px) {
  .accordion__contents {
    width: 90%;
  }
}
.accordion__contents .accordion__list {
  border-bottom: solid 1px #DADADA;
}

/* js */
.js-minus::before {
  transition: 0.3s;
}

.js-minus.active::before {
  background: url(../images/ico_minus.svg) no-repeat 50% 50%/contain;
}/*# sourceMappingURL=style.css.map */