@charset "UTF-8";
/*
.l_mainContents--1col {
  width: 980px;
  font-size: 16px;
  line-height: 1.75em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .l_mainContents--1col {
    width: auto;
    font-size: 14px;
  }
}*/

.flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}

h2 {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  margin: 40px auto;
  font-size: 1.1em;
  width: -moz-fit-content;
  width: fit-content;
}
h2 span {
  background: linear-gradient(transparent 70%, rgba(229, 0, 45, 0.15) 30%);
}
@media screen and (max-width: 768px) {
  h2 {
    margin: 20px auto;
    width: 80%;
    font-size: 1em;
  }
}

.intro .mainvisual {
  position: relative;
}
.intro .mainvisual .title {
  color: #fff;
  text-align: center;
  display: block;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 660px) {
  .intro .mainvisual .title {
    top: 2%;
  }
}
.intro .mainvisual .title p {
  font-size: 1.5em;
  padding-top: 2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .intro .mainvisual .title p {
    font-size: 16px;
  }
}
@media screen and (max-width: 660px) {
  .intro .mainvisual .title p {
    font-size: 12px;
    width: 90vw;
  }
}
@media screen and (max-width: 485px) {
  .intro .mainvisual .title p {
    font-size: 10px;
  }
}
.intro .mainvisual .title p::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 2px;
  bottom: -15px;
}
@media screen and (max-width: 768px) {
  .intro .mainvisual .title p::after {
    bottom: -8px;
  }
}
@media screen and (max-width: 660px) {
  .intro .mainvisual .title p::after {
    display: none;
  }
}
.intro .mainvisual .title span {
  display: block;
  font-size: 0.625em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .intro .mainvisual .title span {
    margin-top: 5px;
  }
}
@media screen and (max-width: 660px) {
  .intro .mainvisual .title span {
    font-size: 0.5em;
    margin-top: 2px;
    line-height: 0;
    display: none;
  }
}
.intro .explain {
  text-align: center;
  margin: 30px 0 50px;
}
@media screen and (max-width: 768px) {
  .intro .explain {
    margin: 30px auto;
    width: 80%;
  }
}

.nav_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  background-color: #FAFAFA;
  row-gap: 15px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding: 28px 0;
  margin-bottom: 100px;
}
.nav_inner span {
  color: #9E1930;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .nav_inner {
    row-gap: 10px;
    margin-bottom: 50px;
    max-height: 400px;
    width: 100%;
    margin: 0 auto 50px;
    max-width: 28em;
  }
}
.nav_inner li {
  font-size: 0.875em;
  line-height: 1;
}
.nav_inner li a {
  padding: 0 20px;
  width: 100%;
  height: 100%;
}

summary {
  /* Chrome、Safari以外 */
  display: block;
  list-style: none;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #9E1930;
  padding: 3px 50px 3px 20px;
  color: #fff;
  margin-bottom: 30px;
  /* Chrome、Safari */
}
summary:hover {
  cursor: pointer;
  opacity: 0.7;
}
summary::-webkit-details-marker {
  display: none;
}
summary::before {
  content: "";
  border: 1px solid #9E1930;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) translateX(50%);
  background-color: #fff;
}
summary::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 2px #9E1930;
  border-right: solid 2px #9E1930;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-65%) translateX(50%) rotate(135deg);
  transition: all 0.4s;
}

details {
  height: 34px;
  transition: all 0.4s;
}

details[open] {
  height: auto;
}
details[open] summary::after {
  transform: translateY(-30%) translateX(50%) rotate(315deg);
}

details[open] .contents {
  overflow: auto;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateY(-10px);
    /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
a {
  color: #222;
  transition: all 0.2s;
}
a:hover {
  color: #E6002D;
  text-decoration: underline;
}

section + section {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  section + section {
    margin-top: 80px;
  }
}
section h3 {
  border-left: 5px solid #E6002D;
  padding-left: 20px;
  font-weight: normal;
  font-size: 1.75em;
  position: relative;
  font-weight: bold;
}
section h3 span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
section > p {
  padding: 0 20px;
  margin-bottom: 50px;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  section > p {
    margin-bottom: 30px;
  }
}
section > p::before {
  content: "";
  background-image: url(../../common/img/icon_point.svg);
  display: block;
  width: 71px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-top: 30px;
  margin-bottom: 5px;
}
section dl {
  background-color: rgba(229, 0, 45, 0.1490196078);
  border-radius: 10px;
  margin-bottom: 15px;
}
section dt {
  font-weight: bold;
  font-size: 1.25em;
  color: #9E1930;
}
@media screen and (max-width: 768px) {
  section dt br {
    display: none;
  }
}
section dd {
  position: relative;
  padding-left: 0.85em;
  line-height: 1.625;
}
section dd::before {
  content: "";
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  left: 5px;
  top: 0.8em;
  background: #222;
}
@media screen and (max-width: 768px) {
  section dd br {
    display: none;
  }
}
section .single dl {
  padding: 36px 0;
  margin-top: 30px;
  margin-bottom: 66px;
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  section .single dl {
    display: block;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 768px) {
  section .single dt {
    text-align: center;
    margin-bottom: 15px;
  }
}
section .single_tri {
  position: relative;
}
section .single_tri::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #9E1930;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 20px));
}
section .multi {
  display: flex;
  justify-content: space-between;
  gap:10px;
}
@media screen and (max-width: 768px) {
  section .multi {
    display: block;
  }
}
section .multi dl {
  padding: 15px 10px;
}
section .multi dt {
  text-align: center;
  margin-bottom: 15px;
}
section .multi .inner_title {
  text-align: left;
  font-size: 1em;
  margin: 0;
}
section .multi dd span {
  font-weight: bold;
  color: #9E1930;
  font-size: 1em;
  text-align: left;
  display: block;
}
section .multi dd.font_small a {
  font-size: 0.875em;
}
section .multi dd:not(:last-child) {
  margin-bottom: 10px;
}
section .multi_tri dl {
  position: relative;
}
section .multi_tri dl::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #9E1930;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 20px));
}
@media screen and (max-width: 768px) {
  section .multi_tri dl:not(:first-of-type)::before {
    display: none;
  }
}
section .multi_2 dl {
  width: 470px;
}
@media screen and (max-width: 768px) {
  section .multi_2 dl {
    width: auto;
  }
}
section .multi_3 dl {
  width: 300px;
}
@media screen and (max-width: 768px) {
  section .multi_3 dl {
    width: auto;
  }
}
section#sec4 dl {
  width: 450px;
}
@media screen and (max-width: 768px) {
  section#sec4 dl {
    width: auto;
  }
}
section#sec4 .arrow {
  position: relative;
}
section#sec4 .arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid #9E1930;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-110%) rotate(-90deg);
}
@media screen and (max-width: 768px) {
  section#sec4 .arrow {
    margin-top: 66px;
  }
  section#sec4 .arrow::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid #9E1930;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, calc(-100% - 20px));
  }
}/*# sourceMappingURL=13.css.map */