@charset "UTF-8";

.fv {
  width: 100%;
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .fv {
    margin-bottom: 0;
    padding-top: 10px;
  }
}

.fv__img {
  width: 100%;
}

.fv__img img {
  width: 100%;
  vertical-align: bottom;
}

.topIndex {
  padding: 40px 20px;
}

@media screen and (max-width: 768px) {
  .topIndex {
    padding: 6.6666666667vw 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .topIndex__inner {
    padding: 0 5.3333333333vw;
    overflow-x: auto;
    -ms-overflow-style: none;
  }

  .topIndex__inner::-webkit-scrollbar {
    display: none;
  }
}

.topIndex__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  .topIndex__menu {
    width: -moz-max-content;
    width: max-content;
  }

  .topIndex__menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
  }
}

.topIndex__menu--item {
  padding-bottom: 10px;
  border-bottom: 2px solid #11317C;
}

.topIndex__menu--item a {
  color: #11317C;
  padding-right: 25px;
  font-size: 16px;
  font-weight: bold;
  background-image: url(../img/common/icon_arrow_bottom.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: right;
}

.intro {
  padding: 80px 40px;
  background-image: url(../img/top/intro-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .intro {
    padding: 16vw 5.3333333333vw;
    background-image: url(../img/top/intro-bg-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.intro__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .intro__box {
    flex-direction: column;
    gap: 10px;
  }
}

.intro__item {
  width: 49.5%;
  background: #fff;
}

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

.intro__item:nth-child(3) {
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .intro__item:nth-child(3) {
    margin-top: 0;
  }
}

.intro__item--title {
  text-align: center;
  font-size: 32px;
  color: #11317C;
  font-weight: bold;
  background-color: #F7DA7A;
  padding: 16px;
  line-height: 1.2;
  position: relative;
}

@media screen and (max-width: 1320px) {
  .intro__item--title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .intro__item--title {
    font-size: 6.4vw;
  }
}

.intro__item--title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 15px solid #F7DA7A;
  /* 好みで色を変えてください */
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.intro__item--contents {
  background-color: #fff;
  padding: 25px 20px;
  text-align: center;
  line-height: 1.4;
}

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

.intro__item--text {
  font-weight: bold;
  font-size: 32px;
}

@media screen and (max-width: 1320px) {
  .intro__item--text {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .intro__item--text {
    font-size: 6.4vw;
  }

  .intro__item--text.fs18 {
    font-size: 18px;
  }
}

.intro__item--text span {
  color: #11317C;
  font-size: 54px;
  margin: 0 5px;
}

@media screen and (max-width: 768px) {
  .intro__item--text span {
    font-size: 10.6666666667vw;
  }

  .intro__item--text span.sp-block {
    display: block;
  }
}

.intro__item--info {
  margin-top: 10px;
  font-weight: normal;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .intro__item--info {
    margin-top: 0;
  }
}

.news {
  background-color: #EEF1F9;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .news {
    padding: 16vw 5.3333333333vw;
  }
}

.news__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.news__lists {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .news__lists {
    margin-top: 8vw;
  }
}

.news__list {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 14px 10px;
}

@media screen and (max-width: 768px) {
  .news__list {
    flex-direction: column;
    gap: 10px;
  }
}

.news__list--date {
  width: 20%;
  font-weight: bold;
  color: #11317C;
}

@media screen and (max-width: 768px) {
  .news__list--date {
    width: 100%;
  }
}

.news__list--title {
  width: 80%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .news__list--title {
    line-height: 1.5;
    -webkit-line-clamp: 2;
    width: 100%;
  }
}

.price {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .price {
    padding: 16vw 5.3333333333vw;
  }
}

.price__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.price__info {
  margin: 40px 0;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .price__info {
    margin: 5.3333333333vw 0;
  }
}

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

.price__head {
  margin-top: 40px;
  display: flex;
  border: 2px solid #11317C;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .price__head {
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 10px;
  }
}

.price__head--item {
  padding: 20px 30px;
  width: 50%;
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 1320px) {
  .price__head--item {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .price__head--item {
    width: 100%;
    padding: 10px 20px;
    font-size: 8.5333333333vw;
    text-align: center;
    line-height: 1.7;
  }
}

.price__head--item span {
  font-size: 16px;
  font-weight: normal;
  color: #000;
}

@media screen and (max-width: 768px) {
  .price__head--item span {
    display: block;
  }
}

.price__head--item:first-child {
  background: #11317C;
  color: #fff;
  position: relative;
}

.price__head--item:first-child::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 25px solid #11317C;
  border-top: 37px solid transparent;
  border-bottom: 37px solid transparent;
}

@media screen and (max-width: 1320px) {
  .price__head--item:first-child::after {
    border-left: 20px solid #11317C;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
  }
}

@media screen and (max-width: 768px) {
  .price__head--item:first-child::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #11317C;
    /* 好みで色を変えてください */
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
  }
}

.price__head--item:nth-child(2) {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .price__head--item:nth-child(2) {
    display: block;
  }
}

.price__lists {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .price__lists {
    flex-direction: column;
    gap: 10px;
  }
}

.price__list {
  width: 24.5%;
  border: 2px solid #11317C;
}

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

  .price__list:nth-child(n+5) {
    display: none;
  }
}

.price__list--title {
  background-color: #11317C;
  color: #fff;
  padding: 0 20px;
  height: 80px;
  display: flex;
  font-size: 24px;
  line-height: 1.2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 1320px) {
  .price__list--title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .price__list--title {
    font-size: 4.8vw;
    height: 11.4666666667vw;
  }
}

.price__list--title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: 15px solid #11317C;
  /* 好みで色を変えてください */
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.price__list--contents {
  text-align: center;
  padding: 30px;
}

@media screen and (max-width: 1320px) {
  .price__list--contents {
    padding: 15px;
  }
}

@media screen and (max-width: 768px) {
  .price__list--contents {
    padding: 30px;
  }
}

.price__list--text {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 1320px) {
  .price__list--text {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .price__list--text {
    font-size: 6.4vw;
  }
}

.price__list--info {
  font-size: 16px;
  font-weight: normal;
}

.price .expert {
  margin-top: 40px;
  position: relative;
}

.price .expert__title {
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 24px;
  font-weight: bold;
  color: #11317C;
  border: 2px solid #11317C;
  background: #fff;
  padding: 8px 10px;
}

@media screen and (max-width: 768px) {
  .price .expert__title {
    font-size: 5.3333333333vw;
  }
}

.price .expert__box {
  padding: 50px;
  background-color: #EEF1F9;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .price .expert__box {
    flex-direction: column-reverse;
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}

.price .expert__contents {
  width: 75%;
}

@media screen and (max-width: 768px) {
  .price .expert__contents {
    width: 100%;
  }
}

.price .expert__contents h3 {
  font-size: 20px;
  font-weight: normal;
  color: #11317C;
  margin-bottom: 16px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}

@media screen and (max-width: 1320px) {
  .price .expert__contents h3 {
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .price .expert__contents h3 {
    line-height: 1.7;
    font-size: 4.8vw;
  }
}

.price .expert__contents h3 span {
  border-bottom: 1px solid #11317C;
}

.price .expert__contents p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 16px;
  border-bottom: 1px solid #11317C;
}

@media screen and (max-width: 768px) {
  .price .expert__contents p {
    font-size: 3.7333333333vw;
  }
}

.price .expert__contents p span {
  font-weight: bold;
}

.price .expert__img {
  width: 20%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .price .expert__img {
    width: 70%;
    margin: 0 auto 20px;
  }
}

.price .expert__img img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  vertical-align: bottom;
}

.price .expert__img span {
  font-size: 16px;
}

.simulation {
  background-color: #11317C;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .simulation {
    padding: 16vw 5.3333333333vw;
  }
}

.simulation__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.simulation__title {
  color: #fff;
}

.simulation__subTitle {
  color: #F7DA7A;
}

.simulation__box {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 40px;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .simulation__box {
    margin-top: 5.3333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .simulation__box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

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

.simulation__select span {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .simulation__select span {
    font-size: 4.8vw;
  }
}

.simulation__select select {
  text-align-last: center;
  height: 55px;
  padding: 0 15px;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: black;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .simulation__select select {
    width: 100%;
    font-size: 16px;
  }
}

.simulation__select .selectwrap {
  position: relative;
}

.simulation__select .selectwrap::after {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../img/top/icon_pulldown.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right;
}

.simulation__icon {
  padding-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .simulation__icon {
    font-size: 10.6666666667vw;
  }

  .simulation__icon:nth-of-type(2) {
    transform: rotate(90deg);
    padding-bottom: 0;
  }
}

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

.simulation__input span {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .simulation__input span {
    font-size: 4.8vw;
  }
}

.simulation__input input {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  height: 55px;
  padding: 0 15px;
  box-sizing: border-box;
  background-color: #fff;
  text-align: center;
  border: none;
  outline: none;
}

@media screen and (max-width: 768px) {
  .simulation__input input {
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .simulation__input input.total {
    width: 100%;
  }
}



@media screen and (min-width: 769px) {
  .simulation__box {
    justify-content: space-between;
  }

  .simulation__select {
    width: 34%;
  }

  .simulation__select select {
    width: 100%;
  }

  .simulation__icon {
    width: 3%;
  }

  .simulation__input {
    width: 30%;
  }

  .simulation__input input {
    width: 100%;
  }

  .simulation__input input.total {
    width: 100%;
  }
}


.graph {
  background: #EEF1F9;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .graph {
    padding: 16vw 5.3333333333vw;
  }
}

.graph__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.graph__subTitle {
  color: #11317C;
}

.graph__select {
  margin: 40px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .graph__select {
    margin: 5.3333333333vw 0;
  }
}

.graph__select .selectWrap {
  width: 600px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .graph__select .selectWrap {
    width: 100%;
  }
}

.graph__select .selectWrap::after {
  content: "";
  width: 16px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../img/top/icon_pulldown.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right;
}

.graph__select select {
  width: 100%;
  height: 60px;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0 20px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .graph__select select {
    font-size: 16px;
  }
}

.graph__text {
  text-align: right;
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #11317C;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .graph__text {
    font-size: 3.2vw;
  }
}

.graph__tabs {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 2px;
}

.graph__tab {
  text-align: center;
  font-weight: bold;
  padding: 23px 0;
  font-size: 20px;
  background-color: #11317C;
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .graph__tab {
    padding: 9px 10px;
    font-size: 3.7333333333vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    writing-mode: horizontal-tb;
  }
}

.graph__tab.active {
  background: #fff;
  color: #11317C;
}

.graph__contents {
  background-color: #fff;
  height: 553px;
  display: none;
}

.graph__contents.show {
  display: block;
}

@media screen and (max-width: 768px) {
  .graph__contents {
    height: 300px;
  }
}

.introduction {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .introduction {
    padding: 16vw 5.3333333333vw;
  }
}

.introduction__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.introduction__title {
  line-height: 2;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .introduction__title {
    margin-bottom: 5.3333333333vw;
    line-height: 1.4;
  }
}

.introduction__title span {
  background-color: #11317C;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  padding: 6px 10px;
}

@media screen and (max-width: 768px) {
  .introduction__title span {
    padding: 15px 10px;
    display: block;
    font-size: 9.6vw;
    margin-bottom: 10px;
  }
}

.introduction__head--01 {
  line-height: 2.7;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .introduction__head--01 {
    line-height: 1.4;
    margin-bottom: 5.3333333333vw;
  }
}

.introduction__head--01 span {
  border: 2px solid #11317C;
  color: #11317C;
  font-size: 24px;
  font-weight: bold;
  padding: 8px 10px;
}

@media screen and (max-width: 768px) {
  .introduction__head--01 span {
    margin-bottom: 10px;
    display: block;
    font-size: 5.3333333333vw;
  }
}

.introduction__head--02 {
  line-height: 2.7;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .introduction__head--02 {
    line-height: 1.4;
    margin-bottom: 5.3333333333vw;
  }
}

.introduction__head--02 span {
  border: 2px solid #F7DA7A;
  background-color: #F7DA7A;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  padding: 8px 10px;
}

@media screen and (max-width: 768px) {
  .introduction__head--02 span {
    margin-bottom: 10px;
    display: block;
    font-size: 5.3333333333vw;
  }
}

.introduction__text {
  font-size: 20px;
  padding-bottom: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: #11317C;
  border-bottom: 1px solid #11317C;
}

@media screen and (max-width: 768px) {
  .introduction__text {
    font-size: 4.8vw;
    border-bottom: 0;
    line-height: 1.7;
  }

  .introduction__text span {
    border-bottom: 1px solid #11317C;
  }
}

.introduction__media {
  background-color: #FFFAEB;
  margin-top: 80px;
  padding: 50px;
  border: 6px solid #F7DA7A;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 768px) {
  .introduction__media {
    flex-direction: column;
    padding: 10.6666666667vw 4.2666666667vw;
  }
}

.introduction__media--img {
  width: 25%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .introduction__media--img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.introduction__media--img img {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  vertical-align: bottom;
}

.introduction__media--contents {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .introduction__media--contents {
    width: 100%;
  }
}

.introduction__media--contents h4 {
  background-color: #F7DA7A;
  font-size: 24px;
  font-weight: bold;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 8px 10px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .introduction__media--contents h4 {
    box-sizing: border-box;
    line-height: 1.5;
    font-size: 5.3333333333vw;
  }
}

.introduction__media--contents p {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .introduction__media--contents p {
    font-size: 3.7333333333vw;
  }
}

.sell {
  background-color: #BFCAEA;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sell {
    padding: 16vw 5.3333333333vw;
  }
}

.sell__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sell__subTitle {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: bold;
  color: #EEF1F9;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .sell__subTitle {
    font-size: 14.4vw;
    white-space: nowrap;
  }
}

.sell__title {
  color: #11317C;
}

.sell__text {
  margin: 40px 0;
  text-align: center;
  line-height: 1.7;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .sell__text {
    font-size: 4.2666666667vw;
    margin: 5.3333333333vw 0;
  }
}

.sell__box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .sell__box {
    flex-direction: column;
  }
}

.sell__item {
  width: 49.5%;
  background: #fff;
  border-top: 4px solid #4566B2;
  border-bottom: 4px solid #4566B2;
  padding: 30px;

  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .sell__item {
    width: 100%;
    padding: 5.3333333333vw;
    margin-bottom: 20px;
  }
}

.sell__item--head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}

@media screen and (max-width: 768px) {
  .sell__item--head {
    margin-bottom: 10px;
    align-items: center;
  }
}

.sell__item--icon {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sell__item--icon img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.sell__item--title {
  width: calc(100% - 70px - 30px);
}

.sell__item--title h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #11317C;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .sell__item--title h3 {
    font-size: 8.5333333333vw;
    margin-bottom: 0;
  }
}

.sell__item--text {
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .sell__item--text {
    font-size: 4.2666666667vw;
  }
}

.sell__item--text span {
  font-weight: bold;
  color: #C10505;
}

.sell__item .info {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sell__item .info {
    font-size: 4.2666666667vw;
  }
}

.sell__item--reco {
  margin-top: 30px;
  background-color: #BFCAEA;
  color: #11317C;
  font-weight: bold;
  padding: 8px 10px;
  width: 97%;
  position: relative;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .sell__item--reco {
    margin-top: 15px;
    font-size: 4.2666666667vw;
  }
}

.sell__item--reco::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  border-left: 15px solid #BFCAEA;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;

  width: 15px;
  height: 100%;
  border: none;
  background: #BFCAEA;
  clip-path: polygon(0% 0%, 10% 0%, 100% 50%, 10% 100%, 0% 100%);
}

.sell__item--recoList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .sell__item--recoList {
    gap: 10px;
  }
}

.sell__item--recoList li {
  font-size: 16px;
  background-image: url(../img/top/icon_check.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 19px;
  padding: 5px 0;
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .sell__item--recoList li {
    padding: 2px;
    padding-left: 24px;
  }
}

.sell__item--recoList li span {
  font-weight: bold;
}

.contact {
  padding: 50px 40px;
  margin-top: 100px;
  position: relative;
  background-color: #11317C;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 8vw 5.3333333333vw;
    margin-top: 0;
  }
}

.contact__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.contact__contents {
  width: 60%;
  margin-left: auto;
}

@media screen and (max-width: 1320px) {
  .contact__contents {
    width: 70%;
  }
}

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

.contact__img {
  position: absolute;
  left: 50px;
  bottom: 0;
  width: 35%;
  z-index: 3;
  max-width: 520px;
  padding-left: 30px;
}

@media screen and (max-width: 1320px) {
  .contact__img {
    width: 25%;
  }
}

@media screen and (max-width: 768px) {
  .contact__img {
    bottom: unset;
    top: 10%;
    left: 0;
    width: 45%;
    padding-left: 0;
  }
}

.contact__img p {
  position: absolute;
  top: 20%;
  left: 0;
  color: #fff;
  line-height: 1.4;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .contact__img p {
    top: 10%;
    left: 4%;
    color: #000;
    writing-mode: vertical-rl;
    font-size: 8px;
  }
}

.contact__img p span {
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .contact__img p span {
    font-size: 11px;
  }
}

.contact__img img {
  width: 100%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .contact__img img {
    height: 88.8vw;
    width: auto !important;
  }
}

.contact__title {
  font-size: 80px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #BFCAEA;
}

@media screen and (max-width: 1320px) {
  .contact__title {
    font-size: 60px;
  }
}

@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 16vw;
    text-align: center;
    margin-bottom: 10px;
  }
}

.contact__subTitle {
  /*
  height:72px;
  display:flex;
  justify-content:left;
  align-items:center;
  */
  background: #fff;
  padding: 20px 0 20px 0;
  position: relative;
  font-size: 48px;
  font-weight: bold;
}

@media screen and (max-width: 1320px) {
  .contact__subTitle {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .contact__subTitle {
    padding: 14px 0 14px 0;
    width: 46%;
    margin-left: auto;
    font-size: 5.8666666667vw;
    line-height: 1.2;
    margin-right: 40px;

    height: 106px;
    max-height: 106px;
    box-sizing: border-box;
  }
}

.contact__subTitle::before {
  content: "";
  width: 100vw;
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .contact__subTitle::before {
    right: 99%;
  }
}

.contact__subTitle::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 30px solid #fff;
  border-top: 44px solid transparent;
  border-bottom: 44px solid transparent;
}

@media screen and (max-width: 1320px) {
  .contact__subTitle::after {
    border-top: 36px solid transparent;
    border-bottom: 36px solid transparent;
  }
}

@media screen and (max-width: 768px) {
  .contact__subTitle::after {
    border-left: 50px solid #fff;
    border-top: 53px solid transparent;
    border-bottom: 53px solid transparent;
  }
}

.contact__subTitle span {
  color: #C10505;
}

.contact__text {
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0 20px;
}

@media screen and (max-width: 768px) {
  .contact__text {
    width: 55%;
    margin-left: auto;
    font-size: 3.7333333333vw;
  }
}

.contact__cta {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  z-index: 4;
}

.contact__cta--title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
}

@media screen and (max-width: 1320px) {
  .contact__cta--title {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .contact__cta--title {
    padding: 14px 20px;
    font-size: 6.4vw;
  }
}

.contact__cta--tel .contact__cta--title {
  background: #BFCAEA;
  color: #11317C;
}

.contact__cta--telBox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .contact__cta--telBox img {
    width: 46px;
  }
}

.contact__cta--telBox .number {
  font-size: 60px;
  color: #11317C;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 1320px) {
  .contact__cta--telBox .number {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contact__cta--telBox .number {
    font-size: 9.6vw;
  }
}

.contact__cta--tel .info {
  text-align: center;
}

@media screen and (max-width: 1320px) {
  .contact__cta--tel .info {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .contact__cta--tel .info {
    font-size: 3.7333333333vw;
    font-weight: normal;
    margin-bottom: 0;
  }
}

.contact__cta--line .contact__cta--title {
  background: #FFF87A;
  color: #239F3B;
}

.contact__cta--contents {
  padding: 20px;
  text-align: center;
}

.contact__cta--contents p {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
}

@media screen and (max-width: 1320px) {
  .contact__cta--contents p {
    font-size: 18px;
  }
}

.contact__cta--contents .line__btn {
  max-width: 600px;
  margin: 0 auto;
  background-color: #239F3B;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  padding: 16px 0;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  padding-left: 20px;
  border-radius: 90px;
}

@media screen and (max-width: 1320px) {
  .contact__cta--contents .line__btn {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .contact__cta--contents .line__btn {
    font-size: 4.8vw;
    padding: 8px 20px;
    gap: 10px;
  }

  .contact__cta--contents .line__btn img {
    width: 40px;
  }
}

.bnr {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .bnr {
    padding: 16vw 5.3333333333vw;
  }
}

.bnr a {
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

.reason {
  padding: 80px 40px;
  background-color: #EEF1F9;
}

@media screen and (max-width: 768px) {
  .reason {
    padding: 16vw 4vw;
  }
}

.reason__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reason__lists {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .reason__lists {
    margin-top: 6.6666666667vw;
    gap: 20px;
  }
}

.reason__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #fff;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .reason__list {
    flex-direction: column;
  }
}

.reason__list--img {
  width: 32%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .reason__list--img {
    width: 100%;
  }
}

.reason__list--img img {
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reason__list--img .num {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 6px 10px;
  background: #BFCAEA;
  color: #11317C;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .reason__list--img .num {
    top: 100%;
    left: 0;
    font-size: 4vw;
  }
}

.reason__list--img .num::after {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  background: #BFCAEA;
  clip-path: polygon(0% 0%, 10% 0%, 100% 50%, 10% 100%, 0% 100%);
}

@media screen and (max-width: 768px) {
  /*.reason__list--img .num::after {
    border-left: 12px solid #BFCAEA;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
  }*/
}

.reason__list--contents {
  height: 100%;
  position: relative;
  width: 68%;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .reason__list--contents {
    width: 100%;
    height: auto;
    padding: 10.6666666667vw 4.2666666667vw 5.3333333333vw;
  }
}

.reason__list--title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #11317C;
  line-height: 1.5;
}

@media screen and (max-width: 1320px) {
  .reason__list--title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .reason__list--title {
    font-size: 5.3333333333vw;
    margin-bottom: 10px;
  }
}

.reason__list--text {
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 1320px) {
  .reason__list--text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .reason__list--text {
    font-size: 4.2666666667vw;
  }
}

.point {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .point {
    padding: 16vw 5.3333333333vw;
  }
}

.point__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.point__head {
  margin: 40px 0 30px;
  line-height: 2.7;
}

@media screen and (max-width: 768px) {
  .point__head {
    margin-top: 20px;
    line-height: 1.4;
  }
}

.point__head span {
  border: 2px solid #11317C;
  color: #11317C;
  font-size: 24px;
  font-weight: bold;
  padding: 8px 10px;
}

@media screen and (max-width: 768px) {
  .point__head span {
    margin-bottom: 10px;
    display: block;
    font-size: 5.3333333333vw;
  }
}

.point__box {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #EEF1F9;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .point__box {
    flex-direction: column;
  }
}

.point__img {
  width: 32%;
  position: relative;
}

@media screen and (max-width: 1320px) {
  .point__img {
    width: 26%;
  }
}

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

.point__img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

.point__img .num {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 6px 10px;
  background: #11317C;
  color: #F7DA7A;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .point__img .num {
    top: 100%;
    left: 0;
  }
}

.point__img .num::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 15px solid #11317C;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.point__contents {
  height: 100%;
  position: relative;
  width: 68%;
  padding: 0 40px;
}

@media screen and (max-width: 1320px) {
  .point__contents {
    width: 74%;
  }
}

@media screen and (max-width: 768px) {
  .point__contents {
    width: 100%;
    height: auto;
    padding: 40px 20px;
  }
}

.point__contents h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.5;
  color: #11317C;
}

@media screen and (max-width: 1320px) {
  .point__contents h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .point__contents h3 {
    font-size: 4.8vw;
  }
}

.point__contents h3 span {
  border-bottom: 1px solid #11317C;
}

.point__contents p {
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 1320px) {
  .point__contents p {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .point__contents p {
    font-size: 4.2666666667vw;
  }
}

.pickup {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .pickup {
    padding: 16vw 5.3333333333vw 0;
  }
}

.pickup__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pickup__text {
  margin: 40px 0;
  text-align: center;
  line-height: 1.7;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .pickup__text {
    font-size: 4.2666666667vw;
    margin: 5.3333333333vw 0;
  }
}

.pickup__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
}

@media screen and (max-width: 768px) {
  .pickup__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

.pickup__list--img {
  display: block;
  width: 100%;
  vertical-align: bottom;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .pickup__list--img {
    margin-bottom: 10px;
  }
}

.pickup__list--title {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .pickup__list--title {
    font-size: 14px;
  }
}

.pickup__gold {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #FFFAEB;
  border-top: 4px solid #F7DA7A;
  border-bottom: 4px solid #F7DA7A;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  .pickup__gold {
    padding: 10.6666666667vw 8vw;
  }
}

.pickup__gold--title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .pickup__gold--title {
    font-size: 6.4vw;
  }
}

.pickup__gold--box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.pickup__gold--box img {
  width: 24%;
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .pickup__gold--box img {
    width: 31.7333333333vw;
    margin: 20px auto;
    display: block;
  }
}

.pickup__gold--box p {
  width: 72%;
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .pickup__gold--box p {
    width: 100%;
  }
}

.category {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .category {
    padding: 16vw 5.3333333333vw;
  }
}

.category__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.category__lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 40px;
}

@media screen and (max-width: 1320px) {
  .category__lists {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 20px;
  }
}

@media screen and (max-width: 768px) {
  .category__lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 15px;
  }
}

.category__list--img {
  display: block;
  vertical-align: bottom;
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .category__list--img {
    margin-bottom: 10px;
  }
}

.category__list--name {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .category__list--name {
    font-size: 14px;
  }
}

.case {
  padding: 80px 40px;
  background-image: url(../img/top/case-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 420px;
  background-color: #EEF1F9;
}

@media screen and (max-width: 768px) {
  .case {
    padding: 16vw 5.3333333333vw;
    background-image: url(../img/top/case-bg-sp.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
  }
}

.case__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.case__title {
  color: #fff;
}

.case__subTitle {
  color: #F7DA7A;
}

.case__text {
  margin: 40px 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .case__text {
    margin: 5.3333333333vw 0;
    font-size: 4.2666666667vw;
  }
}

.case__lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

@media screen and (max-width: 1320px) {
  .case__lists {
    gap: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .case__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}

.case__list--img {
  display: block;
  vertical-align: bottom;
  margin-bottom: 20px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .case__list--img {
    margin-bottom: 10px;
  }
}

.case__list--price {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1320px) {
  .case__list--price {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .case__list--price {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}

.case__list--price .head {
  color: #C10505;
  padding: 6px 10px;
  position: relative;
  font-weight: bold;
  font-size: 20px;
  background: #F7DA7A;
}

@media screen and (max-width: 1320px) {
  .case__list--price .head {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .case__list--price .head {
    font-size: 4.2666666667vw;
  }
}

.case__list--price .head::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 10px solid #F7DA7A;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.case__list--price .money {
  font-size: 30px;
  font-weight: bold;
}

@media screen and (max-width: 1320px) {
  .case__list--price .money {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .case__list--price .money {
    font-size: 5.8666666667vw;
  }
}

.case__list--text {
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .case__list--text {
    font-size: 3.7333333333vw;
  }
}

.sellPoint {
  padding: 80px 40px;
  background-color: #11317C;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sellPoint {
    padding: 16vw 5.3333333333vw;
  }
}

.sellPoint__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sellPoint__subTitle {
  color: #F7DA7A;
}

.sellPoint__title {
  color: #fff;
}

.sellPoint__lists {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .sellPoint__lists {
    margin-top: 5.3333333333vw;
    gap: 20px;
  }
}

.sellPoint__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #fff;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .sellPoint__list {
    flex-direction: column;
  }
}

.sellPoint__list::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 100%;
  width: 100vw;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .sellPoint__list::after {
    left: 99%;
  }
}

.sellPoint__list--img {
  width: 32%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sellPoint__list--img {
    width: 100%;
  }
}

.sellPoint__list--img img {
  width: 100%;
  vertical-align: bottom;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sellPoint__list--img .num {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 6px 10px;
  background: #F7DA7A;
  color: #11317C;
  font-weight: 500;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .sellPoint__list--img .num {
    left: 0;
    font-size: 4vw;
    top: 100%;
  }
}

.sellPoint__list--img .num::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 15px solid #F7DA7A;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

@media screen and (max-width: 768px) {
  .sellPoint__list--img .num::after {
    /*border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    */
    border: none;
    width: 15px;
    height: 100%;
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    background: #F7DA7A;
    clip-path: polygon(0% 0%, 10% 0%, 100% 50%, 10% 100%, 0% 100%);
  }
}

.sellPoint__list--contents {
  height: 100%;
  position: relative;
  width: 68%;
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .sellPoint__list--contents {
    width: 100%;
    height: auto;
    padding: 10.6666666667vw 5.3333333333vw;
  }
}

.sellPoint__list--title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #11317C;
  line-height: 1.5;
}

@media screen and (max-width: 1320px) {
  .sellPoint__list--title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  .sellPoint__list--title {
    font-size: 5.3333333333vw;
  }
}

.sellPoint__list--text {
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 1320px) {
  .sellPoint__list--text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .sellPoint__list--text {
    font-size: 4.2666666667vw;
  }
}

.column {
  padding: 80px 40px;
  background-image: url(../img/top/column-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 420px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .column {
    background-image: url(../img/top/column-bg-sp.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100%;
    padding: 16vw 0;
    width: 100%;
    overflow: hidden;
  }
}

.column__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.column__text {
  font-size: 20px;
  text-align: center;
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .column__text {
    padding: 5.3333333333vw 0;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .column__listsWrap {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}

.column__lists {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}

@media screen and (max-width: 1320px) {
  .column__lists {
    gap: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .column__lists {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    margin-top: 5.3333333333vw;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .column__list {
    width: 72vw;
  }
}

.column__list--img {
  display: block;
  vertical-align: bottom;
  margin-bottom: 20px;
  width: 100%;
}

.column__list--head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 1320px) {
  .column__list--head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  .column__list--head {
    flex-direction: row;
    align-items: center;
  }
}

.column__list--head .date {
  font-size: 16px;
}

.column__list--head .cat {
  background: #BFCAEA;
  color: #11317C;
  font-weight: bold;
  font-size: 14px;
  padding: 8px;
}

.column__list--text {
  font-size: 16px;
  line-height: 1.7;
}

.area {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .area {
    padding: 16vw 5.3333333333vw;
  }
}

.area__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.area__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.area__contents {
  width: 46%;
}

@media screen and (max-width: 768px) {
  .area__contents {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.area__contents h4 {
  border: 2px solid #11317C;
  color: #11317C;
  font-size: 24px;
  font-weight: bold;
  padding: 8px 10px;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 768px) {
  .area__contents h4 {
    font-size: 5.3333333333vw;
  }
}

.area__title {
  text-align: left;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .area__title {
    margin-bottom: 5.3333333333vw;
    text-align: center;
  }
}

.area__subTitle {
  text-align: left;
}

@media screen and (max-width: 768px) {
  .area__subTitle {
    text-align: center;
  }
}

.area__img {
  width: 50%;
}

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

.area__lists {
  display: flex;
  flex-direction: column;
}

.area__list {
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
}

.area__list--title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .area__list--title {
    font-size: 5.3333333333vw;
  }
}

.area__list--text {
  font-weight: bold;
  font-size: 18px;
  color: #11317C;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .area__list--text {
    font-size: 4vw;
  }
}

.defference {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .defference {
    padding: 16vw 5.3333333333vw;
  }
}

.defference__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.defference__text {
  margin: 40px auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .defference__text {
    margin: 5.3333333333vw auto;
    font-size: 4.2666666667vw;
  }
}

.defference__table {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .defference__table thead th {
    width: 17% !important;
  }
}

.defference__table thead .active {
  background: #11317C;
  color: #fff;
  border: 4px solid #11317C !important;
  border-bottom: none;
  font-size: 20px !important;
}

@media screen and (max-width: 768px) {
  .defference__table thead .active {
    font-size: 14px !important;
    border: 3px solid #11317C !important;
  }
}

.defference__table tbody .defference__table--title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .defference__table tbody .defference__table--title {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px !important;
  }
}

.defference__table tbody .defference__table--title img {
  width: 80px;
}

@media screen and (max-width: 768px) {
  .defference__table tbody .defference__table--title img {
    width: 53px;
  }
}

.defference__table tbody .defference__table--text {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .defference__table tbody .defference__table--text {
    font-size: 12px;
  }
}

.defference__table--title {
  border: 1px solid #E2E2E2;
  padding: 20px 15px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .defference__table--title {
    padding: 10px 5px;
  }
}

.defference__table--title.border-none {
  border: none;
}

.defference__table--text {
  text-align: center;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #E2E2E2;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .defference__table--text {
    font-size: 12px;
    vertical-align: middle;
    padding: 10px 5px;
  }
}

.defference__table--text.active {
  font-size: 36px !important;
  color: #11317C;
  border-left: 4px solid #11317C;
  border-right: 4px solid #11317C;
}

@media screen and (max-width: 768px) {
  .defference__table--text.active {
    font-size: 14px !important;
  }
}

.defference__table--text.border-bottom {
  border-bottom: 4px solid #11317C;
}

@media screen and (max-width: 768px) {
  .defference__table--text.border-bottom {
    border-bottom: 3px solid #11317C;
  }
}

.defference__table--row:last-child .defference__table--text.active {
  border-bottom: 3px solid #11317C;
}


.consulting {
  padding: 80px 40px;
  background: #11317C;
}

@media screen and (max-width: 768px) {
  .consulting {
    padding: 16vw 5.3333333333vw;
  }
}

.consulting__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.consulting__subTitle {
  text-align: center;
  color: #fff;
  font-size: 24px;
  display: block;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .consulting__subTitle {
    text-align: left;
    margin-bottom: 20px;
    font-size: 5.3333333333vw;
  }
}

.consulting__title {
  text-align: center;
  background: #fff;
  padding: 22px 0;
  position: relative;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .consulting__title {
    width: 85%;
    line-height: 1.2;
    font-size: 6.9333333333vw;
    padding: 10px 0;
    text-align: left;
  }
}

.consulting__title::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 30px solid #fff;
  border-top: 46px solid transparent;
  border-bottom: 46px solid transparent;
}

@media screen and (max-width: 768px) {
  .consulting__title::after {
    border-left: 40px solid #fff;
  }
}

@media screen and (max-width: 768px) {
  .consulting__title.consulting__title02::after {
    border-top: 30px solid transparent;
    border-bottom: 8.2666666667vw solid transparent;
    border-left: 8.2666666667vw solid #fff;
  }
}

.consulting__title::before {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background: #fff;
}

.consulting__title span {
  font-size: 48px;
  color: #C10505;
}

@media screen and (max-width: 768px) {
  .consulting__title span {
    font-size: 9.0666666667vw;
  }
}

.consulting__title.m60 {
  margin-top: 60px;
  margin-bottom: 30px;
}

.consulting__text {
  text-align: center;
  color: #fff;
  line-height: 1.7;
  font-size: 20px;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  .consulting__text {
    font-size: 4.2666666667vw;
    margin: 5.3333333333vw auto 9.3333333333vw;
  }
}

.consulting__lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .consulting__lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
}

.consulting__list {
  position: relative;
}

.consulting__list img {
  display: block;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .consulting__list img {
    margin-bottom: 10px;
  }
}

.consulting__list span {
  color: #fff;
}

.consulting__list--ng {
  position: absolute;
  padding: 4px 10px;
  background: #C10505;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.bnr__safety {
  padding: 0 40px 80px;
}

@media screen and (max-width: 768px) {
  .bnr__safety {
    padding: 16vw 0;
  }
}

.bnr__safety--link {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.member {
  padding: 80px 40px;
  background: #11317C;
}

@media screen and (max-width: 768px) {
  .member {
    padding: 16vw 0;
  }
}

.member__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.member__subTitle {
  color: #F7DA7A;
}

.member__title {
  color: #fff;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .member__title {
    margin-bottom: 16vw;
  }
}

@media screen and (max-width: 768px) {
  .member__listsWrap {
    overflow-x: auto;
    width: 100%;
    padding: 5.3333333333vw;
  }

  .member__listsWrap::-webkit-scrollbar {
    display: none;
  }
}

.member__lists {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

@media screen and (max-width: 768px) {
  .member__lists {
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
  }
}

.member__list {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 50px;
  background: #fff;
}

@media screen and (max-width: 1320px) {
  .member__list {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 768px) {
  .member__list {
    padding: 5.3333333333vw;
    width: 76vw;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.member__list--tag {
  position: absolute;
  top: -20px;
  left: 0;
  padding: 8px 10px;
  background: #F7DA7A;
  color: #11317C;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .member__list--tag {
    top: -14px;
    font-size: 4.8vw;
  }
}

/*
@media screen and (max-width: 768px) {
  .member__list:nth-child(2) .member__list--tag {
    top: -30px;
  }
}
*/
.member__list--img {
  width: 20%;
}

.member__list--img img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .member__list--img {
    width: 75%;
    margin: 0 auto 20px;
  }
}

.member__list--contents {
  width: 78%;
}

@media screen and (max-width: 768px) {
  .member__list--contents {
    width: 100%;
  }
}

.member__list--contents h3 {
  font-size: 20px;
  border-bottom: 1px solid #11317C;
  font-weight: normal;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding-bottom: 5px;
  color: #11317C;
  margin-bottom: 32px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .member__list--contents h3 {
    display: inline;
    line-height: 2;
    font-size: 4.2666666667vw;
  }
}

.member__list--contents p {
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .member__list--contents p {
    margin-top: 20px;
    font-size: 3.7333333333vw;
  }
}

.member__list--contents p span {
  font-weight: bold;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .member__list--contents p span {
    font-size: 4.8vw;
  }
}

.flow {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 16vw 5.3333333333vw;
  }
}

.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flow__text {
  margin: 40px auto;
  text-align: center;
  color: #11317C;
  font-weight: bold;
  font-size: 24px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 10px;
  border: 2px solid #11317C;
}

@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 4.2666666667vw;
    margin: 5.3333333333vw auto;
  }
}

.flow__lists {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.flow__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EEF1F9;
  border-top: 4px solid #11317C;
  border-bottom: 4px solid #11317C;
  padding: 30px 60px;
}

@media screen and (max-width: 768px) {
  .flow__list {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.flow__list--icon {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .flow__list--icon {
    width: 70%;
    margin-bottom: 20px;
  }
}

.flow__list--contents {
  width: 65%;
}

@media screen and (max-width: 768px) {
  .flow__list--contents {
    width: 100%;
  }
}

.flow__list--step {
  background: #fff;
  position: relative;
  padding: 6px 10px;
  color: #11317C;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .flow__list--step {
    font-size: 4vw;
  }
}

.flow__list--step::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 15px solid #fff;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

@media screen and (max-width: 768px) {
  .flow__list--step::after {
    /*border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;*/
    border: none;
    width: 15px;
    height: 100%;
    position: absolute;
    left: calc(100% - 1px);
    top: 0;
    background: white;
    clip-path: polygon(0% 0%, 10% 0%, 100% 50%, 10% 100%, 0% 100%);
  }
}

.flow__list--title {
  font-size: 32px;
  font-weight: bold;
  color: #11317C;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .flow__list--title {
    font-size: 6.4vw;
  }
}

.flow__list--text {
  font-size: 18px;
  max-width: 600px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .flow__list--text {
    font-size: 3.7333333333vw;
  }
}

.flow__list--bottom {
  background: #fff;
  padding: 16px 20px;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .flow__list--bottom {
    padding: 10px;
  }
}

.flow__list--bottom h4 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .flow__list--bottom h4 {
    font-size: 4.2666666667vw;
  }
}

.flow__list--bottom ul li {
  position: relative;
  font-size: 18px;
  margin-bottom: 15px;
  background-image: url(../img/top/icon_check.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 19px;
  padding-left: 24px;
  line-height: 1.4;
}

.flow__list--bottom ul li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .flow__list--bottom ul li {
    font-size: 4vw;
  }
}

.sustinability {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .sustinability {
    padding: 0;
    padding-bottom: 16vw;
  }
}

.sustinability__inner {
  max-width: 1200px;
  margin: 0 auto;
  background: url(../img/top/sustinability-bg.jpg) no-repeat;
  background-size: cover;
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .sustinability__inner {
    background-position: center;
    padding: 21.3333333333vw 5.3333333333vw;
  }
}

.sustinability__subTitle {
  color: #fff;
  text-align: center;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 90px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .sustinability__subTitle {
    font-size: 11.2666666667vw;
  }
}

.sustinability__title {
  font-size: 40px;
  color: #11317C;
}

@media screen and (max-width: 768px) {
  .sustinability__title {
    font-size: 6.4vw;
  }
}

.sustinability__text {
  margin: 34px auto;
  line-height: 1.7;
  text-align: center;
  max-width: 960px;
}

@media screen and (max-width: 768px) {
  .sustinability__text {
    margin: 6.6666666667vw auto;
    text-align: left;
  }
}

.sustinability__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin-bottom: 34px;
}

@media screen and (max-width: 768px) {
  .sustinability__box {
    flex-direction: column;
    gap: 20px;
  }
}

.sustinability__item {
  max-width: 480px;
  background: #fff;
  padding: 30px;
  border-top: 4px solid #11317C;
  border-bottom: 4px solid #11317C;
}

.sustinability__item h3 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #11317C;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 1320px) {
  .sustinability__item h3 {
    height: 75px;
  }
}

@media screen and (max-width: 768px) {
  .sustinability__item h3 {
    height: auto;
    font-size: 5.3333333333vw;
  }
}

.sustinability__item p {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .sustinability__item p {
    font-size: 3.7333333333vw;
  }
}

.sustinability__bottom {
  text-align: center;
  font-size: 20px;
  color: #11317C;
  font-weight: bold;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .sustinability__bottom {
    font-size: 4.8vw;
    text-align: left;
  }
}

.voice {
  padding: 80px 40px;
  background: url(../img/top/voice-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 16vw 0;
    background: url(../img/top/voice-bg-sp.jpg) no-repeat;
    background-size: cover;
  }
}

.voice__inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .voice__listsWrap {
    width: 100%;
    overflow-x: auto;
    padding: 0 5.3333333333vw;
  }

  .voice__listsWrap::-webkit-scrollbar {
    display: none;
  }
}

.voice__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .voice__lists {
    display: flex;
    margin-top: 20px;
    gap: 10px;
    width: -moz-max-content;
    width: max-content;
  }
}

.voice__list {
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 25px;
}

@media screen and (max-width: 768px) {
  .voice__list {
    padding: 20px;
    width: 275px;
  }
}

.voice__list--head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .voice__list--head {
    gap: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .voice__list--head>img {
    width: 70px;
  }
}

.voice__list--user .name {
  color: #11317C;
  font-size: 20px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .voice__list--user .name {
    font-size: 16px;
  }
}

.voice__list--user .evaluation {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

@media screen and (max-width: 1320px) {
  .voice__list--user .evaluation {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media screen and (max-width: 768px) {
  .voice__list--user .evaluation {
    flex-direction: column;
    font-size: 13px;
    gap: 5px;
    align-items: flex-start;
  }
}

.voice__list--text {
  font-size: 18px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .voice__list--text {
    font-size: 16px;
  }
}

.faq {
  padding: 80px 40px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 16vw 0;
  }
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq__tabsWrap {
    padding: 0 5.3333333333vw;
    width: 100%;
    overflow-x: auto;
  }
}

.faq__tabsWrap::-webkit-scrollbar {
  display: none;
}

.faq__tabs {
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  .faq__tabs {
    width: -moz-max-content;
    width: max-content;
    margin: 8vw auto;
  }
}

.faq__tab {
  display: block;
  padding: 14px 0;
  width: 200px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 70px;
  text-align: center;
  background: #fff;
  color: #11317C;
  border: 2px solid #11317C;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .faq__tab {
    font-size: 3.7333333333vw;
    width: 40vw;
  }
}

.faq__tab.active {
  background: #11317C;
  color: #fff;
}

.faq__contents {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.faq__contents.show {
  display: flex;
}

@media screen and (max-width: 768px) {
  .faq__contents {
    width: 90%;
    margin: 0 auto;
  }
}

.faq__item--title {
  background-color: #11317C;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 20px 60px 20px 30px;
  gap: 26px;
  cursor: pointer;
  background-image: url(../img/common/icon_arrow_bottom_wh.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 97%;
}

.faq__item--title.is_active {
  background-image: url(../img/common/icon_arrow_top_wh.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: 97%;
}

@media screen and (max-width: 768px) {
  .faq__item--title {
    padding: 16px 25px 16px 14px;
    gap: 10px;
    align-items: flex-start;
  }
}

.faq__item--title span {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .faq__item--title span {
    font-size: 5.3333333333vw;
  }
}

.faq__item--title p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 85%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .faq__item--title p {
    font-size: 4.2666666667vw;
  }
}

.faq__item--text {
  background: #EEF1F9;
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}

.faq__item--textWrap {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .faq__item--textWrap {
    padding: 16px 25px 16px 14px;
    gap: 10px;
    align-items: flex-start;
  }
}

.faq__item--text span {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .faq__item--text span {
    font-size: 5.3333333333vw;
  }
}

.faq__item--text p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 85%;
}

@media screen and (max-width: 768px) {
  .faq__item--text p {
    font-size: 3.7333333333vw;
  }
}

/*# sourceMappingURL=top.css.map */







.listsWrapWrap {
  position: relative;
}

.listsWrapWrapArrow {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 5px;
  top: 50%;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.listsWrapWrapArrow.hide {
  opacity: 0;
}

/* ------------------------------------------- 追加 ------------- */

.mt2em {
  margin-top: 2em;
}

.mt5em {
  margin-top: 5em;
}

.articleBody {
  overflow-wrap: anywhere;
  line-break: strict;
}

.text-area {
  line-height: 1.5em;
  margin: 2em auto;
}

.text-area h3,
.text-area h4 {
  margin-bottom: 1em;
}

.text-area p,
contact-agreement p {
  margin-bottom: 1em;
}

.text-area ol,
contact-agreement ol {
  margin: 0 0 1em;
  padding-left: 1em;
  counter-reset: item;
  counter-reset: item 1;
}

.text-area ol li,
contact-agreement ol li {
  list-style: dicimal !important;
  list-style-position: inside !important;
  margin-left: 1em;
  padding-left: 1.3em;
  text-indent: -1em;
}

.text-area table {
  width: 80%;
  margin: 0 auto;
}

.text-area table,
.text-area td,
.text-area th {
  border: solid 1px #aaa;
  border-collapse: collapse;
}

.text-area td,
.text-area th {
  padding: 0.5em;
  text-align: left;
}

.text-area th {
  background-color: #ccc;
}

.text-area .ct {
  box-sizing: border-box;
  text-align: center;
}

.category p.item-area,
.category__lists p.item-area {
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .column__lists.columnPage {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 0 auto;
  }
}

.bnr img {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .bnr {
    padding: 6vw 5.3333333333vw;
  }
}


.footer {
  border-top: 1px solid #fff;
}

.footer-right {
  width: calc(100% - 200px - 300px) !important;
}

.footer-other {
  box-sizing: border-box;
  display: flex;
  justify-content: right;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 10px;
}

.footer-otherGroup {
  width: fit-content;
  flex-direction: column;
  align-content: flex-start;
}

.footer-otherGroup li {
  padding: 0;
}